hashjack

Open source tool for cracking password hashes.


Keywords
hashjack, brute-force, cracking, hashing, python
License
MIT
Install
pip install hashjack==1.0.4

Documentation

HashJack

Build Status Packagist Packagist Packagist

alt text

Open source tool for cracking hashes built in Python.

Usage

HashJack 1.0.2 - (C) 2017 5kyc0d3r
View this project on Github: https://github.com/5kyc0d3r/hashjack

usage: ./hashjack.py --hash <hash-to-crack> --wordlist <path-to-wordlist> [options]

Required:

  -H, --hash <hash-to-crack>            specify the hash to crack (hash type auto-detected)
  -w, --wordlist <path-to-wordlist>     specify the path to the wordlist file

Options:

  -h, --help                            print this help menu and exit
  -V, --version                         print the hashjack version number and exit
  -v, --verbose                         enable verbose output mode

Supported hash types:
    md5, sha-1, sha-224, sha-256, sha-384, sha-512

HashJack is a tool to easily crack password hashes using a dictionary / wordlist.
The project is licensed under the terms of the MIT license and is available as
FOSS (Free and Open Source Software) on Github. The latest version of this tool
can always be found at https://github.com/5kyc0d3r/hashjack.

Installation

Pip

Hashjack is available on PyPi and can therefore be installed with pip.

  1. $ sudo pip install hashjack

  2. Run hashjack:

    $ hashjack

Install from source

  1. Clone the git repository

    $ git clone https://github.com/5kyc0d3r/hashjack.git

  2. Go into the newly cloned repository directory

    $ cd hashjack

  3. Run the setup.py

    $ sudo python setup.py install

  4. Run hashjack

    $ hashjack

License

This software is licensed under the terms of the MIT License.