Administración del filtro antiabusos

Diferencias entre versiones

ElementoVersión desde 18:44 25 dic 2021 por Sargento de HierroVersión desde 17:20 16 feb 2024 por Anibal Maysonet
Información básica
Notas:
Importado de http://en.wikipedia.org/wiki/Special:AbuseFilter/135
Importado de http://en.wikipedia.org/wiki/Special:AbuseFilter/135


Comentarios originales:
Comentarios originales:


Catch copy/paste vandalism like hahahahahahahahahahahahaha. --Wknight94
Catch copy/paste vandalism like hahahahahahahahahahahahaha. --Wknight94


This doesn't need to be private. -BJ
This doesn't need to be private. -BJ


This has far too many false positives to be set to disallow... Not to mention that it seems to block people from using "..." and "'''''" (for bold/italic), amongst other things. --Conti
This has far too many false positives to be set to disallow... Not to mention that it seems to block people from using "..." and "'''''" (for bold/italic), amongst other things. --Conti


It can at least warn.  "'''''''" problem is fixed now.  Added curly brace exception too.  Need example of "..." since at least 7 occurrences are needed to trigger. --Wknight94
It can at least warn.  "'''''''" problem is fixed now.  Added curly brace exception too.  Need example of "..." since at least 7 occurrences are needed to trigger. --Wknight94


Changed title to something more neutral. --Conti
Changed title to something more neutral. --Conti


Para que no salte en tablas... --Xana 26 Mar 2020
Para que no salte en tablas... --Xana 26 Mar 2020
Too many false positives - mostly in reference URLs.  Unless someone has a clever way to fix, this is causing more harm than good IMHO.
Too many false positives - mostly in reference URLs.  Unless someone has a clever way to fix, this is causing more harm than good IMHO.


Agreed, please do not enable this filter without substantial changes, and substantial log only testing. -Prodego
Agreed, please do not enable this filter without substantial changes, and substantial log only testing. -Prodego


removing the quote, it was triggered by '''xxxx''' in certain cases -- Luk
removing the quote, it was triggered by '''xxxx''' in certain cases -- Luk
The filter should ignore urls. - Ruslik
The filter should ignore urls. - Ruslik


Ignoring all edits with URLs in them isn't a good idea. I've made it a bit more complex, actually checking if a link contains repeating chars. If any added link contains added chars, it stops. Theoretically we could do all sorts of counting to make sure there isn't a link with repeating chars AND other repeating chars, but I think that would just eat away at needless conditions, considering it is likely very rare. -Prodego
Ignoring all edits with URLs in them isn't a good idea. I've made it a bit more complex, actually checking if a link contains repeating chars. If any added link contains added chars, it stops. Theoretically we could do all sorts of counting to make sure there isn't a link with repeating chars AND other repeating chars, but I think that would just eat away at needless conditions, considering it is likely very rare. -Prodego


Turning out not to be too useful and the filter is overwrought now.  Disabling.  -Wknight94
Turning out not to be too useful and the filter is overwrought now.  Disabling.  -Wknight94
Merged testing edit summary from 292 - Shirik 12 Feb 2010
Merged testing edit summary from 292 - Shirik 12 Feb 2010
Optimized summary block - Shirik 12 Feb 2010
Optimized summary block - Shirik 12 Feb 2010




--- Quito  
--- Quito  
article_namespace != 2  por estar implicado en & (article_namespace == 0)
article_namespace != 2  por estar implicado en & (article_namespace == 0)


Descripción pública: de 'PRUEBAS - Caracteres repetidos' a 'Pruebas: Caracteres repetidos'. Oscar_.
Descripción pública: de 'PRUEBAS - Caracteres repetidos' a 'Pruebas: Caracteres repetidos'. Oscar_.


Reemplazando variable obsoleta. --SRuizR 11/11/2020
Reemplazando variable obsoleta. --SRuizR 11/11/2020


Cambio “autoconfirmed” por “confirmed” para que a los confirmados no les salte. Sargento de Hierro 25/12/2021
Cambio “autoconfirmed” por “confirmed” para que a los confirmados no les salte. Sargento de Hierro 25/12/2021
Lleva años sin disparar el added_lines, agrego paréntesis. Compare con [[Especial:RegistroAbusos/15778520]]. --Anibal Maysonet 16/feb/2024
Condiciones de filtro
Condiciones:
!("confirmed" in user_groups)
!("confirmed" in user_groups)
& (page_namespace == 0)  
& (page_namespace == 0)  
& !("http" in added_lines)
& !("http" in added_lines)
& (
& (
texto := "([^_:*'|=}{-]{1,9})\1{6}";
texto := "([^_:*'|=}{-]{1,9})\1{6}";
(
(
   rmwhitespace(added_lines) rlike texto
   rmwhitespace(added_lines) rlike texto
   & !(added_lines rlike "\[https?:\/\/\w*" + texto + ".*?\]")
   & !(added_lines rlike ("\[https?:\/\/\w*" + texto + ".*?\]"))
   & !(added_lines rlike "\{\|.*" + texto + ".*\|\}")
   & !(added_lines rlike ("\{\|.*" + texto + ".*\|\}"))
) | (
) | (
   rmwhitespace(summary) rlike "([^_:*'|=}{-]{1,9})\1{6}")
   rmwhitespace(summary) rlike texto)
   & !("http" in summary)
   & !("http" in summary)
)
)