One Hat Cyber Team
Your IP :
172.69.17.106
Server IP :
188.114.97.7
Server :
Linux advantage-project 5.14.0-503.26.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64
Server Software :
Apache/2.4.62 (Rocky Linux) OpenSSL/3.2.2
PHP Version :
8.3.17
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
vendor
/
mews
/
captcha
/
src
/
View File Name :
helpers.php
<?php use Intervention\Image\ImageManager; if (!function_exists('captcha')) { /** * @param string $config * @return array|ImageManager|mixed * @throws Exception */ function captcha(string $config = 'default') { return app('captcha')->create($config); } } if (!function_exists('captcha_src')) { /** * @param string $config * @return string */ function captcha_src(string $config = 'default'): string { return app('captcha')->src($config); } } if (!function_exists('captcha_img')) { /** * @param string $config * @param array $attrs * @return string */ function captcha_img(string $config = 'default', array $attrs = []): string { return app('captcha')->img($config, $attrs); } } if (!function_exists('captcha_check')) { /** * @param string $value * @return bool */ function captcha_check(string $value): bool { return app('captcha')->check($value); } } if (!function_exists('captcha_api_check')) { /** * @param string $value * @param string $key * @param string $config * @return bool */ function captcha_api_check(string $value, string $key, string $config = 'default'): bool { return app('captcha')->check_api($value, $key, $config); } }