This file is indexed.

/usr/share/Crack/scripts/nastygram is in crack-common 5.0a-11.

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
###
# This program was written by and is copyright Alec Muffett 1991,
# 1992, 1993, 1994, 1995, and 1996, and is provided as part of the
# Crack v5.0 Password Cracking package.
#
# The copyright holder disclaims all responsibility or liability with
# respect to its usage or its effect upon hardware or computer
# systems, and maintains copyright as set out in the "LICENCE"
# document which accompanies distributions of Crack v5.0 and upwards.
###

for username in $*
do
	mail $username <<EndOfLetter
					`date`

Dear $username,

The login password you use for the account "$username" has been found
to be insecure by the "Crack" password guessing program.  You must
change your password as soon as possible.

Passwords which are not easily compromised by programs such as "Crack"
are based upon non-dictionary words, hence any word which might appear
in a dictionary, EVEN IF IT IS SUPPOSEDLY A OBSCURE WORD is
unsuitable.

Similarly, any password which is derived from your name, department or
other personal information is unsuitable because it can be easily
guessed.

It is important that password security be maintained at a high level
for the sake of ALL the people who use these computers.  We thank you
for your co-operation in this matter.

	Yours,

		[insert the name of your system administrator]

ps:     This is a recorded announcement.
	Please bear this in mind in all correspondence.

EndOfLetter
done