From 444cf191e4f9120e54758d0c3e5018c6f231ee3a Mon Sep 17 00:00:00 2001 From: Adir Shitrit Date: Sat, 8 Nov 2025 12:26:48 +0200 Subject: [PATCH] improve CLI help text with detailed description --- ghost-cli/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ghost-cli/src/main.rs b/ghost-cli/src/main.rs index 7e9f64c..1fa728f 100644 --- a/ghost-cli/src/main.rs +++ b/ghost-cli/src/main.rs @@ -9,6 +9,9 @@ fn main() -> Result<()> { let matches = Command::new("ghost") .version("0.1.0") .about("Cross-Platform Process Injection Detection Framework") + .long_about("Ghost scans running processes for signs of code injection, \ + process hollowing, and other malicious techniques. \ + Supports Windows and Linux platforms with kernel-level monitoring.") .arg( Arg::new("format") .short('f')