Abuse filter management

Abuse Filter navigation (Home | Recent filter changes | Examine past edits | Abuse log)
Jump to navigation Jump to search

Differences between versions

ItemVersion from 00:39, 29 October 2024 by Codename NoresteVersion from 15:23, 6 March 2025 by Codename Noreste
Basic information
Notes:
New filter that tracks emojis being added to pages but the sandbox and user(-talk pages); tag-only for now. Taken from https://meta.wikimedia.org/wiki/Special:AbuseFilter/110, but I took out conditions that are not relevant to Test Wiki. [UPDATE: Excluded revert summaries.] -- Codename Noreste, May 28 2024
New filter that tracks emojis being added to pages but the sandbox and user(-talk pages); tag-only for now. Taken from https://meta.wikimedia.org/wiki/Special:AbuseFilter/110, but I took out conditions that are not relevant to Test Wiki. [UPDATE: Excluded revert summaries.] -- Codename Noreste, May 28 2024


Some changes were done to avoid false positives such as [[Special:AbuseLog/6212]] [UPDATE: I switched to exclude "/" as well by using contains_any]. -- Codename Noreste, June 25 2024
Some changes were done to avoid false positives such as [[Special:AbuseLog/6212]] [UPDATE: I switched to exclude "/" as well by using contains_any]. -- Codename Noreste, June 25 2024


Lowered the edit count, and used equals_to_any. --Codename Noreste 00:39 29 Oct 2024
Lowered the edit count, and used equals_to_any. --Codename Noreste 00:39 29 Oct 2024
Updated. --Codename Noreste 15:23 6 Mar 2025
Filter conditions
Conditions:
user_editcount < 10 &
!equals_to_any(page_namespace, 2, 3) &
!equals_to_any(page_namespace, 2, 3) &
!(user_groups rlike "autopatrol|autoreview|sysop|bot") &
(
(
     emoji := "[πŸŒ€-πŸ™πŸš€-πŸ›ΌπŸ€Œ-🧿🩰-πŸ«Άβ˜€-β˜„β˜‡-♬♰-βœ’βœ™-➿۩]";
     emoji := "[πŸŒ€-πŸ™πŸš€-πŸ›ΌπŸ€Œ-🧿🩰-πŸ«Άβ˜€-β˜„β˜‡-♬♰-βœ’βœ™-➿۩]";
     rcount(emoji, added_lines) > 0 &
     added_lines rlike emoji &
     (  
     !(old_wikitext rlike emoji) &
        rcount(emoji, added_lines) >
     !contains_any(page_title, "Sandbox", "Test Wiki:Request for permissions", "/") &
        rcount(emoji, removed_lines)
    !summary irlike "^(?:und(id|o)|rv|revert|restore)"
     ) & (
        /* Exclude the sandbox, RfP, and reverts */
        !contains_any(page_title, "Sandbox", "Test Wiki:Request for permissions", "/") &
        !summary irlike "und(id|o)|\brv[vt]?\b|revert|restore"
    )
)
)