Author

Topic: Need help with faucet script (Read 1009 times)

member
Activity: 62
Merit: 10
There is no God but Allah
November 23, 2015, 05:22:51 PM
#9
I'm also looking for this anti bot box, and I sent a msg to the admin of that website

to help me and give me the code, and he did not answer me at all.

so my brother if you find the cod to this anti bot please share it with us. 

Thank you
newbie
Activity: 4
Merit: 0
November 21, 2015, 10:25:02 AM
#8
Use funcaptcha from the admin panel of faucetinbox script which is in http://yoursite.com/?p=admin
If you use funcaptcha than you don't have to worry about implementing antibot links, funcaptcha is most secure captcha provider these days.

Thank you for replaying.
We not talking here about capcha secure, i need help with antibot captch like this one :

http://s4.postimg.org/xqq5tcky5/Untitled.png

newbie
Activity: 4
Merit: 0
November 21, 2015, 10:18:47 AM
#7
legendary
Activity: 3514
Merit: 3585
Crypto Swap Exchange
November 21, 2015, 05:02:39 AM
#6
Use funcaptcha from the admin panel of faucetinbox script which is in http://yoursite.com/?p=admin
If you use funcaptcha than you don't have to worry about implementing antibot links, funcaptcha is most secure captcha provider these days.

No one captcha can't give full protection. two factor protection is the best solution. of course, i do not recommend hiden antibot button and set close to the ads
legendary
Activity: 1120
Merit: 1008
CryptoTalk.Org - Get Paid for every Post!
November 20, 2015, 11:30:30 PM
#5
Use funcaptcha from the admin panel of faucetinbox script which is in http://yoursite.com/?p=admin
If you use funcaptcha than you don't have to worry about implementing antibot links, funcaptcha is most secure captcha provider these days.
legendary
Activity: 3514
Merit: 3585
Crypto Swap Exchange
November 20, 2015, 12:39:59 PM
#4
Real AntiBot Links

Download & unpack:
http://bit.makejar.com/labs/anti-bot-links-200/antibotlinks.zip

Code:
Files to add:
/libs/antibotlinks.php


Files to edit:
/index.php
/templates/*theme-name*/index.php


Ok, let's start.

First make a backup of your faucet (everything could go wrong, better safe than sorry).

Then

Copy:
antibotlinks.php

To:
/libs/antibotlinks.php


Now you will need to edit 2 files. I suggest using Notepad++ https://notepad-plus-plus.org/ to edit files but any good editor will do the job.
This is based on FB R60 but should work with newer/older versions.

Open:
/index.php

Find:
        $data['captcha_info'] = $captcha;

add after:
        # AntiBotLinks
        require_once('libs/antibotlinks.php');
        $antibotlinks = new antibotlinks(true);// true if GD is on on the server, false is less secure
        if (array_key_exists('address', $_POST)) {
          if (!$antibotlinks->check()) {
            $antibotlinks->generate(5, true);// number of links once they fail to solve min 3 - max 5, the second param MUST BE true
          }
        } else {
          $antibotlinks->generate(3);// initial number of links min 3 - max 5
        }


Find:
           $data['captcha_valid'] &&

add after:

           # AntiBotLinks
           $antibotlinks->is_valid() &&
           

Open:
/templates/*theme-name*/index.php

Find:


Add before:
# AntiBotLinks START
?>


# AntiBotLinks END
?>



Find:
                            if(!$data["captcha_valid"]): ?>
                           

Invalid captcha code!


                            endif; ?>


Add after (the input field must be between
and
):

# AntiBotLinks START
?>

                           
                            if(!$antibotlinks->is_valid()): ?>
                           

Invalid AntiBot verification!


                            endif; ?>
# AntiBotLinks END
?>



Somewhere between
and
add (you need to do it 5 times, this is where the links will appear):

# AntiBotLinks START
?>

                        echo $antibotlinks->show_link(); ?>
# AntiBotLinks END
?>


And finally remove the default CLAIM button :)

i am just copy/paste this code, I have not so far implemented
regards
newbie
Activity: 4
Merit: 0
November 20, 2015, 01:22:38 AM
#3
Quote
or what is the name of this site script http://bitcoinsmining.net/ Huh

yes, it is faucetinabox

Quote
so any one now faucet script have this captcha Huh

in admin panel on faucetinabox, you have to choice couple captcha providers. i think that is now funcaptcha is mostly secure than other
you can add "antibot" button, but for this you need small skills with code

First thank you for replaying.

I now it is faucetbox script but in last version of faucet script there are no "antibot" capcha there are only ("SolveMedia" , "FunCaptcha" , "Are You A Human" , "reCaptcha"). So if any one can help me to add antibot capcha to my faucetbox script i will be very thankful
legendary
Activity: 3514
Merit: 3585
Crypto Swap Exchange
November 19, 2015, 06:34:35 PM
#2
Quote
or what is the name of this site script http://bitcoinsmining.net/ Huh

yes, it is faucetinabox

Quote
so any one now faucet script have this captcha Huh

in admin panel on faucetinabox, you have to choice couple captcha providers. i think that is now funcaptcha is mostly secure than other
you can add "antibot" button, but for this you need small skills with code
newbie
Activity: 4
Merit: 0
November 17, 2015, 03:04:02 PM
#1
Hi 4 all,
First i don't now if it is the right section for my topic or not, so if it is not i am sorry for this.

I have  download the last version of faucet script from https://faucetinabox.com/ and install it in my server, so in my admin panel there are no antibot capch like this  :
http://s4.postimg.org/xqq5tcky5/Untitled.png

so any one now faucet script have this captcha Huh

or what is the name of this site script http://bitcoinsmining.net/ Huh

Thank 4 helping ...
Jump to: