1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

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

View File

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