This file is indexed.

/usr/lib/courier/mkcouriercert is in courier-base 0.78.0-2ubuntu2.

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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#! /bin/sh
#
#
# Copyright 2000-2007 Double Precision, Inc.  See COPYING for
# distribution information.
#
# This is a short script to q`uickly generate a self-signed X.509 key for
# ESMTP STARTTLS.  Normally this script would get called by an automatic
# package installation routine.

CERTNAME=$(basename $0 | sed -e 's/^mk//;s/cert$//')

PEMFILE="$1"

if [ -z "$PEMFILE" ]; then
	PEMFILE=/etc/courier/$CERTNAME.pem
fi

if test "gnutls" = "openssl"
then
	test -x /usr/bin/openssl || exit 0
else
	test -x /usr/bin/certtool || exit 0
fi

if test -f "$PEMFILE"
then
	echo "$PEMFILE already exists."
	exit 1
fi

cleanup() {
	rm -f "$PEMFILE".rand
	rm -f "$PEMFILE"
	rm -f "$PEMFILE".key
	rm -f "$PEMFILE".cert
	exit 1
}

cd /etc/courier
umask 077
BITS="$BITS"
set -e

install -b -m 600 -o "courier" /dev/null "$PEMFILE"

if test "gnutls" = "openssl"
then
	dd if=/dev/urandom of="$PEMFILE".rand count=1 2>/dev/null
	/usr/bin/openssl req -new -x509 -days 365 -nodes \
	          -config "/etc/courier/$CERTNAME.cnf" -out "$PEMFILE" -keyout "$PEMFILE" || cleanup
	/usr/bin/openssl dhparam -2 -rand "$PEMFILE".rand 512 >>"$PEMFILE" || cleanup
	/usr/bin/openssl x509 -subject -dates -fingerprint -noout -in "$PEMFILE" || cleanup
	rm -f "$PEMFILE".rand
else
	if test "$BITS" = ""
	then
		BITS="high"
	fi

	install -b -m 600 -o "courier" /dev/null "$PEMFILE".key
	install -v -m 600 -o "courier" /dev/null "$PEMFILE".cert

	/usr/bin/certtool --generate-privkey --sec-param=$BITS --outfile "$PEMFILE".key || cleanup
	/usr/bin/certtool --generate-self-signed --load-privkey "$PEMFILE".key --outfile "$PEMFILE".cert --template "/etc/courier/$CERTNAME.cnf" || cleanup

	cat "$PEMFILE".key "$PEMFILE".cert >"$PEMFILE"
	rm -f "$PEMFILE".key "$PEMFILE".cert
fi