Skip to content

Commit 716e939

Browse files
committed
Fixed incorrect wordlist location for stdin + w
1 parent b1e3306 commit 716e939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VHostScan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def main():
3939
if not os.path.exists(arguments.wordlist):
4040
print("[!] Wordlist %s doesn't exist and can't be appended to stdin." % arguments.wordlistt)
4141
else:
42-
wordlist += open("./wordlists/virtual-host-scanning.txt").read().splitlines()
42+
wordlist += open(arguments.wordlist).read().splitlines()
4343
else:
4444
wordlist = open("./wordlists/virtual-host-scanning.txt").read().splitlines()
4545

0 commit comments

Comments
 (0)