You are not logged in.
- Topics: Active | Unanswered
Pages: 1
#1 2010-02-22 13:50:28
- StevenBullen
- Member
- Registered: 2008-05-03
- Posts: 256
- Website
Users registering for link juice!
Check the link below...
Userlist Search
No way all of the users joined fluxbb today to contribute, any chance on a discussion to fix this?
Offline
#3 2010-02-22 16:24:09
- StevenBullen
- Member
- Registered: 2008-05-03
- Posts: 256
- Website
Re: Users registering for link juice!
Working on what? 40 pages of new users in 7 days.
Offline
#4 2010-02-22 16:28:43
- MattF
- Member
- From: South Yorkshire, England
- Registered: 2008-05-06
- Posts: 1,233
- Website
Re: Users registering for link juice!
What might your suggestion be for preventing spam registrations?
Screw the chavs and God save the Queen!
Offline
#5 2010-02-22 16:32:32
- qie
- Member
- Registered: 2008-06-02
- Posts: 379
Re: Users registering for link juice!
since forum registration need email validation, i don't think it's bot attack. maybe it's human activities.but anyhow,...a little weird-.-
Last edited by qie (2010-02-22 16:33:02)
now show:石家庄电脑维修网
Offline
#6 2010-02-23 01:34:10
- eliot
- Member
- Registered: 2008-05-09
- Posts: 171
Re: Users registering for link juice!
I've posted this before, but it may make sense to mention it again. Maybe it will help someone. The people at stopforumspam.com are doing a great service. On my 1.2 register.php I added the following about a year ago:
$urlchecker = file_get_contents('http://www.stopforumspam.com/api?ip='.get_remote_address());
if (strpos($urlchecker, 'yes'))
die($lang_common['No permission']);
and have not had 1 spam registration since.
Offline
#7 2010-02-23 03:08:50
- Darren
- Member
- Registered: 2009-06-08
- Posts: 103
Re: Users registering for link juice!
eliot, That looks like a good idea, could you provide some instructions to add that to a 1.4 board please?
Another way to deal with this would be to require a certain number of posts before members can add a url to their profile. The way I see it, if your not an active member you don't deserve the privelage. It wouldn't stop spam registrations but should slow them to a crawl.
Offline
#8 2010-02-23 03:09:19
- MattF
- Member
- From: South Yorkshire, England
- Registered: 2008-05-06
- Posts: 1,233
- Website
Re: Users registering for link juice!
I.P based blocking methods will suffer false positives. On a support forum, you hardly want to be running the risk of blocking legitimate users in need of support.
Screw the chavs and God save the Queen!
Offline
#9 2010-02-23 03:12:22
- MattF
- Member
- From: South Yorkshire, England
- Registered: 2008-05-06
- Posts: 1,233
- Website
Re: Users registering for link juice!
Another way to deal with this would be to require a certain number of posts before members can add a url to their profile. The way I see it, if your not an active member you don't deserve the privelage. It wouldn't stop spam registrations but should slow them to a crawl.
Or they would just use a bot for working across the flood period and you'd get a deluge of posts from a single spammer rather than just the odd one or two. They could do a hell of a lot in the hour or two that no mod/admin may be online.
eliot, That looks like a good idea, could you provide some instructions to add that to a 1.4 board please?
Just stick that code he posted at the top of register.php, just after the opening php tag.
Last edited by MattF (2010-02-23 03:13:59)
Screw the chavs and God save the Queen!
Offline
#10 2010-02-23 05:51:16
- Darren
- Member
- Registered: 2009-06-08
- Posts: 103
Re: Users registering for link juice!
Or they would just use a bot for working across the flood period and you'd get a deluge of posts from a single spammer rather than just the odd one or two. They could do a hell of a lot in the hour or two that no mod/admin may be online.
Yep that's a possibility, in my experience it wouldn't happen that often though and it'd still prevent a lot of spam registrations in the first place, especialy when they realise there is another hurdle.
Just stick that code he posted at the top of register.php, just after the opening php tag.
Thanks.
Offline
#11 2010-02-23 06:09:38
- MattF
- Member
- From: South Yorkshire, England
- Registered: 2008-05-06
- Posts: 1,233
- Website
Re: Users registering for link juice!
Slight update on those instructions. You'd want to place the code just after the member check. No use doing the lookup if they're already logged in and a member. Pop the code just after this block, near the top of the file.
// If we are logged in, we shouldn't be here
if (!$pun_user['is_guest'])
{
header('Location: index.php');
exit;
}
Screw the chavs and God save the Queen!
Offline
#12 2010-02-23 17:21:36
- Reines
- Administrator
- From: Scotland
- Registered: 2008-05-11
- Posts: 3,197
- Website
Re: Users registering for link juice!
I made a mod for 1.4 (not as complete as it could be, it blocks attempts rather than adding them to a suspected spam queue which would be better) which combines a couple of DNS blacklists (including the one from stopforumspam) with Akismet. Akismet is good for stopping spam posts and users changing their signatures to spam, but it's no good for stopping registrations in the first place. The DNS blacklists will prevent a few registrations but not all.
I was hoping to test this out on the new website once it goes live, but will maybe post what I've done so far when I get home from vacation (Monday 1st).
Offline
#13 2010-03-02 11:46:45
- StevenBullen
- Member
- Registered: 2008-05-03
- Posts: 256
- Website
Re: Users registering for link juice!
I was hoping to test this out on the new website once it goes live, but will maybe post what I've done so far when I get home from vacation (Monday 1st).
Posting what you have would be appreciated and agree that it cannot be stopped completely.
Offline
#14 2010-03-02 15:47:42
- Reines
- Administrator
- From: Scotland
- Registered: 2008-05-11
- Posts: 3,197
- Website
Re: Users registering for link juice!
Here is a patch: http://pastebin.com/bv2ax3Cs or http://home.jamierf.co.uk/~jamie/misc/nospam.patch
Note: Not 100% finished! Should work, but just blocks posts/signature edits rather than queuing them for validation. If a user is flagged as spamming their admin note is set to "Suspected spammer", but they aren't automatically deleted or disabled or anything.
Offline
#15 2010-03-03 00:02:05
- StevenBullen
- Member
- Registered: 2008-05-03
- Posts: 256
- Website
Re: Users registering for link juice!
Thanks Reines, will check it out.
Offline
Pages: 1