Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
friendsofphp
/
php-cs-fixer
/
src
/
Cache
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Cache.php
4.372KB
edt
ren
CacheInterface.php
0.801KB
edt
ren
CacheManagerInterface.php
0.734KB
edt
ren
Directory.php
1.229KB
edt
ren
DirectoryInterface.php
0.568KB
edt
ren
FileCacheManager.php
3.876KB
edt
ren
FileHandler.php
5.193KB
edt
ren
FileHandlerInterface.php
0.654KB
edt
ren
NullCacheManager.php
0.845KB
edt
ren
Signature.php
2.865KB
edt
ren
SignatureInterface.php
0.915KB
edt
ren
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien Potencier <fabien@symfony.com> * Dariusz Rumiński <dariusz.ruminski@gmail.com> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Cache; /** * @author Dariusz Rumiński <dariusz.ruminski@gmail.com> * * @readonly * * @internal * * @no-named-arguments Parameter names are not covered by the backward compatibility promise. */ final class Directory implements DirectoryInterface { private string $directoryName; public function __construct(string $directoryName) { $this->directoryName = $directoryName; } public function getRelativePathTo(string $file): string { $file = $this->normalizePath($file); if ( '' === $this->directoryName || !str_starts_with(strtolower($file), strtolower($this->directoryName.\DIRECTORY_SEPARATOR)) ) { return $file; } return substr($file, \strlen($this->directoryName) + 1); } private function normalizePath(string $path): string { return str_replace(['\\', '/'], \DIRECTORY_SEPARATOR, $path); } }
<=Back
Liking