From b7ae7a47be2c133cb57ae8520dc3087f22f91e4c Mon Sep 17 00:00:00 2001 From: Jin Qian Date: Wed, 23 Nov 2016 14:45:42 -0600 Subject: [PATCH] Fix issue #7608 where the SSL option was not turned on by default Set the SSL option to be on by default. --- modules/auxiliary/scanner/http/cisco_nac_manager_traversal.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/auxiliary/scanner/http/cisco_nac_manager_traversal.rb b/modules/auxiliary/scanner/http/cisco_nac_manager_traversal.rb index 42e31918dc..349d044b9f 100644 --- a/modules/auxiliary/scanner/http/cisco_nac_manager_traversal.rb +++ b/modules/auxiliary/scanner/http/cisco_nac_manager_traversal.rb @@ -30,6 +30,7 @@ class MetasploitModule < Msf::Auxiliary register_options( [ Opt::RPORT(443), + OptBool.new('SSL', [ false, 'Negotiate SSL/TLS for outgoing connections', true]), OptString.new('FILE', [ true, 'The file to traverse for', '/etc/passwd']), OptInt.new('MAXDIRS', [ true, 'The maximum directory depth to search', 7]), ], self.class)