We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36684c7 commit 1f64e84Copy full SHA for 1f64e84
VHostScan.py
@@ -34,9 +34,9 @@ def main():
34
wordlist = []
35
word_list_types = []
36
37
- default_wordlist = DEFAULT_WORDLIST_FILE if not arguments.stdin else None
+ default_wordlist = DEFAULT_WORDLIST_FILE if not sys.stdin.isatty() else None
38
39
- if arguments.stdin:
+ if not sys.stdin.isatty():
40
word_list_types.append('stdin')
41
wordlist.extend(list(line for line in sys.stdin.read().splitlines()))
42
0 commit comments