- Move Debug Console from Client Guardian to System Hub - Add Auto-Zoning Rules dedicated view in Client Guardian - Add public pages for Bug Bounty and Crowdfunding (no ACL) - Fix auth-logger to only detect real login attempts - Add private IP whitelist for CrowdSec (RFC1918 ranges) - Update navigation menus across all apps - Bump secubox-auth-logger to v1.2.2 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
703 B
YAML
18 lines
703 B
YAML
# CrowdSec Whitelist for Private IP Ranges
|
|
# Prevents blocking of internal network addresses (RFC1918)
|
|
# These IPs should never be banned as they are local network devices
|
|
|
|
name: secubox/private-ip-whitelist
|
|
description: "Whitelist private/internal IP ranges to prevent self-blocking"
|
|
whitelist:
|
|
reason: "Private IP addresses (RFC1918) - local network devices"
|
|
ip:
|
|
- "127.0.0.0/8" # Localhost
|
|
- "10.0.0.0/8" # Class A private
|
|
- "172.16.0.0/12" # Class B private
|
|
- "192.168.0.0/16" # Class C private
|
|
- "169.254.0.0/16" # Link-local
|
|
- "::1/128" # IPv6 localhost
|
|
- "fe80::/10" # IPv6 link-local
|
|
- "fc00::/7" # IPv6 unique local
|