Advertisement
V3CT0R_Anonymous

#CISPABlackout Script

Apr 21st, 2013
4,788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.20 KB | None | 0 0
  1. ===== #CISPABlackout Webpage =====
  2. ===== [ @V3CT0RAnon ] =====
  3. This is my shutdown page for my website. Here is all the coding below.
  4.  
  5.  
  6. -------------------------------------------------------------------------------------------------------------------
  7. (SAVE THIS AS "index.html" NO QUOTES)
  8. <html>
  9. <head>
  10. <title>#CispaBlackout</title>
  11. <embed src="Afraid of this Generation.mp3" autostart="true" width="0" height="0">
  12. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  13. <style type="text/css">
  14. body {
  15. background-color: #000
  16. }
  17. #console {
  18. font-family: courier, monospace;
  19. color: #fff;
  20. width:750px;
  21. margin-left:auto;
  22. margin-right:auto;
  23. margin-top:100px;
  24. font-size:14px;
  25. }
  26. a {
  27. color: #0bc;
  28. text-decoration: none;
  29. }
  30. #a {
  31. color: #0f0;
  32. }
  33. #c {
  34. color: #0bc;
  35. }
  36. #b {
  37. color: #ff0096;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <script type="text/javascript">
  43. var Typer={
  44. text: null,
  45. accessCountimer:null,
  46. index:0, // current cursor position
  47. speed:2, // speed of the Typer
  48. file:"", //file, must be setted
  49. accessCount:0, //times alt is pressed for Access Granted
  50. deniedCount:0, //times caps is pressed for Access Denied
  51. init: function(){// inizialize Hacker Typer
  52. accessCountimer=setInterval(function(){Typer.updLstChr();},500); // inizialize timer for blinking cursor
  53. $.get(Typer.file,function(data){// get the text file
  54. Typer.text=data;// save the textfile in Typer.text
  55. Typer.text = Typer.text.slice(0, Typer.text.length-1);
  56. });
  57. },
  58.  
  59. content:function(){
  60. return $("#console").html();// get console content
  61. },
  62.  
  63. write:function(str){// append to console content
  64. $("#console").append(str);
  65. return false;
  66. },
  67.  
  68. makeAccess:function(){//create Access Granted popUp FIXME: popup is on top of the page and doesn't show is the page is scrolled
  69. Typer.hidepop(); // hide all popups
  70. Typer.accessCount=0; //reset count
  71. var ddiv=$("<div id='gran'>").html(""); // create new blank div and id "gran"
  72. ddiv.addClass("accessGranted"); // add class to the div
  73. ddiv.html("<h1>ACCESS GRANTED</h1>"); // set content of div
  74. $(document.body).prepend(ddiv); // prepend div to body
  75. return false;
  76. },
  77. makeDenied:function(){//create Access Denied popUp FIXME: popup is on top of the page and doesn't show is the page is scrolled
  78. Typer.hidepop(); // hide all popups
  79. Typer.deniedCount=0; //reset count
  80. var ddiv=$("<div id='deni'>").html(""); // create new blank div and id "deni"
  81. ddiv.addClass("accessDenied");// add class to the div
  82. ddiv.html("<h1>ACCESS DENIED</h1>");// set content of div
  83. $(document.body).prepend(ddiv);// prepend div to body
  84. return false;
  85. },
  86.  
  87. hidepop:function(){// remove all existing popups
  88. $("#deni").remove();
  89. $("#gran").remove();
  90. },
  91.  
  92. addText:function(key){//Main function to add the code
  93. if(key.keyCode==18){// key 18 = alt key
  94. Typer.accessCount++; //increase counter
  95. if(Typer.accessCount>=3){// if it's presed 3 times
  96. Typer.makeAccess(); // make access popup
  97. }
  98. }else if(key.keyCode==20){// key 20 = caps lock
  99. Typer.deniedCount++; // increase counter
  100. if(Typer.deniedCount>=3){ // if it's pressed 3 times
  101. Typer.makeDenied(); // make denied popup
  102. }
  103. }else if(key.keyCode==27){ // key 27 = esc key
  104. Typer.hidepop(); // hide all popups
  105. }else if(Typer.text){ // otherway if text is loaded
  106. var cont=Typer.content(); // get the console content
  107. if(cont.substring(cont.length-1,cont.length)=="|") // if the last char is the blinking cursor
  108. $("#console").html($("#console").html().substring(0,cont.length-1)); // remove it before adding the text
  109. if(key.keyCode!=8){ // if key is not backspace
  110. Typer.index+=Typer.speed; // add to the index the speed
  111. }else{
  112. if(Typer.index>0) // else if index is not less than 0
  113. Typer.index-=Typer.speed;// remove speed for deleting text
  114. }
  115. var text=Typer.text.substring(0,Typer.index)// parse the text for stripping html enities
  116. var rtn= new RegExp("\n", "g"); // newline regex
  117.  
  118. $("#console").html(text.replace(rtn,"<br/>"));// replace newline chars with br, tabs with 4 space and blanks with an html blank
  119. window.scrollBy(0,50); // scroll to make sure bottom is always visible
  120. }
  121. if ( key.preventDefault && key.keyCode != 122 ) { // prevent F11(fullscreen) from being blocked
  122. key.preventDefault()
  123. };
  124. if(key.keyCode != 122){ // otherway prevent keys default behavior
  125. key.returnValue = false;
  126. }
  127. },
  128.  
  129. updLstChr:function(){ // blinking cursor
  130. var cont=this.content(); // get console
  131. if(cont.substring(cont.length-1,cont.length)=="|") // if last char is the cursor
  132. $("#console").html($("#console").html().substring(0,cont.length-1)); // remove it
  133. else
  134. this.write("|"); // else write it
  135. }
  136. }
  137.  
  138. function replaceUrls(text) {
  139. var http = text.indexOf("http://");
  140. var space = text.indexOf(".me ", http);
  141. if (space != -1) {
  142. var url = text.slice(http, space-1);
  143. return text.replace(url, "<a href=\"" + url + "\">" + url + "</a>");
  144. } else {
  145. return text
  146. }
  147. }
  148. Typer.speed=3;
  149. Typer.file="blackout.txt";
  150. Typer.init();
  151.  
  152. var timer = setInterval("t();", 30);
  153. function t() {
  154. Typer.addText({"keyCode": 123748});
  155. if (Typer.index > Typer.text.length) {
  156. clearInterval(timer);
  157. }
  158. }
  159.  
  160. </script>
  161. <div id="console"></div>
  162. <script type="text/javascript">
  163.  
  164. var _gaq = _gaq || [];
  165. _gaq.push(['_setAccount', 'UA-610661-7']);
  166. _gaq.push(['_trackPageview']);
  167.  
  168. (function() {
  169. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  170. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  171. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  172. })();
  173.  
  174. </script>
  175. <script language=JavaScript>
  176. <!--
  177.  
  178. //Disable right mouse click Script
  179. //FUCKCISPA
  180. //END IT NOW
  181.  
  182. var message="#CispaBlackout";
  183.  
  184. ///////////////////////////////////
  185. function clickIE4(){
  186. if (event.button==2){
  187. alert(none);
  188. return false;
  189. }
  190. }
  191.  
  192. function clickNS4(e){
  193. if (document.layers||document.getElementById&&!document.all){
  194. if (e.which==2||e.which==3){
  195. alert(message);
  196. return false;
  197. }
  198. }
  199. }
  200.  
  201. if (document.layers){
  202. document.captureEvents(Event.MOUSEDOWN);
  203. document.onmousedown=clickNS4;
  204. }
  205. else if (document.all&&!document.getElementById){
  206. document.onmousedown=clickIE4;
  207. }
  208.  
  209. document.oncontextmenu=new Function("alert(message);return false")
  210.  
  211. // -->
  212. </script>
  213. </body>
  214. </html>
  215. -------------------------------------------------------------------------------------------------------------------
  216. (SAVE THIS AS "blackout.txt" NO QUOTES)
  217. <span id="a">#CispaBlackout</span>:<span id="b">~</span><span id="c">$</span> root blackout.txt<br/><br/>
  218. Welcome internet.<!-- laglaglaglaglaglaglaglaglaglaglaglag --><p>This is a website shutdown in response to the Cispa Blackout.</p><!-- qowifjqwoeijfoqweijfqweoifjqweofijqweoqwoijefoqwijefoijfqiwoefjj -->
  219. <p>Some info on #CispaBlackout <a href="http://huff.to/104m34S">Here</a>.</p><!- oqwipjefqwioefjwioqfjoiqwjfeioqwjefoi -->
  220. <p>This was an Anonymous call to protest Cispa.</p><!-- owlsqweoifjqwoefijqwoeifjqwoefijwef -->
  221. If you own a website or know somebody who does, please contact them and tell them to shut it down in response to the Cispa Blackout.<!-- slightdelayhere--> Even call your favorite websites and ask for a shutdown.<!-- longlongcomment --> Ask websites <a href="http://www.seomoz.org/top500">like these</a> to take down their sites.
  222. <p><!-- littlelag --!><a href="http://1.usa.gov/HeI7d ">Click Here</a> for a list of senators and contact to tell them to vote NO on Cispa</p>
  223. <p>We are Anonymous.<!-- EndCipsaYouFuckingGovernment--> We are legion.<!-- EndCipsaYouFuckingGovernment--> We do not forgive.<!-- EndCipsaYouFuckingGovernment--> We do not forget.<!-- EndCipsaYouFuckingGovernment--> Expect us.</p>
  224. -------------------------------------------------------------------------------------------------------------------
  225.  
  226. That is all. Upload both to you website. If you want to see my site here you go http://www.V3CT0RAnon.tk
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement