Post
Topic
Board Micro Earnings
Re: FaucetBOX.com Discussion
by
BrannigansLaw
on 14/01/2016, 14:14:00 UTC
ok so I suspected a bad bot problem so I started rewarding 1-2 satoshi. I expected people to stop wasting their time only to be rewarded with such a little amount, other than the bots.  So today so far 14/01 I've had 3886 claims!



I suspect there is some javascript you can put into the url to bypass validation? Any help?

Of course you did lookup all the IPs, right?

Could you paste some of the IPs here? Thanks.
Ok I didn't realise my htaccess file wasn't transferred when switching web hosts. This could perhaps have been the problem. No I don't record IP's, but I block IP's reported here. Is there a tutorial on recording the IPs?

Also is it possible to add a bit of code to faucetbox.php which requires the user to click a box to send satoshi? Say an 'Are you sure?' box

say...
Code:
public function send($to, $amount, $referral = "false") {
        $r = $this->__exec("send", array("to" => $to, "amount" => $amount, "referral" => $referral));
Are you sure box?
If (yes){
        if (is_array($r) && array_key_exists("status", $r) && $r["status"] == 200) {
            return array(
                'success' => true,
                'message' => 'Payment sent to you using FaucetBOX.com',
                'html' => '
' . htmlspecialchars($amount) . ' satoshi was sent to you on FaucetBOX.com.
',
                'html_coin' => '
' . htmlspecialchars(rtrim(rtrim(sprintf("%.8f", $amount/100000000), '0'), '.')) . ' '.$this->currency.' was sent to you on FaucetBOX.com.
',
                'balance' => $r["balance"],
                'balance_bitcoin' => $r["balance_bitcoin"],
                'response' => json_encode($r)
            );
        }