AdCaptchas.com - CPM captcha network for small websites owners

AdCaptchas

New Member
2
2018
1
0
AdCaptchas.com - get captcha security and revenue for your website
adcaptchas.com​
What is AdCaptchas?
AdCaptchas is a free captcha tool service that protect your website from spam and abuse. AdCaptcha use an advanced tool analysis software based on easy understand and fast loading for users who keep away spam, bots and other abuse from your website.

What is our mission?
Together we can build a new whole security world for all of us where we remove bots and spasm for a better experience and share the revenue together.
AdCaptchas is more than security captcha tool, AdCaptchas is an smart advertising captcha tool who connect advertisers and websites owners where offer advertising solutions for advertisers and security captcha solutions for webmasters.


For Websites Owners:
- security captcha against spam and abuse
- CPM model revenue
- guaranteed minimum $0.10 CPM
- get paid per captcha solved
- count daily unique captchas solved
- minimum cashout $10 via PayPal and $1 via BitCoin

For Advertisers:
- CPM model advertising
- minimum CPM value of $0.10
- guaranteed minimum 6 seconds of display your website/product
- minimum deposit $1 via PayPal, BTC


Test AdCaptchas box:
developby.me/email/formpage.html


Email support:
contact@adcaptchas.com
 
2 comments
gUxY3q.gif



I don't get it now, uBlock Origin keeps your "solution" completely off and I can send it without any problems - you would have to provide some kind of callback to check if the captcha has been resolved.
Also the page is really bad translated (FAQ => "sistem" as example)
 
Our captcha box have php verification function and can be edited based on website owner requirements:

PHP Example Integration (Simple)
PHP:
if(isset($_POST['ad-captcha-response'])) {
    $url = "http://adcaptchas.com/api/?response=".$_POST['ad-captcha-response'];
    $result = json_decode(file_get_contents($url), true);
    if($result['status'] !== 1) {
        
        echo 'You need to verify Ad Captcha first.';
                
    }
    else {
                
        /* Proceed with the form */
                
    }
}


PHP Example Integration (CURL)
PHP:
if(isset($_POST['ad-captcha-response'])) {
    $url = "http://adcaptchas.com/adcaptcha/api/?response=".$_POST['ad-captcha-response'];
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_URL,$url);
    $result=curl_exec($ch);
    curl_close($ch);
    $result = json_decode($result, true);
    
    if($result['status'] !== 1) {
        
        echo 'You need to verify Ad Captcha first.';
        
    }
    else {
        
        /* Proceed with the form */
        
    }
    
}

For moment we use javascript to display our captcha box and this is a reason why some adblockers block our captcha box.
Code:
/// CODE TO DISPLAY CAPTCHA ///
<script src="http://adcaptchas.com/js/jquery-1.11.1.min.js">
</script><script src="http://adcaptchas.com/js/adcaptcha.js2.js"></script>
<script>$("document").ready(function(){adcaptcha('pid-1', 'YOUR WEBSITE API HERE');});</script><div id="ad-captcha-box"></div>

So if you use php function for validation you can display for example message to visitor to turn off adblocker to complete captcha when visitors try to submit any form.
 
Back
Top