# frozen_string_literal: true12module WPScan3module Model4# Override of the CMSScanner::XMLRPC to include the references5class XMLRPC < CMSScanner::Model::XMLRPC6include References # To be able to use the :wpvulndb reference if needed78# @return [ Hash ]9def references10@references ||= {11url: ['http://codex.wordpress.org/XML-RPC_Pingback_API'],12metasploit: [13'auxiliary/scanner/http/wordpress_ghost_scanner',14'auxiliary/dos/http/wordpress_xmlrpc_dos',15'auxiliary/scanner/http/wordpress_xmlrpc_login',16'auxiliary/scanner/http/wordpress_pingback_access'17]18}19end20end21end22end232425