Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
sbin /
Delete
Unzip
Name
Size
Permission
Date
Action
cagefs_enter_site
1.83
KB
-rwxr-xr-x
2026-04-27 00:00
cagefsctl-user
14.41
KB
-rwxr-xr-x
2026-04-27 00:00
chroot
39.86
KB
-rwxr-xr-x
2026-01-15 00:00
cloudlinux-selector
654
B
-rwxr-xr-x
2026-04-16 00:00
consoletype
15.42
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-check
15.43
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-format
586
B
-rwxr-xr-x
2024-10-29 00:00
cracklib-packer
15.44
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-unpacker
15.42
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-update
1.16
KB
-rwxr-xr-x
2023-03-04 16:00
create-cracklib-dict
994
B
-rwxr-xr-x
2019-02-14 01:54
ddns-confgen
23.56
KB
-rwxr-xr-x
2026-03-27 00:00
exim
1.25
KB
-rwxr-xr-x
2026-05-01 00:00
faillock
23.48
KB
-rwxr-xr-x
2025-12-01 00:00
ip
795.11
KB
-rwxr-xr-x
2026-01-27 00:00
isolatectl
9.06
KB
-rwxr-xr-x
2026-05-14 00:00
ldconfig
914.23
KB
-rwxr-xr-x
2026-05-26 00:00
lvdctl
683
B
-rwxr-xr-x
2026-05-14 00:00
mkhomedir_helper
15.52
KB
-rwxr-xr-x
2025-12-01 00:00
named-checkzone
31.68
KB
-rwxr-xr-x
2026-03-27 00:00
named-compilezone
31.68
KB
-rwxr-xr-x
2026-03-27 00:00
pam_namespace_helper
471
B
-rwxr-xr-x
2025-12-01 00:00
pam_timestamp_check
15.45
KB
-rwxr-xr-x
2025-12-01 00:00
pluginviewer
19.73
KB
-rwxr-xr-x
2025-07-03 00:00
proxyexec
24.4
KB
-r-xr-xr-x
2025-08-12 17:54
pwhistory_helper
23.53
KB
-rwxr-xr-x
2025-12-01 00:00
saslauthd
88.66
KB
-rwxr-xr-x
2025-07-03 00:00
sasldblistusers2
15.62
KB
-rwxr-xr-x
2025-07-03 00:00
saslpasswd2
15.59
KB
-rwxr-xr-x
2025-07-03 00:00
sendmail
1.26
KB
-rwxr-xr-x
2026-05-01 00:00
testsaslauthd
15.51
KB
-rwxr-xr-x
2025-07-03 00:00
tmpwatch
35.68
KB
-rwxr-xr-x
2024-10-29 00:00
tsig-keygen
23.56
KB
-rwxr-xr-x
2026-03-27 00:00
unix_chkpwd
31.63
KB
-rwxr-xr-x
2025-12-01 00:00
unix_update
35.7
KB
-rwx------
2025-12-01 00:00
Save
Rename
#!/usr/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}