Files
NeuroSploit/neurosploit-rs/app
CyberSecurityUP 78b638a956 fix(repl): plain readline prompt (fix garbled interactive line editing)
The prompt passed to rustyline embedded ANSI escapes AND a newline (dim context
line + colored `neurosploit›`), so rustyline mis-measured the prompt width and
cursor position — typing/backspace/history/cursor got garbled in a real
terminal (fine when piped, which has no line editor).

Now: the dim context line is printed with println!() ABOVE the prompt, the
readline prompt is plain "neurosploit› " (correct width), and the magenta color
is applied via Highlighter::highlight_prompt (display-only, doesn't affect width).
2026-07-01 23:00:15 -03:00
..