pwnagotchi-display-password-plugin
pwnagotchi-display-password-plugin copied to clipboard
Pwnagotchi plugin to display the most recently cracked password on the Pwnagotchi face
If there is another pwnagotchi in range, the notification will overlap with what is being displayed by display-password.py.  According to the [documentation](https://pwnagotchi.ai/plugins/#developing-your-own-plugin) there are the two callbacks that might...
https://github.com/c-nagy/pwnagotchi-display-password-plugin/issues/3 By adding: def __init__(self): self.peers_detected = False And: def on_peer_detected(self, agent, peer): self.peers_detected = True def on_peer_lost(self, agent, peer): self.peers_detected = False Then modify def on_ui_update to use self.peers_detected...
This makes it that you can move the text to a different place. This makes it so you can move the text so it doesn't collide with an other plugin...
Hi, how are you? Thanks for creating this plugin, It is extremely useful! In general terms the changes I made were: * Add bash script for an automatic installation of...
The path to the handshakes is hardcoded so if a user (like me) have moved this into the user folder so we can more easily access the handshakes, the potfile...