Block IPv6 unspecified feed URLs (#15)

This commit is contained in:
Autowebassat-blip 2026-06-12 06:06:03 +02:00 committed by GitHub
parent 9942ef8dc6
commit 73e2464b30
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -78,6 +78,7 @@ function isBlockedIp(value: string) {
return isBlockedIp(`${high >> 8}.${high & 255}.${low >> 8}.${low & 255}`);
}
return (
normalized === "::" ||
normalized === "::1" ||
normalized.startsWith("fc") ||
normalized.startsWith("fd") ||