1.0.12 • Published 6 months ago

brute-force-generator v1.0.12

Weekly downloads
5
License
MIT
Repository
github
Last release
6 months ago

brute-force-generator

cli-available node version npm version downloads count size license github-ci

šŸ”Ø Build a dictionary by permuting passed letters (using ES2015+)

Usage

const generate = require('brute-force-generator');

const gen = generate(['a', 'b'], 2);

for (let record of gen) {
    console.log(record); // 'a', 'b', 'aa', 'ab', 'ba', 'bb'
}

CLI

Installation:

npm install -g brute-force-generator

Help:

brute-force-generator --help

Usage: brute-force-generator -a [string] -l [num]

Options:
  --help          Show help                                            [boolean]
  --version       Show version number                                  [boolean]
  -a, --alphabet                                                      [required]
  -l, --length                                                        [required]

Usage:

# Lowercase latin alphabet — abcdefghijklmnopqrstuvwxyz
brute-force-generator -a abcdefghijklmnopqrstuvwxyz -l 5 > latin-5.dic

# Generate infinity wordlist (may take some time 😈)
brute-force-generator -a abcdefghijklmnopqrstuvwxyz -l Infinity

Related

License

The MIT License @ 2019

1.0.12

6 months ago

1.0.11

9 months ago

1.0.10

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

2 years ago

1.0.1

6 years ago

1.0.0

6 years ago