Linux webm001.cluster111.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.111.20.1 | : 216.73.216.115
Cant Read [ /etc/named.conf ]
7.4.33
osteocoeek
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
osteocoeek /
holistea.eu /
dup-installer /
ctrls /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
ctrl.base.php
1.78
KB
-rw-r--r--
ctrl.s0.php
303
B
-rw-r--r--
ctrl.s1.extraction.php
33.69
KB
-rw-r--r--
ctrl.s1.php
334
B
-rw-r--r--
ctrl.s2.base.php
11.24
KB
-rw-r--r--
ctrl.s2.dbinstall.php
52.44
KB
-rw-r--r--
ctrl.s2.dbtest.php
32.89
KB
-rw-r--r--
ctrl.s3.php
3.97
KB
-rw-r--r--
index.php
15
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ctrl.base.php
<?php /** * controller base * * @link http://www.php-fig.org/psr/psr-2 Full Documentation * * @package CTRL * */ defined('ABSPATH') || defined('DUPXABSPATH') || exit; /** IDE HELPERS */ /* @var $GLOBALS['DUPX_AC'] DUPX_ArchiveConfig */ /** * Base controller class for installer controllers * * Standard: PSR-2 * @link http://www.php-fig.org/psr/psr-2 Full Documentation * * @package SC\DUPX\CTRL\Base * */ //Enum used to define the various test statues final class DUPX_CTRL_Status { const FAILED = 0; const SUCCESS = 1; } /** * A class structer used to report on controller methods * * @package Dupicator\ctrls\ */ class DUPX_CTRL_Report { //Properties public $runTime; public $outputType = 'JSON'; public $status; } /** * Base class for all controllers * * @package Dupicator\ctrls\ */ class DUPX_CTRL_Out { public $report = null; public $payload = null; private $timeStart; private $timeEnd; /** * Init this instance of the object */ public function __construct() { $this->report = new DUPX_CTRL_Report(); $this->payload = null; $this->startProcessTime(); } public function startProcessTime() { $this->timeStart = $this->microtimeFloat(); } public function getProcessTime() { $this->timeEnd = $this->microtimeFloat(); $this->report->runTime = $this->timeEnd - $this->timeStart; return $this->report->runTime; } private function microtimeFloat() { list($usec, $sec) = explode(" ", microtime()); return ((float) $usec + (float) $sec); } } class DUPX_CTRL { const NAME_MAX_SERIALIZE_STRLEN_IN_M = 'mstrlim'; }
Close