Advertisement
Guest User

#opISIS DEFACE PAGE SOURCE DEFACED SITES

a guest
Aug 26th, 2014
6,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.16 KB | None | 0 0
  1. #opISIS DEFACE PAGE HTML SOURCE SPREAD IT
  2.  
  3. #BASE SITE#
  4.  
  5. http://madkernel.altervista.org/phpBB3/index.php
  6.  
  7. ## HTML SOURCE CODE
  8.  
  9. <html><head>
  10.  
  11. <br>
  12.  
  13. <p align="center"> <img src="http://phishingdock.com/anon/oisis.jpg"> </p>
  14.  
  15.  
  16.  
  17. </br>
  18.  
  19.  
  20.  
  21.  
  22.  
  23. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  24.  
  25.  
  26.  
  27. <title>Hacked By Anonymous #opISIS </title>
  28.  
  29. <link href="http://www.separateurhydrocarbures.com/templates/ja_purity_ii/favicon.ico" rel="shortcut icon" type="image/x-icon">
  30. <embed src="http://www.youtube.com/v/aa-LPVUOODI&autoplay=1"
  31. type="application/x-shockwave-flash" wmode="transparent" width="1" height="1"></embed>
  32. <style type="text/css">
  33.  
  34. <link rel="icon" href="http://www.dcclothesline.com/wp-content/uploads/2014/05/we-are-anonymous.jpg" type="image/x-icon" />
  35.  
  36. <link rel="shortcut icon" href="http://i.imgur.com/Dw8Dk.jpg" type="image/x-icon" />
  37.  
  38. <style type="text/css">
  39.  
  40. <!--
  41.  
  42. .ahgcrewstyle {
  43.  
  44. color: #F00;
  45.  
  46. }
  47.  
  48. .ahg {
  49.  
  50. color: #0F0;
  51.  
  52. }
  53.  
  54. #message font strong {
  55.  
  56. font-family: Tahoma, Geneva, sans-serif;
  57.  
  58. font-size: 18px;
  59.  
  60. }
  61.  
  62. .gre {
  63.  
  64. color: #9F3;
  65.  
  66. font-size: 36px;
  67.  
  68. }
  69.  
  70. #message font {
  71.  
  72. font-size: 16px;
  73.  
  74. }
  75.  
  76. -->
  77.  
  78. </style>
  79.  
  80. </head><body alink="gray" bgcolor="black" vlink="gray" link="gray" text="gray">
  81.  
  82. <p></p><center>
  83.  
  84.  
  85.  
  86. <center></center>
  87.  
  88.  
  89.  
  90. <script type="text/javascript">
  91.  
  92. TypingText = function(element, interval, cursor, finishedCallback) {
  93.  
  94. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  95.  
  96. this.running = true;
  97.  
  98. return;
  99.  
  100. }
  101.  
  102. this.element = element;
  103.  
  104. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  105.  
  106. this.interval = (typeof interval == "undefined" ? 100 : interval);
  107.  
  108. this.origText = this.element.innerHTML;
  109.  
  110. this.unparsedOrigText = this.origText;
  111.  
  112. this.cursor = (cursor ? cursor : "");
  113.  
  114. this.currentText = "";
  115.  
  116. this.currentChar = 0;
  117.  
  118. this.element.typingText = this;
  119.  
  120. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  121.  
  122. TypingText.all.push(this);
  123.  
  124. this.running = false;
  125.  
  126. this.inTag = false;
  127.  
  128. this.tagBuffer = "";
  129.  
  130. this.inHTMLEntity = false;
  131.  
  132. this.HTMLEntityBuffer = "";
  133.  
  134. }
  135.  
  136. TypingText.all = new Array();
  137.  
  138. TypingText.currentIndex = 0;
  139.  
  140. TypingText.runAll = function() {
  141.  
  142. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  143.  
  144. }
  145.  
  146. TypingText.prototype.run = function() {
  147.  
  148. if(this.running) return;
  149.  
  150. if(typeof this.origText == "undefined") {
  151.  
  152. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  153.  
  154. return;
  155.  
  156. }
  157.  
  158. if(this.currentText == "") this.element.innerHTML = "";
  159.  
  160. if(this.currentChar < this.origText.length) {
  161.  
  162. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  163.  
  164. this.tagBuffer = "<";
  165.  
  166. this.inTag = true;
  167.  
  168. this.currentChar++;
  169.  
  170. this.run();
  171.  
  172. return;
  173.  
  174. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  175.  
  176. this.tagBuffer += ">";
  177.  
  178. this.inTag = false;
  179.  
  180. this.currentText += this.tagBuffer;
  181.  
  182. this.currentChar++;
  183.  
  184. this.run();
  185.  
  186. return;
  187.  
  188. } else if(this.inTag) {
  189.  
  190. this.tagBuffer += this.origText.charAt(this.currentChar);
  191.  
  192. this.currentChar++;
  193.  
  194. this.run();
  195.  
  196. return;
  197.  
  198. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  199.  
  200. this.HTMLEntityBuffer = "&";
  201.  
  202. this.inHTMLEntity = true;
  203.  
  204. this.currentChar++;
  205.  
  206. this.run();
  207.  
  208. return;
  209.  
  210. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  211.  
  212. this.HTMLEntityBuffer += ";";
  213.  
  214. this.inHTMLEntity = false;
  215.  
  216. this.currentText += this.HTMLEntityBuffer;
  217.  
  218. this.currentChar++;
  219.  
  220. this.run();
  221.  
  222. return;
  223.  
  224. } else if(this.inHTMLEntity) {
  225.  
  226. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  227.  
  228. this.currentChar++;
  229.  
  230. this.run();
  231.  
  232. return;
  233.  
  234. } else {
  235.  
  236. this.currentText += this.origText.charAt(this.currentChar);
  237.  
  238. }
  239.  
  240. this.element.innerHTML = this.currentText;
  241.  
  242. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  243.  
  244. this.currentChar++;
  245.  
  246. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  247.  
  248. } else {
  249.  
  250. this.currentText = "";
  251.  
  252. this.currentChar = 0;
  253.  
  254. this.running = false;
  255.  
  256. this.finishedCallback();
  257.  
  258. }
  259.  
  260. }
  261.  
  262.  
  263.  
  264. </script>
  265.  
  266.  
  267.  
  268. <center>
  269.  
  270. <b class="gre">Operation ISIS</b>
  271.  
  272. <br>
  273.  
  274. <font>
  275.  
  276. </font><p id="message"><font> <strong><br> To the citizens of the world,
  277. We are Anonymous.
  278.  
  279. Did you think we wouldn't notice? Your acts against humanity would go unheard? We been watching you terroist sympathizer's use Jihad as means for selfish goals and for too long have we sat back and watched you kill, rape and seriously injure innocent people for selfish goals. Peace will only come until we all learn to live together peacefully. Recently the splinter group ISIS has took it upon themselves to take things further and invest it's self into the city of Mosul and force innocent people out of their home. Not only will you be faced with the the U.S invasion you will be faced with a new enemy. Enemy who even the U.S goverment fear, that is right us! We will continue to expose you and the truth to the world but will seize all your personal information including your allies. We will not stop until ISIS leaves Mosul and returns back to Syria.The events currently transpiring in Iraq have made us as a collective re-evaluate our priorities in regards to recent operations. The Iraqi people have gone through almost two weeks of sheer terror most of us will never know nor experience. We are held by a code of honor to protect those who are defenseless, both in the cyber world and the real world.
  280.  
  281. Before our inception, the Iraq war was well underway and crimes against humanity were rampant. The United States had no small part in this. When the United States government decided to begin an unnecessary war with the promise of oil and funds to the military industrial complex, it failed to realize the severity of taking out a leader who controlled a strong internal security force. This led to the power vacuum we witnessed after his capture. Yes, Saddam Hussein was ruthless and violent, but with this war, the US was guilty of the same crimes (i.e. Blackwater, Abu Ghraib, etc.).
  282.  
  283. Fast forward to today, and Iraq is descending into chaos yet again thanks to the dastardly ruthless gang aiming to establish an "Islamic" state combining both Iraq and Syria, thus doing away with the post-WWI borders. They call themselves ISIS. These savages who have no religion or morality are bent on burning everything in their path, killing and pillaging as they go. They must be stopped.
  284.  
  285. Several days ago, their electronic division assumed control of one of our twitter accounts (@TheAnonMessage) claiming it for themselves and releasing several graphic photos of their assault near Baghdad. These tweets have since been deleted. We sincerely apologize to the twitter followers who had to witness this without warning. This was an unfortunate, unprecedented takeover and steps have been taken to further secure this account from any future attempted hacks.
  286.  
  287. We would also like to comment on the mainstream media who are pushing the division of Iraqis even further. The Iraqi public is made up of two Islamic sects: Sunnis and Shias. There are also other groups which include Kurds, Turkmen, Assyrians, Christians and others. The media would want us to believe that ISIS is made up of strictly Sunnis and the Iraqi army is a majority-controlled and operated Shia faction. This is false. The groups that have been listed INCLUDING Sunnis are enlisted in the Iraqi army and Sunni clerics in Iraq have also called for their followers to join ranks with their Shia brothers to defend their homelands.
  288.  
  289. ISIS is a group made up of a Takfiri sect which is regarded by many prestigious clerics and organizations including Al-Azhar, as unislamic. In fact, they have denounced them as "Khawarij" and declared that they must be exterminated from Islamic lands. This is why we urge the American mainstream media to stop releasing false information and further escalating the violence with their ignorant journalism.
  290.  
  291. In conclusion, we stand by every righteous being when we say that we have also declared complete solidarity against those who affiliate themselves with ISIS and those who control them.
  292. Aljazeera; you have tarnished your reputation by spewing your lies and your treasonous support to ISIS. You will not escape us.
  293. To the state of Qatar, Turkey, and the Kingdom of Saudi Arabia; you will not escape our wrath. Evidence shows your continued support and supply to ISIS. If this does not promptly stop, we will be forced to unleash our entire legion against your pathetic excuse of a cyber-security.
  294. And to the United States; another attempt at fueling your military industrial complex for the sake of security and democracy will be grounds for our complete assault against your virtual government infrastructure. You have been warned. Take this oppertunity now while we still offer it to you, otherwise it gonna get a hell of a lot worse. <br>
  295.  
  296.  
  297.  
  298. <br>We Are Anonymous , We Are Legion , We Do Not Forget , We Do Not Forgive , Expect Us !<br>
  299.  
  300.  
  301. <br>
  302.  
  303.  
  304.  
  305. [ Like a Pheonix we can crash and burn to the ground but we will be reborn from the ashes ]</strong><br>
  306.  
  307. <br>
  308.  
  309.  
  310.  
  311.  
  312.  
  313. [ Greetz : <span class="ahgcrewstyle"><strong><strong> By the way we pissed in your cheerios </strong></strong></span><strong> ] <br>
  314.  
  315. </font></p>
  316.  
  317. <p align="center"><em>Deface By</em>: <b><font size="3"><span class="ahgcrewstyle"> Operation ISIS </span></font></b></p>
  318.  
  319. <p><font><br>
  320.  
  321. <br>
  322.  
  323.  
  324.  
  325.  
  326.  
  327. <p align="center"><font color="red" size="+1" face="Times New Roman"> <br>Contact us : https://twitter.com/search?q=%23OpISIS&src=tyah <br>&<br>contact us : https://twitter.com/search?q=%23TangoDown&src=tyah <br>&<br>Like Us<br></p>
  328. <div class="fb-like-box" data-href="<a href="https://twitter.com/search?q=%23TangoDown&src=tyah" data-width="292" data-show-faces="false" data-stream="false" data-header="false"></div>
  329. <div id="fb-root"></div>
  330. <script>(function(d, s, id) {
  331. var js, fjs = d.getElementsByTagName(s)[0];
  332. if (d.getElementById(id)) return;
  333. js = d.createElement(s); js.id = id;
  334. js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=384191914936497";
  335. fjs.parentNode.insertBefore(js, fjs);
  336. }(document, 'script', 'facebook-jssdk'));</script>
  337.  
  338. <p align="center"><font size="+8" face="Times New Roman"><font color="green">We <font color="white"> Are <font color="red"> Anonymous</p>
  339.  
  340. <script>alert('Your site has been hacked by Anonymous #OpISIS');</script>
  341.  
  342. <p align="center"> <img src="http://www.ashiyane.org/forums/image.php?u=268&dateline=1267790210&type=profile"> </p>
  343.  
  344.  
  345.  
  346. <script type="text/javascript">
  347.  
  348. new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
  349.  
  350.  
  351.  
  352. //Type out examples:
  353.  
  354. TypingText.runAll();
  355.  
  356. </script>
  357.  
  358. </font></p>
  359.  
  360. </center></center>
  361.  
  362.  
  363.  
  364.  
  365.  
  366. <br>
  367.  
  368. <div align="center"><img src="http://sarbaz-faz.persiangig.com/Hack/hacked.gif"></div>
  369.  
  370. </br>
  371.  
  372.  
  373.  
  374.  
  375.  
  376. </body></html>
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. <!-- aghaze larzeshe safhe-->
  401.  
  402.  
  403.  
  404. <meta http-equiv="Content-Language" content="en-us">
  405.  
  406.  
  407.  
  408. <SCRIPT language=JavaScript>
  409.  
  410. <!-- Begin
  411.  
  412. function shake(n) {
  413.  
  414. if (parent.moveBy) {
  415.  
  416. for (i = 10; i > 0; i--) {
  417.  
  418. for (j = n; j > 0; j--) {
  419.  
  420.  
  421.  
  422. parent.moveBy(-i,0);
  423.  
  424. parent.moveBy(0,-i);
  425.  
  426. parent.moveBy(-i,0);
  427.  
  428. parent.moveBy(0,i);
  429.  
  430. parent.moveBy(i,0);
  431.  
  432. parent.moveBy(0,-i);
  433.  
  434. parent.moveBy(-i,0);
  435.  
  436. parent.moveBy(0,i);
  437.  
  438. parent.moveBy(i,0);
  439.  
  440. parent.moveBy(0,-i);
  441.  
  442. parent.moveBy(-i,0);
  443.  
  444. parent.moveBy(0,-i);
  445.  
  446. parent.moveBy(i,0);
  447.  
  448. parent.moveBy(0,i);
  449.  
  450. parent.moveBy(i,0);
  451.  
  452. parent.moveBy(0,i);
  453.  
  454. }
  455.  
  456. }
  457.  
  458. }
  459.  
  460.  
  461.  
  462.  
  463.  
  464. }
  465.  
  466. // End -->
  467.  
  468.  
  469.  
  470. <!--
  471.  
  472. shake(1);
  473.  
  474. //-->
  475.  
  476. </SCRIPT>
  477.  
  478. <!-- p align="center"><font size="7" color="#FF0000">chi?</font></p> -->
  479.  
  480.  
  481.  
  482. <!--payan--></SCRIPT>
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490. </body>
  491.  
  492. </html>
  493.  
  494. </body>
  495.  
  496. </html>
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509. <body bgcolor="#333366" background="" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://sarbaz-faz.persiangig.com/Hack/meshki.JPG')"><style>
  510.  
  511. body {
  512.  
  513. padding:0;
  514.  
  515. margin:0;
  516.  
  517. background-image:url();
  518.  
  519. background-repeat: no-repeat;
  520.  
  521. background-position:top;
  522.  
  523. background-color: black;
  524.  
  525. color: white;
  526.  
  527. font: normal 80% Verdana;
  528.  
  529. margin-top: 0px;
  530.  
  531. margin-left: 0px;
  532.  
  533. padding: 0;
  534.  
  535. margin-right: 0px;
  536.  
  537. }
  538.  
  539.  
  540.  
  541. td{font-family: verdana; font-size: 20pt; color: green}
  542.  
  543. a{font-family: verdana; font-size: 20pt; color: silver}
  544.  
  545.  
  546. </style>
  547.  
  548.  
  549. <center><img src="http://i.imgur.com/Dw8Dk.jpg"></center>
  550.  
  551.  
  552. <style>
  553. #navbar-iframe {
  554.  
  555. display: none;
  556.  
  557. }
  558. <style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement