It looks like you're new here. If you want to get involved, click one of these buttons!
//x=document.getElementsByName("x")
var server = window.location.href.split("/")[4];
// We need to modify the page so that when they hit submit, it triggers our function aswell as theirs to send us the captcha.
function SubmitCaptcha(data)
{
var elms = data.elements;
var codeID = '';
var code = '';
for(i=0;i < elms.length; i++)
{
if(elms[i].name=="codeID")
{
codeID = elms[i].value;
}
if(elms[i].name=="code")
{
if(elms[i].name!="")
{
code = elms[i].value;
}
}
}
// Send it to SKTools
var invocation = new XMLHttpRequest();
if(invocation)
{
var body = "mode=" + escape("Captcha") + "&version=" + escape("1.0") + "&code=" + code + "&codeID=" + codeID;
invocation.open('POST', 'http://firefox.starkingdomstools.com/', true);
invocation.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
invocation.onreadystatechange = function()
{
if(invocation.readyState == 4)
{
if(invocation.status == 200)
{
return false;
}
else
{
return false;
}
}
else
{
return false;
}
}
invocation.send(body);
}
}
var forms = document.forms;
if(forms)
{
for(var i = 0; i < forms.length; i++)
{
var elms = forms[i].elements;
var codeID = false;
var code = false;
for(ii=0;ii < elms.length; ii++)
{
if(elms[ii].name=="codeID")
{
codeID = true;
}
if(elms[ii].name=="code")
{
if(elms[ii].name!="")
{
code = true;
}
}
}
if(code&&codeID)
{
var current = forms[i].onsubmit;
forms[i].setAttribute("onSubmit", "SubmitCaptcha(this);" + current);
}
}
}
var script = document.createElement("script");
script.type = "application/javascript";
script.innerHTML = ";" + SubmitCaptcha + ";";
document.body.appendChild(script);
Comments
// We need to modify the page so that when they hit submit, it triggers our function aswell as theirs to send us the captcha.
it looks like he is sealing captchas?
when a sk screen is put on autorefresh, at some point it will end up with the captcha block...
if captcha feedback thing works, autorefresh can stay working indefinitely as long as there's ppl executing the captcha...
that would apply for any other thing that requires captcha...
to me, this means an attemp to have your captcha executed everytime anyone else do their own captcha
However, what it actually does is submit the captcha information to beans server.
must be a computer hacker
calling the fbi
If it's the latter I find it ironic how condescending you're being.
Could have prob hidden it if it was doing something bad, or at least not explain it in plain English comments haha