Skip to content

Commit

Permalink
Merge pull request #16 from x3rz/Nasnum-ci-patch-sanitize
Browse files Browse the repository at this point in the history
Nasnum CI fix via sanitize.py
  • Loading branch information
SofianeHamlaoui committed Jun 13, 2021
2 parents 63c3477 + 5687502 commit d003c9f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lockdoors/infogathering.py
@@ -1,6 +1,7 @@
import os
import sys
from lockdoors import main
from lockdoors import sanitize
from lockdoors import shrts
from lockdoors import sanitize
from pathlib import Path
Expand Down Expand Up @@ -178,8 +179,8 @@ def Nasnum():
os.system("find " + shrts.getinstalldir() + "/INFO-GATH/CHEATSHEETS/ -type f | grep -E 'ftp.*enum|ftp.*enum'")
print(" \033[90m")
shrts.pop()
target = input("Select A Target : ")
output = input("Select an output file : ")
target = sanitize.bash_escape_restrictor(input("Select A Target : "))
output = sanitize.bash_escape_restrictor(input("Select an output file : "))
if not smb in no:
smb = "-s"
else:
Expand Down

0 comments on commit d003c9f

Please sign in to comment.