We are getting bombarded by youtube spam url's for adult sites lately. does anyone have a regex to detect these? seems something that detects mixed cAsE will work.
thank you
I too am riddled with "link spam".. and yes there is a pattern there example "vasF .TECh"
the "." can be with or without space between, the three to four letters before "tech" looks pretty random, and the "tech" can also be "fyi" and "ong". The main pattern here is that there are upper case mixed with lower case in random order. But each case has multiple capital letters.
So... how to go about to make a regex that would kill this off for good?
This is what I have come up with so far. It seems to work fairly well. We had one false hit with hundreds of good ones. The guy who was affected was pretty P.O.d though. I told him to join for 99 cents to exempt himself but he didn't want to.
~/([a-z][A-Z])/g
~/([.][a-z])/g
~/([.][A-Z])/g
~/([A-Z][A-Z][a-z])/g
~/([A-Z][A-Z][A-Z][.])/g
~/(\b\p{Lu}{3,3}\b[.])/g
Please post if you come up with anything better. Thank you
Hey @Cosmic Hedgehog and @Smart Narwhal!
Another option could be to use the Links Spam Protection, you can exempt your Members, and for the others you can !permit them when you feel they're not bots.
Didn't find your answer? The community is on Discord.
Ask on Discord