vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Miscellaneous Hacks - Enhanced Image Captcha - Stop bots from signing up! (https://vborg.vbsupport.ru/showthread.php?t=181818)

kamcreation 09-11-2013 04:27 PM

is there anything similar available for vb 4?

saini1987 12-06-2013 07:26 AM

Stopped working, not showing the images.

Going to disable it now.

https://vborg.vbsupport.ru/external/2013/12/31.png

BirdOPrey5 12-06-2013 06:31 PM

Right click on one of those broken images and look at the URL it's looking for for the images.

Dr.CustUmz 05-09-2014 12:36 PM

how would we go about changing the image type from jpg to png or gif, i have tried changing jpg inside the product file and the show.php and having my folder full of nothing but png's
(did the same with gif's) but it just gives me an infinate load when i try to go to my register page.

EDIT*
after reading a little about the whole GD rendering from
http://www.php.net/manual/en/function.imagepng.php

i tried changing my show php to:
PHP Code:

session_start();
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

require_once(
'./global.php');
$percent $vbulletin->options['eic_imgsize'] / 100;
$d dir($vbulletin->options['eic_imgpath']);
while (
false !== ($entry $d->read())) 
    if (
substr($entry,-4) == '.png')
        
$answers[] .= $entry
$image $_SESSION['show_images'][$_SERVER['QUERY_STRING']-1];
$im imagecreatefrompng($vbulletin->options['eic_imgpath'].'/'.$answers[$image-1]);

list(
$width$height) = getimagesize($vbulletin->options['eic_imgpath'].'/'.$answers[$image-1]);
$newwidth $width $percent;
$newheight $height $percent;
$thumb imagecreatetruecolor($newwidth$newheight);
imagecopyresized($thumb$im0000$newwidth$newheight$width$height);

header("Content-type: image/png");
imagepng($im);
imagedestroy($im); 

i thought that would do it, but seems to still give me an infinate load.

also, this version is new than the one posted in the 3.8 section correct?

steadicamop 12-17-2014 06:28 PM

Before anyone absolutely kills me for not having supported this over the past few years, my forum was hacked, wiped completely clean (including database) and then I just gave up, but have been prompted to restart what I had achieved, so I've managed to recover my user for which I'd lost the password and email account.

I've just tried installing this on VB 3.8.4 and it works great. I haven't have opportunity to read through all the comments but will reply wherever I need to.

I shall now work to incorporate the built-in 5 strike 15 minute feature to aid protection from bots.

I also have a lot better understanding of the coding now and MySQL so hopefully this will help to evolve the plugin.

X-or 05-20-2015 10:36 PM

Quote:

Originally Posted by steadicamop (Post 2527736)
Before anyone absolutely kills me for not having supported this over the past few years, my forum was hacked, wiped completely clean (including database) and then I just gave up, but have been prompted to restart what I had achieved, so I've managed to recover my user for which I'd lost the password and email account.

I've just tried installing this on VB 3.8.4 and it works great. I haven't have opportunity to read through all the comments but will reply wherever I need to.

I shall now work to incorporate the built-in 5 strike 15 minute feature to aid protection from bots.

I also have a lot better understanding of the coding now and MySQL so hopefully this will help to evolve the plugin.

glad to hear you're back

this is the greatest and most simple anti spam bot mod for vb3

please could you make a vb4 version of it? none of the available anti spam mods for vb4 comes even remotely close to this :(


All times are GMT. The time now is 12:26 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
  • Page Generation 0.01272 seconds
  • Memory Usage 1,747KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete