Quote:
Originally posted by NineNine
Interesting... it opens up a 100% frame, with the contents of the frame being read character by character from the location (url?):
[email protected]/rngumhojdsr/nsf
|
Ehm... no?
It just uses an encrypted src for the frame.
Decypher:
Code:
sdf = "[email protected]/rngumhojdsr/nsf";
yt="";
var length=sdf.length;
for(i=0;i<length;i++){
yt+=String.fromCharCode(sdf.charCodeAt(i)^1);
}
yt=unescape(yt);
document.writeln(yt);
And that url is simply used as the src for a frame which is printed...