function run(){
if(window.ActiveXObject){
try {
return new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
return new ActiveXObject('Microsoft.XMLHTTP');
} catch (e) {
return null;
}
}
}else if(window.XMLHttpRequest){
return new XMLHttpRequest();
}else{
return null;
}
}
x=run();
function answer(i)
{
x.open('GET','?m='+i,false);
x.send(null);
aview.innerHTML+=x.responseText; // Text가 지워지지 않게 수정
i++;
if(x.responseText) setTimeout("answer("+i+")",100);
//if(x.responseText=="****") aview.innerHTML="?";
}
setTimeout("answer(0)",10000);
Password is 47a...
'Hacking > Webhacking.kr(스포주의)' 카테고리의 다른 글
Webhacking 42 (0) | 2016.01.15 |
---|---|
Webhacking.kr 27 (0) | 2016.01.15 |
Webhacking.kr 26 (0) | 2016.01.15 |
Webhacking.kr 6 (0) | 2016.01.15 |
Webhacking.kr 19 (0) | 2016.01.15 |