Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.54
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
cpanel /
ea-wappspector /
src /
MatchResult /
[ HOME SHELL ]
Name
Size
Permission
Action
CakePHP.php
182
B
-rw-r--r--
CodeIgniter.php
194
B
-rw-r--r--
Composer.php
185
B
-rw-r--r--
DotNet.php
177
B
-rw-r--r--
Drupal.php
179
B
-rw-r--r--
Duda.php
176
B
-rw-r--r--
EmptyMatchResult.php
512
B
-rw-r--r--
Joomla.php
180
B
-rw-r--r--
Laravel.php
182
B
-rw-r--r--
MatchResult.php
2.68
KB
-rw-r--r--
MatchResultInterface.php
427
B
-rw-r--r--
NodeJs.php
180
B
-rw-r--r--
Php.php
170
B
-rw-r--r--
Prestashop.php
191
B
-rw-r--r--
Python.php
179
B
-rw-r--r--
Ruby.php
173
B
-rw-r--r--
Sitejet.php
182
B
-rw-r--r--
Siteplus.php
185
B
-rw-r--r--
Sitepro.php
183
B
-rw-r--r--
Symfony.php
182
B
-rw-r--r--
Typo3.php
176
B
-rw-r--r--
WebPresenceBuilder.php
215
B
-rw-r--r--
Wordpress.php
188
B
-rw-r--r--
Yii.php
170
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MatchResult.php
<?php declare(strict_types=1); namespace Plesk\Wappspector\MatchResult; use JsonSerializable; use League\Flysystem\PathTraversalDetected; use League\Flysystem\WhitespacePathNormalizer; class MatchResult implements MatchResultInterface, JsonSerializable { public const ID = null; public const NAME = null; public function __construct( protected string $path, protected ?string $version = null, protected ?string $application = null, ) { try { $this->path = (new WhitespacePathNormalizer())->normalizePath($this->path); } catch (PathTraversalDetected) { $this->path = '/'; } } public function getId(): string { return static::ID; } public function getName(): string { return static::NAME; } public function getPath(): string { return $this->path; } public function getVersion(): ?string { return $this->version; } public function getApplication(): ?string { return $this->application; } public function jsonSerialize(): array { return [ 'id' => $this->getId(), 'name' => $this->getName(), 'path' => $this->getPath(), 'version' => $this->getVersion(), 'application' => $this->getApplication(), ]; } public static function createById( string $id, ?string $path = null, ?string $version = null, ?string $application = null ): MatchResultInterface { $classname = match ($id) { CakePHP::ID => CakePHP::class, CodeIgniter::ID => CodeIgniter::class, Composer::ID => Composer::class, DotNet::ID => DotNet::class, Drupal::ID => Drupal::class, Joomla::ID => Joomla::class, Laravel::ID => Laravel::class, NodeJs::ID => NodeJs::class, Php::ID => Php::class, Prestashop::ID => Prestashop::class, Python::ID => Python::class, Ruby::ID => Ruby::class, Symfony::ID => Symfony::class, Typo3::ID => Typo3::class, Wordpress::ID => Wordpress::class, Yii::ID => Yii::class, Sitejet::ID => Sitejet::class, WebPresenceBuilder::ID => WebPresenceBuilder::class, Sitepro::ID => Sitepro::class, Duda::ID => Duda::class, Siteplus::ID => Siteplus::class, default => null, }; if (!$classname) { return new EmptyMatchResult(); } return new $classname(path: $path ?? '', version: $version, application: $application); } }
Close