This file is indexed.

/usr/share/httrack/html/server/ping.js is in webhttrack-common 3.48.21-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
19
20
21
22
23
24
25
26
// Function aimed to ping the webhttrack server regularly to keep it alive
// If the browser window is closed, the server will eventually shutdown
function ping_server() {
	var iframe = document.getElementById('pingiframe');
	if (iframe && iframe.src) {
		iframe.src = iframe.src;
		setTimeout(ping_server, 30000);
	}
}

// Create an invisible iframe to hold the server ping result
// Only modern browsers will support that, but old browsers are compatible
// with the legacy "wait for browser PID" mode
if (document && document.createElement && document.body
    && document.body.appendChild && document.getElementById) {
	var iframe = document.createElement('iframe');
	if (iframe) {
		iframe.id = 'pingiframe';
		iframe.style.display = "none";
		iframe.style.visibility = "hidden";
		iframe.width = iframe.height = 0;
		iframe.src = "/ping";
		document.body.appendChild(iframe);
		ping_server();
	}
}