Crates.io | brute_forcing |
lib.rs | brute_forcing |
version | 0.1.1 |
source | src |
created_at | 2022-10-31 22:07:28.178937 |
updated_at | 2022-11-01 21:08:01.955955 |
description | Library to easily loop over values using brute-force |
homepage | https://github.com/divad1196/brute_forcing |
repository | https://github.com/divad1196/brute_forcing |
max_upload_size | |
id | 702437 |
size | 10,211 |
An easy way to generate strings for brute-forcing
for text in StringBruteForce::new("abcdefghijklmnopqrstuvwxyz").take(1_000_000) {
println!("{}", text);
}