initiate6 / PSKracker

An all-in-one WPA/WPS toolkit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview License: GPL v3

PSKracker is a collection of WPA/WPA2/WPS default algorithms/password generators/pingens written in C.

Requirements

GCC compiler

Setup

Download

git clone https://github.com/soxrok2212/pskracker

Build

cd pskracker/src
make

Install

sudo make install

Usage

Usage: pskracker <arguments>

Required Arguments:
	
	-t, --target	: Target model number

Optional Arguments:
	-b, --bssid	: BSSID of target
	-W, --wps	: Output possible WPS pin(s) only
	-s, --serial	: Serial number
	-f, --force	: Force full output
	-h, --help	: Display help/usage

Usage Example

pskracker -t <target> -e <security/encryption type> -s <serial number> -m <mac address>

Supported Models

Types: bruteforce and psk Bruteforce means the output of PSKracker should be piped into a password recovery tool, such as Hashcat. Psk means you will be given one (or a handful) of possible keys.

ATT Arris NVG589 [bruteforce]
ATT Arris NVG599 [bruteforce]

Comcast/Xfinity Cisco DPC3939 [psk][bssid]
Comcast/Xfinity Cisco DPC3941 [psk][bssid]
Comcast/Xfinity Arris TG1682G [psk][bssid]

Targeted Example

$ pskracker -t nvg599
  ...
  aaae7uas5wrj
  aaae7v3qrvbu
  ...
$ pskracker -t dpc3941 -b 112233445566
  PSK: 5756C3915966657704

Supported OS

PSKracker should compile on macOS, Windows (with cygwin), and any Linux system.
It has been tested on macOS High Sierra 10.13.2, Windows 10, and Ubuntu 16.04.
Embedded systems are not supported, though may still work. PSKracker is intended to be run on true pentesting environments (Desktop/Workstation/Laptop). Some psk generators (not bruteforce) are still suitable for embembedded systems, but I will not provide support due to the nature of the tool.

Acknowledgements

Thank you to rofl0r, wiire and datahead for my first C endeavors!
Thank you to AAnarchYY for research dedication and motivation.

Disclaimer

This project is intended for testing and securing your own networks or networks you have permission to audit. This is not intended to be used maliciously.

In publishing these documents and source code, I (and other developers/contributors) take no responsibility for your actions. What you do with everything in this repository, as well as any information online, is your responsibility. Use this repo wisely. In light of anything I may have failed to mention regarding laws to any country or civilized region, this does not grant the excuse to include the developers or contributors in any way in your legal statements or prosecutor. Thank you.

References

Xfinity Home Security Network Algorithm

ATT NVG589 and NVG599 Algorithm

About

An all-in-one WPA/WPS toolkit

License:GNU General Public License v3.0


Languages

Language:C 97.3%Language:Makefile 2.7%