This file is indexed.

/usr/share/freeradius-dialupadmin/htdocs/session_destroy.php is in freeradius-dialupadmin 2.1.12+dfsg-1.2ubuntu8.

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
<?php
session_start();
session_unset();
session_destroy();
?>
<html>
<head>
<title>Session Cache Destroy Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<center>
<b>Session Cache Destroyed</b>
</body>
</html>