From 58cff87274ee9e1e558c47cd85d05dc3445120d8 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 3 Jun 2025 10:38:16 +0000 Subject: [PATCH] hotfix --- burp/start_burp.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/burp/start_burp.py b/burp/start_burp.py index 4f997f4..4e59aa6 100644 --- a/burp/start_burp.py +++ b/burp/start_burp.py @@ -8,7 +8,6 @@ BURP_JAR = "/headless/burpsuite_community.jar" CONFIG_FILE = "/app/burp/project_options.json" def start_burp(): - for filepath in glob.glob('/tmp/burp*'): try: if os.path.isfile(filepath): @@ -17,10 +16,10 @@ def start_burp(): except Exception as e: print(f"Error deleting {filepath}: {e}") - burp_process = subprocess.Popen([ - "java", "-jar", BURP_JAR, - f"--config-file={CONFIG_FILE}" - ]) + burp_process = subprocess.Popen([ + "java", "-jar", BURP_JAR, + f"--config-file={CONFIG_FILE}" + ]) return burp_process print("Starting Burp Suite...")