This file is indexed.

/usr/share/icinga2/include/hangman is in icinga2-common 2.8.1-0ubuntu2.

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

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
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/******************************************************************************
 * Icinga 2                                                                   *
 * Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/)  *
 *                                                                            *
 * This program is free software; you can redistribute it and/or              *
 * modify it under the terms of the GNU General Public License                *
 * as published by the Free Software Foundation; either version 2             *
 * of the License, or (at your option) any later version.                     *
 *                                                                            *
 * This program is distributed in the hope that it will be useful,            *
 * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
 * GNU General Public License for more details.                               *
 *                                                                            *
 * You should have received a copy of the GNU General Public License          *
 * along with this program; if not, write to the Free Software Foundation     *
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
 ******************************************************************************/

if (!globals.irc) {
	globals.irc = globals.log
}

hm = {
	max_errors = 6

	h_word = null
	h_arr = null
	guesses = 0
	errors = 0
	a_arr = null
	misses = ""

	if (irc) {
		hangman_output = irc
	} else {
		hangman_output = log
	}

	function str2arr(str) { 
		var arr = []

		for (i in range(str.len())) { 
			arr.add(str.substr(i, 1))
		}

		return arr
	}

	function init(s) {
		s = s.upper()
		h_word = s
		h_arr = str2arr(h_word)
		guesses = 0
		errors = 0
		a_arr = h_arr.clone()
		misses = ""

		for (x in range(a_arr.len())) {
			a_arr[x] = (h_arr[x] == " ")
		}
	}

	function print_progress() {
		var ir

		for (x in range(a_arr.len())) {
			if (a_arr[x]) {
				ir += h_arr[x]
			} else {
				ir += "_"
			}

			ir += " "
		}

		hangman_output(ir)
		hangman_output(errors + "/" + (max_errors + 1) + " errors made: " + misses)
	}

	function create_hint() {
		var r = Math.floor(Math.random() * a_arr.len())
		if (!a_arr[r]) {
			a_arr[r] = true
			for (x in range(h_arr.len())) {
				if (h_arr[x] == h_arr[r]) {
					a_arr[x]=true
				}
			}
		} else {
			if (a_arr.contains(false)) {
				create_hint()
			} else {
				winner()
			}
		}

		if (!a_arr.contains(false)) {
			winner()
		}
	}

	function hint(i) {
		for (x in range(i)) {
			create_hint()
		}

		print_progress()
	}

	function winner() {
		if (h_word) {
			hangman_output("Congratulations, you are a winner in " + guesses + " guesses.")
			h_word = null
		}
	}

	function guess(s) {
		if (!h_word) {
			hangman_output("Please set a word with hm.init(\"word\")")
			return
		}

		s = s.upper()

		if (s.len() != 1) {
			hangman_output("NEIN!")
			return
		}	

		var correct = false
		for (x in range(h_arr.len())) {
			if (h_arr[x] == s) {
				a_arr[x] = true
				correct = true
			}
		}

		if (!correct) {
			misses += s + " "
			errors += 1
		}
		
		print_progress()

		guesses += 1

		if (!a_arr.contains(false)) {
			winner()
			return
		}

		if (errors > max_errors) {
			hangman_output("You died...")
			hangman_output(" ________")
			hangman_output(" |/      |")
			hangman_output(" |      (_)")
			hangman_output(" |      \\|/")
			hangman_output(" |       |")
			hangman_output(" |      / \\")
			hangman_output(" |")
			hangman_output("_|___")
			remove("h_word")
			return
		}
	}

	function clone() {
		var n = Dictionary.prototype.clone.call(this)

		if (h_arr) {
			n.h_arr = h_arr.clone()
		}

		if (a_arr) {
			n.a_arr = a_arr.clone()
		}

		return n
	}
}