Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.16.139.36
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cravings-staging /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
app.php
8.62
KB
-rw-rw-r--
auth.php
3.27
KB
-rw-rw-r--
broadcasting.php
1.57
KB
-rw-rw-r--
cache.php
2.64
KB
-rw-rw-r--
database.php
5.03
KB
-rw-rw-r--
filesystems.php
2.08
KB
-rw-rw-r--
hashing.php
1.53
KB
-rw-rw-r--
logging.php
2.17
KB
-rw-rw-r--
mail.php
4.09
KB
-rw-rw-r--
queue.php
2.58
KB
-rw-rw-r--
sentry.php
1.07
KB
-rw-rw-r--
services.php
1.37
KB
-rw-rw-r--
session.php
6.77
KB
-rw-rw-r--
view.php
1004
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : queue.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Queue Connection Name |-------------------------------------------------------------------------- | | Laravel's queue API supports an assortment of back-ends via a single | API, giving you convenient access to each back-end using the same | syntax for every one. Here you may define a default connection. | */ 'default' => env('QUEUE_CONNECTION', 'sync'), /* |-------------------------------------------------------------------------- | Queue Connections |-------------------------------------------------------------------------- | | Here you may configure the connection information for each server that | is used by your application. A default configuration has been added | for each back-end shipped with Laravel. You are free to add more. | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" | */ 'connections' => [ 'sync' => [ 'driver' => 'sync', ], 'database' => [ 'connection' => 'mysql', 'driver' => 'database', 'table' => 'jobs', 'queue' => 'default', 'retry_after' => 90, ], 'beanstalkd' => [ 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', 'retry_after' => 90, ], 'sqs' => [ 'driver' => 'sqs', 'key' => env('SQS_KEY', env('S3_KEY')), 'secret' => env('SQS_SECRET', env('S3_SECRET')), 'prefix' => env('SQS_PREFIX', 'https://sqs.eu-west-2.amazonaws.com/496020137583'), 'queue' => env('SQS_QUEUE', 'ImageProcessing'), 'region' => env('SQS_REGION', 'eu-west-2'), ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', 'queue' => 'default', 'retry_after' => 90, 'block_for' => null, ], ], /* |-------------------------------------------------------------------------- | Failed Queue Jobs |-------------------------------------------------------------------------- | | These options configure the behavior of failed queue job logging so you | can control which database and table are used to store the jobs that | have failed. You may change them to any database / table you wish. | */ 'failed' => [ 'database' => env('DB_CONNECTION', 'mysql'), 'table' => 'failed_jobs', ], ];
Close