• I couldn’t believe my eyes when I checked my mail today. I had 32 new mails informing about new comments at my blog (I have to approve them first before those get published). When I checked the mails and comments they were all from the same “person” and the comments make no sense (e.g. “sometimes a cigar is just a cigar” ) so I guess this is a new way of spamming. All were from “free texas holdem” with the e-mail addie: [email protected] (which doesn’t exist) and url: https://www.I’m _a_stupid spammer.com and this “person” or what ever the heck this is has commented on every entry I’ve ever made in my blog. This is just annoying!! Every comment had a different IP (which I’m not sure are the IP’s for real or stolen so I’m afraid to block them if those belong to my friends) has anyone had the same problem? I remember someone posted some time ago about blog spamming.. but what can I do if this goes on? Even right now my outlook is receiving new messages but oh no it’s a different url and e-mail this time! Author : free online poker (IP: 61.66.230.42 , 61.66.230.42) E-mail : [email protected] URL:https://www.I’m _another_stupid spammer.com. what can I do? Is there any way to stop this? ??
    [Moderated: Spammers url’s removed]

Viewing 15 replies - 31 through 45 (of 46 total)
  • I have changed the name of my comments php file as suggested in another thread and it seems to have killed it. Can’t be sure though because one single comment did seem to sneak in but insignificant compared to my previous torrent. But for a quick and very simple fix it certainly seemed to deliver as advertised.

    The poker guy hit me too – first day my blog was up! Thanks everyone for the ideas…

    I started getting blog-spammed by this poker jerk too. It turns out his site is an affiliate of Empire Poker, and he’s violating their affiliate agreement by spamming blogs like this on their behalf. So I suggest everyone here send an email to [email protected] (email address grabbed from their web site) to complain about this spammer and ask that they terminate his affiliate account immediately. His affiliate ID is apparently 1710078. I’ve already done this myself, so I suggest all of you do the same — the more complaints they receive, the better. At least we should be able to keep this jerk from continuing to make money from such annoying behavior.

    Thread Starter Anonymous

    Hmm, I am not so sure that an online poker site even one as repuatable…wait a minutea€?? is going to be to bummed out by a few emails from bloggers. No offense, really. I read the agreement and there is one token reference to spamming under “Fraud Traffic.” Maybe if one of you is an attorney too and could send them something with a little more teeth they would stop him, but I reckon he’s generating some revenue for them. I hate him too, and I guess this isn’t going to hurt, exept to give them more email addresses. I dunno, maybe I’m too bitter.

    Thread Starter Anonymous

    I tried sending an e-mail to the online poker people, that affiliates@… e-mail address does not work.
    Just to let everyone know.

    Moderator James Huff

    (@macmanx)

    I tried sending an e-mail to the online poker people, that affiliates@… e-mail address does not work.

    It rarely ever does.

    Thread Starter Anonymous

    I have a question about changing the comments.php and comments-post.php. has anyone tried it? Has it worked for others becuase it has not worked for me. Please let us all know. I just got hit by that poker fucker.

    charle97

    (@charle97)

    it works for the lazy spammers, but it can easily be circumvented by checking the source of page.

    Moderator James Huff

    (@macmanx)

    Changing wp-comments-post.php (as described here: https://www.ads-software.com/support/3/13443 ) works great for me. Just a few tips, make sure the new name has nothing to do with comments or post and delete the old wp-comments-post.php file after uploading the new one. You don’t need to change the wp-comments.php file.

    vylostal

    (@vylostal)

    How about making anti robot verification using picture with embedded text in it and some transforms to make it impossible (very difficult) to use automatic OCR. Same as in Yahoo mail sign in.
    Put this both registering as a new user and posting a comment without logging in. This should stop automatic spamming.
    php images gives quite good tools, but there is not very good image manipulation.
    Some example code to get started:
    <?php
    $string = rand(1,9999);
    $im = imagecreate(100,50);
    $bg_color = imagecolorallocate($im, 200, 255, 255);
    $tx_color = imagecolorallocate($im, 0, 0, 00);
    $px = (imagesx($im)/2 – 7.5 * strlen($string)) ;
    imagestring($im, 5, $px, 9, $string, $tx_color);
    if ($im !== false) {
    header(‘Content-Type: image/png’);
    imagepng($im);
    imagedestroy($im);
    }
    else {
    echo ‘Error creating image’;
    }
    imagepng($im);
    imagedestroy($im);
    ?>
    I will try to make some patch to wordpress. If it is left as option and disabled as default it would be great.
    Data can be transferred back to wordpress using md5 hash over known key and random value. Random value should be created during installation.

    charle97

    (@charle97)

    Thread Starter Anonymous

    The picture verification hack MUST be implemented as part of the core development NOW – please! It would be a great help in preventing SPAM and make WordPress so much better to use.

    Hello everyone,
    I’ve been having the same issues with some spammer on one of my sites. Unfortunately the site it’s happening to is ran with Cafe Log. But I am making the jump to WordPress soon.
    I found this post doing a search on Google so I thought it would be appropriate to put my temporary solution on here for others to see and get a basic idea that they can probably build.
    Here is the code.
    ‘// Catch Spammer
    $spammer = array(‘poker supplies’,
    ‘poker’,
    ‘free online poker’,
    ‘poker rooms’,
    ‘pacific poker’,
    ‘world poker tour’,
    ‘poker tips’,
    ‘wsop’,
    ‘paradise poker’,
    ‘texas hold\’em poker’,
    ’empire poker’,
    ‘poker rules’,
    ‘internet poker’,
    ‘poker online’,
    ’empirepoker’,
    ‘online poker sites’,
    ‘partypoker’,
    ‘WPT’,
    ‘poker tables’,
    ‘online poker rooms’,
    ‘poker books’,
    ‘texas holdem poker’,
    ‘party poker’,
    ‘poker chips’,
    ‘free poker online’,
    ‘texas hold\’em’,
    ‘casino’,
    ‘casino games’,
    ‘casino online’,
    ‘free casino games’,
    ‘internet casino’,
    ‘free casino online’,
    ‘online blackjack’,
    ‘online casino’,
    ‘free online casino’,
    ‘gambling’,
    ‘blackjack’,
    ‘roulette’,
    ‘poker stars’);
    if (in_array($author, $spammer, true)) {
    print “<script language=\”JavaScript\”> \n<!–\n window.location=\”https://www.anti-leech.com/spam/spambot_stopper.php\&#8221;; \n // –> \n</script>”;
    exit;
    }’
    Again this is a temporary solution and this is being posted just to help where I can.
    Thanks,
    George

    Oops it looks like it didn’t like the JS but here it is
    ‘window.location=\”https://www.yourdomain.com/\&#8221;; \n’

    Moderator James Huff

    (@macmanx)

    Thanks George, but we have plenty of solutions like that all ready. https://www.tamba2.org.uk/wordpress/spam/

Viewing 15 replies - 31 through 45 (of 46 total)
  • The topic ‘Blog get spammed!!?! how to stop it?’ is closed to new replies.