Skip to content

Commit 259db26

Browse files
author
HD Moore
committed
Remove user/pass and invalid class from the options
1 parent 2ab14e7 commit 259db26

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

modules/payloads/stagers/python/reverse_http.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ def initialize(info = {})
2727
register_options(
2828
[
2929
OptString.new('PROXY_HOST', [false, "The proxy server's IP address"]),
30-
OptPort.new('PROXY_PORT', [true, "The proxy port to connect to", 8080 ]),
31-
OptString.new('PROXY_USERNAME', [ false, "An optional username for HTTP proxy authentication"]),
32-
OptString.new('PROXY_PASSWORD', [ false, "An optional password for HTTP proxy authentication"])
33-
], Msf::Handler::ReverseHttp)
30+
OptPort.new('PROXY_PORT', [true, "The proxy port to connect to", 8080 ])
31+
], self.class)
3432
end
3533

3634
#

0 commit comments

Comments
 (0)