mirror of
https://github.com/danielmiessler/SecLists
synced 2025-12-23 01:06:31 +01:00
added code that just exit if no args passed
This commit is contained in:
parent
a4df7ab34a
commit
a3ef749d1d
1 changed files with 3 additions and 0 deletions
|
|
@ -7,6 +7,9 @@ import sys
|
|||
|
||||
print("[+] New line check")
|
||||
|
||||
if not sys.argv[1]:
|
||||
exit(0)
|
||||
|
||||
files=sys.argv[1].split(" ")
|
||||
|
||||
for i in files:
|
||||
|
|
|
|||
Loading…
Reference in a new issue