The 'active' codes are stored in an xml file(blame the webmaster not lance!).
Although 'brute forcing' will not work, it's very easy to 'generate' legit codes (there IS a finite number of them, as they are generated from a 'key'. That being said, it would completely kill the fun to release any of them; they also need to be added to the xml/db, which of course we cannot do.
Code:
function arkhunter_code_generator() {
var matchedKey, parsedString = parseQueryString();
if (parsedString && typeof parsedString === "object") {
for (key in parsedString) {
if (parsedString.hasOwnProperty(key)) {
switch (key) {
case Base64.decode("YXJraHVudGVy"):
matchedKey = parsedString[key];
break;
default:
break;
}
}
}
}