One Hat Cyber Team
Your IP :
3.15.198.40
Server IP :
162.241.123.123
Server :
Linux sh016.hostgator.in 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home1
/
saicsazq
/
vartha.org
/
application
/
config
/
View File Name :
recaptcha.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); /** * Recaptcha configuration settings * * recaptcha_sitekey: Recaptcha site key to use in the widget * recaptcha_secretkey: Recaptcha secret key which is used for communicating between your server to Google's * lang: Language code, if blank "en" will be used * * recaptcha_sitekey and recaptcha_secretkey can be obtained from https://www.google.com/recaptcha/admin/ * Language code can be obtained from https://developers.google.com/recaptcha/docs/language * * @author Damar Riyadi <damar@tahutek.net> */ $CI=& get_instance(); $CI->load->database(); $config['recaptcha_sitekey'] = $CI->db->get_where('third_party_settings',array('type'=>'captcha_public'))->row()->value; $config['recaptcha_secretkey'] = $CI->db->get_where('third_party_settings',array('type'=>'captcha_private'))->row()->value; $config['lang'] = "en";