Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md Updates #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ apt update; apt install nmap macchanger

## Install and Configure Plugin

1. While SSH'd in to the Pwnagotchi, create a new folder for third-party Pwnagotchi plugins: `mkdir /root/custom_plugins/`
1. While SSH'd in to the Pwnagotchi, create a new folder for third-party Pwnagotchi plugins: `mkdir /root/custom_plugins/` or use the default custom plugin directory of `/usr/local/share/pwnagotchi/custom-plugins/`

1. Grab the `educational-purposes-only.py` file from this Github repo and put it into that custom plugins directory.

1. Edit `/etc/pwnagotchi/config.toml` and change the `main.custom_plugins` variable to point to the custom plugins directory you just created: `main.custom_plugins = "/root/custom_plugins/"`
1. If you are not using the default location for custom plugins, edit `/etc/pwnagotchi/config.toml` and change the `main.custom_plugins` variable to point to the custom plugins directory you just created: `main.custom_plugins = "/root/custom_plugins"`

1. In the same `/etc/pwnagotchi/config.toml` file, add the following lines to enable and configure the plugin:

```

main.plugins.educational-purposes-only.enabled = true
main.plugins.educational-purposes-only.home_network = "Home Network SSID"
main.plugins.educational-purposes-only.home-network = "Home Network SSID"
chz160 marked this conversation as resolved.
Show resolved Hide resolved
main.plugins.educational-purposes-only.home-password = "Home Network Password" # FIXME: use consistent hyphen or underscores in variable names
main.plugins.educational-purposes-only.minimum-signal-strength = -75 # Minimum accepted RSSI (should be a negative integer)

Expand Down