Crates.io | bruteforce |
lib.rs | bruteforce |
version | 0.3.0 |
source | src |
created_at | 2020-01-04 18:45:40.08852 |
updated_at | 2024-05-12 08:17:44.008503 |
description | This is a no_std-compatible brute force/string generation rust-nightly library |
homepage | https://deeprobin.de/?reference=bruteforce |
repository | https://github.com/DeepRobin/bruteforce-rs.git |
max_upload_size | |
id | 195196 |
size | 17,566 |
This is the fastest string generation library for brute-forcing or similar. (Supports no-std)
[dependencies]
bruteforce = "0.3.0"
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;
}
}
If you want you can contribute. We need people, who write better documentation, optimize algorithms, implement more algorithms, finding bugs or submitting ideas.