Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.11 KB

README.md

File metadata and controls

40 lines (32 loc) · 1.11 KB

WPA Cracker

A Dockerized tool for cracking WPA/WPA2 passwords using Hashcat.

Setup

1. Clone the Repository:

$ git clone https://github.com/bastiansg/hcat-wpa-cracker.git

2. Install Make:

$ sudo apt update
$ sudo apt install make

3. Install Docker

Follow the instructions here to install Docker and include the compose plugin. Ensure that Buildkit is enabled as described here.

4. Install NVIDIA Container Toolkit:

Follow the installation guide here.

Build

To build the Docker image, run:

$ make build

Usage

To run the WPA cracker, use:

$ make run PCAP_FILE=[PCAP_FILE] DICT_FILE=[DICT_FILE]

Replace PCAP_FILE with the path to the capture file containing at least one handshake, and DICT_FILE with the path to the dictionary file used for cracking.

Example

$ make run PCAP_FILE=handshake.cap DICT_FILE=dictionary.txt