├── .gitignore ├── README.md ├── generate-attacks.py ├── grab_and_convert.sh ├── hashcat ├── hashcat-output.txt ├── hashcat-potfile.txt ├── rules │ ├── 4-digit-append.rule │ ├── best64.rule │ ├── bssid.rule │ ├── d3ad0ne.rule │ ├── mobile.ua │ ├── names.rule │ ├── passphrase-rule1.rule │ ├── passphrase-rule2.rule │ ├── passphrases.rule │ ├── quick-ssid.rule │ ├── rockyou-30000.rule │ ├── ssid-ninja.rule │ ├── ssid.rule │ ├── unix-ninja-leetspeak.rule │ └── wifi.rule └── wordNinjaGenerator.py └── wordlists └── known-wpa-passwords.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/README.md -------------------------------------------------------------------------------- /generate-attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/generate-attacks.py -------------------------------------------------------------------------------- /grab_and_convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/grab_and_convert.sh -------------------------------------------------------------------------------- /hashcat/hashcat-output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hashcat/hashcat-potfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hashcat/rules/4-digit-append.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/4-digit-append.rule -------------------------------------------------------------------------------- /hashcat/rules/best64.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/best64.rule -------------------------------------------------------------------------------- /hashcat/rules/bssid.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/bssid.rule -------------------------------------------------------------------------------- /hashcat/rules/d3ad0ne.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/d3ad0ne.rule -------------------------------------------------------------------------------- /hashcat/rules/mobile.ua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/mobile.ua -------------------------------------------------------------------------------- /hashcat/rules/names.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/names.rule -------------------------------------------------------------------------------- /hashcat/rules/passphrase-rule1.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/passphrase-rule1.rule -------------------------------------------------------------------------------- /hashcat/rules/passphrase-rule2.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/passphrase-rule2.rule -------------------------------------------------------------------------------- /hashcat/rules/passphrases.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/passphrases.rule -------------------------------------------------------------------------------- /hashcat/rules/quick-ssid.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/quick-ssid.rule -------------------------------------------------------------------------------- /hashcat/rules/rockyou-30000.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/rockyou-30000.rule -------------------------------------------------------------------------------- /hashcat/rules/ssid-ninja.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/ssid-ninja.rule -------------------------------------------------------------------------------- /hashcat/rules/ssid.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/ssid.rule -------------------------------------------------------------------------------- /hashcat/rules/unix-ninja-leetspeak.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/unix-ninja-leetspeak.rule -------------------------------------------------------------------------------- /hashcat/rules/wifi.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/rules/wifi.rule -------------------------------------------------------------------------------- /hashcat/wordNinjaGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicXnull/pwnagotchi-scripts/HEAD/hashcat/wordNinjaGenerator.py -------------------------------------------------------------------------------- /wordlists/known-wpa-passwords.txt: -------------------------------------------------------------------------------- 1 | add 2 | some 3 | known 4 | passwords 5 | here 6 | --------------------------------------------------------------------------------