Skip to content

Commit

Permalink
webhack-spaghetti-agent-ci-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
x3rz committed Jun 27, 2021
1 parent 55961be commit 73c7d23
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lockdoors/webhack.py
Expand Up @@ -2,6 +2,7 @@
from lockdoors import main
from lockdoors import shrts
from pathlib import Path
from lockdoors import sanitize
from datetime import datetime
from time import sleep
from os import path
Expand Down Expand Up @@ -51,9 +52,9 @@ def Spaghetti():
ranagent = " --random-agent "
else:
ranagent = ""
agent = input("Use a specified Agent ? (Y/N) : ")
agent = sanitize.bash_escape_restrictor(input("Use a specified Agent ? (Y/N) : "))
if agent in yes:
agent = input("Specify the Agent ! : ")
agent = sanitize.bash_escape_restrictor(input("Specify the Agent ! : "))
agent = " --agent " + agent
else:
agent = ""
Expand Down

0 comments on commit 73c7d23

Please sign in to comment.