![]() |
Go to AdminCP/Styles & Templates/Default Style/Registration Templates/register
You edit that template. |
Thanks. Shows how long it's been since I edited something - I'd been searching for the php file via FTP! :D
Is everyone using the default 15 seconds? Also, which plugin will take priority: Stop Forum Spam or Is Bot? :) |
Thanks for building this solution, we have installed seconds ago and we hope this is the end for the automated spammers because daily we got a lot from Russia and china.
It is nice that people build great modifications to vbulletin, they will have to hire you to fix other issues because you know how to fix things and they don't, or they don't want to. |
Quote:
https://vborg.vbsupport.ru/showthread.php?t=289464 |
Thanks to your add-on I am getting over 700 spammers per day.
It is great to have an add-on to stop this. |
Where do I go to check the logs to see how many bots this mod has caught/stopped?
Thanks for the plugin! |
If you are using the default modification, then you should get an email everytime a bot if blocked.
|
From 12 of December to Today your add-on has blocked 4163 spammers.
It is great to stop reviewing that huge amount of spammers. Why vbulletin don't include this with the latest version? |
Quote:
I installed this plugin 24hrs ago, right after installing vbstopforumspam and enabled it. I can see on vbstopforumspams log that they blocked 367 users so far, but I haven't received a single email about Is bot blocking any spam. Spam is being blocked, so I'm happy about that. I just don't know if Is Bot is working on my boards. Any other way to check? Thanks |
Quote:
So vB knows about these things, since version 3.0. Why they do not bother to include them in their software? The obvious answer is, because they do not care. Quote:
|
Quote:
https://vborg.vbsupport.ru/showthread.php?t=289463 |
Quote:
|
Really?
That's a pretty lame excuse considering what the user experience is, as expressed in this thread. Let's see what Jelsoft could add to vB, which won't be breakable by spammers. - Time limit registration option (like "Is Bot")? A spammer doesn't know the limit I've set, so they can't fight that. And their scripts are tailored for speed, they won't wait 1 minute per registration. - Checking of validity of email address. Not very efficient but it still traps spammers. - Matching of entered Country with IP address Geolocation information. The ability to exclude some countries would be also welcome. - Matching of entered Time Zone with the Time Zones of the country derived from the IP address? - Check of registering IP address against known spammers IP addresses such as spamhaus.org or sorbs.net etc. Care to tell me how a spammer would break through a spamhaus.org check? One more thing: if Jelsoft thinks that an anti-spam strategy should include as many traps as possible (and I agree on that), how come it only offers one of Image Verification, Question & Answer Verification and reCAPTCHAâ„¢? Why not all? Let the admins select as many as they like. |
Quote:
If vBulletin or any major message board software has this time check in its native code, it won't be long at all before the botnet administrators start programming a delay into their systems. |
That's exactly the point. More, many more options to trap spammers. Not just one, several. And of various intelligence. Of different nature. Selectable by the admin with various courses of action. Instead of spending time integrating social networks, I would have preferred more and more secure antispam options.
Of course, that's a personal opinion and as we know each one has his own. |
Quote:
|
Quote:
2) Time plays no real factor in registration because they can hit multiple boards at once... Whether it takes 10 seconds to register or 60 on any one site is no big deal. So long as they set their delay equal to a human it is easily defeated 3) Again it would be minor edits to make sure timezone, location and IP match- the only reason these checks may work is because they are rare |
Quote:
Quote:
Quote:
Quote:
That's the reason I said in a previous comment, that the admin should have statistics from such add-ons. I add every IP that gets banned from my site, in a table in the database and I have a small program to get statistics from this log. I then enter the appropriate addresses in the ban IPs list. Each one of the above measures I suggested, by itself, may have a minor effect on the number of spammers you avoid, all of them (or some of them) together can make a significant difference. |
OK folks, for those who want to automatically enter the spam bot IP address in their banned IPs list, here is a version of the plug-in that should do it for you. It's been tested on vBulletin 4.2, I am not sure if it will work on previous versions.
----- code section ------ $vbulletin->input->clean_array_gpc('p', array( 'isbot_time1' => TYPE_UINT )); $ipaddress = IPADDRESS; if ($vbulletin->GPC['username'] && $vbulletin->GPC['email']) { $isbot_time1 = $vbulletin->GPC['isbot_time1']; $isbot_time2 = TIMENOW; $isbot_timediff = intval($isbot_time2 - $isbot_time1); if ($isbot_timediff <= 15) // difference in seconds { $isbot_username = htmlspecialchars_uni($vbulletin->GPC['username']); $isbot_email = htmlspecialchars_uni($vbulletin->GPC['email']); $isbot_subject = $vbphrase['isbot_user_blocked_from_registering']; $isbot_message = $vbphrase['isbot_the_following_name_email_blocked'] . ' User Name : ' . $isbot_username . ' Email : ' . $isbot_email . ' Time to fill registration form : ' . $isbot_timediff . ' ' . $vbphrase['isbot_seconds_transpired'] . ' IP Address : ' . $ipaddress . ' '; vbmail($vbulletin->options['webmasteremail'], $isbot_subject, $isbot_message, true); if ($vbulletin->options['enablebanning'] == 1 AND $vbulletin->options['banip'] = trim($vbulletin->options['banip'])) { $banned = $ipaddress . " " . $vbulletin->options['banip']; $db->query_write("UPDATE " . TABLE_PREFIX . "setting SET value = '" . $banned . "' where varname='banip'"); require_once(DIR . '/includes/adminfunctions.php'); build_options(); } eval(standard_error(fetch_error('noregister'))); } } ------------- Copy the above code and enter it in AdminCP/Plug-in Manager/Is Bot. Just click on Edit next to the "register_addmember_process", highlight the Plugin PHP code and paste the above code in there. Click on "Save and Reload" and you are done. To verify it's working, next time you receive an email from this plugin, compare the IP shown in the email you got, with the IPs in your banned IPs list. The newly banned IP is entered in the beginning of the list, so it should be easy to spot. My Christmas gift to you guys. |
Still using the same IsBot I installed in 2008. Recently updated the board to vB 3.8.7 PL2 and wanted to check if IsBot works in this version. Un-remmed the line that sends the email. Received 5 emails of blocked registrations in under 4 minutes, and then remmed out the email line again.
So it's confirmed that IsBot 1.0 works with vB 3.8.7. |
Quote:
The best way is to customize the register.php, and outright block IP ranges you don't need. For me, that's China, Russia, USA proxy/VPS servers, etc. I don't get any legit traffic from the places so it's blocked. Use mods like this to get ones you miss or haven't added yet. Also use something like stopforumspam.com. The best anti-spam practices implore several concurrent methods to thwart junk. |
Quote:
|
I really like this mod. Thanks!
|
Quote:
|
Any possibility someone can show me how to stop the emails that are being sent with this plug-in. I read in a reply, someone said they did it, but not how exactly.
|
Quote:
|
I'm observing that apparently GlowHost Spam-O-Matic takes precedence in processing over this mod. I'm getting tons of action on Spam-O-Matic, but I was thinking that "IS BOT" could skim off the first layer using less resources? No emails yet.
|
Quote:
|
Thanks for that info. I had noticed that Spam-O-Matic quit working when IS-BOT is active, so I have uninstalled for now. It's a mess out there!
I have identified two specific bots that do things in a unique way that I can delete them right off manually. I was hoping to get these hacks set up as a 1 - 2 punch! Still have things to figure out. |
Does this Mod still work with 4.2.5, and is that Mod where one can rename the register.php to something else a possible problem ? Any help is appreciated.
Wolf |
All times are GMT. The time now is 05:56 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|