https://github.com/builtmighty/builtmighty-protection
https://github.com/builtmighty/builtmighty-protection
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/builtmighty/builtmighty-protection
- Owner: builtmighty
- Created: 2024-01-24T22:18:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T19:16:03.000Z (about 2 years ago)
- Last Synced: 2024-04-17T21:50:37.023Z (about 2 years ago)
- Language: PHP
- Size: 166 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
🛡️ Built Mighty Protect
## About
Block order spam and fraud with the 🛡️ Built Mighty Protect plugin. With automatic order rate limit and fraud rate limit, which can be fine-tuned, you can stop bad actors in their tracks.
## Installation
Install, as you would any other plugin, and go to WooCommerce > Settings > "🛡️ Built Mighty" tab.
## CLI
The plugin comes with CLI commands, so that you can block or bypass IPs as needed. The following commands are available
### wp protect block
Block commands center around blocking IPs, removing IPs from the block list, and listing the block list.
```
wp protect block add --ip=123.123.123.123
```
Add an IP to the block list.
```
wp protect block remove --ip=123.123.123.123
```
Remove an IP from the block list.
```
wp protect block list
```
Get a list of blocked IPs.
### wp protect bypass
Bypass commands center around allowing IPs to not be banned from access the site or placing orders.
```
wp protect bypass add --ip=123.123.123.123
```
Add an IP to the bypass list.
```
wp protect bypass remove --ip=123.123.123.123
```
Remove an IP from the bypass list.
```
wp protect bypass list
```
Get a list of bypass IPs.
## 1.0.0
* Initial release.