Skip to content

Commit

Permalink
Update cli.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xnoid authored Feb 24, 2025
1 parent f23434d commit 4cc9aa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::fs;
use anyhow::{Result, anyhow};

#[derive(Parser, Debug)]
#[clap(name = "jwt-crackng", about = "Advanced JWT cracking tool")]
#[clap(name = "jwt-crackng", about = "jwt-crackng: Bruteforce HMACSHA JSON Web Token Secrets")]
pub struct Args {
#[clap(short, long)]
pub token: String,
Expand Down Expand Up @@ -108,4 +108,4 @@ pub fn save_result(output: &PathBuf, secret: &str) -> std::io::Result<()> {
fs::create_dir_all(parent)?;
}
fs::write(output, secret)
}
}

0 comments on commit 4cc9aa2

Please sign in to comment.