Linux cpanel9.hostlab.net.tr 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 45.158.14.84 & Your IP : 216.73.216.141
Domains :
Cant Read [ /etc/named.conf ]
User :
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpanel /
ea-wappspector /
src /
Helper /
Delete
Unzip
Name
Size
Permission
Date
Action
InspectorHelper.php
748
B
-rw-r--r--
2026-05-14 17:40
Save
Rename
<?php // Copyright 1999-2024. WebPros International GmbH. All rights reserved. declare(strict_types=1); namespace Plesk\Wappspector\Helper; use League\Flysystem\Filesystem; class InspectorHelper { public function fileContentContainsString(string $fileContent, string $searchString): bool { return str_contains($fileContent, $searchString); } public function fileContentMatchesString(string $fileContent, string $searchPattern): bool { return preg_match($searchPattern, $fileContent) === 1; } public function fileContainsString(Filesystem $fs, string $filePath, string $searchString): bool { return $fs->fileExists($filePath) && str_contains($fs->read($filePath), $searchString); } }