cleanup before merge external_ip

bug/bundler_fix
jvazquez-r7 2013-03-11 20:35:25 +01:00
parent 546e24a9c6
commit 9c89599737
1 changed files with 8 additions and 15 deletions

View File

@ -29,26 +29,19 @@ class Metasploit3 < Msf::Auxiliary
register_options( register_options(
[ [
OptEnum.new('RHOST', [true, 'The ifconfig.me server to use','49.212.202.172',['49.212.202.172','133.242.129.236']]), Opt::RHOST('ifconfig.me'),
OptString.new('VHOST', [true, "The VHOST to use", 'ifconfig.me' ]),
OptBool.new('REPORT_HOST', [false, 'Add the found IP to the database', false]) OptBool.new('REPORT_HOST', [false, 'Add the found IP to the database', false])
], self.class) ], self.class)
end end
def run def run
begin connect
connect res = send_request_raw({'uri' => '/ip', 'method' => 'GET' })
res = send_request_raw({'uri' => '/ip', 'method' => 'GET' }) our_addr = res.body.strip
our_addr = res.body.strip if Rex::Socket.is_ipv4?(our_addr) or Rex::Socket.is_ipv6?(our_addr)
if Rex::Socket.is_ipv4?(our_addr) or Rex::Socket.is_ipv6?(our_addr) print_good("Source ip to #{rhost} is #{our_addr}")
print_good("Source ip to #{ip} is #{our_addr}") report_host(our_addr) if datastore['REPORT_HOST']
report_host(our_addr) if datastore['REPORT_HOST']
end
end
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
rescue Timeout::Error, Errno::EINVAL, Errno::ECONNRESET, EOFError, Errno::ECONNABORTED, Errno::ECONNREFUSED, Errno::EHOSTUNREACH => e
raise e
end end
end end
end