PDA

View Full Version : The spam is getting out of control...



Nekroliun
10-23-2016, 05:15 PM
1 month ago the activuty stream was 4 real posts and 1 spam, das ok...

But now its 83 spam and 1 real post... seriously, someone needs to work on the security...

ill sacrifice my alt acc if u want...

Eubedyen
10-23-2016, 05:39 PM
I agree its getting worse by the day

Nekroliun
10-23-2016, 06:20 PM
SOMEONE AGREES! GIMME A NOBLE PRIZE!

But seriously someone needs to be sacrificed

The Educated fool
10-23-2016, 07:13 PM
You're not wrong, good Nekro. :cool: This board has more spam than any other active board I've ever seen.

Can't blame Kaijester for being frustrated with cleaning it up by himself either, with all the suggestions that he's made to the admins about how to limit it showing up in the first place...

Ancient Mariner
10-24-2016, 09:44 AM
Damn, since my last visit yesterday, 6 pages of new fake posts.. the forum is getting unusable

RACCAR-8000
10-24-2016, 07:49 PM
I can't find anything in all this nonsense!!! I need multiplayer info

MrFreeze
10-24-2016, 10:43 PM
Looks like someone's trying to clean it up, but it keeps on coming. Thanks for trying though

Aristo4
10-24-2016, 10:47 PM
Yeah, good effort today...but there are things that can be done so everything gets done automatically.
It will continue to be full of spam before someone delete's them again :p

edit: as you see more comes, while mods are deleting. Tomorrow full of it again.

Browno
10-24-2016, 11:07 PM
Try to add something to prove you are human before posting? Like a captcha

PsychoEddie
10-25-2016, 03:14 AM
Start banning IPs from connecting to the web server, starting with TOR exit nodes, there isn't any legitimate reason someone would need to hide their actual ip address from forum mods.

Example:

# create a new set for individual IP addresses
ipset -N tor iphash
# get a list of Tor exit nodes that can access $YOUR_IP, skip the comments and read line by line
wget -q https://check.torproject.org/cgi-bin/TorBulkExitList.py?ip=$YOUR_IP -O -|sed '/^#/d' |while read IP
do
# add each IP address to the new set, silencing the warnings for IPs that have already been added
ipset -q -A tor $IP
done
# filter our new set in iptables
iptables -A INPUT -m set --match-set tor src -j DROP