UNDERCODE COMMUNITY
2.69K subscribers
1.23K photos
31 videos
2.65K files
80.9K links
🦑 Undercode Cyber World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE

Web & Services:
Undercode.help
Download Telegram
Forwarded from Exploiting Crew (Pr1vAt3)
🦑Create your own Wordlist:
The tool Crunch is a wordlist generator used for creating custom wordlists based on specific parameters:

Basic Usage:
./crunch <min-len> <max-len> [charset]

For example:
./crunch 3 7 abcdef

This command generates all combinations of characters abcdef between lengths 3 and 7.

### Options Overview:
- -b: Limit the output file size (in bytes). For example, -b 10MB will stop each file at 10MB.
- -c: Limit the number of lines per file, useful when splitting large wordlists.
- -d: Avoid sequences with too many duplicate characters. E.g., -d 2@ suppresses more than 2 adjacent identical letters.
- -e: Stop at a specific string (useful for large datasets).
- -f: Use predefined character sets from a file (e.g., charset.lst).
- -i: Invert the order of character changes (useful for some cracking methodologies).
- -l: Use literal characters in patterns.
- -o: Specify an output file for the generated list.
- -p: Generate all permutations without repeating characters.
- -t: Use patterns to control string structure (e.g., @@god@@ where @ is replaced with lowercase letters).
- -z: Compress the output directly into formats like gzip, bzip, lzma, or 7z.

### Advanced Examples:
1. Generate a list of passwords with a fixed structure:
   ./crunch 8 8 -t abcd@@@@ -o passwords.txt

Output contains 8-character passwords starting with abcd.

2. Limit to 100 lines per file:
   ./crunch 5 5 abcdef -o START -c 100


3. Create a compressed output:
   ./crunch 4 6 1234 -o wordlist.gz -z gzip


4. Avoid adjacent duplicates:
   ./crunch 5 5 abc -d 2@

Excludes passwords like aabbc.

Crunch is powerful and highly configurable, making it ideal for creating targeted wordlists for penetration testing or other tasks. For detailed documentation, visit the [Crunch SourceForge page](https://sourceforge.net/projects/crunch-wordlist/).