This file is indexed.

/usr/share/qutecom/chat/base.html is in qutecom-data 2.2.1+dfsg1-4ubuntu2.

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
<html>
  <head>
    <link rel="stylesheet" type="text/css" media="screen" href="main.css" />
    <link rel="stylesheet" type="text/css" media="screen" href="%cssPath%" />
    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">

    google.load("language", "1");
	
	function translate(contactId , senderName , message , time ,lang )
	{
		if( lang != "unknown")
		{
			google.language.translate(message, "", lang, 
				function(result) 
				{
					if (!result.error)
					{
						parent.translationFinishedSlot(result.translation,contactId , senderName , message , time );
					}
					else
						parent.translationFinishedSlot("",contactId , senderName , message , time );
				}
			);
		}
		else
			parent.translationFinishedSlot("",contactId , senderName , message , time );
	}
    
    function insertMessage( text )
    {
		var insert = document.getElementById('insert');
		if(insert)
			insert.outerHTML = text;
		else
			document.getElementsByTagName("BODY").item(0).innerHTML += text;
    }

    </script>
  </head>
  <body>
  </body>
</html>