/xxWordlistDiff

A simple tool to complement wordlist manipulation.

Primary LanguageJavaScript

Wordlist-diff

Description

A simple tool to complement wordlist work. Let's say you have two files - small.txt and large.txt.

small.txt

apple
pineapple
pen

large.txt

apple
test
something
pineapple
melon
pen

After you run index.js, you will have difference.txt containing:

test
something
melon

Requirements

Built-in modules: fs

Usage

Place your remove list in the project directory as small.txt and the list from you will remove - large.txt. Then run:

node index.js
  • Use Unix (LF) line endings.