captcha-check.eu-fra.services.pup.cloud Open in urlscan Pro
193.32.222.161  Public Scan

URL: https://captcha-check.eu-fra.services.pup.cloud/
Submission Tags: phishingrod
Submission: On February 11 via api from DE — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

Open source reCAPTCHA alternative

 * PHP 7
 * MySQL
 * MIT
 * Git

DEMO



USE

Put this in your page somewhere:

<script src="https://captcheck.netsyms.com/captcheck.min.js"></script>

HTML
Copy
Put this in your form where you want the CAPTCHA:

<div class="captcheck_container"></div>

HTML
Copy
Put this in your server-side form validation (PHP example):

$url = 'https://captcheck.netsyms.com/api.php';
$data = [
    'session_id' => $_POST['captcheck_session_code'],
    'answer_id' => $_POST['captcheck_selected_answer'],
    'action' => "verify"
];
$options = [
    'http' => [
        'header' => "Content-type: application/x-www-form-urlencoded\r\n",
        'method' => 'POST',
        'content' => http_build_query($data)
    ]
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
$resp = json_decode($result, TRUE);
if (!$resp['result']) {
    // Replace with error-handling code
    exit("CAPTCHA did not verify:" . $resp['msg']);
} else {
    // The CAPTCHA is valid.
    exit("CAPTCHA verified!");
}

PHP
Copy
If you have a strict Content Security Policy, change your div to this:

<div class="captcheck_container" data-stylenonce="your nonce here"></div>

HTML
Copy
Note: by using this hosted service, you agree to these terms. If you don't like
them, feel free to host Captcheck on your own server. Popular sites should
self-host as well just to be nice.

Copyright © 2018 Netsyms Technologies. MIT License.
Get the source and run your own CAPTCHA service.