OXIESEC PANEL
- Current Dir:
/
/
usr
/
sbin
Server IP: 82.112.239.19
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/29/2025 10:07:18 PM
rwxr-xr-x
📄
chroot
39.73 KB
10/02/2024 09:44:18 PM
rwxr-xr-x
📄
consoletype
15.3 KB
11/14/2024 05:04:06 PM
rwxr-xr-x
📄
cracklib-check
15.7 KB
01/29/2022 09:18:16 PM
rwxr-xr-x
📄
cracklib-format
255 bytes
01/29/2022 09:18:10 PM
rwxr-xr-x
📄
cracklib-packer
15.7 KB
01/29/2022 09:18:16 PM
rwxr-xr-x
📄
cracklib-unpacker
15.69 KB
01/29/2022 09:18:16 PM
rwxr-xr-x
📄
create-cracklib-dict
994 bytes
08/18/2015 06:41:16 PM
rwxr-xr-x
📄
ddns-confgen
27.43 KB
02/19/2025 04:04:24 PM
rwxr-xr-x
📄
exim
1.02 KB
03/26/2025 03:16:01 PM
rwxr-xr-x
📄
faillock
23.36 KB
11/25/2024 09:25:08 PM
rwxr-xr-x
📄
hsendmail
4.4 MB
12/05/2024 02:02:14 PM
rwxr-xr-x
📄
ip
755.99 KB
04/30/2024 08:24:25 PM
rwxr-xr-x
📄
ldconfig
1.12 MB
03/10/2025 10:37:59 AM
rwxr-xr-x
📄
mkhomedir_helper
23.38 KB
11/25/2024 09:25:08 PM
rwxr-xr-x
📄
named-checkzone
39.52 KB
02/19/2025 04:04:24 PM
rwxr-xr-x
📄
named-compilezone
39.52 KB
02/19/2025 04:04:24 PM
rwxr-xr-x
📄
named-nzd2nzf
15.29 KB
02/19/2025 04:04:24 PM
rwxr-xr-x
📄
nsec3hash
15.37 KB
02/19/2025 04:04:24 PM
rwxr-xr-x
📄
pam_console_apply
43.69 KB
11/25/2024 09:25:08 PM
rwxr-xr-x
📄
pam_namespace_helper
471 bytes
11/25/2024 09:24:58 PM
rwxr-xr-x
📄
pam_timestamp_check
15.3 KB
11/25/2024 09:25:08 PM
rwxr-xr-x
📄
pluginviewer
19.39 KB
04/10/2023 02:10:39 PM
rwxr-xr-x
📄
proxyexec
24.01 KB
12/09/2022 09:50:30 AM
r--------
📄
pwhistory_helper
19.37 KB
11/25/2024 09:25:08 PM
rwxr-xr-x
📄
saslauthd
88.33 KB
04/10/2023 02:10:39 PM
rwxr-xr-x
📄
sasldblistusers2
15.27 KB
04/10/2023 02:10:39 PM
rwxr-xr-x
📄
saslpasswd2
15.24 KB
04/10/2023 02:10:39 PM
rwxr-xr-x
📄
sendmail
4.4 MB
08/01/2025 09:38:02 PM
rwxr-xr-x
📄
sendmail.bak
1.03 KB
07/16/2024 04:36:11 PM
rwxr-xr-x
📄
sendmail.exim
1.02 KB
03/26/2025 03:16:01 PM
rwxr-xr-x
📄
testsaslauthd
15.16 KB
04/10/2023 02:10:39 PM
rwxr-xr-x
📄
tmpwatch
36.03 KB
02/11/2022 11:52:55 AM
rwxr-xr-x
📄
tsig-keygen
27.43 KB
02/19/2025 04:04:24 PM
rwxr-xr-x
📄
unix_chkpwd
23.45 KB
11/25/2024 09:25:08 PM
rwxr-xr-x
📄
unix_update
31.49 KB
11/25/2024 09:25:08 PM
rwx------
Editing: create-cracklib-dict
Close
#!/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}