Allows setting custom faces in AircrackOnly plugin when a pcap is deleted and in Quickdic when a password is cracked. Signed-off-by: xBelladonna <isabelladonnamoore@noreply.users.github.com>
64 lines
2.5 KiB
Python
64 lines
2.5 KiB
Python
import logging
|
|
import subprocess
|
|
import string
|
|
import re
|
|
import pwnagotchi.plugins as plugins
|
|
|
|
'''
|
|
Aircrack-ng needed, to install:
|
|
> apt-get install aircrack-ng
|
|
Upload wordlist files in .txt format to folder in config file (Default: /opt/wordlists/)
|
|
Cracked handshakes stored in handshake folder as [essid].pcap.cracked
|
|
'''
|
|
|
|
|
|
class QuickDic(plugins.Plugin):
|
|
__author__ = 'pwnagotchi [at] rossmarks [dot] uk'
|
|
__version__ = '1.0.0'
|
|
__license__ = 'GPL3'
|
|
__description__ = 'Run a quick dictionary scan against captured handshakes'
|
|
|
|
def __init__(self):
|
|
self.text_to_set = ""
|
|
|
|
def on_loaded(self):
|
|
logging.info("Quick dictionary check plugin loaded")
|
|
|
|
if 'face' not in self.options:
|
|
self.options['face'] = '(·ω·)'
|
|
|
|
check = subprocess.run(
|
|
('/usr/bin/dpkg -l aircrack-ng | grep aircrack-ng | awk \'{print $2, $3}\''), shell=True, stdout=subprocess.PIPE)
|
|
check = check.stdout.decode('utf-8').strip()
|
|
if check != "aircrack-ng <none>":
|
|
logging.info("quickdic: Found " + check)
|
|
else:
|
|
logging.warning("aircrack-ng is not installed!")
|
|
|
|
def on_handshake(self, agent, filename, access_point, client_station):
|
|
display = agent.view()
|
|
result = subprocess.run(('/usr/bin/aircrack-ng ' + filename + ' | grep "1 handshake" | awk \'{print $2}\''),
|
|
shell=True, stdout=subprocess.PIPE)
|
|
result = result.stdout.decode('utf-8').translate({ord(c): None for c in string.whitespace})
|
|
if not result:
|
|
logging.info("[quickdic] No handshake")
|
|
else:
|
|
logging.info("[quickdic] Handshake confirmed")
|
|
result2 = subprocess.run(('aircrack-ng -w `echo ' + self.options[
|
|
'wordlist_folder'] + '*.txt | sed \'s/\ /,/g\'` -l ' + filename + '.cracked -q -b ' + result + ' ' + filename + ' | grep KEY'),
|
|
shell=True, stdout=subprocess.PIPE)
|
|
result2 = result2.stdout.decode('utf-8').strip()
|
|
logging.info("[quickdic] " + result2)
|
|
if result2 != "KEY NOT FOUND":
|
|
key = re.search('\[(.*)\]', result2)
|
|
pwd = str(key.group(1))
|
|
self.text_to_set = "Cracked password: " + pwd
|
|
display.update(force=True)
|
|
plugins.on('cracked', access_point, pwd)
|
|
|
|
def on_ui_update(self, ui):
|
|
if self.text_to_set:
|
|
ui.set('face', self.options['face'])
|
|
ui.set('status', self.text_to_set)
|
|
self.text_to_set = ""
|