This file is indexed.

/usr/share/arc/ldap-monitor/mylo.js is in nordugrid-arc-ldap-monitor 5.0.5-1ubuntu1.

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
function mylo (fnam,lnam,dom1,dom2){
    if ( lnam == "" ) {
	var name = fnam;
    } else {
	var name = fnam + "." + lnam;
    }
    var host = dom1 + "." + dom2;
    var complete = name + "@" + host; 
    output = "<a href=" + "mail" + "to" + ":" + complete + ">" + complete + "</a>";
    document.write(output);
    return output;
}