Skip to content

Simple C++ program that generates a custom dictionary to perform dictionary attacks.

License

Notifications You must be signed in to change notification settings

SaurabhSangpal/dictionary-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dictionary-generator

Simple C++ program that generates a dictionary to perform dictionary attacks.

Travis-CI Codacy Badge Language grade: C/C++ GitHub license

Prerequisites

CMake

A C++ Compiler.

GCC

Installation Instructions

mkdir bin
cd bin
cmake -DCMAKE_BUILD_TYPE=Release ..
make

Usage Instructions

You can call the program using

./dictionary-generator

You can specify a file that contains the input keywords using

./dictionary-generator <inputfile>

You can also specify an output file using

./dictionary-generator <inputfile> <outputfile>