From 2621c908c31b70a983dacf5482600c116ee35102 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Tue, 22 Oct 2024 19:49:29 -0400 Subject: [PATCH] Remove `64:ff9b:` as private network block Related issue: https://github.com/uBlockOrigin/uBlock-issues/issues/3426 --- src/js/static-net-filtering.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 6a2f6c9c3..23343acec 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -3048,9 +3048,6 @@ class FilterIPAddress { if ( ipaddr.startsWith('::ffff:') === false ) { return false; } return this.reIPv6IPv4lan.test(ipaddr); } - if ( c0 === 0x36 /* 6 */ ) { - return ipaddr.startsWith('64:ff9b:'); - } if ( c0 === 0x66 /* f */ ) { return this.reIPv6local.test(ipaddr); }