Skip to content

Commit e4a1ba4

Browse files
committed
Fixes after merge
1 parent 00a24b4 commit e4a1ba4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VHostScan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def main():
7171
print("[>] Ignoring Content length: %s" % (arguments.ignore_content_length))
7272

7373
scanner = virtual_host_scanner( arguments.target_hosts, arguments.base_host, wordlist, arguments.port, arguments.real_port, arguments.ssl,
74-
arguments.unique_depth, arguments.ignore_http_codes, arguments.ignore_content_length, arguments.add_waf_bypass_headers)
74+
arguments.unique_depth, arguments.ignore_http_codes, arguments.ignore_content_length, arguments.fuzzy_logic, arguments.add_waf_bypass_headers)
7575

7676
scanner.scan()
7777
output = output_helper(scanner)

lib/core/virtual_host_scanner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class virtual_host_scanner(object):
1919
output: folder to write output file to
2020
"""
2121

22-
def __init__(self, target, base_host, wordlist, port=80, real_port=80, ssl=False, unique_depth=1, ignore_http_codes='404', ignore_content_length=0, add_waf_bypass_headers=False):
22+
def __init__(self, target, base_host, wordlist, port=80, real_port=80, ssl=False, unique_depth=1, ignore_http_codes='404', ignore_content_length=0, fuzzy_logic=False, add_waf_bypass_headers=False):
2323
self.target = target
2424
self.base_host = base_host
2525
self.port = int(port)

0 commit comments

Comments
 (0)