This file is indexed.

/usr/share/doc/ruby-erubis/examples/basic/example.ec is in ruby-erubis 2.7.0-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
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
<%
#include <stdio.h>

void escape(char *str, FILE *out);

int main(int argc, char *argv[])
{
    int i;

%>
<p>Hello <%== argv[0] %>!</p>
<table>
  <tbody>
    <% for (i = 1; i < argc; i++) { %>
    <tr bgcolor="<%= i % 2 == 0 ? "#FFCCCC" : "#CCCCFF" %>">
      <td><%= "%d", i %></td>
      <td><%== argv[i] %></td>
    </tr>
    <% } %>
  </tbody>
</table>
<%

    return 0; 
}

void escape(char *str, FILE *out)
{
    char *pch;
    for (pch = str; *pch != '\0'; pch++) {
        switch (*pch) {
        case '&':   fputs("&amp;",  out);  break;
        case '>':   fputs("&gt;",   out);  break;
        case '<':   fputs("&lt;",   out);  break;
        case '"':   fputs("&quot;", out);  break;
        case '\'':  fputs("&#039;", out);  break;
        default:    fputc(*pch, out);
        }
    }
}

%>