metasploit-framework/modules/auxiliary/scanner/pop3/pop3_version.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
2016-03-08 13:02:44 +00:00
class MetasploitModule < Msf::Auxiliary
2013-08-30 21:28:54 +00:00
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
2013-08-30 21:28:54 +00:00
def initialize
super(
'Name' => 'POP3 Banner Grabber',
'Description' => 'POP3 Banner Grabber',
'Author' => 'hdm',
'License' => MSF_LICENSE
)
register_options([
Opt::RPORT(110)
], self.class)
end
2013-08-30 21:28:54 +00:00
def run_host(ip)
begin
2015-10-09 16:13:50 +00:00
connect
2013-08-30 21:28:54 +00:00
banner = sock.get_once(-1, 30)
banner_sanitized = Rex::Text.to_hex_ascii(banner.to_s)
print_status("#{ip}:#{rport} POP3 #{banner_sanitized}")
report_service(:host => rhost, :port => rport, :name => "pop3", :info => banner)
rescue ::Rex::ConnectionError
rescue ::EOFError
2015-10-09 16:13:50 +00:00
print_error("#{ip}:#{rport} - The service failed to respond")
2013-08-30 21:28:54 +00:00
rescue ::Exception => e
2015-10-09 16:13:50 +00:00
print_error("#{ip}:#{rport} - #{e} #{e.backtrace}")
2013-08-30 21:28:54 +00:00
end
end
end