From 0871fe25e87fab1539fc760c59122c3b2a0730fc Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Fri, 22 Jan 2016 07:38:44 +0100 Subject: [PATCH] change text --- lib/msf/core/auxiliary/crawler.rb | 2 +- lib/msf/core/exploit/http/client.rb | 2 +- lib/msf/core/exploit/tcp.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/msf/core/auxiliary/crawler.rb b/lib/msf/core/auxiliary/crawler.rb index cfc9ffcf18..e52ff259de 100644 --- a/lib/msf/core/auxiliary/crawler.rb +++ b/lib/msf/core/auxiliary/crawler.rb @@ -26,7 +26,7 @@ module Auxiliary::HttpCrawler OptString.new('USERNAME', [false, 'The HTTP username to specify for authentication']), OptString.new('PASSWORD', [false, 'The HTTP password to specify for authentication']), OptString.new('DOMAIN', [ true, 'The domain to use for windows authentication', 'WORKSTATION']), - OptBool.new('SSL', [ false, 'Negotiate SSL for outgoing connections', false]) + OptBool.new('SSL', [ false, 'Negotiate SSL/TLS for outgoing connections', false]) ], self.class ) diff --git a/lib/msf/core/exploit/http/client.rb b/lib/msf/core/exploit/http/client.rb index 4b00feec3b..4bf9ca91c4 100644 --- a/lib/msf/core/exploit/http/client.rb +++ b/lib/msf/core/exploit/http/client.rb @@ -37,7 +37,7 @@ module Exploit::Remote::HttpClient Opt::RHOST, Opt::RPORT(80), OptString.new('VHOST', [ false, "HTTP server virtual host" ]), - OptBool.new('SSL', [ false, 'Negotiate SSL for outgoing connections', false]), + OptBool.new('SSL', [ false, 'Negotiate SSL/TLS for outgoing connections', false]), Opt::Proxies ], self.class ) diff --git a/lib/msf/core/exploit/tcp.rb b/lib/msf/core/exploit/tcp.rb index f4a6daef6c..59577e7932 100644 --- a/lib/msf/core/exploit/tcp.rb +++ b/lib/msf/core/exploit/tcp.rb @@ -63,7 +63,7 @@ module Exploit::Remote::Tcp register_advanced_options( [ - OptBool.new('SSL', [ false, 'Negotiate SSL for outgoing connections', false]), + OptBool.new('SSL', [ false, 'Negotiate SSL/TLS for outgoing connections', false]), OptEnum.new('SSLVersion', [ false, 'Specify the version of SSL/TLS to be used (TLS and SSL23 are auto-negotiate)', 'TLS1', ['SSL2', 'SSL3', 'SSL23', 'TLS', 'TLS1', 'TLS1.1', 'TLS1.2']]), OptEnum.new('SSLVerifyMode', [ false, 'SSL verification method', 'PEER', %W{CLIENT_ONCE FAIL_IF_NO_PEER_CERT NONE PEER}]), OptString.new('SSLCipher', [ false, 'String for SSL cipher - "DHE-RSA-AES256-SHA" or "ADH"']),