Skip to content

Commit 8f06dc7

Browse files
committed
Fixed missing stdin feedback to user
1 parent aa31744 commit 8f06dc7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

VHostScan.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ def main():
3535
if(arguments.stdin):
3636
for line in sys.stdin:
3737
wordlist += line
38+
print("[+] Starting virtual host scan for %s using port %s and stdin data" % (arguments.target_hosts,
39+
str(arguments.port)))
3840
elif(arguments.stdin and arguments.wordlist):
3941
if not os.path.exists(arguments.wordlist):
4042
print("[!] Wordlist %s doesn't exist and can't be appended to stdin." % arguments.wordlist)

0 commit comments

Comments
 (0)