convert to "screaming snake"

bug/bundler_fix
Christian Mehlmauer 2017-05-09 09:30:45 +02:00
parent f70b402dd9
commit 2b4ace9960
No known key found for this signature in database
GPG Key ID: DCF54A05D6E62591
1 changed files with 4 additions and 4 deletions

View File

@ -71,17 +71,17 @@ class MetasploitModule < Msf::Exploit::Remote
register_options(
[
OptString.new('TARGETURI', [ true, 'Path of IIS 6 web application', '/']),
OptInt.new('MinPathLength', [ true, 'Start of physical path brute force', 3 ]),
OptInt.new('MaxPathLength', [ true, 'End of physical path brute force', 60 ]),
OptInt.new('MINPATHLENGTH', [ true, 'Start of physical path brute force', 3 ]),
OptInt.new('MAXPATHLENGTH', [ true, 'End of physical path brute force', 60 ]),
])
end
def min_path_len
datastore['MinPathLength']
datastore['MINPATHLENGTH']
end
def max_path_len
datastore['MaxPathLength']
datastore['MAXPATHLENGTH']
end
def supports_webdav?(headers)