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:
@@ -2533,7 +2533,7 @@ check_suspicious_network_activity() {
|
|||||||
perform_compromise_detection() {
|
perform_compromise_detection() {
|
||||||
local ip=$1
|
local ip=$1
|
||||||
|
|
||||||
echo " ${YELLOW}Running comprehensive compromise detection...${NC}" >&2
|
echo -e " ${YELLOW}Running comprehensive compromise detection...${NC}" >&2
|
||||||
echo "" >&2
|
echo "" >&2
|
||||||
|
|
||||||
# Load baseline for comparison
|
# Load baseline for comparison
|
||||||
|
|||||||
Reference in New Issue
Block a user