This file is indexed.

/usr/share/popfile/skins/default/history-javascript.thtml is in popfile 1.1.3+dfsg-0ubuntu1.

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
<script type="text/javascript">
<!--
function OnLoadHandler() {    // redefine default OnLoadHandler
    if (document.getElementById("removeChecks"))
         document.getElementById("removeChecks").innerHTML = "<input type='checkbox' class='checkbox' onclick='javascript:toggleChecks(this);' title='Select All' />";
}

function toggleChecks(x) {
    var d = document.forms;
    for (var i=0; i < d.length; i++) {
         for (var j=0; j < d[i].elements.length; j++)
              if (d[i].elements[j].name.substr(0,7) == "remove_")
                    d[i].elements[j].checked = x.checked;
    }
    return 0;
}
// -->
</script>