This file is indexed.

/etc/molly-guard/run.d/10-print-message is in molly-guard 0.6.3.

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
#!/bin/sh
#
# 10-print-message - print a (command-specific or default) message
#
# Copyright © Andrew Ruthven <andrew@etc.gen.nz>
# Copyright © martin f. krafft <madduck@madduck.net>
# Released under the terms of the Artistic Licence 2.0
#
# Prints either /etc/molly-guard/messages.d/$MOLLYGUARD_CMD
#            or /etc/molly-guard/messages.d/default
# depending on whether the first exists.
#
set -eu

MESSAGESDIR=/etc/molly-guard/messages.d

for i in $MOLLYGUARD_CMD default; do
  if [ -f "$MESSAGESDIR/$i" ] && [ -r "$MESSAGESDIR/$i" ]; then
    cat $MESSAGESDIR/$i
    exit 0
  fi
done