https://github.com/evilsocket/pwnagotchi-plugins-contrib
User contributed Pwnagotchi plugins.
https://github.com/evilsocket/pwnagotchi-plugins-contrib
Last synced: about 1 year ago
JSON representation
User contributed Pwnagotchi plugins.
- Host: GitHub
- URL: https://github.com/evilsocket/pwnagotchi-plugins-contrib
- Owner: evilsocket
- License: other
- Created: 2019-11-07T09:57:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-11T00:35:49.000Z (about 2 years ago)
- Last Synced: 2025-03-29T12:07:59.878Z (about 1 year ago)
- Language: Python
- Size: 57.6 KB
- Stars: 317
- Watchers: 27
- Forks: 72
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
These are user contributed plugins for [pwnagotchi](https://github.com/evilsocket/pwnagotchi), some of them have not been
completely tested by the dev team, **use them at your own risk**.
In order to use these plugins, clone the repository anywhere on your unit and then add its path to `/etc/pwnagotchi/config.yml` as:
```yaml
main:
custom_plugins: "/path/to/this/folder"
```
Each plugin has its own configuration than must be part of the `main.plugins` section. If for instance you want to enable
the auto_backup plugin, you need to edit your config.yml and add this:
```yaml
main:
custom_plugins: "/path/to/this/folder"
plugins:
auto_backup:
enabled: true
interval: 1 # every day
max_tries: 0 # 0=infinity
files:
- /root/brain.nn
- /root/brain.json
- /root/.api-report.json
- /root/handshakes/
- /root/peers/
- /etc/pwnagotchi/
- /var/log/pwnagotchi.log
commands:
- 'tar czf /root/pwnagotchi-backup.tar.gz {files}'
```
## License
The user contributed plugins are released under the GPL3 license.