Duplicut : Remove Duplicates From MASSIVE Wordlist, Without Sorting It

Duplicut is a modern 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
  • [TODO]: Use huge memory pages to increase performance

Limitations

  • Any line longer than 255 chars is ignored
  • Heavily tested on Linux x64, mostly untested on other platforms.

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, then each one is tested against next chunks.

So complexity is equal to 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
R K

Recent Posts

Set Up Nginx Server Blocks on Ubuntu 18.04: Host Multiple Sites

Nginx server blocks let you run more than one website on a single server. Each block…

57 minutes ago

Install Tor Browser on Ubuntu 18.04: Anonymous Browsing Guide

Tor Browser is a modified version of Firefox that routes all your web traffic through the Tor…

1 hour ago

Install Vagrant on Ubuntu 18.04: Complete Setup Guide for Developers

Vagrant is a command-line tool that makes it easy to build and manage virtual machine environments.…

3 hours ago

Install VMware Tools on Ubuntu 18.04: Open VM Tools and ISO Guide

VMware Tools is a set of drivers and services that improves the performance of an Ubuntu…

3 hours ago

Install Apache Maven on Ubuntu 18.04: Stable or Latest Version

Java developers use project management tools to automate building their applications. Apache Maven is an open source…

3 hours ago

Install Mono on Ubuntu 18.04: C# Compiler and Runtime Guide

Running programs built for Microsoft's framework on a Linux system is easier than you think. Mono is…

1 day ago