4fd37f675f
PROBLEM: Security menu displayed literal escape codes instead of colors: \033[1m1\033[0m - Enable SYNFLOOD Protection \033[1m2\033[0m - Harden SSH Security ROOT CAUSE: Using `echo "..."` without -e flag doesn't interpret ANSI escape sequences FIX: Changed lines 1422-1428 from `echo "..."` to `echo -e "..."` - Fixed 6 menu option lines with color variables - All escape sequences now render properly