10.242.xxx.xxx (local IP)

This is where you should report issues arising from the subscription filters.
Locked
switchfoot
Forum Junkie
Forum Junkie
Posts: 122
Joined: Thu May 18, 2017 11:07 am

10.242.xxx.xxx (local IP)

Post by switchfoot »

Easylist is blocking local ip (closes tab)
I can't give you correct IP so just use this one

Code: Select all

10.242.1.1
Caused by filter

Code: Select all

/^https?:\/\/[104\.]{3}[0-9]{1,3}\./$third-party,popup
Matches

Code: Select all

http://10.242.
Hazazon
New Member
New Member
Posts: 2
Joined: Tue Aug 13, 2019 4:31 pm

Post by Hazazon »

While I do not pretend to fully understand regex, I believe that this is written to block everything that starts with

Code: Select all

https://10.x.x.x.x, https://11.x.x.x, https://14.x.x.x, https://40.x.x.x, https://41.x.x.x and https://44.x.x.x...
I'm tired of trying various character combinations in an expression evaluator to find additional matches.

This seems like a rather broad range of IP addresses to be blocking the strings third-party or popup.

For me, this hit on an internal IP 10.31.20.254

Thanks!
User avatar
LanikSJ
Site Owner
Site Owner
Posts: 1808
Joined: Thu Feb 15, 2007 7:44 am
Location: /dev/null

Post by LanikSJ »

I use https://regex101.com for this type of stuff. At least this is what their explanation was:

Code: Select all

Match a single character present in the list below [104\.]{3}
{3} Quantifier — Matches exactly 3 times
104 matches a single character in the list 104 (case sensitive)
\. matches the character . literally (case sensitive)
Match a single character present in the list below [0-9]{1,3}
{1,3} Quantifier — Matches between 1 and 3 times, as many times as possible, giving back as needed (greedy)
0-9 a single character in the range between 0 (index 48) and 9 (index 57) (case sensitive)
I have several things on my network with a 10.x.x.x if they stopped working I'd know about them. :mrgreen:
"If it ain't broke don't fix it."
Hazazon
New Member
New Member
Posts: 2
Joined: Tue Aug 13, 2019 4:31 pm

Post by Hazazon »

Well, the key to that regex that doesn't cause it to nick everything starting with

Code: Select all

https://10.x.x.x
is the string search at the end, looking for popup or third-party. As I mentioned, the rule seems overly broad by accident. Might as well block all IP addresses that contain popup or third-party.

In my case, this is blocking the login interface for my Netscalers. And I go into these a half-dozen times a month so the rule change must be relatively recent.

Actually, I did find this listed here https://github.com/easylist/easylist/issues/3917

Hopefully this'll get sorted through that issue.
User avatar
LanikSJ
Site Owner
Site Owner
Posts: 1808
Joined: Thu Feb 15, 2007 7:44 am
Location: /dev/null

Post by LanikSJ »

Hazazon wrote: Tue Aug 13, 2019 10:09 pm Actually, I did find this listed here https://github.com/easylist/easylist/issues/3917
@fanboy would have to look into this.
"If it ain't broke don't fix it."
User avatar
smed79
Liste AR/FR Author
Liste AR/FR Author
Posts: 15839
Joined: Sun Jan 17, 2010 4:00 am
Location: EasyList Forum

Post by smed79 »

•► Read RULES / Use forum Search
••► Don't post clickable links
•••►Upload screenshots at imgbb.com
Locked