Back out the Comm stuff for HTTP

bug/bundler_fix
James Lee 2015-10-29 14:22:34 -05:00
parent d51f0ebd4c
commit 46159f5dbe
No known key found for this signature in database
GPG Key ID: 2D6094C7CEA0A321
1 changed files with 2 additions and 6 deletions

View File

@ -20,7 +20,6 @@ module ReverseHttp
include Msf::Handler
include Rex::Payloads::Meterpreter::UriChecksum
include Msf::Payload::Windows::VerifySsl
include Msf::Handler::Reverse::Comm
#
# Returns the string representation of the handler type
@ -130,7 +129,6 @@ module ReverseHttp
#
def setup_handler
comm = select_comm
local_port = bind_port
# Start the HTTPS server service on this host/port
@ -142,7 +140,7 @@ module ReverseHttp
'Msf' => framework,
'MsfExploit' => self,
},
comm,
nil,
(ssl?) ? datastore['HandlerSSLCert'] : nil
)
@ -158,9 +156,7 @@ module ReverseHttp
},
'VirtualDirectory' => true)
via = via_string_for_ip(ip, comm)
print_status("Started #{scheme.upcase} reverse handler on #{listener_uri} #{via}")
print_status("Started #{scheme.upcase} reverse handler on #{listener_uri}")
lookup_proxy_settings
if datastore['IgnoreUnknownPayloads']