Adds a lantronix telnet discovery module

unstable
David Maloney 2012-02-23 17:22:32 -06:00
parent e262d7a7ff
commit a6b10862bd
1 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,60 @@
##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::Telnet
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
def initialize
super(
'Name' => 'Lantronix Telnet Service Banner Detection',
'Version' => '$Revision$',
'Description' => 'Detect Lantronix telnet services',
'Author' => ['TheLightCosine <thelightcosine[at]metasploit.com>', 'hdm'],
'License' => MSF_LICENSE
)
register_options(
[
Opt::RPORT(9999),
OptInt.new('TIMEOUT', [true, 'Timeout for the Telnet probe', 30])
], self.class)
deregister_options('USERNAME','PASSWORD')
end
def to
return 30 if datastore['TIMEOUT'].to_i.zero?
datastore['TIMEOUT'].to_i
end
def run_host(ip)
begin
::Timeout.timeout(to) do
res = connect
if banner.start_with? "MAC address"
print_status("#{ip}:#{rport} TELNET: \n #{banner}")
version = banner.match(/Software version [\w\.]+ \(\d+\) \w*$/)[0]
report_service(:host => rhost, :port => rport, :name => "telnet", :info => version )
end
end
rescue ::Rex::ConnectionError
rescue Timeout::Error
print_error("#{target_host}:#{rport}, Server timed out after #{to} seconds. Skipping.")
rescue ::Exception => e
print_error("#{e} #{e.backtrace}")
end
end
end