This file is indexed.

/usr/share/redmine/plugins/redmine_recaptcha/app/views/settings/_redmine_recaptcha.html.erb is in redmine-plugin-recaptcha 0.1.0+git20121018-3.

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
<table>
	<tr>
		<td colspan="2">Sign up for a <a href="http://www.google.com/recaptcha">reCAPTCHA</a> account, then set keys below.</td>
	</tr>
	<tr>
		<td>Private Key</td>
		<td><%= text_field_tag("settings[recaptcha_private_key]", @settings['recaptcha_private_key'], :size => 52 ) %></td>
	</tr>
	<tr>
		<td>Public Key</td>
		<td><%= text_field_tag("settings[recaptcha_public_key]", @settings['recaptcha_public_key'], :size => 52 ) %></td>
	</tr>
</table>