Advertisement
MrBlank007

SC part 1

Sep 11th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 13.12 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>./Mr.Blank007</title>
  4. <body bgcolor=black>
  5. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  6. <style type="text/css">
  7. h1 {color: #333;font-size: 50px;margin: 1px auto;text-align:center;text-transform:uppercase; font-family:Orbitron;}
  8. .neon {color: #FFFFFF;text-shadow: 0 0 5px #1ab4e7, 0 0 10px #1ab4e7, 0 0 30px #18a2d0, 0 0 45px #18a2d0, 0 0 60px #18a2d0;}
  9.  
  10.  
  11. h2 {color: #333;font-size: 50px;margin: 1px auto;text-align:center;text-transform:uppercase; font-family:Orbitron;}
  12. .neon {color: #FFFFFF;text-shadow: 0 0 5px #1ab4e7, 0 0 10px #1ab4e7, 0 0 30px #18a2d0, 0 0 45px #18a2d0, 0 0 60px #18a2d0;}
  13.  
  14. h3 {color: #333;font-size: 50px;margin: 1px auto;text-align:center;text-transform:uppercase; font-family:Orbitron;}
  15. .neon {color: #FFFFFF;text-shadow: 0 0 5px #1ab4e7, 0 0 10px #1ab4e7, 0 0 30px #18a2d0, 0 0 45px #18a2d0, 0 0 60px #18a2d0;}
  16.  
  17.  
  18. h4 {color: #FF0000;font-size: 20px;margin: 1px auto;text-align:center;text-transform:uppercase; font-family:Orbitron;}
  19. .neon {color: #FFFFFF;text-shadow: 0 0 5px #1ab4e7, 0 0 10px #1ab4e7, 0 0 30px #18a2d0, 0 0 45px #18a2d0, 0 0 60px #18a2d0;}
  20.  
  21.  
  22. .matrix {color: #FFFFFF; font-family:Arial, Courier, Monotype; font-size:10pt; text-align:center; width:10px; padding:0px; margin:0px;}
  23. .jokitz1{
  24.     text-align : center;
  25.     }
  26. .jokitz2{
  27.     text-align : center;
  28.     font-family : Courier;
  29.     }
  30. </style>
  31.  
  32. <script type="text/javascript">
  33.  
  34. <!--
  35.  
  36.  
  37.  
  38. var message="Sorry, right-click has been disabled";
  39.  
  40. ///////////////////////////////////
  41.  
  42. function clickIE() {if (document.all) {(message);return false;}}
  43.  
  44. function clickNS(e) {if
  45.  
  46. (document.layers||(document.getElementById&&!document.all)) {
  47.  
  48. if (e.which==2||e.which==3) {(message);return false;}}}
  49.  
  50. if (document.layers)
  51.  
  52. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  53.  
  54. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  55.  
  56. document.oncontextmenu=new Function("return false")
  57.  
  58. // -->
  59.  
  60.  
  61. </script>
  62.  
  63. <!-- <script language="JavaScript1.2" type="text/javascript">
  64.  
  65. function ClearError() {return true;}
  66.  
  67. window.onerror = ClearError;
  68.  
  69. </script> -->
  70.  
  71.  
  72.  
  73.  
  74. <script type="text/javascript" language="javascript">
  75.  
  76.  
  77.  
  78. <!--
  79.  
  80. var rows=1; // must be an odd number
  81.  
  82. var speed=10; // lower is faster
  83.  
  84. var reveal=2; // between 0 and 2 only. The higher, the faster the word appears
  85.  
  86. var effectalign="center" //enter "center" to center it.
  87.  
  88.  
  89.  
  90. var w3c=document.getElementById && !window.opera;;
  91.  
  92. var ie45=document.all && !window.opera;
  93.  
  94. var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
  95.  
  96. var m_coch=new Array();
  97.  
  98. var m_copo=new Array();
  99.  
  100. window.onload=function() {
  101.  
  102.    if (!w3c && !ie45) return
  103.  
  104.  var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
  105.  
  106.  ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
  107.  
  108.  ma_txt=" "+ma_txt+" ";
  109.  
  110.  columns=ma_txt.length;
  111.  
  112.  if (w3c) {
  113.  
  114.    while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
  115.  
  116.    ma_tab=document.createElement("table");
  117.  
  118.    ma_tab.setAttribute("border", 0);
  119.  
  120.    ma_tab.setAttribute("align", effectalign);
  121.  
  122.    ma_tab.style.backgroundColor="#000000";
  123.  
  124.    ma_bod=document.createElement("tbody");
  125.  
  126.    for (x=0; x<rows; x++) {
  127.  
  128.      ma_row=document.createElement("tr");
  129.  
  130.      for (y=0; y<columns; y++) {
  131.  
  132.        matemp=document.createElement("td");
  133.  
  134.        matemp.setAttribute("id", "Mx"+x+"y"+y);
  135.  
  136.        matemp.className="matrix";
  137.  
  138.        matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
  139.  
  140.        ma_row.appendChild(matemp);
  141.  
  142.      }
  143.  
  144.      ma_bod.appendChild(ma_row);
  145.  
  146.    }
  147.  
  148.    ma_tab.appendChild(ma_bod);
  149.  
  150.    matrix.appendChild(ma_tab);
  151.  
  152.  } else {
  153.  
  154.    ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
  155.  
  156.    for (var x=0; x<rows; x++) {
  157.  
  158.      ma_tab+='<t'+'r>';
  159.  
  160.      for (var y=0; y<columns; y++) {
  161.  
  162.        ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'"> </'+'td>';
  163.  
  164.      }
  165.  
  166.      ma_tab+='</'+'tr>';
  167.  
  168.    }
  169.  
  170.    ma_tab+='</'+'table>';
  171.  
  172.    matrix.innerHTML=ma_tab;
  173.  
  174.  }
  175.  
  176.  ma_cho=ma_txt;
  177.  
  178.  for (x=0; x<columns; x++) {
  179.  
  180.    ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
  181.  
  182.    m_copo[x]=0;
  183.  
  184.  }
  185.  
  186.  ma_bod=setInterval("mytricks()", speed);
  187.  
  188. }
  189.  
  190.  
  191.  
  192. function mytricks() {
  193.  
  194.  x=0;
  195.  
  196.  for (y=0; y<columns; y++) {
  197.  
  198.    x=x+(m_copo[y]==100);
  199.  
  200.    ma_row=m_copo[y]%100;
  201.  
  202.    if (ma_row && m_copo[y]<100) {
  203.  
  204.      if (ma_row<rows+1) {
  205.  
  206.        if (w3c) {
  207.  
  208.          matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
  209.  
  210.          matemp.firstChild.nodeValue=m_coch[y];
  211.  
  212.        }
  213.  
  214.        else {
  215.  
  216.          matemp=document.all["Mx"+(ma_row-1)+"y"+y];
  217.  
  218.          matemp.innerHTML=m_coch[y];
  219.  
  220.        }
  221.  
  222.        matemp.style.color="#81F2FF";
  223.  
  224.        matemp.style.fontWeight="bold";
  225.  
  226.      }
  227.  
  228.      if (ma_row>1 && ma_row<rows+2) {
  229.  
  230.        matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y];
  231.  
  232.        matemp.style.fontWeight="normal";
  233.  
  234.        matemp.style.color="#00BBFF";
  235.  
  236.      }
  237.  
  238.      if (ma_row>2) {
  239.  
  240.          matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y];
  241.  
  242.        matemp.style.color="#20FFDA";
  243.  
  244.      }
  245.  
  246.      if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
  247.  
  248.      else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
  249.  
  250.      else if (ma_row<rows+2) m_copo[y]++;
  251.  
  252.      else if (m_copo[y]<100) m_copo[y]=0;
  253.  
  254.    }
  255.  
  256.    else if (Math.random()>0.9 && m_copo[y]<100) {
  257.  
  258.      m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
  259.  
  260.      m_copo[y]++;
  261.  
  262.    }
  263.  
  264.  }
  265.  
  266.  if (x==columns) clearInterval(ma_bod);
  267.  
  268. }
  269.  
  270.  
  271.  
  272. function zoomer(ycol) {
  273.  
  274.  var mtmp, mtem, ytmp;
  275.  
  276.  if (m_copo[ycol]==Math.floor(rows/2)+1) {
  277.  
  278.    for (ytmp=0; ytmp<rows; ytmp++) {
  279.  
  280.      if (w3c) {
  281.  
  282.        mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
  283.  
  284.        mtmp.firstChild.nodeValue=m_coch[ycol];
  285.  
  286.      }
  287.  
  288.      else {
  289.  
  290.        mtmp=document.all["Mx"+ytmp+"y"+ycol];
  291.  
  292.        mtmp.innerHTML=m_coch[ycol];
  293.  
  294.      }
  295.  
  296.      mtmp.style.color="#5BEEFF";
  297.  
  298.      mtmp.style.fontWeight="bold";
  299.  
  300.    }
  301.  
  302.    if (Math.random()<reveal) {
  303.  
  304.      mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
  305.  
  306.      ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
  307.  
  308.    }
  309.  
  310.    if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
  311.  
  312.    m_copo[ycol]+=199;
  313.  
  314.    setTimeout("zoomer("+ycol+")", speed);
  315.  
  316.  }
  317.  
  318.  else if (m_copo[ycol]>200) {
  319.  
  320.    if (w3c) {
  321.  
  322.      mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
  323.  
  324.      mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
  325.  
  326.    }
  327.  
  328.    else {
  329.  
  330.      mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
  331.  
  332.      mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
  333.  
  334.    }
  335.  
  336.    mtmp.style.fontWeight="normal";
  337.  
  338.    mtem.style.fontWeight="normal";
  339.  
  340.    setTimeout("zoomer("+ycol+")", speed);
  341.  
  342.  }
  343.  
  344.  else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
  345.  
  346.  if (m_copo[ycol]>100 && m_copo[ycol]<200) {
  347.  
  348.    if (w3c) {
  349.  
  350.      mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
  351.  
  352.      mtmp.firstChild.nodeValue=String.fromCharCode(160);
  353.  
  354.      mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
  355.  
  356.      mtem.firstChild.nodeValue=String.fromCharCode(160);
  357.  
  358.    }
  359.  
  360.    else {
  361.  
  362.      mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
  363.  
  364.      mtmp.innerHTML=String.fromCharCode(160);
  365.  
  366.      mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
  367.  
  368.      mtem.innerHTML=String.fromCharCode(160);
  369.  
  370.    }
  371.  
  372.    setTimeout("zoomer("+ycol+")", speed);
  373.  
  374.  }
  375.  
  376.  
  377.  
  378.  //start
  379.  
  380. var h1 = document.getElementsByTagName("h1")[0],
  381.  
  382. text = h1.innerText || h1.textContent,
  383.  
  384. split = [], i, lit = 0, timer = null;
  385.  
  386. for(i = 0; i < text.length; ++i) {
  387.  
  388. split.push("<span>" + text[i] + "</span>");
  389.  
  390. }
  391.  
  392. h1.innerHTML = split.join("");
  393.  
  394. split = h1.childNodes;
  395.  
  396.  
  397.  
  398. var flicker = function() {
  399.  
  400. lit += 0.01;
  401.  
  402. if(lit >= 1) {
  403.  
  404. clearInterval(timer);
  405.  
  406. }
  407.  
  408. for(i = 0; i < split.length; ++i) {
  409.  
  410. if(Math.random() < lit) {
  411.  
  412. split[i].className = "neon";
  413.  
  414. } else {
  415.  
  416. split[i].className = "";
  417.  
  418. }
  419.  
  420. }
  421.  
  422. }
  423.  
  424. setInterval(flicker, 100);
  425.  
  426.  
  427.  
  428. }
  429.  
  430. //strat sec
  431.  
  432.  
  433.  
  434. // end  -->
  435.  
  436. </script>
  437. <link rel="openid.server" href="http://www.blogger.com/openid-server.g" />
  438. </head>
  439. <center>
  440.  
  441. <br>
  442.  
  443. <h1>Hacked By ./Mr.Blank007 !!!</h1>
  444.  
  445. <div id="matrix" class="auto-style8">--Garuda Security Hacker--</div>
  446. <br>
  447. </center>
  448.  
  449. <center>
  450.  
  451. <script type="text/javascript" src=""></script>
  452.  
  453. <script> window.onclick=function(){window.open('https://www.facebook.com/kuuhaku25')} </script>
  454. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  455. <img src="http://bitosi.com/wp-content/uploads/2016/05/LOGO-GSH-2-1.png" alt="center" /><br><br>
  456. <font align='center' color='green' class='neon' size='6'>
  457. Your Website Is DOWN <br> <font class='neon' size='4'>Your Data is Safe. i just defacer not cracker <font class='neon' size='3'> <br>Please Fix Your BUG! </font>
  458. </center><h2></h2>
  459. <center>
  460. <font color="green" align="center" face="Iceland" class='neon' style="text-shadow: 1px 2px 4px #ff3399;"  size="4"></font>
  461. <!-- FOOTER -->
  462. <footer id="ftr" style="position:fixed; left:0px; right:0px; bottom:3px; background:transparent); text-align:center;"><font face="Courier New" size="2">
  463.  
  464.  
  465. <center><font color="#00FFFF">Greetz: </font><marquee direction="up" scrollamount="2" height="15" width="250" onmouseover="this.stop()" onmouseout="this.start()"><font color="#1E90FF"><center>Garuda Security Hacker
  466. <br><br>Guard System Indo
  467. <br><br>CyberBlood
  468. <br><br>Snooze
  469. <br><br>_Tuan2Fay _
  470. <br><br>Yukinoshita 47
  471. <br><br>./Mister-Y404
  472. <br><br>./Zero*Angel
  473. <br><br>AWEU404
  474. <br><br>E7B_404
  475. <br><br>ML7C
  476. <br><br>MR.R.S
  477. <br><br>5iNON!MOU23
  478. <br><br>Shinchan
  479. <br><br>And You :*
  480. </center></marquee><font color="#87CEFA"> | <font color="#00FFFF">It's Showtime - Hacked by <a href="https://facebook.com/kuuhaku25" target="_blank" style="text-decoration:none"><font color="#1E90FF">./Mr.Blank007</font></a><font color="#87CEFA"> | <font color="#00FFFF">r8084366@gmail.com<font color="#87CEFA"> | <a href="http://www.twitter.com/Dlhnz" target="_blank" style="text-decoration:none"><font color="#1E90FF"> : Contact Me</font></a>
  481. </font></footer>
  482. <!-- /FOOTER -->
  483. </center>
  484.  
  485.  
  486. <style>
  487.  
  488. <hr width="550px" style='color:red;'>
  489.  
  490. <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
  491.  
  492. <span style='font: 15px Lucida Handwriting;size:15px;color:cyan;text-shadow: 0px 0px 50px;'><strong>
  493. <style type="text/css">
  494. <span style='font: 100px>
  495.  body{
  496.   font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
  497.   margin-top:0px;
  498.    background-repeat:no-repeat;
  499.   padding-top:26px;
  500.  }
  501.     #myContent, #myContent blink{
  502.         width:0%px;
  503.         height:0%px;
  504.         background:white;
  505.         color: #00FFFF;
  506.         font-family:IceLand;
  507.         font-size:20px;
  508.     }  
  509.     blink{
  510.         display:inline;
  511.     }
  512.     </style><br />
  513.     <script type="text/javascript">
  514.   var charIndex = -1;
  515.     var stringLength = 0;
  516.     var inputText;
  517.     function writeContent(init){
  518.      if(init){
  519.       inputText = document.getElementById('contentToWrite').innerHTML;
  520.      }
  521.         if(charIndex==-1){
  522.             charIndex = 0;
  523.             stringLength = inputText.length;
  524.         }
  525.         var initString = document.getElementById('myContent').innerHTML;
  526.   initString = initString.replace(/<SPAN.*$/gi,"");
  527.      
  528.        var theChar = inputText.charAt(charIndex);
  529.        var nextFourChars = inputText.substr(charIndex,4);
  530.        if(nextFourChars=='<br>' || nextFourChars=='<br>'){
  531.          theChar  = '<br>';
  532.          charIndex+=3;
  533.         }
  534.         initString = initString + theChar + "<span id='blink'>_</SPAN>";
  535.         document.getElementById('myContent').innerHTML = initString;
  536.  
  537.         charIndex = charIndex/1 +1;
  538.   if(charIndex%2==1){
  539.              document.getElementById('blink').style.display='font: 100px';
  540.         }else{
  541.              document.getElementById('blink').style.display='inline';
  542.         }
  543.                
  544.         if(charIndex<=stringLength){
  545.            setTimeout('writeContent(false)',100);
  546.        }else{
  547.         blinkSpan();
  548.        }
  549.    }
  550.        var currentStyle = 'inline';
  551.    function blinkSpan(){
  552.     if(currentStyle=='inline'){
  553.      currentStyle='none';
  554.     }else{
  555.      currentStyle='inline';
  556.     }
  557.     document.getElementById('blink').style.display = currentStyle;
  558.     setTimeout('blinkSpan()',9999999);
  559.    
  560.    }
  561.  
  562. <style type="text/css">BODY{background:url(https://i.ytimg.com/vi/6ift2UECVGM/hqdefault.jpg) center no-repeat fixed;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#000}</style
  563.    </script>
  564.  
  565. <embed src="https://www.youtube.com/watch?v=t66VKF-cyhk&autoplay=1" type="application/x-shockwave-flash"wmode="transparent" width="1" height="1"></embed>
  566. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement