Files
Linux-Server-Management-Too…/modules/security
cschantz 7053b3b157 Fix color escape sequences not rendering in security hardening menu
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

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-02 17:12:55 -05:00
..