This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP | |
| # after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. | |
| # | |
| # This python script generates config text from a list of ip address ranges. | |
| # The list can be easily copy pasted from any table with 2 ip addresses each row. | |
| # | |
| # To filter by country of origin, use tables from https://lite.ip2location.com/ip-address-ranges-by-country | |
| # The raw_ip.txt included in this gist is taken from https://lite.ip2location.com/china-ip-address-ranges | |
| # | |
| # To use, input ip ranges (separated by newline) in raw_ip.txt |
NewerOlder