K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / www / html / sman1baleendahoppppppp / application / helpers /
server ip : 172.67.156.115

your ip : 172.70.127.127

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/helpers/recaptcha_helper.php
Size2.56 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed04-May-2025 17:23
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php if (! defined('BASEPATH')) exit('No direct script access allowed');

/**
* CMS Sekolahku Premium Version
* @version 2.5.2
* @author Anton Sofyan | https://facebook.com/antonsofyan | [email protected] | 0857 5988 8922
* @copyright (c) 2017-2023
* @link https://sekolahku.web.id
*
* PERINGATAN :
* 1. TIDAK DIPERKENANKAN MENGGUNAKAN CMS INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 2. TIDAK DIPERKENANKAN MEMPERJUALBELIKAN APLIKASI INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 3. TIDAK DIPERKENANKAN MENGHAPUS KODE SUMBER APLIKASI.
*/

if ( ! function_exists('get_recapture_score')) {
/**
*
* Returns a float from 0 - 1 indicating the likelihood that the request is a from a human
* 0 is considered a robot
* 1 is considered a human
*
* @param $secret
* @return float
*/
function get_recapture_score($secret) {
$url = 'https://www.google.com/recaptcha/api/siteverify';
$req = $url .'?secret=' . __session('recaptcha_secret_key') . '&response='.$secret.'';
$res = file_get_contents($req);
$res = json_decode($res);
if ($res->success == false) {
foreach($res->{'error-codes'} as $code){
switch ($code) {
case 'missing-input-secret':
log_message('error', 'RECAPTCHA: The secret parameter is missing. ' . $req);
break;
case 'invalid-input-secret':
log_message('error', 'RECAPTCHA: The secret parameter is invalid or malformed. '. $req);
break;
case 'missing-input-response':
log_message('error', 'RECAPTCHA: The response parameter is missing. '. $req);
break;
case 'invalid-input-response':
log_message('error', 'RECAPTCHA: The response parameter is invalid or malformed. ' . $req);
break;
case 'bad-request':
log_message('error', 'RECAPTCHA: The request is invalid or malformed. ' . $req);
break;
case 'timeout-or-duplicate':
log_message('error', 'RECAPTCHA: The response is no longer valid: either is too old or has been used previously.');
break;
default:
log_message('error', 'RECAPTCHA: Unknown error');
}
}
return 0;
}
return $res->score;
}
}