Post
Topic
Board Micro Earnings
Re: FaucetBOX.com Discussion
by
BitBustah
on 14/01/2016, 17:29:26 UTC
So couldn't you return a checkbox in send() function which must be clicked first to send? Not JS.


In your form you could do something like:
Quote


And in the index.php file you could do something like:
Quote
if ($_POST['antibotcheckbox'] == "aintnorobot") {
    $ret = $fb->send($address, $reward);
} else {
    $ret = array(
    "success" => false,
    "message" => "Checkbox failure.",
    "html" => "You have to check the checkbox to prove you are not a bot."
    );
}


A scammer could easily read that "anticheckbox" variable and send it by default. It would be better if you used sessions and create a variable name for the input variable. Then the code would always be different.

Quote


I could check it out for you but I'm really busy atm...