Changes between Version 128 and Version 129 of BadContent


Ignore:
Timestamp:
Dec 4, 2023, 9:05:56 AM (3 years ago)
Author:
Michael Koch
Comment:

add regular expression

Legend:

Unmodified
Added
Removed
Modified
  • BadContent

    v128 v129  
    3232(?i)regards.{0,5}http
    3333(?i)^.*(appreciate|amazing|great|regards|thank).*http.*$
     34(?i)^.*(appreciate|amazing|great|regards|thank).*www.*$
    3435}}}
    3536
     
    5051|| (aa|bb|cc).{0,8}(dd|ee|ff) || matches if any of the keywords from the first set is followed by 0 to 8 of any characters and then followed by any of the keywords from the second set ||
    5152|| regards.{0,5}http || matches if "regards" is followed by "http" with zero to five of any characters in between ||
    52 || !^.*regards.*http.*$ || matches if "regards" is followed by "http" in the same line, with any number of any characters before, between and after the patterns ||
     53|| !^.*regards.*http.*$ || matches if "regards" is followed by "http" in the same line, with any number of any characters before, between and after the patterns. This seems not to work, it's unclear why. ||
    5354
    5455Search patterns can be duplicated for higher weight, if false positives are very unlikely.