Go Back   Pligg CMS Forum > Pligg Help > General Help

Reply
 
LinkBack Thread Tools Display Modes
  #71 (permalink)  
Old 12-14-2007, 11:53 AM
Banned
Pligg Version: 9.9.5
 
Join Date: Oct 2007
Location: Canada
Posts: 914
Thanks: 169
Thanked 17 Times in 17 Posts
Is anyone else having this issues, after e-mail confirmation mod install?

User Management Sorting wrong any advice?
Reply With Quote
  #72 (permalink)  
Old 12-14-2007, 01:27 PM
Constant Pligger
 
Join Date: Oct 2006
Posts: 125
Thanks: 3
Thanked 1 Time in 1 Post
Quote:
Originally Posted by katlis View Post
That little math quiz I added seems to have worked. No new spammer registrations since the change. If they get they can't solve 8 + 1, they're not registering on luxa.org. Deleting the spammers was a breeze in phpmyadmin. I may change up the quiz once in a while, along with the form field name. On a side note, I don't use CAPTCHA, and my registration process is only one step.

Hit 300 legitimate members today. :)
Doing this stopped all user registration for working.

I did it and just noticed by a user, registration its not working, I tried creating a user and the result is failed.

Did you test creating a user for confirming its working ok ?

I did it and also have default image verification in pligg 9.8.2.

Peter.
Reply With Quote
  #73 (permalink)  
Old 12-14-2007, 01:37 PM
joehunk's Avatar
Casual Pligger
 
Join Date: Oct 2007
Posts: 99
Thanks: 14
Thanked 10 Times in 8 Posts
Here is what I learned from the previous attack. Don't patch anything on your pligg site unless it is proven working by the anyone or suggested by the Pligg Dev team.

My pligg site is now sitting fine after patching one piece of code - renaming register.php. As far as I know, the spammer is using this file in his/her/they code. So, if all of us is to renamed it something different --- he/she/they need to go each of our site before the attack. I am planning on renaming it at least once a week.

How to do it?

Go to /libs/html1.php and find this code;

If ($x == "register") {return my_pligg_base."/register.php";}

replaced register.php to anything you want like register-no-spammer.php

-------------------------------------
my pligg site: eBenta.Com / Published
Reply With Quote
  #74 (permalink)  
Old 12-14-2007, 02:07 PM
Casual Pligger
Pligg Version: 995
Pligg Template: Yget
 
Join Date: Sep 2006
Posts: 61
Thanks: 12
Thanked 3 Times in 3 Posts
I got spamed as well - over 10'000 new users! Funnily and luckily enough there's not a single comment spam.
__________________
Pligg - a Swiss version of Pligg (very much online)
Reply With Quote
  #75 (permalink)  
Old 12-14-2007, 05:18 PM
New Pligger
 
Join Date: Sep 2007
Posts: 28
Thanks: 0
Thanked 7 Times in 4 Posts
Quote:
Originally Posted by Peter View Post
Doing this stopped all user registration for working.

I did it and just noticed by a user, registration its not working, I tried creating a user and the result is failed.

Did you test creating a user for confirming its working ok ?

I did it and also have default image verification in pligg 9.8.2.

Peter.
It's working fine here. I've had 16 legitimate users sign up since the mod. I'm using Pligg 9.6.
Reply With Quote
The Following User Says Thank You to katlis For This Useful Post:
  #76 (permalink)  
Old 12-15-2007, 08:11 AM
rmorrill's Avatar
New Pligger
 
Join Date: Jun 2007
Posts: 16
Thanks: 6
Thanked 7 Times in 4 Posts
Quote:
Originally Posted by bbrian017 View Post
Is anyone else having this issues, after e-mail confirmation mod install?

User Management Sorting wrong any advice?
No, I see them in my logs, I see nothing in the database, life is good. hope that helps. r/d
Reply With Quote
  #77 (permalink)  
Old 12-15-2007, 10:20 AM
Banned
Pligg Version: 9.9.5
 
