bruteforce

Crates.iobruteforce
lib.rsbruteforce
version0.3.0
sourcesrc
created_at2020-01-04 18:45:40.08852
updated_at2024-05-12 08:17:44.008503
descriptionThis is a no_std-compatible brute force/string generation rust-nightly library
homepagehttps://deeprobin.de/?reference=bruteforce
repositoryhttps://github.com/DeepRobin/bruteforce-rs.git
max_upload_size
id195196
size17,566
Robin Lindner (deeprobin)

documentation

https://docs.rs/bruteforce/

README

bruteforce

Crates.io Crates.io Codacy grade

GitHub Workflow Status GitHub issues Discord

This is the fastest string generation library for brute-forcing or similar. (Supports no-std)

Add to your dependencies


[dependencies]
bruteforce = "0.3.0"

Example

use bruteforce::BruteForce;
let mut brute_forcer = BruteForce::new(charset!("ABCDEFGHIJKLMNOPQRSTUVWXYZ"));

const password: &'static str = "PASS";
for s in brute_forcer {
    if s == password.to_string() {
       println!("Password cracked");
       break;
    }
}

Contribution

If you want you can contribute. We need people, who write better documentation, optimize algorithms, implement more algorithms, finding bugs or submitting ideas.

Commit count: 128

cargo fmt