Land #3032, inside_workspace_boundary? typo fix

bug/bundler_fix
William Vu 2014-02-24 14:55:09 -06:00
commit 6f398f374e
No known key found for this signature in database
GPG Key ID: E761DCB4C1629024
3 changed files with 3 additions and 3 deletions

View File

@ -101,7 +101,7 @@ class Metasploit3 < Msf::Auxiliary
) )
# report the external port as being open # report the external port as being open
if inside_workspace_boundary(external_address) if inside_workspace_boundary?(external_address)
report_service( report_service(
:host => external_address, :host => external_address,
:port => external_port, :port => external_port,

View File

@ -70,7 +70,7 @@ class Metasploit3 < Msf::Auxiliary
) )
# also report its external address as alive # also report its external address as alive
if inside_workspace_boundary(external_address) if inside_workspace_boundary?(external_address)
report_host( report_host(
:host => external_address, :host => external_address,
:state => Msf::HostState::Alive :state => Msf::HostState::Alive

View File

@ -102,7 +102,7 @@ class Metasploit3 < Msf::Auxiliary
print_status("#{external_addr} - #{int}/#{protocol} #{state} because of code #{result} response") if (datastore['DEBUG']) print_status("#{external_addr} - #{int}/#{protocol} #{state} because of code #{result} response") if (datastore['DEBUG'])
end end
if inside_workspace_boundary(external_addr) if inside_workspace_boundary?(external_addr)
report_service( report_service(
:host => external_addr, :host => external_addr,
:port => int, :port => int,