Customizable wordlist generator with advanced pattern.
Project description
Pattern-based wordlist generation tool
Installation • Usage • Contributing
Installation
[!NOTE]
It is recommended to install usingpipxorpipfor the PyPI version.
[!NOTE]
The PyPI package has been renamed fromfuse-tooltofuse-generator.
| Method | Notes |
|---|---|
pipx install fuse-generator |
pip may be used in place of pipx |
git clone https://github.com/pwnfo/fuse.git && cd fuse && pip install . |
Clone and install directly from GitHub |
General usage
To generate a wordlist from a simple expression:
fuse "/l{2,4}"
To combine files with generators:
fuse "^:^" names.txt pass.txt
Outputs can be manipulated, filtered, and saved.
$ fuse --help
usage: fuse [options] <expression> [<files...>]
___ _ _ __ ___
| __|| | |/ _|| __|
| _| | U |\_ \| _|
|_| |___||__/|___|
v3.1.2
-h, --help show this help message and exit
-v, --version show version message and exit
-o, --output <path> write the wordlist in the file
-f, --file <path> files with different expressions
-q, --quiet use quiet mode
-s, --separator <word>
separator between entries
-b, --buffer <bytes> buffer size in wordlist generation
-w, --workers <1-64> number of workers (default is 1)
-F, --filter <regex> filter generated words using a regex
-n, --non-interactive
disable interactive prompt before execution
--from <word> start writing the wordlist with <word>
--to <word> ends writing the wordlist with <word>
Powerful pattern-based wordlist generation tool.
Developed by Ryan R. <pwnfo@proton.me>
Expression basics
- Literal characters produce themselves.
- Built-in classes and bracketed classes
[...]produce one item per position. - Concatenation combines positions: each position picks one value from its token and concatenates.
Example:
$ fuse "/l{2,3}"
# output: aa, ab, ac, ..., ZY, ZZ
Character classes
| Symbol | Meaning |
|---|---|
/l |
letters (a–z, A–Z) |
/a |
lowercase letters (a–z) |
/A |
uppercase letters (A–Z) |
/d |
digits (0–9) |
/h |
lowercase hexadecimal (0–9, a–f) |
/H |
uppercase hexadecimal (0–9, A–F) |
/s |
space |
/o |
octal digits (0–7) |
/p |
special characters |
/N |
newline (\n) |
Example: /l/l generates all two-letter combinations (upper and lower case).
Custom classes and unions
[abc]selects one character froma,b, orc.- Use
|to separate full-word alternatives (each treated as a multi-character token):[admin|root|123]insertsadminORrootOR123at that point.
Quantifiers
{N}— repeat exactly N times{min,max}— repeat between min and max times (inclusive)?— optional (0 or 1 time)
Examples:
$ fuse "[XYZ]{3}" # XXX, XXY, ..., ZZZ
$ fuse "[XYZ]{2,5}" # XY, XZ, ..., XYZXY
$ fuse "Ryan?/d" # Rya0, Rya1, ..., Ryan9
$ fuse "[XYZ]?Ryan" # Ryan, XRyan, YRyan, ZRyan
Numeric ranges
#[1-10]→ generates 1,2,3,4,5,6,7,8,9,10#[1-10:2]→ generates 1,3,5,7,9#[2-10:2]→ generates 2,4,6,8,10
These numeric ranges can be used in any position of an expression.
Files and placeholders
Use ^ in an expression as a placeholder for the next file argument. Each ^ consumes one file and iterates over its lines:
$ fuse "^/d" names.txt
# output: Bob0, Bob1, ..., Ana0, Ana1, ...
$ fuse "^-^" names.txt years.txt
# output: Bob-1990, Ana-1991, Ryan-1992, ...
Prefix a filename with // to treat it as an inline expression instead of a file path.
Escaping special characters
Use \ to escape special characters.
$ fuse "\/d/d"
# output: /d/0, /d/1, ..., /d/9
Contributing
We welcome contributions to Fuse! Whether it's adding new features, improving documentation, or fixing bugs, your help is appreciated.
Feel free to open an issue or submit a pull request on our GitHub repository at pwnfo/fuse.
Star History
License
MIT © Ryan R. <pwnfo@proton.me>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fuse_generator-4.0.1.tar.gz.
File metadata
- Download URL: fuse_generator-4.0.1.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.5 Linux/6.12.74+deb13+1-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
769213bca64ad3c68b7c9d0078ebaddf8dea85b434cad281d7e9eb648f59d6f1
|
|
| MD5 |
c4ac3b816507c46ac47ed5f529589a55
|
|
| BLAKE2b-256 |
e4c3d9072f424145182565f4267ca7a805daf1659e0f0844da0f5c9f3f3d8e8e
|
File details
Details for the file fuse_generator-4.0.1-py3-none-any.whl.
File metadata
- Download URL: fuse_generator-4.0.1-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.5 Linux/6.12.74+deb13+1-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29dd0d6df0d817fe6af14bcdc024a5b93896d2449d3e08cf86b8c71c12f2f0fc
|
|
| MD5 |
5037404f423291a90bf03d1af5b2b6ec
|
|
| BLAKE2b-256 |
237cfc576f7f2be40bc9a17f6ed8cf12dcac9a460c39178b253003d76ffda3d2
|