metasploit-framework/modules/auxiliary/scanner/http/wordpress_scanner.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

2013-11-10 22:08:59 +00:00
##
# This module requires Metasploit: http://metasploit.com/download
2013-11-10 22:08:59 +00:00
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
2016-03-08 13:02:44 +00:00
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HTTP::Wordpress
2013-11-10 22:08:59 +00:00
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
def initialize
super(
2013-11-12 17:29:28 +00:00
'Name' => 'Wordpress Scanner',
2013-11-18 22:15:50 +00:00
'Description' => 'Detects Wordpress installations and their version number',
'Author' => [ 'Christian Mehlmauer' ],
2013-11-12 17:29:28 +00:00
'License' => MSF_LICENSE
2013-11-10 22:08:59 +00:00
)
end
def run_host(target_host)
print_status("Trying ip #{target_host}")
if wordpress_and_online?
version = wordpress_version
version_string = version ? version : '(no version detected)'
2013-11-10 23:24:32 +00:00
print_good("#{target_host} running Wordpress #{version_string}")
2013-11-10 22:08:59 +00:00
report_note(
{
:host => target_host,
:proto => 'tcp',
:sname => (ssl ? 'https' : 'http'),
:port => rport,
:type => "Wordpress #{version_string}",
:data => target_uri
})
end
end
end