HijackHacker
Gaining Experience
Разгледувајќи по страната на Пого го пронајдов овој код:
Бидејќи сум труп во Јава, дали знае некој што прави, т.е. што генерира?
//REFERENCE PAGE TAG
// CONSTANTS
//alert(document.location.protocol);
var ct = "<img style='display:none' src=";
var cd = "//www.pogobrowser.com";
var cu = "/assets/csct.gif?Log=1&cbust=" + Math.ceil(1000*Math.random());
var ce = ">";
var vo = "";
if (typeof v != "undefined") {
for ( vKey in v ) {
vo = vo+"&"+vKey+"="+escape(v[vKey]);
}
}
document.write(ct,cd,cu,vo,ce);
/*
//*********************************
//Global internal variable
var internal = false;
//*****************************************************
//SET GLOBAL internal to true
function setInternal()
{
internal = true;
}
*/
//*****************************************************
//FORM FIELD COLLECTION
// add to <form> element: onsubmit='AppendFormValuesBD(this)' or to the funciton used in onsubmit as AppendFormValuesBD(document.formname)
function AppendFormValuesBD(bd_form)
{
setInternal();
var bd_formImg = new Image;
var bd_formvalues = 'FormName=' + bd_form.name + '&';
for (var i=0; i<bd_form.length; i++)
{
var item = bd_form.elements;
var bd_formitem = item.name;
var bd_formvalue = item.value;
if (item.type.toLowerCase() != 'password' && item.type.toLowerCase() != 'checkbox') {
bd_formvalues += escape1(bd_formitem) + '=' + escape1(bd_formvalue) + '&';
}
if (item.type.toLowerCase() == 'checkbox') {
bd_formvalues += escape1(bd_formitem) + '=' + escape1(item.checked) + '&';
}
}
bd_formImg.src = cd + cu + "&" + bd_formvalues + "cd=" + new Date().getTime();
}
//END REFERENCE PAGE TAG
Бидејќи сум труп во Јава, дали знае некој што прави, т.е. што генерира?