Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.224.73.124
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
usr /
sbin /
[ HOME SHELL ]
Name
Size
Permission
Action
chroot
41.52
KB
-rwxr-xr-x
cloudlinux-selector
654
B
-rwxr-xr-x
consoletype
11.86
KB
-rwxr-xr-x
cracklib-check
13.05
KB
-rwxr-xr-x
cracklib-format
251
B
-rwxr-xr-x
cracklib-packer
13.05
KB
-rwxr-xr-x
cracklib-unpacker
9.03
KB
-rwxr-xr-x
create-cracklib-dict
990
B
-rwxr-xr-x
cxs
1.01
KB
-rwxr-xr-x
ddns-confgen
20.46
KB
-rwxr-xr-x
dnssec-checkds
936
B
-rwxr-xr-x
dnssec-coverage
938
B
-rwxr-xr-x
dnssec-dsfromkey
60.84
KB
-rwxr-xr-x
dnssec-importkey
60.84
KB
-rwxr-xr-x
dnssec-keyfromlabel
64.76
KB
-rwxr-xr-x
dnssec-keygen
72.84
KB
-rwxr-xr-x
dnssec-keymgr
934
B
-rwxr-xr-x
dnssec-revoke
56.74
KB
-rwxr-xr-x
dnssec-settime
60.84
KB
-rwxr-xr-x
dnssec-signzone
117.2
KB
-rwxr-xr-x
dnssec-verify
52.84
KB
-rwxr-xr-x
exim
1.02
KB
-rwxr-xr-x
faillock
20.52
KB
-rwxr-xr-x
genrandom
12.38
KB
-rwxr-xr-x
ip
693.3
KB
-rwxr-xr-x
isc-hmac-fixup
11.86
KB
-rwxr-xr-x
ldconfig
986.02
KB
-rwxr-xr-x
mkhomedir_helper
24.44
KB
-rwxr-xr-x
named-checkzone
36.63
KB
-rwxr-xr-x
named-compilezone
36.63
KB
-rwxr-xr-x
nsec3hash
12.29
KB
-rwxr-xr-x
pam_console_apply
45.2
KB
-rwxr-xr-x
pam_timestamp_check
11.87
KB
-rwxr-xr-x
pluginviewer
20.57
KB
-rwxr-xr-x
proxyexec
21.17
KB
-r-xr-xr-x
pwhistory_helper
20.43
KB
-rwxr-xr-x
saslauthd
94.42
KB
-rwxr-xr-x
sasldblistusers2
20.77
KB
-rwxr-xr-x
saslpasswd2
16.42
KB
-rwxr-xr-x
sendmail
1.02
KB
-rwxr-xr-x
testsaslauthd
16.66
KB
-rwxr-xr-x
tmpwatch
35.47
KB
-rwxr-xr-x
tsig-keygen
20.46
KB
-rwxr-xr-x
unix_chkpwd
36.86
KB
-rwxr-xr-x
unix_update
36.85
KB
-rwx------
Delete
Unzip
Zip
${this.title}
Close
Code Editor : create-cracklib-dict
#!/bin/sh usage() { cat <<-EOF Usage: create-cracklib-dict [options] wordlist ... This script takes one or more word list files as arguments and converts them into cracklib dictionaries for use by password checking programs. The results are placed in the default compiled-in dictionary location. If you wish to store the dictionary in a different location, use the cracklib-format and cracklib-packer commands directly. Options: -o, --output <file> Alternative output file for cracklib-packer -h, --help This help output Example: create-cracklib-dict /usr/share/words EOF if [ -n "$*" ] ; then echo 1>&2 echo "Error: $*" 1>&2 exit 1 else exit 0 fi } output="" while [ -n "$1" ] ; do case $1 in -o|--output) output=$2; shift;; -h|--help) usage;; --) break;; -*) usage "unknown option '$*'";; *) break;; esac shift done [ -z "$*" ] && usage exec cracklib-format "$@" | cracklib-packer ${output}
Close