Skip to content

Commit

Permalink
webhack-spaghetti-proxy-ci-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
x3rz committed Jun 27, 2021
1 parent 73c7d23 commit 14e3dd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lockdoors/webhack.py
Expand Up @@ -58,9 +58,9 @@ def Spaghetti():
agent = " --agent " + agent
else:
agent = ""
proxy = input("Set a proxy ? (Y/N) : ")
proxy = sanitize.bash_escape_restrictor(input("Set a proxy ? (Y/N) : "))
if proxy in yes:
proxy = input("Set the Proxy (host:port) : ")
proxy = sanitize.bash_escape_restrictor(input("Set the Proxy (host:port) : "))
proxy = " --proxy " + proxy
verbose = input("Verbose output ? (Y/N) : ")
if verbose in yes:
Expand Down

1 comment on commit 14e3dd1

@B3EF
Copy link
Contributor

@B3EF B3EF commented on 14e3dd1 Jul 1, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there is no need for adding a sanitize fn at L61.

Please sign in to comment.