Fix: Add -e flag to echo for ANSI color codes

Issue: Line 2536 used echo without -e flag
Result: ANSI escape codes printed literally instead of rendering colors
Example: \033[1;33mRunning...\033[0m

Fix: Changed echo to echo -e
Result: Colors now render correctly in terminal

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
cschantz
2026-02-05 20:00:22 -05:00
parent ed584b8451
commit bd733e919a
+1 -1
View File
@@ -2533,7 +2533,7 @@ check_suspicious_network_activity() {
perform_compromise_detection() {
local ip=$1
echo " ${YELLOW}Running comprehensive compromise detection...${NC}" >&2
echo -e " ${YELLOW}Running comprehensive compromise detection...${NC}" >&2
echo "" >&2
# Load baseline for comparison