webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Http
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Client
--
ren
Concerns
--
ren
Exceptions
--
ren
Middleware
--
ren
Resources
--
ren
Testing
--
ren
File.php
0.151KB
edt
ren
FileHelpers.php
1.176KB
edt
ren
JsonResponse.php
3.395KB
edt
ren
LICENSE.md
1.05KB
edt
ren
RedirectResponse.php
5.814KB
edt
ren
Request.php
17.801KB
edt
ren
Response.php
3.026KB
edt
ren
ResponseTrait.php
3.755KB
edt
ren
UploadedFile.php
4.009KB
edt
ren
composer.json
1.267KB
edt
ren
<?php namespace Illuminate\Http; use Illuminate\Support\Str; trait FileHelpers { /** * The cache copy of the file's hash name. * * @var string */ protected $hashName = null; /** * Get the fully qualified path to the file. * * @return string */ public function path() { return $this->getRealPath(); } /** * Get the file's extension. * * @return string */ public function extension() { return $this->guessExtension(); } /** * Get a filename for the file. * * @param string|null $path * @return string */ public function hashName($path = null) { if ($path) { $path = rtrim($path, '/').'/'; } $hash = $this->hashName ?: $this->hashName = Str::random(40); if ($extension = $this->guessExtension()) { $extension = '.'.$extension; } return $path.$hash.$extension; } /** * Get the dimensions of the image (if applicable). * * @return array|null */ public function dimensions() { return @getimagesize($this->getRealPath()); } }
<=Back
Liking