nil0x42 / duplicut

Remove duplicates from MASSIVE wordlist, without sorting it (for dictionary-based password cracking)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Duplicut βœ‚οΈ

Quickly dedupe massive wordlists, without changing the order tweet


github workflows codacy code quality lgtm alerts codecov coverage

Mentioned in awesome-pentest

Created by nil0x42 and contributors


πŸ“– Overview

Nowadays, password wordlist creation usually implies concatenating multiple data sources.

Ideally, most probable passwords should stand at start of the wordlist, so most common passwords are cracked instantly.

With existing dedupe tools you are forced to choose if you prefer to preserve the order OR handle massive wordlists.

Unfortunately, wordlist creation requires both:

So i wrote duplicut in highly optimized C to address this very specific need πŸ€“ πŸ’»


πŸ’‘ Quick start

git clone https://github.com/nil0x42/duplicut
cd duplicut/ && make
./duplicut wordlist.txt -o clean-wordlist.txt

πŸ”§ Options

  • Features:

    • Handle massive wordlists, even those whose size exceeds available RAM
    • Filter lines by max length (-l option)
    • Can remove lines containing non-printable ASCII chars (-p option)
    • Press any key to show program status at runtime.
  • Implementation:

    • Written in pure C code, designed to be fast
    • Compressed hashmap items on 64 bit platforms
    • Multithreading support
  • Limitations:

    • Any line longer than 255 chars is ignored

πŸ“– Technical Details

πŸ”Έ 1- Memory optimized:

An uint64 is enough to index lines in hashmap, by packing size info within pointer's extra bits:

πŸ”Έ 2- Massive file handling:

If whole file can't fit in memory, it is split into virtual chunks, in such way that each chunk uses as much RAM as possible.

Each chunk is then loaded into hashmap, deduped, and tested against subsequent chunks.

That way, execution time decreases to at most th triangle number:

πŸ’‘ Throubleshotting

If you find a bug, or something doesn't work as expected, please compile duplicut in debug mode and post an issue with attached output:

# debug level can be from 1 to 4
make debug level=1
./duplicut [OPTIONS] 2>&1 | tee /tmp/duplicut-debug.log

About

Remove duplicates from MASSIVE wordlist, without sorting it (for dictionary-based password cracking)

License:GNU General Public License v3.0


Languages

Language:C 96.4%Language:Shell 2.2%Language:Makefile 0.7%Language:Python 0.6%