Skip to content

Commit 823b4e2

Browse files
author
HD Moore
committed
Make it clear SSLVersion is not advertised since it isn't used
1 parent 842a7a3 commit 823b4e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/msf/core/exploit/tcp_server.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ def initialize(info = {})
1818
register_options(
1919
[
2020
OptBool.new('SSL', [ false, 'Negotiate SSL for incoming connections', false]),
21-
OptEnum.new('SSLVersion', [ false, 'Specify the version of SSL that should be used', 'TLS1', ['SSL2', 'SSL3', 'TLS1']]),
21+
# SSLVersion is currently unsupported for TCP servers (only supported by clients at the moment)
22+
# OptEnum.new('SSLVersion', [ false, 'Specify the version of SSL that should be used', 'TLS1', ['SSL2', 'SSL3', 'TLS1']]),
2223
OptPath.new('SSLCert', [ false, 'Path to a custom SSL certificate (default is randomly generated)']),
2324
OptAddress.new('SRVHOST', [ true, "The local host to listen on. This must be an address on the local machine or 0.0.0.0", '0.0.0.0' ]),
2425
OptPort.new('SRVPORT', [ true, "The local port to listen on.", 8080 ]),

0 commit comments

Comments
 (0)