convert to "screaming snake"
parent
f70b402dd9
commit
2b4ace9960
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue