From f27184d93ed5c8797b71d0433c8aadda6a7c840b Mon Sep 17 00:00:00 2001 From: Tyler Lightwood Date: Sun, 19 Nov 2023 21:24:28 +0000 Subject: [PATCH] Update main.py Removed the codeshatter command temporarily --- main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main.py b/main.py index 4ebcfdc..a572df1 100644 --- a/main.py +++ b/main.py @@ -564,10 +564,7 @@ def connect(): # Hack into a system or vulnerability elif command.lower().startswith("hack "): target = command[5:] - if "--item codeshatter" in command.lower(): - hack_with_codeshatter(target) - else: - hack(target) + hack(target) # Display connect help message elif command.lower() == "help": connect_help()