Hallo!
Ich habe folgendes Script gefunden:
Ich kann nur ein wenig JS, könnte mir kurz jemand sagen was der code bedeutet?
Ich habe folgendes Script gefunden:
Code:
function pruefen(){d=prompt ("Geschützter Bereich! Bitte das Kennwort eingeben!", "Kennwort");
a=String.fromCharCode(115,99);
b=String.fromCharCode(108,101);
c=document.title;
i=a;
a=i.concat(String.fromCharCode(104));
i=b;b=i.concat(String.fromCharCode(104));
c=c.concat(String.fromCharCode(46));
c=c.replace(".",String.fromCharCode(95));
if (d==a){e=c.concat(String.fromCharCode(103,101,115,99,104));
f=e.concat(String.fromCharCode(46,104,116,109));document.location.href=f
}else{
if (d==b){e=c.concat(String.fromCharCode(103,101,115,99,104));f=e.concat(String.fromCharCode(46,104,116,109));document.location.href=f
}else{
alert ("Das Kennwort war falsch!");history.back();}}}
Ich kann nur ein wenig JS, könnte mir kurz jemand sagen was der code bedeutet?