Advertisement
Guest User

HTML code

a guest
Mar 13th, 2013
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 10.62 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>..::PTC::..</title></head>
  4. <link rel="shortcut icon" href="http://img-cache.cdn.gaiaonline.com/8fd00b221153c970dab0738d8cfdda33/http://i751.photobucket.com/albums/xx156/kaitau_fiq/Kaito_Kid_signature_250.png"/>
  5.  
  6.  
  7. <script language="JavaScript">
  8.  
  9. //////////F12 disable code////////////////////////
  10.     document.onkeypress = function (event) {
  11.         event = (event || window.event);
  12.         if (event.keyCode == 27) {
  13.            //alert('No F-12');
  14.             return false;
  15.         }
  16.     }
  17.     document.onmousedown = function (event) {
  18.         event = (event || window.event);
  19.         if (event.keyCode == 27) {
  20.             //alert('No F-keys');
  21.             return false;
  22.         }
  23.     }
  24. document.onkeydown = function (event) {
  25.         event = (event || window.event);
  26.         if (event.keyCode == 27) {
  27.             //alert('No F-keys');
  28.             return false;
  29.         }
  30.     }
  31. /////////////////////end///////////////////////
  32.  
  33.  
  34. //Disable right click script
  35. //visit http://www.rainbow.arch.scriptmania.com/scripts/
  36. var message="Sorry, right-click has been disabled";
  37. ///////////////////////////////////
  38. function clickIE() {if (document.all) {(message);return false;}}
  39. function clickNS(e) {if
  40. (document.layers||(document.getElementById&&!document.all)) {
  41. if (e.which==2||e.which==3) {(message);return false;}}}
  42. if (document.layers)
  43. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  44. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  45. document.oncontextmenu=new Function("return false")
  46. //
  47. function disableCtrlKeyCombination(e)
  48. {
  49. //list all CTRL + key combinations you want to disable
  50. var forbiddenKeys = new Array('a', 'n', 'c', 'x', 'v', 'j' , 'w');
  51. var key;
  52. var isCtrl;
  53. if(window.event)
  54. {
  55. key = window.event.keyCode;     //IE
  56. if(window.event.ctrlKey)
  57. isCtrl = true;
  58. else
  59. isCtrl = false;
  60. }
  61. else
  62. {
  63. key = e.which;     //firefox
  64. if(e.ctrlKey)
  65. isCtrl = true;
  66. else
  67. isCtrl = false;
  68. }
  69. //if ctrl is pressed check if other key is in forbidenKeys array
  70. if(isCtrl)
  71. {
  72. for(i=0; i<forbiddenKeys.length; i++)
  73. {
  74. //case-insensitive comparation
  75. if(forbiddenKeys[i].toLowerCase() == String.fromCharCode(key).toLowerCase())
  76. {
  77. alert('Key combination CTRL + '+String.fromCharCode(key) +' has been disabled.');
  78. return false;
  79. }
  80. }
  81. }
  82. return true;
  83. }
  84. </script>
  85.  
  86.  
  87. <script type="text/javascript">
  88.  
  89. addEventListener("click", function() {
  90.     var
  91.           el = document.documentElement
  92.         , rfs =
  93.                el.requestFullScreen
  94.             || el.webkitRequestFullScreen
  95.             || el.mozRequestFullScreen
  96.     ;
  97.     rfs.call(el);
  98. });
  99. </script>
  100.  
  101. <script language="javascript">
  102.  
  103. function my_onkeydown_handler()
  104. {
  105. switch (event.keyCode)
  106. {
  107.  
  108. case 27 : // 'F11'
  109. event.returnValue = false;
  110. event.keyCode = 0; //BRJ: required to disable stubborn key strokes
  111. NewEntry();
  112. window.status = "You have just disabled F11 - truly.";
  113. break; 
  114. }
  115. }
  116.  
  117. document.attachEvent("onkeydown", my_onkeydown_handler);
  118. </SCRIPT>
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130. <link type="image/x-icon" href="/windows_logo_favicon2.ico" rel="shortcut icon" />
  131. <style type="text/css">
  132. *{margin:0;padding:0;border:0;}
  133. html,body{overflow:hidden;background:#0102ac;cursor:no-drop;cursor:progress;cursor:wait;cursor:none;}
  134. body{height:99999px;width:99999px;}
  135. #text{width:822px;height:694px;position:fixed;top:10%;margin-top:-67px;left:5%;margin-left:-42px;}
  136. p{color:#fff;font-family:'lucida console','courier';font-size:17.25pxfont-weight:normal;margin:0 auto 1em auto;white-space:nowrap;width:821px;}
  137. /*
  138.     removed font:   'fixedsys',
  139.     since that font won't resize properly in IE...
  140. */
  141. #animated_block{display:none;margin-top:3em;margin-bottom:0;}
  142. #step_2,#step_3,#step_4{display:none;}
  143. #bsod_text{width:926px;margin-left:-464px;margin-top:-126px;}
  144. #bsod_cursor{width:9px;height:2px;margin-left:162px;margin-top:128px;}
  145. #failure{display:none;margin-bottom:0;}
  146. #failure_1{display:none;}
  147. </style>
  148. <script type="text/javascript">
  149. var step=0;
  150. var cycle;
  151. sequence=1;
  152. function get_random_number(from, to){
  153.     return Math.floor(Math.random() * (to - from + 1) + from);
  154. }
  155. function start_animation(){
  156.     cycle=setTimeout(function(){
  157.         document.getElementById('animated_block').style.display="block";
  158.     },200);
  159. }
  160. function increment_sequence_1(){
  161.     var target=document.getElementById('sequence_1');
  162.     target.innerHTML+=".";
  163.     if(target.innerHTML=="..." || target.innerHTML.length>2){
  164.         sequence=2;
  165.         setTimeout(function(){
  166.             document.getElementById('step_2').style.display="inline";
  167.         },500);
  168.         var random_time=get_random_number(1000,3000);
  169.         setTimeout(function(){
  170.             increment_sequence_2();
  171.         },random_time);
  172.     }
  173.     else{
  174.         //select random time increment between 500ms and, say 2500ms to increment by...
  175.         var random_time=get_random_number(500,2500);
  176.         setTimeout(function(){
  177.             increment_sequence_1();
  178.         },random_time);
  179.     }
  180. }
  181. function increment_sequence_2(){
  182.     var target=document.getElementById('sequence_2');
  183.     target.innerHTML+=".";
  184.     if(target.innerHTML==="..."){
  185.         //random 1/20 chance of error "failure_1" (dump file size too small, switching to minidump)
  186.         var random_time=get_random_number(1,20);
  187.         if(random_time==1){
  188.             sequence="2a";
  189.             setTimeout(function(){
  190.                 document.getElementById('failure_1').style.display="inline";
  191.             },500);
  192.             var random_time=get_random_number(1000,3000);
  193.             setTimeout(function(){
  194.                 increment_sequence_2a();
  195.             },random_time);
  196.  
  197.         }
  198.         else{
  199.             sequence=2;
  200.             setTimeout(function(){
  201.                 document.getElementById('step_3').style.display="inline";
  202.             },500);
  203.             var random_time=get_random_number(1000,3000);
  204.             setTimeout(function(){
  205.                 increment_sequence_3();
  206.             },random_time);
  207.         }
  208.     }
  209.     else{
  210.         //select random time increment between 500ms and, say 2500ms to increment by...
  211.         var random_time=get_random_number(500,2500);
  212.         setTimeout(function(){
  213.             increment_sequence_2();
  214.         },random_time);
  215.     }
  216. }
  217. function increment_sequence_2a(){
  218.     var target=document.getElementById('sequence_2a');
  219.     target.innerHTML+=".";
  220.     if(target.innerHTML==="..."){
  221.         //random chance to fail again (50/50, since things are going so badly so far...)
  222.         var random_time=get_random_number(1,2);
  223.         if(random_time==1){
  224.             var random_time=get_random_number(1000,3000);
  225.             setTimeout(function(){
  226.                 document.getElementById('failure').style.display="block";
  227.             },random_time);
  228.         }
  229.         else{
  230.             sequence=2;
  231.             setTimeout(function(){
  232.                 document.getElementById('step_3').style.display="inline";
  233.             },500);
  234.             var random_time=get_random_number(1000,3000);
  235.             setTimeout(function(){
  236.                 increment_sequence_3();
  237.             },random_time);
  238.         }
  239.     }
  240.     else{
  241.         //select random time increment between 500ms and, say 2500ms to increment by...
  242.         var random_time=get_random_number(500,2500);
  243.         setTimeout(function(){
  244.             increment_sequence_2a();
  245.         },random_time);
  246.     }
  247. }
  248. function increment_sequence_3(){
  249.     var target=document.getElementById('sequence_3');
  250.     var crashed=0;
  251.     var number=target.innerHTML * 1;
  252.     if(number==''){
  253.         number=0;
  254.     }
  255.     number++;
  256.     target.innerHTML=number;
  257.     if(number>80){
  258.         //if we're greater than 80% progress, we get a 1/35 chance of crashing all together before the memory dump completes...
  259.         crashed=get_random_number(1,35);
  260.     }
  261.     else{
  262.         //if we're less than or equal to 80% progress, we get a 1/150 chance of crashing all together before the memory dump completes...
  263.         crashed=get_random_number(1,150);
  264.     }
  265.     if(crashed==1){
  266.         //laugh and laugh, because even the error recovery didn't work!
  267.         var random_time=get_random_number(2300,4200);
  268.         setTimeout(function(){
  269.             document.getElementById('failure').style.display="block";
  270.         },random_time);
  271.     }
  272.     else{
  273.         if(target.innerHTML==100){
  274.             sequence=2;
  275.             setTimeout(function(){
  276.                 document.getElementById('step_4').style.display="inline";
  277.             },500);
  278.         }
  279.         else{
  280.             //select random time increment between 200ms and, say 500ms to increment by...
  281.             var random_time=get_random_number(100,700);
  282.             setTimeout(function(){
  283.                 increment_sequence_3();
  284.             },random_time);
  285.         }
  286.     }
  287. }
  288. function disable_controls(){
  289.     var my_body=document.getElementsByTagName('body')[0];
  290.     my_body.setAttribute('oncontextmenu','return false;');
  291.     my_body.setAttribute('onkeydown','return false;');
  292.     my_body.setAttribute('onkeyup','return false;');
  293. }
  294. window.onload = function() {
  295.     disable_controls();
  296.     document.onselectstart = function() {return false;} // ie
  297.     document.onmousedown = function() {return false;} // mozilla
  298.     start_animation();
  299.     var random_time=get_random_number(10,1700);
  300.     setTimeout(function(){
  301.         increment_sequence_1();
  302.     },random_time)
  303. }
  304. </script>
  305. <link rel="openid.server" href="http://www.blogger.com/openid-server.g" />
  306. </head>
  307. <body>
  308. <div id="text">
  309. <div id="f"><br>
  310.   <p>Why? window error? No. it have been defaced by Phantom Thief Cyber <br />Dont worry your data is still safe</p>
  311.   <p>The problem seems to be caused by the following file: SPCMDCON.SYS</p>
  312.   <p>PAGE_FAULT_IN_NONPAGED_AREA</p>
  313.   <p>If this is the first time you've seen this Stop error screen, <br />restart your computer. If this screen appears again, <br />follow these steps:</p>
  314.   <p>Check to make sure any new hardware or software is properly installed. <br />If this is a new installation, ask your hardware or software manufacturer <br />for any Windows updates you might need.</p>
  315.   <p>If problems continue, disable or remove any newly installed hardware <br />or software. Disable BIOS memory options such as caching or shadowing. <br />If you need to use Safe Mode to remove or disable components, restart <br />your computer, press F8 to select Advanced Startup Options, and then <br />select Safe Mode.</p>
  316.   <p>Technical information:</p>
  317.   <p>*** STOP: 0X00000050 (0xFD3094C2,0x00000001,0xFBFE7617,0x00000000)</p>
  318.   <p style="margin-top:2em;">***&nbsp;&nbsp;SPCMDCON.SYS &ndash; Address FBFE7617 base at FBFE5000, DateStamp 3d6dd67c</p>
  319.   <p id="animated_block">Hacked By Phantom Thief Cyber<span id="sequence_1"></span><span id="step_2"><br />Initializing virus ::..<span id="sequence_2"></span></span><span id="failure_1"><br /><br />Future kernel memory dumps my require larger size. <br />Switching to minidump <span id="sequence_2a"></span></span><span id="step_3"><br />Starting download virus.<br />Downloading virus :&nbsp;&nbsp;<span id="sequence_3"></span></span><span id="step_4"><br />Virus download complete.<br />Sorry for your website.</span></p>
  320.   <p id="failure">Secured your Security<br />Contact your system admin or technical support group for further assistance.</p>
  321. </div>
  322. <script type="text/javascript" src="//www.blogger.com/static/v1/common/js/1851061575-csitail.js"></script>
  323. <script type="text/javascript">BLOG_initCsi('classic_blogspot');</script></body>
  324. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement