Differences between versions

ItemVersion from 07:14, 6 May 2018 by The AnomeVersion from 18:33, 12 May 2018 by The Anome
Basic information
Notes:
Exploratory filter; looks for new accounts containing strings with 8 consecutive consonants. Just intended for logging at the moment, to see how common these names are, and to what extent it is a good detector of bad usernames.
Exploratory filter; looks for new accounts containing strings with NINE consecutive consonants. Just intended for logging at the moment, to see how common these names are, and to what extent it is a good detector of bad usernames.
 
So far, it's looking pretty good, even at 8 characters. Upgrading threshold to 9 to make it even more selective.-- The Anome, 12 May 2018
Filter conditions
Conditions:
(documentation)
action == 'createaccount' &
action == 'createaccount' &
!('override-antispoof' in user_rights) &
!('override-antispoof' in user_rights) &
(
(
lcase(accountname) rlike "[bcdfghjklmnpqrstvwxz]{8}"
lcase(accountname) rlike "[bcdfghjklmnpqrstvwxz]{9}"
)
)