So I'm spelunking around some old, probably abandoned, directories on the servers, looking for snippets of Javascript that I might be able to use (I was actually looking for already-installed libraries so that I wouldn't have to get permission to download and install them myself ... a process which can exceed ... well the heat death of the universe is the outside limit, I believe ... anyhow ...)
I used the UNIX find command to seek out anything that ended with ".js" and stumbled upon "password.js" ... oddly, copied to several directories. So I open it ...
//
// filename: password.js
// purpose : protect [redacted] archive files from
// global access without permission
// author : [redacted]
// date : 200706131423
//
var password=' ';
var keyword='hunter2'; // [note; not the real password]
password=prompt('Please enter your password:',' ');
if (password==keyword) {
alert("good");
}
else
{
alert("bad");
location.href="<url of project page>";
}