webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
nette
/
utils
/
src
/
Utils
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
ArrayHash.php
1.86KB
edt
ren
ArrayList.php
2.611KB
edt
ren
Arrays.php
13.256KB
edt
ren
Callback.php
3.482KB
edt
ren
DateTime.php
2.854KB
edt
ren
FileInfo.php
1.261KB
edt
ren
FileSystem.php
9.072KB
edt
ren
Finder.php
13.053KB
edt
ren
Floats.php
2.07KB
edt
ren
Helpers.php
2.5KB
edt
ren
Html.php
19.032KB
edt
ren
Image.php
24.038KB
edt
ren
ImageColor.php
1.603KB
edt
ren
ImageType.php
0.411KB
edt
ren
Iterables.php
4.009KB
edt
ren
Json.php
2.221KB
edt
ren
ObjectHelpers.php
6.848KB
edt
ren
Paginator.php
4.384KB
edt
ren
Random.php
1.2KB
edt
ren
Reflection.php
8.371KB
edt
ren
ReflectionMethod.php
0.793KB
edt
ren
Strings.php
21.715KB
edt
ren
Type.php
6.355KB
edt
ren
Validators.php
10.414KB
edt
ren
exceptions.php
0.757KB
edt
ren
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\Utils; use Nette; /** * Represents the file or directory returned by the Finder. * @internal do not create instances directly */ final class FileInfo extends \SplFileInfo { private string $relativePath; public function __construct(string $file, string $relativePath = '') { parent::__construct($file); $this->setInfoClass(static::class); $this->relativePath = $relativePath; } /** * Returns the relative directory path. */ public function getRelativePath(): string { return $this->relativePath; } /** * Returns the relative path including file name. */ public function getRelativePathname(): string { return ($this->relativePath === '' ? '' : $this->relativePath . DIRECTORY_SEPARATOR) . $this->getBasename(); } /** * Returns the contents of the file. * @throws Nette\IOException */ public function read(): string { return FileSystem::read($this->getPathname()); } /** * Writes the contents to the file. * @throws Nette\IOException */ public function write(string $content): void { FileSystem::write($this->getPathname(), $content); } }