From 0d0f43b4d8631cb7f9657258d1b2581c2d5071c2 Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sat, 26 Dec 2020 11:04:29 -0500 Subject: [PATCH] updated striker run no longer using os.subproccess as it doesn't work --- tools/information_gathering_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/information_gathering_tools.py b/tools/information_gathering_tools.py index a81258b..8df6baf 100644 --- a/tools/information_gathering_tools.py +++ b/tools/information_gathering_tools.py @@ -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])