Author

Topic: I need help for my faucet (Read 525 times)

hero member
Activity: 896
Merit: 1000
Live Stars - Adult Streaming Platform
December 12, 2015, 05:49:59 PM
#13
You could block extensive use on server level if you have a VPS or Dedicated server.
Make sure to install CSF Firewall, and some anti bot scripts. This way your whole server is protected in stead of just 1 website.
sr. member
Activity: 518
Merit: 254
★YoBit.Net★ 350+ Coins Exchange & Dice
December 12, 2015, 04:22:50 PM
#12
why you use antibot? funcaptcha is already for a faucet, antibot is a bad system and more user don't like
I agree with this that funcaptcha can prevent a bot and if you put a anti bot script it can reduce your visitors to your faucet...
I think you need to protect your faucet to tor users and proxy user because you cannot make a profit.
full member
Activity: 182
Merit: 100
December 11, 2015, 04:20:24 PM
#11
Aren't antibot links just for click baiting?

it obviously is

the good part, Adsense is alrealdy banning those accounts one by one (too many invalid clicks blow the whistle for them)

I tested my own antibot checkbox system once, for couple hours and my click trough rate went from 0.25-0.75% to 10-20%, lol.
And when all those clicks close the ad page instantly it sure is very suspicious.


that has been my regular CTR for many months with no problems so far (0.25-0.75%)
legendary
Activity: 1274
Merit: 1000
December 11, 2015, 07:31:12 AM
#10
Aren't antibot links just for click baiting?

it obviously is

the good part, Adsense is alrealdy banning those accounts one by one (too many invalid clicks blow the whistle for them)

I tested my own antibot checkbox system once, for couple hours and my click trough rate went from 0.25-0.75% to 10-20%, lol.
And when all those clicks close the ad page instantly it sure is very suspicious.
hero member
Activity: 504
Merit: 501
December 11, 2015, 12:46:51 AM
#9
Anyone please help me with index.php .
Thank you.
I could help if you need.....my skype is goldkey0070 or message me in here but i wont install anti-bot... anything else i will help.
full member
Activity: 182
Merit: 100
December 11, 2015, 12:06:30 AM
#8
Aren't antibot links just for click baiting?

it obviously is

the good part, Adsense is alrealdy banning those accounts one by one (too many invalid clicks blow the whistle for them)
legendary
Activity: 1274
Merit: 1000
December 10, 2015, 12:10:29 PM
#7
Aren't antibot links just for click baiting?
newbie
Activity: 19
Merit: 0
December 10, 2015, 11:38:13 AM
#6
Anyone please help me with index.php .
Thank you.
hero member
Activity: 504
Merit: 501
December 10, 2015, 01:13:00 AM
#5
Use funcaptcha instead of anti-bot .  I would start with a rotator if i was you  because faucets cost money.
sr. member
Activity: 383
Merit: 250
December 09, 2015, 06:00:53 PM
#4
why you use antibot? funcaptcha is already for a faucet, antibot is a bad system and more user don't like
hero member
Activity: 868
Merit: 500
December 09, 2015, 05:36:48 PM
#3
Anti bot is bad practice
legendary
Activity: 1232
Merit: 1030
give me your cryptos
December 09, 2015, 04:23:54 PM
#2
I wouldn't recommend running a faucet at this time, they aren't profitable unless you want to make a few cents a yeah, and that's without your registrar and hosting fees. You don't seem too experienced with code; id recommend learning and building a bitcoin site (not a faucet) from scratch.)
newbie
Activity: 19
Merit: 0
December 09, 2015, 04:15:48 PM
#1
Hello guys,
It is helpful someone for writing script the anti bot in my index.php ?

Here is index.php download:
https://mega.nz/#!EY4HCLQa!OVG3v95R4cmJ4sMCpkN2nsAlUlqProjan-o_6EkVwHg

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 :)

Thank you!
Jump to: