This file is indexed.

/usr/sbin/create-cracklib-dict is in cracklib-runtime 2.9.2-5build1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/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}