ProgrammerNazaryman

Anonymous Deface Site

Apr 26th, 2012
4,793
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 8.77 KB | None | 0 0
  1. <html><head>
  2.  
  3. <br>
  4.  
  5. <p align="center"> <img src="http://profile.ak.fbcdn.net/hprofile-ak-snc4/592098_309137155815957_852930876_n.jpg"> </p>
  6.  
  7.  
  8.  
  9. </br>
  10.  
  11.  
  12.  
  13.  
  14.  
  15. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  16.  
  17.  
  18.  
  19. <title>Hacked By Anonymous Malaysia </title>
  20.  
  21. <link rel="icon" href="http://unique2world.persiangig.com/favicon.ico" type="image/x-icon" />
  22.  
  23. <link rel="shortcut icon" href="http://unique2world.persiangig.com/favicon.ico" type="image/x-icon" />
  24.  
  25. <style type="text/css">
  26.  
  27. <!--
  28.  
  29. .ahgcrewstyle {
  30.  
  31.     color: #F00;
  32.  
  33. }
  34.  
  35. .ahg {
  36.  
  37.     color: #0F0;
  38.  
  39. }
  40.  
  41. #message font strong {
  42.  
  43.     font-family: Tahoma, Geneva, sans-serif;
  44.  
  45.     font-size: 18px;
  46.  
  47. }
  48.  
  49. .gre {
  50.  
  51.     color: #9F3;
  52.  
  53.     font-size: 36px;
  54.  
  55. }
  56.  
  57. #message font {
  58.  
  59.     font-size: 16px;
  60.  
  61. }
  62.  
  63. -->
  64.  
  65. </style>
  66.  
  67. </head><body alink="gray" bgcolor="black" vlink="gray" link="gray" text="gray">
  68.  
  69. <p></p><center>
  70.  
  71.  
  72.  
  73. <center></center>
  74.  
  75.  
  76.  
  77. <script type="text/javascript">
  78.  
  79. TypingText = function(element, interval, cursor, finishedCallback) {
  80.  
  81.   if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  82.  
  83.     this.running = true;
  84.  
  85.     return;
  86.  
  87.   }
  88.  
  89.   this.element = element;
  90.  
  91.   this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  92.  
  93.   this.interval = (typeof interval == "undefined" ? 100 : interval);
  94.  
  95.   this.origText = this.element.innerHTML;
  96.  
  97.   this.unparsedOrigText = this.origText;
  98.  
  99.   this.cursor = (cursor ? cursor : "");
  100.  
  101.   this.currentText = "";
  102.  
  103.   this.currentChar = 0;
  104.  
  105.   this.element.typingText = this;
  106.  
  107.   if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  108.  
  109.   TypingText.all.push(this);
  110.  
  111.   this.running = false;
  112.  
  113.   this.inTag = false;
  114.  
  115.   this.tagBuffer = "";
  116.  
  117.   this.inHTMLEntity = false;
  118.  
  119.   this.HTMLEntityBuffer = "";
  120.  
  121. }
  122.  
  123. TypingText.all = new Array();
  124.  
  125. TypingText.currentIndex = 0;
  126.  
  127. TypingText.runAll = function() {
  128.  
  129.   for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  130.  
  131. }
  132.  
  133. TypingText.prototype.run = function() {
  134.  
  135.  if(this.running) return;
  136.  
  137.  if(typeof this.origText == "undefined") {
  138.  
  139.    setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  140.  
  141.    return;
  142.  
  143.  }
  144.  
  145.  if(this.currentText == "") this.element.innerHTML = "";
  146.  
  147.  if(this.currentChar < this.origText.length) {
  148.  
  149.    if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  150.  
  151.      this.tagBuffer = "<";
  152.  
  153.      this.inTag = true;
  154.  
  155.      this.currentChar++;
  156.  
  157.      this.run();
  158.  
  159.      return;
  160.  
  161.    } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  162.  
  163.      this.tagBuffer += ">";
  164.  
  165.       this.inTag = false;
  166.  
  167.       this.currentText += this.tagBuffer;
  168.  
  169.       this.currentChar++;
  170.  
  171.       this.run();
  172.  
  173.       return;
  174.  
  175.     } else if(this.inTag) {
  176.  
  177.       this.tagBuffer += this.origText.charAt(this.currentChar);
  178.  
  179.       this.currentChar++;
  180.  
  181.       this.run();
  182.  
  183.       return;
  184.  
  185.     } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  186.  
  187.      this.HTMLEntityBuffer = "&";
  188.  
  189.       this.inHTMLEntity = true;
  190.  
  191.       this.currentChar++;
  192.  
  193.       this.run();
  194.  
  195.       return;
  196.  
  197.     } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  198.  
  199.      this.HTMLEntityBuffer += ";";
  200.  
  201.       this.inHTMLEntity = false;
  202.  
  203.       this.currentText += this.HTMLEntityBuffer;
  204.  
  205.       this.currentChar++;
  206.  
  207.       this.run();
  208.  
  209.       return;
  210.  
  211.     } else if(this.inHTMLEntity) {
  212.  
  213.       this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  214.  
  215.       this.currentChar++;
  216.  
  217.       this.run();
  218.  
  219.       return;
  220.  
  221.     } else {
  222.  
  223.       this.currentText += this.origText.charAt(this.currentChar);
  224.  
  225.     }
  226.  
  227.     this.element.innerHTML = this.currentText;
  228.  
  229.     this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  230.  
  231.    this.currentChar++;
  232.  
  233.    setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  234.  
  235.  } else {
  236.  
  237.     this.currentText = "";
  238.  
  239.     this.currentChar = 0;
  240.  
  241.        this.running = false;
  242.  
  243.        this.finishedCallback();
  244.  
  245.  }
  246.  
  247. }
  248.  
  249.  
  250.  
  251. </script>  
  252.  
  253.  
  254.  
  255. <center>
  256.  
  257.   <b class="gre">Anonymous Malaysia</b>
  258.  
  259.   <br>
  260.  
  261.   <font>
  262.  
  263. </font><p id="message"><font> <strong><br> Anonymous Malaysia - Anonymous News Network - Anonymous Guarda - Anonyops Europe -
  264. Anonymous Hispano - Anonymous Actifs - Anonymous Polska - Anonymous Türkiye - Anonymous Guatemala - Anonymous Germany -
  265. Anonymous Venezuela - Anonymous Deutschland - Anonymous LT - Anonymous Rio - Anonymous Crotia - Anonymous Hackers - Anonymous Argentina - Anonymous Srbija - Anonymous Brasil - Anonymous Perú - Anonymous Antartica - Anonymous Liverpool - Anonymous Canada - Anonymous Sweden - Anonymous Bulgaria<br>
  266.  
  267.  &
  268.  
  269. <br>We Are Anonymous , We Are Legion , We Do Not Forget  , We Do Not Forgive , Expect Us !<br>
  270.  
  271.  
  272.  <br>
  273.  
  274.  
  275.  
  276.  [ www.AnonymousMalaysia.com ]</strong><br>
  277.  
  278. <br>
  279.  
  280.  
  281.  
  282.  
  283.  
  284. [ Greetz : <span class="ahgcrewstyle"><strong><strong>  All Anonymous Hackers </strong></strong></span><strong> ] <br>
  285.  
  286. </font></p>
  287.  
  288. <p align="center"><em>Deface By</em>: <b><font size="3"><span class="ahgcrewstyle">Anonymous Malaysia </span></font></b></p>
  289.  
  290. <p><font><br>
  291.  
  292.  <br>
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  <p align="center"><font color="red" size="+1" face="Times New Roman"> <br>Contact me : http://www.facebook.com/AnonyMalaysia<br>&<br>contact us : www.AnonymousMalaysia.com<br>&<br>Like Us<br></p>
  299. <div class="fb-like-box" data-href="http://www.facebook.com/AnonyMalaysia" data-width="292" data-show-faces="false" data-stream="false" data-header="false"></div>
  300. <div id="fb-root"></div>
  301. <script>(function(d, s, id) {
  302.  var js, fjs = d.getElementsByTagName(s)[0];
  303.   if (d.getElementById(id)) return;
  304.   js = d.createElement(s); js.id = id;
  305.   js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=384191914936497";
  306.   fjs.parentNode.insertBefore(js, fjs);
  307. }(document, 'script', 'facebook-jssdk'));</script>
  308.  
  309. <p align="center"><font size="+8" face="Times New Roman"><font color="green">We <font color="white"> Are <font color="red"> Anonymous</p>
  310.  
  311. <script>alert('Your site has been hacked by Anonymous Malaysia');</script>
  312.  
  313. <p align="center"> <img src="http://www.ashiyane.org/forums/image.php?u=268&dateline=1267790210&type=profile"> </p>
  314.  
  315.  
  316.  
  317.   <script type="text/javascript">
  318.  
  319. new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
  320.  
  321.  
  322.  
  323. //Type out examples:
  324.  
  325. TypingText.runAll();
  326.  
  327.   </script>
  328.  
  329. </font></p>
  330.  
  331. </center></center>
  332.  
  333.  
  334.  
  335.  
  336.  
  337. <br>
  338.  
  339. <div align="center"><img src="http://sarbaz-faz.persiangig.com/Hack/hacked.gif"></div>
  340.  
  341. </br>
  342.  
  343.  
  344.  
  345.  
  346.  
  347. </body></html>
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371. <!-- aghaze larzeshe safhe-->
  372.  
  373.  
  374.  
  375. <meta http-equiv="Content-Language" content="en-us">
  376.  
  377.  
  378.  
  379. <SCRIPT language=JavaScript>
  380.  
  381. <!-- Begin
  382.  
  383. function shake(n) {
  384.  
  385. if (parent.moveBy) {
  386.  
  387. for (i = 10; i > 0; i--) {
  388.  
  389. for (j = n; j > 0; j--) {
  390.  
  391.  
  392.  
  393. parent.moveBy(-i,0);
  394.  
  395. parent.moveBy(0,-i);
  396.  
  397. parent.moveBy(-i,0);
  398.  
  399. parent.moveBy(0,i);
  400.  
  401. parent.moveBy(i,0);
  402.  
  403. parent.moveBy(0,-i);
  404.  
  405. parent.moveBy(-i,0);
  406.  
  407. parent.moveBy(0,i);
  408.  
  409. parent.moveBy(i,0);
  410.  
  411. parent.moveBy(0,-i);
  412.  
  413. parent.moveBy(-i,0);
  414.  
  415. parent.moveBy(0,-i);
  416.  
  417. parent.moveBy(i,0);
  418.  
  419. parent.moveBy(0,i);
  420.  
  421. parent.moveBy(i,0);
  422.  
  423. parent.moveBy(0,i);
  424.  
  425.         }
  426.  
  427.      }
  428.  
  429.   }
  430.  
  431.  
  432.  
  433.  
  434.  
  435. }
  436.  
  437. //  End -->
  438.  
  439.  
  440.  
  441. <!--
  442.  
  443. shake(1);
  444.  
  445. //-->
  446.  
  447. </SCRIPT>
  448.  
  449. <!-- p align="center"><font size="7" color="#FF0000">chi?</font></p> -->
  450.  
  451.  
  452.  
  453. <!--payan--></SCRIPT>
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461. </body>
  462.  
  463. </html>
  464.  
  465. </body>
  466.  
  467. </html>
  468.  
  469.  
  470.  
  471.  
  472.  
  473. <P align=center><EMBED
  474.  
  475. src=http://sarbaz-faz.persiangig.com/Hack/Troy%20.mp3.swf
  476.  
  477. width=90 height=90 type=application/x-shockwave-flash
  478.  
  479. wmode="transparent"></P>
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488. <body bgcolor="#333366" background="http://iasstes-team.com/p_0001.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://sarbaz-faz.persiangig.com/Hack/meshki.JPG')"><style>
  489.  
  490. body {
  491.  
  492.     padding:0;
  493.  
  494.     margin:0;
  495.  
  496.     background-image:url(http://iasstes-team.com/p_0001.jpg);
  497.  
  498.     background-repeat: no-repeat;
  499.  
  500.     background-position:top;
  501.  
  502. background-color: black;
  503.  
  504. color: white;
  505.  
  506. font: normal 80% Verdana;
  507.  
  508. margin-top: 0px;
  509.  
  510. margin-left: 0px;
  511.  
  512. padding: 0;
  513.  
  514. margin-right: 0px;
  515.  
  516. }
  517.  
  518.  
  519.  
  520. td{font-family: verdana; font-size: 20pt; color: green}
  521.  
  522. a{font-family: verdana; font-size: 20pt; color: silver}
  523.  
  524.  
  525. </style>
  526.  
  527.  
  528. <center><img src="http://i40.servimg.com/u/f40/16/90/06/10/logo1-12.png"></center>
  529.  
  530.  
  531. <style>
  532. #navbar-iframe {
  533.  
  534. display: none;
  535.  
  536. }
  537. <style>
Advertisement
Add Comment
Please, Sign In to add comment