This file is indexed.

/usr/share/asp.net-demos/1.1/asp.net/includetest.aspx is in asp.net-examples 3.8-2.1.

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
<!-- #include virtual="header.inc" -->
<script language="C#" runat="server">
      void Clicked (object sender, EventArgs e)
      {
          One.Text = "Message text changed!";
          One.Color = "red";
          Two.Text = "Message text changed2!";
          Two.Color = "red";
	  Three.Text = "Text changed!";
      }
</script>

<body><mono:MonoSamplesHeader runat="server"/>
This is pretty much the same as registertest.aspx, but splitted in 3 files.
<p>
<!-- #include virtual="body.inc" -->
</body>
</html>