diff --git a/src/discover.rs b/src/discover.rs index 7fee6ca..b45af28 100644 --- a/src/discover.rs +++ b/src/discover.rs @@ -23,7 +23,7 @@ pub async fn discover(url: String, wordlist: String) -> Result<(), Box code.to_string(), None => String::from("Unknown"), }; - println!("{} {} {}", result.green(), word, target.clone().magenta()); + println!("{} {} {}", result.clone().green(), word, target.clone().magenta()); } } Ok(()) diff --git a/src/main.rs b/src/main.rs index c356591..14aa498 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,6 +8,15 @@ async fn main() { let args: Vec = env::args().collect(); //monologue0 --url1 https://discord.com/2 --wordlist3 test.txt4 --filter5 --bycode6 4047 if args.len() > 5 { + let log = r#" + _ __ ___ ___ _ __ ___ +| '_ ` _ \ / _ \| '_ \ / _ \ +| | | | | | (_) | | | | (_) | +|_| |_| |_|\___/|_| |_|\___/ + +──────────────────────────── + "#; + println!("{}", log); let argument = &args[1].to_string(); match argument.as_str() { "--url" => {