Advertisement
AnOnWikO

IndexDeface(Jey Zeta)

Sep 10th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. db
  2. d88b
  3. d8'`8b
  4. d8' `8b 8b,dPPYba, ,adPPYba, 8b,dPPYba, 8b d8 88,dPYba,,adPYba, ,adPPYba, 88 88 ,adPPYba,
  5. d8YaaaaY8b 88P' `"8a a8" "8a 88P' `"8a `8b d8' 88P' "88" "8a a8" "8a 88 88 I8[ ""
  6. d8""""""""8b 88 88 8 ERROR d8 88 88 `8b d8' 88 88 88 8b 404 d8 88 88 `"Y8ba,
  7. d8' `8b 88 88 "8a, ,a8" 88 88 `8b,d8' 88 88 88 "8a, ,a8" "8a, ,a88 aa ]8I
  8. d8' `8b 88 88 `"YbbdP"' 88 88 Y88' 88 88 88 `"YbbdP"' `"YbbdP'Y8 `"YbbdP"'
  9. d8'
  10. d8'
  11.  
  12.  
  13. ...........::::::::::::::::::::::::::::::::::::::]Index Deface[::::::::::::::::::::::::::::::::::::::...........
  14. -------------------------------------------------------------------------------------------------------------
  15. <script type="text/javascript">
  16. // <![CDATA[
  17. var colour="#f0f";
  18. var sparkles=50;
  19.  
  20. /****************************
  21. * Tinkerbell Magic Sparkle *
  22. * http://www.mf2fm.com/rv *
  23. * NO EDITAR TEXTO MAS ABAJO *
  24. ****************************/
  25. var x=ox=400;
  26. var y=oy=300;
  27. var swide=800;
  28. var shigh=600;
  29. var sleft=sdown=0;
  30. var tiny=new Array();
  31. var star=new Array();
  32. var starv=new Array();
  33. var starx=new Array();
  34. var stary=new Array();
  35. var tinyx=new Array();
  36. var tinyy=new Array();
  37. var tinyv=new Array();
  38.  
  39. window.onload=function() { if (document.getElementById) {
  40. var i, rats, rlef, rdow;
  41. for (var i=0; i<sparkles; i++) {
  42. var rats=createDiv(3, 3);
  43. rats.style.visibility="hidden";
  44. document.body.appendChild(tiny[i]=rats);
  45. starv[i]=0;
  46. tinyv[i]=0;
  47. var rats=createDiv(5, 5);
  48. rats.style.backgroundColor="transparent";
  49. rats.style.visibility="hidden";
  50. var rlef=createDiv(1, 5);
  51. var rdow=createDiv(5, 1);
  52. rats.appendChild(rlef);
  53. rats.appendChild(rdow);
  54. rlef.style.top="2px";
  55. rlef.style.left="0px";
  56. rdow.style.top="0px";
  57. rdow.style.left="2px";
  58. document.body.appendChild(star[i]=rats);
  59. }
  60. set_width();
  61. sparkle();
  62. }}
  63.  
  64. function sparkle() {
  65. var c;
  66. if (x!=ox || y!=oy) {
  67. ox=x;
  68. oy=y;
  69. for (c=0; c<sparkles; c++) if (!starv[c]) {
  70. star[c].style.left=(starx[c]=x)+"px";
  71. star[c].style.top=(stary[c]=y)+"px";
  72. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  73. star[c].style.visibility="visible";
  74. starv[c]=50;
  75. break;
  76. }
  77. }
  78. for (c=0; c<sparkles; c++) {
  79. if (starv[c]) update_star(c);
  80. if (tinyv[c]) update_tiny(c);
  81. }
  82. setTimeout("sparkle()", 40);
  83. }
  84.  
  85. function update_star(i) {
  86. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  87. if (starv[i]) {
  88. stary[i]+=1+Math.random()*3;
  89. if (stary[i]<shigh+sdown) {
  90. star[i].style.top=stary[i]+"px";
  91. starx[i]+=(i%5-2)/5;
  92. star[i].style.left=starx[i]+"px";
  93. }
  94. else {
  95. star[i].style.visibility="hidden";
  96. starv[i]=0;
  97. return;
  98. }
  99. }
  100. else {
  101. tinyv[i]=50;
  102. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  103. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  104. tiny[i].style.width="2px";
  105. tiny[i].style.height="2px";
  106. star[i].style.visibility="hidden";
  107. tiny[i].style.visibility="visible"
  108. }
  109. }
  110.  
  111. function update_tiny(i) {
  112. if (--tinyv[i]==25) {
  113. tiny[i].style.width="1px";
  114. tiny[i].style.height="1px";
  115. }
  116. if (tinyv[i]) {
  117. tinyy[i]+=1+Math.random()*3;
  118. if (tinyy[i]<shigh+sdown) {
  119. tiny[i].style.top=tinyy[i]+"px";
  120. tinyx[i]+=(i%5-2)/5;
  121. tiny[i].style.left=tinyx[i]+"px";
  122. }
  123. else {
  124. tiny[i].style.visibility="hidden";
  125. tinyv[i]=0;
  126. return;
  127. }
  128. }
  129. else tiny[i].style.visibility="hidden";
  130. }
  131.  
  132. document.onmousemove=mouse;
  133. function mouse(e) {
  134. set_scroll();
  135. y=(e)?e.pageY:event.y+sdown;
  136. x=(e)?e.pageX:event.x+sleft;
  137. }
  138.  
  139. function set_scroll() {
  140. if (typeof(self.pageYOffset)=="number") {
  141. sdown=self.pageYOffset;
  142. sleft=self.pageXOffset;
  143. }
  144. else if (document.body.scrollTop || document.body.scrollLeft) {
  145. sdown=document.body.scrollTop;
  146. sleft=document.body.scrollLeft;
  147. }
  148. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  149. sleft=document.documentElement.scrollLeft;
  150. sdown=document.documentElement.scrollTop;
  151. }
  152. else {
  153. sdown=0;
  154. sleft=0;
  155. }
  156. }
  157.  
  158. window.onresize=set_width;
  159. function set_width() {
  160. if (typeof(self.innerWidth)=="number") {
  161. swide=self.innerWidth;
  162. shigh=self.innerHeight;
  163. }
  164. else if (document.documentElement && document.documentElement.clientWidth) {
  165. swide=document.documentElement.clientWidth;
  166. shigh=document.documentElement.clientHeight;
  167. }
  168. else if (document.body.clientWidth) {
  169. swide=document.body.clientWidth;
  170. shigh=document.body.clientHeight;
  171. }
  172. }
  173.  
  174. function createDiv(height, width) {
  175. var div=document.createElement("div");
  176. div.style.position="absolute";
  177. div.style.height=height+"px";
  178. div.style.width=width+"px";
  179. div.style.overflow="hidden";
  180. div.style.backgroundColor=colour;
  181. return (div);
  182. }
  183. // ]]>
  184. </script><!DOCTYPE html>
  185. <html>
  186. <head>
  187. <meta charset="ANSI">
  188. <link rel="icon" type="image/png" href="http://imgur.com/ur425LR.png">
  189. <title>HACKED!</title>
  190.  
  191. <style type="text/css">
  192.  
  193. body {
  194. background: black url("http://imgur.com/bAYm2LW.gif");
  195. background-repeat: repeat;
  196. background-position: center;
  197. background-attachment: fixed;
  198. }
  199. body, a, a:hover {
  200. cursor: url(http://imgur.com/ur425LR.png), progress;}<a href="http://www.cursors-4u.com/cursor/2010/11/03/evil-anime-smiley.html" target="_blank" title=""><img src="index.php" border="0" alt="" style="" /></a>
  201. </style>
  202. </head>
  203. <link href='http://fonts.googleapis.com/css?family=Special Elite' rel='stylesheet' type='text/css'>
  204. <link href='http://fonts.googleapis.com/css?family=Electrolize' rel='stylesheet' type='text/css'>
  205. <link href='http://fonts.googleapis.com/css?family=Nova Square' rel='stylesheet' type='text/css'>
  206.  
  207. <script language="Javascript">
  208. <!-- Begin
  209. document.oncontextmenu = function(){return false}
  210. // End -->
  211. </script>
  212.  
  213. <script type="text/javascript">
  214. // IE Evitar seleccion de texto
  215. document.onselectstart=function(){
  216. if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password")
  217. return false
  218. else return true;
  219. };
  220. // FIREFOX Evitar seleccion de texto
  221. if (window.sidebar){
  222. document.onmousedown=function(e){
  223. var obj=e.target;
  224. if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD")
  225. return true;
  226. /*else if (obj.tagName=="BUTTON"){
  227. return true;
  228. }*/
  229. else
  230. return false;
  231. }
  232. }
  233. // End -->
  234. </script>
  235.  
  236.  
  237. <script>
  238. /*
  239. An object-oriented Typing Text script, to allow for multiple instances.
  240. A script that causes any text inside any text element to be "typed out", one letter at a
  241.  
  242. time. Note that any HTML tags will not be included in the typed output, to prevent them
  243.  
  244. from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE
  245.  
  246. v6.
  247. Browsers that do not support this script will simply see the text fully displayed from the
  248.  
  249. start, including any HTML tags.
  250. Functions defined:
  251. TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function()
  252.  
  253. {return}]):
  254. Create a new TypingText object around the given element. Optionally
  255. specify a delay between characters of interval milliseconds.
  256. cursor allows users to specify some HTML to be appended to the end of
  257. the string whilst typing. Optionally, can also be a function which
  258. accepts the current text as an argument. This allows the user to
  259. create a "dynamic cursor" which changes depending on the latest character
  260. or the current length of the string.
  261. finishedCallback allows advanced scripters to supply a function
  262. to be executed on finishing. The function must accept no arguments.
  263. TypingText.run():
  264. Run the effect.
  265. static TypingText.runAll():
  266. Run all TypingText-enabled objects on the page.
  267. */
  268. TypingText = function(element, interval, cursor, finishedCallback) {
  269. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML ==
  270.  
  271. "undefined")) {
  272. this.running = true; // Never run.
  273. return;
  274. }
  275. this.element = element;
  276. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  277. this.interval = (typeof interval == "undefined" ? 100 : interval);
  278. this.origText = this.element.innerHTML;
  279. this.unparsedOrigText = this.origText;
  280. this.cursor = (cursor ? cursor : "");
  281. this.currentText = "";
  282. this.currentChar = 0;
  283. this.element.typingText = this;
  284. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  285. TypingText.all.push(this);
  286. this.running = false;
  287. this.inTag = false;
  288. this.tagBuffer = "";
  289. this.inHTMLEntity = false;
  290. this.HTMLEntityBuffer = "";
  291. }
  292. TypingText.all = new Array();
  293. TypingText.currentIndex = 0;
  294. TypingText.runAll = function() {
  295. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  296. }
  297. TypingText.prototype.run = function() {
  298. if(this.running) return;
  299. if(typeof this.origText == "undefined") {
  300. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  301.  
  302. this.interval); // We haven't finished loading yet. Have patience.
  303. return;
  304. }
  305. if(this.currentText == "") this.element.innerHTML = "";
  306. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  307. if(this.currentChar < this.origText.length) {
  308. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  309. this.tagBuffer = "<";
  310. this.inTag = true;
  311. this.currentChar++;
  312. this.run();
  313. return;
  314. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  315. this.tagBuffer += ">";
  316. this.inTag = false;
  317. this.currentText += this.tagBuffer;
  318. this.currentChar++;
  319. this.run();
  320. return;
  321. } else if(this.inTag) {
  322. this.tagBuffer += this.origText.charAt(this.currentChar);
  323. this.currentChar++;
  324. this.run();
  325. return;
  326. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  327. this.HTMLEntityBuffer = "&";
  328. this.inHTMLEntity = true;
  329. this.currentChar++;
  330. this.run();
  331. return;
  332. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  333. this.HTMLEntityBuffer += ";";
  334. this.inHTMLEntity = false;
  335. this.currentText += this.HTMLEntityBuffer;
  336. this.currentChar++;
  337. this.run();
  338. return;
  339. } else if(this.inHTMLEntity) {
  340. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  341. this.currentChar++;
  342. this.run();
  343. return;
  344. } else {
  345. this.currentText += this.origText.charAt(this.currentChar);
  346. }
  347. this.element.innerHTML = this.currentText;
  348. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof
  349.  
  350. this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  351. this.currentChar++;
  352. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  353.  
  354. this.interval);
  355. } else {
  356. this.currentText = "";
  357. this.currentChar = 0;
  358. this.running = false;
  359. this.finishedCallback();
  360. }
  361. }
  362. </script>
  363.  
  364. }
  365. /* REMOVE HORIZONTAL SCROLLBAR*/ body { overflow-x: hidden; } /* REMOVE
  366.  
  367. VERTICAL SCROLLBAR*/ body { overflow-y: hidden; }
  368. td{font-family: verdana; font-size: 9pt; color: #00ff00}
  369. a{font-family: verdana; font-size: 12pt; color: #00ff00}
  370. /* REMOVE HORIZONTAL SCROLLBAR*/ body { overflow-x: hidden; } body { overflow-y:
  371.  
  372. hidden; }
  373. <link href='http://fonts.googleapis.com/css?family=Russo+One' rel='stylesheet' type='text/css'>
  374. <font size='7' color='black' face='Russo One' style='text-shadow: 3px 1px 2px black;'>
  375. <center>
  376. <script language="JavaScript1.2" type="text/javascript">
  377. var message="#OpGomezPalacioyTorreon"
  378. var neonbasecolor="white"
  379. var neontextcolor="red"
  380. var flashspeed=100 //in milliseconds
  381. ///No need to edit below this line/////
  382. var n=0
  383. if (document.all||document.getElementById){
  384. document.write('<font color="'+neonbasecolor+'">')
  385. for (m=0;m<message.length;m++)
  386. document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
  387. document.write('</font>')
  388. }
  389. else
  390. document.write(message)
  391. function crossref(number){
  392. var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
  393. return crossobj
  394. }
  395. function neon(){
  396. //Change all letters to base color
  397. if (n==0){
  398. for (m=0;m<message.length;m++)
  399. //eval("document.all.neonlight"+m).style.color=neonbasecolor
  400. crossref(m).style.color=neonbasecolor
  401. }
  402. //cycle through and change individual letters to neon color
  403. crossref(n).style.color=neontextcolor
  404. if (n<message.length-1)
  405. n++
  406. else{
  407. n=0
  408. clearInterval(flashing)
  409. setTimeout("beginneon()",1500)
  410. return
  411. }
  412. }
  413. function beginneon(){
  414. if (document.all||document.getElementById)
  415. flashing=setInterval("neon()",flashspeed)
  416. }
  417. beginneon()
  418. </script>
  419.  
  420. </style><br>
  421. </head>
  422. <body style="background-color: rgb(0, 0, 0);">
  423. <center><img
  424. src="http://en.flossmanuals.net/tt4a-ru/anonymous-blogs-and-websites/_booki/tt4a-ru/static/anon_logo.png" width="50" height="60" style="width: 340px; height: 320px;"></center>
  425. <script>alert("@Anonymous Of World Estubo Aqui")</script>
  426. <embed src="https://youtube.googleapis.com/v/_YxwQtrxMyk&feature=related%26autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="1" height="1"></embed>
  427. <center>
  428. </font></b>
  429. <div id="example1"></div>
  430. <p id="example2">
  431. <font size="10" color="red" face="Special Elite"> You Have Been Hacked! <br></font>
  432. <font color="yellow" face="Electrolize" size="4">
  433. Errar es una condici&#243;n natural del hombre, pero es necesario aprender del error, si no se inicia este proceso usted estar&#225; cometiendo su segundo error en concebir su ut&#243;pico sistema como "infalible".<br></font>
  434. <font color="#00FFFF" face="Electrolize" size="4">&#191;Qu&eacute; clase de gobierno aceptamos? Uno que aparenta ser transparente cuando poco a poco se ve reflejado con el tiempo su habilidad en el enga&#241;o a su Pueblo.<br></font>
  435. <font color="#40FF00" face="Electrolize"size="4">Aqu&#237; es normal ver como un Gobierno transforma un Derecho en un Negocio y adem&#225;s verlo como una costumbre.<br></font>
  436. <font color="red" face="Electrolize" size="4">Los errores de su sistema pueden ser tan prolongados como los del mismo Estado.<br></font>
  437. <font color="#F4FA58" face="Electrolize" size="4">&#161;No se puede vivir de leyes innecesarias sino de derechos igualitarios!<br></font>
  438. <font color="9F00FF" face="Electrolize" size="5">M&eacute;xico es el pa&#237;s donde los pobres se vuelven mas pobres, los ricos mas ricos , los MAESTROS, delincuentes, y los BURROS PRESIDENTES !<br></font>
  439. <font color="#40FF00" face="Electrolize"size="5">Riquelme, G.A.T.E.S y Campillo vamos tras de ustedes...</font>><br>
  440. <font color="yellow" face="Electrolize"size="4">#Anonymous Of World#</font></center>
  441.  
  442.  
  443.  
  444. <script type="text/javascript">
  445. //Define first typing example:
  446. new TypingText(document.getElementById("example1"));
  447. //Define second typing example (use "slashing" cursor at the end):
  448. new TypingText(document.getElementById("example2"), 40, function(i){
  449. var ar = new Array("_","_","_","_"); return " " + ar[i.length %
  450. ar.length]; });
  451. //Type out examples:
  452. TypingText.runAll();
  453. </script>
  454.  
  455.  
  456. <center>
  457. <a href="https://twitter.com/AnonOfWorld" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @AnonOfWorld</a>
  458. <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></a>
  459. </center>
  460.  
  461. </html>
  462.  
  463. -------------------------------------------------------------------------------------------------------------
  464.  
  465. Somos Uno, Somos Todos...
  466. Somos Anonymous, somos legión, No perdonamos, no olvidamos, Gobierno del mundo, esperadnos!!!...
  467. #H4CKT1VIST4S UN1D02 S1ST3M4S T3MBL4R
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement