Advertisement
Guest User

#OPhongkong message

a guest
Oct 1st, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.36 KB | None | 0 0
  1. <html><head>
  2.  
  3. <br>
  4.  
  5. <p align="center"> <img src="> </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">YOU HAVE GOT OUR ATTENTION</b
  258.  
  259. <br>
  260.  
  261. <font>
  262.  
  263. </font><p id="message"><font> <strong><br><br> hello
  264.  
  265.  
  266.  
  267. <br>We Are Anonymous , We Are Legion , We Do Not Forget , We Do Not Forgive , Expect Us !<br>
  268.  
  269.  
  270. <br>
  271.  
  272.  
  273.  
  274. [#OPhongkong]</strong><br>
  275.  
  276. <br>
  277.  
  278.  
  279.  
  280.  
  281.  
  282. [ Greetz : <span class="ahgcrewstyle"><strong><strong> All you motherfuckers </strong></strong></span><strong> ] <br>
  283. </font></p> <p align="center"><em>Deface By</em>: <b><font size="3"><span class="ahgcrewstyle">ANONYMOUS</span></font></b></p>
  284.  
  285. <p><font><br>
  286.  
  287. <br>
  288.  
  289.  
  290.  
  291.  
  292.  
  293. <p align="center"><font color="red" size="+1" face="Times New Roman">
  294. <br><br> </p>
  295. <div class="fb-like-box" data-href=http://anoninsiders.net/-anonymous-448/" data-width="292" data-show-faces="false" data-stream="false" data-header="false"></div>
  296. <div id="fb-root"></div>
  297. <script>(function(d, s, id) {
  298. var js, fjs = d.getElementsByTagName(s)[0];
  299. if (d.getElementById(id)) return;
  300. js = d.createElement(s); js.id = id;
  301. js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=384191914936497"; fjs.parentNode.insertBefore(js, fjs);
  302. }(document, 'script', 'facebook-jssdk'));</script>
  303.  
  304. <p align="center"><font size="+8" face="Times New Roman"><font color="green">We <font color="white"> Are <font color="red"> Anonymous</p>
  305.  
  306. <script>alert('anon');</script>
  307.  
  308. <p align="center"> <img src="profile"> </p>
  309.  
  310.  
  311.  
  312. <script type="text/javascript">
  313.  
  314. new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
  315.  
  316.  
  317.  
  318. //Type out examples:
  319.  
  320. TypingText.runAll();
  321.  
  322. </script>
  323.  
  324. </font></p>
  325.  
  326. </center></center>
  327.  
  328.  
  329.  
  330.  
  331.  
  332. <br>
  333.  
  334. <div align="center"><img src="http://sarbaz-faz.persiangig.com/Hack/hacked.gif"></div>
  335.  
  336. </br>
  337.  
  338.  
  339.  
  340.  
  341.  
  342. </body></html>
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366. <!-- aghaze larzeshe safhe-->
  367.  
  368.  
  369.  
  370. <meta http-equiv="Content-Language" content="en-us">
  371.  
  372.  
  373.  
  374. <SCRIPT language=JavaScript>
  375.  
  376. <!-- Begin
  377.  
  378. function shake(n) {
  379.  
  380. if (parent.moveBy) {
  381.  
  382. for (i = 10; i > 0; i--) {
  383.  
  384. for (j = n; j > 0; j--) {
  385.  
  386.  
  387.  
  388. parent.moveBy(-i,0);
  389.  
  390. parent.moveBy(0,-i);
  391.  
  392. parent.moveBy(-i,0);
  393.  
  394. parent.moveBy(0,i);
  395.  
  396. parent.moveBy(i,0);
  397.  
  398. parent.moveBy(0,-i);
  399.  
  400. parent.moveBy(-i,0);
  401.  
  402. parent.moveBy(0,i);
  403.  
  404. parent.moveBy(i,0);
  405.  
  406. parent.moveBy(0,-i);
  407.  
  408. parent.moveBy(-i,0);
  409.  
  410. parent.moveBy(0,-i);
  411.  
  412. parent.moveBy(i,0);
  413.  
  414. parent.moveBy(0,i);
  415.  
  416. parent.moveBy(i,0);
  417.  
  418. parent.moveBy(0,i);
  419.  
  420. }
  421.  
  422. }
  423.  
  424. }
  425.  
  426.  
  427.  
  428.  
  429.  
  430. }
  431.  
  432. // End -->
  433.  
  434.  
  435.  
  436. <!--
  437.  
  438. shake(1);
  439.  
  440. //-->
  441.  
  442. </SCRIPT>
  443.  
  444. <!-- p align="center"><font size="7" color="#FF0000">chi?</font></p> -->
  445.  
  446.  
  447.  
  448. <!--payan--></SCRIPT>
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456. </body>
  457.  
  458. </html>
  459.  
  460. </body>
  461.  
  462. </html>
  463.  
  464.  
  465.  
  466.  
  467.  
  468. <P align=center><EMBED
  469.  
  470. src=http://sarbaz-faz.persiangig.com/Hack/Troy%20.mp3.swf
  471.  
  472. width=90 height=90 type=application/x-shockwave-flash
  473.  
  474. wmode="transparent"></P>
  475.  
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482.  
  483. <body bgcolor="#333366" background="" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image:)"><style>
  484.  
  485. body {
  486.  
  487. padding:0;
  488.  
  489. margin:0;
  490.  
  491. background-);
  492.  
  493. background-repeat: no-repeat;
  494.  
  495. background-position:top;
  496.  
  497. background-color: black;
  498.  
  499. color: white;
  500.  
  501. font: normal 80% Verdana;
  502.  
  503. margin-top: 0px;
  504.  
  505. margin-left: 0px;
  506.  
  507. padding: 0;
  508.  
  509. margin-right: 0px;
  510.  
  511. }
  512.  
  513.  
  514.  
  515. td{font-family: verdana; font-size: 20pt; color: green}
  516.  
  517. a{font-family: verdana; font-size: 20pt; color: silver}
  518.  
  519.  
  520. </style>
  521.  
  522.  
  523. <center><img src=""></center>
  524.  
  525.  
  526. <style>
  527. #navbar-iframe {
  528.  
  529. display: none;
  530.  
  531. }
  532. <style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement