Why is it that the forum has so much porn spam?

Let the flames roll in...
Err... yeah, well I suppose you can talk about other stuff as well, maybe?

Moderator: Halleck

Post Reply
triato
Merchant
Merchant
Posts: 45
Joined: Tue May 23, 2006 6:29 pm

Why is it that the forum has so much porn spam?

Post by triato »

I have never seen porn spam in other forums, why is it that this forum has so much. Can/will this be fixed?
loki1950
The Shepherd
Posts: 5841
Joined: Fri May 13, 2005 8:37 pm
Location: Ottawa
Contact:

Post by loki1950 »

Part of the problem is that we do not use the latest version of phpBB which would change the registration process to better detect bots as most of the spammers are bots till then it requires human response mine and i have to sleep sometime hope that explains some of the reasons.

Enjoy the Choice :)
my box::HP Envy i5-6400 @2Q70GHzx4 8 Gb ram/1 Tb(Win10 64)/3 Tb Mint 19.2/GTX745 4Gb acer S243HL K222HQL
Q8200/Asus P5QDLX/8 Gb ram/WD 2Tb 2-500 G HD/GF GT640 2Gb Mint 17.3 64 bit Win 10 32 bit acer and Lenovo ideapad 320-15ARB Win 10/Mint 19.2
bgaskey
Elite Venturer
Elite Venturer
Posts: 718
Joined: Wed Mar 07, 2007 9:05 pm
Location: Rimward of Eden

Post by bgaskey »

That should be on safemode's v0.6 changelog. it has nothing to do with the game itself, but it is nonetheless completely necessary. I use the word 'necessary' in every other post, and I still can't spell it :? . god bless spellcheck :wink:
ace123
Lead Network Developer
Lead Network Developer
Posts: 2560
Joined: Sun Jan 12, 2003 9:13 am
Location: Palo Alto CA
Contact:

Post by ace123 »

Sadly, it's a lot of work to fix the forums.

I can see if there's a way to disable images in the "off topic" forum...
loki1950
The Shepherd
Posts: 5841
Joined: Fri May 13, 2005 8:37 pm
Location: Ottawa
Contact:

Post by loki1950 »

I can see if there's a way to disable images in the "off topic" forum...
That would be useful but i have feeling the bots will spam the rest of the forum in response :roll:

Enjoy the Choice :)
my box::HP Envy i5-6400 @2Q70GHzx4 8 Gb ram/1 Tb(Win10 64)/3 Tb Mint 19.2/GTX745 4Gb acer S243HL K222HQL
Q8200/Asus P5QDLX/8 Gb ram/WD 2Tb 2-500 G HD/GF GT640 2Gb Mint 17.3 64 bit Win 10 32 bit acer and Lenovo ideapad 320-15ARB Win 10/Mint 19.2
Xit
Bounty Hunter
Bounty Hunter
Posts: 186
Joined: Mon Aug 06, 2007 2:34 am
Location: Cambs

Post by Xit »

Could images be made a privalege requiring at least X many posts? Or would that require upgrading the whole forum anyway? :?
Save The Economy
http://vegastrike.sourceforge.net/forum ... hp?t=10605

My boxes: Dual Opteron 280s, Geforce 7600, 2GB RAM, but waiting for a new PSU! grrr...
500 MHz Compaq laptop that gives DC electric burns
ace123
Lead Network Developer
Lead Network Developer
Posts: 2560
Joined: Sun Jan 12, 2003 9:13 am
Location: Palo Alto CA
Contact:

Post by ace123 »

I'll look into it again at some point.

The PHP code was pretty messy (as php tends to become when it's so huge)... but it should be possible to do something simple like a # of posts check before displaying some things.

I wish I could make it not 'helpfully' include any image files it finds as part of the post...

Or, we could upgrade to PhpBB 3? Don't know if I feel up to doing it but it shouldn't be that hard.
Dilloh
Elite Hunter
Elite Hunter
Posts: 1149
Joined: Mon Aug 14, 2006 3:56 pm
Location: Black Forest, Germany

Post by Dilloh »

You could as well try to implement those textual confirmation stuffs for posts, as seen on many other forums. Though I personally think it's a loss of comfort, but maybe you'll find a way to remove that stuff either individually (personal id proved), or after X posts.

Would be nice to find out how many of that spam stuff is actually being posted by bots.
ace123
Lead Network Developer
Lead Network Developer
Posts: 2560
Joined: Sun Jan 12, 2003 9:13 am
Location: Palo Alto CA
Contact:

Post by ace123 »

Okay I got so fed up with two porn spam posts today (Luckily thanks to Firefox's "Load Images Automatically" checkbox I can safely exterminate them.)

Anyway this problem should be a done deal. I have not stopped spam posts, but I ran it through a script that modifies all URL's ("www.", "http://") so as to not become links, and also remove all [IMG] and [URL] tags in posts:

posting.php, line 560-576:

Code: Select all

                               if ($userdata['user_posts'] < 1 && $mode == 'newtopic') {
                                        $oldmsg = $message;
                                        $message = str_replace('http://','', $message);
                                        #$message = str_replace('[url','[urltagremoved', $message);
                                        #$message = str_replace('[URL','[urltagremoved', $message);
                                        $message = str_replace('[img','[imgtagremoved', $message);
                                        $message = str_replace('[IMG','[imgtagremoved', $message);
                                        $message = str_replace('www.','www .', $message);
                                        if ($message != $oldmsg) {
                                                $message .= '\n\n\n*****SPAM prevention*****\nSpammers are not allowed to post links to other sites in the first topic you make.\n';
                                                $message .= "If you are not a spammer, you can now click edit, uncheck ''Disable BBCode''  and fix up URLs in links, or reply to this post.\n\n";
                                                $message .="If this happened in error or you have a better way of preventing SPAM, please private message ''ace123''.]\n    -- forums/posting.php, line 560";
                                        }
                                        // Just in case:
                                        $html_on = 0;
                                        $bbcode_on = 0;
                                }
This won't stop spammers from posting, but it should stop most of them from including images... it's also a good test to see if they are humans making these posts, or actual bots (non-idiot humans can easily circumvent this so I might need to add tests for registration date or something else)
bgaskey
Elite Venturer
Elite Venturer
Posts: 718
Joined: Wed Mar 07, 2007 9:05 pm
Location: Rimward of Eden

Post by bgaskey »

From the test it seems to work right :)
Post Reply