metasploit-framework/modules/auxiliary/scanner/telnet/telnet_version.rb

40 lines
964 B
Ruby
Raw Normal View History

##
# 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::Telnet
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
def initialize
super(
'Name' => 'Telnet Service Banner Detection',
'Version' => '$Revision$',
'Description' => 'Detect telnet services',
'Author' => 'hdm',
'License' => MSF_LICENSE
)
end
def run_host(ip)
begin
res = connect
print_status("#{ip}:#{rport} TELNET #{banner.gsub(/[\r\n\x1b]/, ' ')}")
report_service(:host => rhost, :port => rport, :name => "telnet", :info => banner)
rescue ::Rex::ConnectionError
rescue ::Exception => e
print_error("#{e} #{e.backtrace}")
end
end
end