Join Date: Oct 2007
Location: Canada
Posts: 914
Thanks: 169
Thanked 17 Times in 17 Posts
yeah my data base is fine too just the User Management page that's displaying all weird?
Reply With Quote
  #78 (permalink)  
Old 12-15-2007, 08:09 PM
Iceburg's Avatar
Pligg Donor
 
Join Date: Sep 2006
Posts: 77
Thanks: 2
Thanked 0 Times in 0 Posts
Send a message via ICQ to Iceburg Send a message via AIM to Iceburg Send a message via MSN to Iceburg Send a message via Yahoo to Iceburg
I received no comments either, that would have been a mess... I did although received 800+ users before I followed:

Quote:
joehunk
Go to /libs/html1.php and find this code;

If ($x == "register") {return my_pligg_base."/register.php";}

replaced register.php to anything you want like register-no-spammer.php
I also noticed that the spammers added two entries to my Auto RSS import on one of my sites, they don't look to be set up right, but I deleted them anyway. Just thought you guys should check it out and make sure you don't have auto RSS enteries too. If you have that module installed.
__________________
------------------------------------------------------
http://www.neweasyrecipe.com
http://www.feedthebull.com

Last edited by Iceburg; 12-15-2007 at 08:11 PM.. Reason: spelling
Reply With Quote
  #79 (permalink)  
Old 12-16-2007, 05:52 PM
New Pligger
 
Join Date: Sep 2007
Posts: 6
Thanks: 1
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by joehunk View Post
Here is what I learned from the previous attack. Don't patch anything on your pligg site unless it is proven working by the anyone or suggested by the Pligg Dev team.

My pligg site is now sitting fine after patching one piece of code - renaming register.php. As far as I know, the spammer is using this file in his/her/they code. So, if all of us is to renamed it something different --- he/she/they need to go each of our site before the attack. I am planning on renaming it at least once a week.

How to do it?

Go to /libs/html1.php and find this code;

If ($x == "register") {return my_pligg_base."/register.php";}

replaced register.php to anything you want like register-no-spammer.php

-------------------------------------
my pligg site: eBenta.Com / Published
That is nice info! After doing what you have suggested, I wrote a little script to catch the spam-bots trying to register through register.php. So after renaming register.php to something else, I created a file to store the ip addresses of the bots (and maybe I can feed them to the Spam Plugin).

Code:
<?php
$myFile = "ip.txt";
$fh = fopen($myFile, 'a') or die("can't open file");
  if (getenv('HTTP_X_FORWARDED_FOR')) {
    $ip=(getenv('HTTP_X_FORWARDED_FOR'));
   }
  else {
    $ip=(getenv('REMOTE_ADDR'));
   }
$stringData = "$ip\n";
fwrite($fh, $stringData);
fclose($fh);
?>
Just make sure you have file named 'ip.txt' in your root folder and make sure it is writable. Let the fun begin :)
Reply With Quote
  #80 (permalink)  
Old 12-17-2007, 11:06 AM
Iceburg's Avatar
Pligg Donor
 
Join Date: Sep 2006
Posts: 77
Thanks: 2
Thanked 0 Times in 0 Posts
Send a message via ICQ to Iceburg Send a message via AIM to Iceburg Send a message via MSN to Iceburg Send a message via Yahoo to Iceburg
Well I lied...

Changing register.php to a new name didn't work.
Adding the rewrite mod to the .htaccess file didn't work.

I am still getting new users in, and the e-mail mod is sending me failures, so I came in this morning to 1200 new failure message. Luckily for me godaddy stopped relaying after the 1200.

Anyway, anyone successfully shut down and verified a fix for this?
__________________
------------------------------------------------------
http://www.neweasyrecipe.com
http://www.feedthebull.com
Reply With Quote
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Similar Threads
Thread Thread Starter Forum Replies Last Post
Looks like our Curl User is back REF Help I am being Spammed rmorrill General Help 1 01-09-2008 11:00 PM
Wiki has been spammed... jrothra Suggestions 5 07-14-2007 04:20 PM


Search Engine Friendly URLs by vBSEO 3.2.0