| 开发者 | phm1000 |
|---|---|
| 更新时间 | 2026年1月5日 04:42 |
| 捐献地址: | 去捐款 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
wp_kses_post) for secure personalization.
/wp-content/plugins/ directory.Yes! The blocked IPs list is displayed on the main settings page (first 10 IPs). Click "Manage All Blocked IPs" to see the complete list and manage them.
The plugin has a built-in safeguard that prevents you from blocking your own IP address. You'll receive a warning message showing which IPs were skipped.
CIDR (e.g., 192.168.1.0/24) allows you to block entire IP ranges. /24 blocks 256 addresses (192.168.1.0 to 192.168.1.255), /16 blocks 65,536 addresses, etc.
Yes! Enable "Check Proxy/Cloudflare Headers" in the settings to correctly identify visitor IPs behind proxies or CDNs.
You can select any published WordPress page. The rest of your site remains accessible to everyone.
sipbl_validate_ip_or_cidr() function with separated validation logic for better clarity and security.absint() for all numeric values displayed in admin interface.esc_html().absint() to prevent injection.esc_url_raw().WordPress.Security.EscapeOutput.OutputNotEscaped errors.__ translation functions with esc_html__ and esc_attr__ for secure admin UI rendering.filter_input calls and replaced them with strict manual sanitization using wp_unslash() and sanitize_textarea_field().filter_var with FILTER_VALIDATE_IP for all address and CIDR inputs.