evilsocket 4ca7b58040
Merge pull request #3 from tomellericcardo/gpio_shutdown_plugin
add gpio_shutdown plugin and yaml configuration file
2019-12-07 14:21:56 +02:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-12-04 20:17:10 +05:30
2019-12-04 20:18:45 +05:30
2019-11-07 10:58:54 +01:00
2019-11-09 19:00:22 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00
2019-11-07 10:58:54 +01:00

These are user contributed plugins for 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:

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:

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.

Description
Languages
Python 100%