Vitalwerks.xml no-ip.com suspect regex
Type: ruleset/website issue
Domain: no-ip.com
215702b1be added this rule, and it contains regex snippet [^$] which I believe always means 'a char, except literal $'. I assume what was intended was 'not end of URL', which is almost the same thing, however . would have achieved that more simply.
> r = RegExp('a[^$]') /a[^$]/ > 'aa'.match(r) [ 'aa', index: 0, input: 'aa' ] > 'a$'.match(r) null