updated striker run

no longer using os.subproccess as it doesn't work
This commit is contained in:
Greatest125 2020-12-26 11:04:29 -05:00 committed by GitHub
parent 98ea0036e1
commit 0d0f43b4d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,7 +143,7 @@ class Striker(HackingTool):
def run(self):
site = input("Enter Site Name (example.com) >> ")
os.system("cd Striker;")
os.chdir("Striker")
subprocess.run(["sudo", "python3", "striker.py", site])