From e922aa5bc9903e8ec51ff0c50236c4c2c8867c34 Mon Sep 17 00:00:00 2001 From: cschantz Date: Sat, 13 Dec 2025 02:23:14 -0500 Subject: [PATCH] Fix historical attack analyzer path in launcher Changed $SCRIPT_DIR to $BASE_DIR (correct variable name in launcher.sh) Now option 15 properly launches: /root/server-toolkit/tools/analyze-historical-attacks.sh --- launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.sh b/launcher.sh index 82910ad..3cc098a 100755 --- a/launcher.sh +++ b/launcher.sh @@ -171,7 +171,7 @@ handle_security_menu() { 12) run_module "security" "tail-secure-log.sh" ;; 13) run_module "security" "enable-cphulk.sh" ;; 14) run_module "security" "optimize-ct-limit.sh" ;; - 15) bash "$SCRIPT_DIR/tools/analyze-historical-attacks.sh" ;; + 15) bash "$BASE_DIR/tools/analyze-historical-attacks.sh" ;; 0) return ;; *) echo -e "${RED}Invalid option${NC}"; sleep 1 ;; esac