Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
Added Logo
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderMaxRanabel committed Jul 21, 2023
1 parent 55b1bb4 commit b97c2ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/discover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub async fn discover(url: String, wordlist: String) -> Result<(), Box<dyn std::
Some(code) => code.to_string(),
None => String::from("Unknown"),
};
println!("{} {} {}", result.green(), word, target.clone().magenta());
println!("{} {} {}", result.clone().green(), word, target.clone().magenta());
}
}
Ok(())
Expand Down
9 changes: 9 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ async fn main() {
let args: Vec<String> = 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" => {
Expand Down

0 comments on commit b97c2ed

Please sign in to comment.