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

48 lines
1.1 KiB
Ruby

##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
def initialize
super(
'Name' => 'POP3 Banner Grabber',
'Version' => '$Revision$',
'Description' => 'POP3 Banner Grabber',
'Author' => 'hdm',
'License' => MSF_LICENSE
)
register_options([
Opt::RPORT(110)
], self.class)
end
def run_host(ip)
begin
res = connect
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 ::Exception => e
print_error("#{rhost}:#{rport} #{e} #{e.backtrace}")
end
end
end