Crates.io | dicgen |
lib.rs | dicgen |
version | 0.3.0 |
source | src |
created_at | 2023-01-05 23:38:01.707829 |
updated_at | 2023-01-22 08:55:59.76125 |
description | Generate a list with all combinations for given characters, like in brute force attacks |
homepage | |
repository | https://github.com/jhg/dicgen |
max_upload_size | |
id | 751881 |
size | 37,072 |
Generate all possible combinations for given symbols in given interval.
cargo install dicgen
An example generating mobile phone numbers (9 digits starting with 6, 7 or 8):
dicgen --alphabet 0123456789 --init 600000000 --end 899999999 --file phone_numbers.txt
Generated file phone_numbers.txt
will contain:
600000000
600000001
[...]
899999998
899999999
Add to your Cargo.toml
and see examples and reference in documentation.
The Unlicense. See LICENSE for details or visit unlicense.org web.