Advertisement
rabyte

isc

Jun 10th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.14 KB | None | 0 0
  1.  
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4.  
  5. <head>
  6.  
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8.  
  9. <title>Pwnd?</title>
  10.  
  11. <link rel="shortcut icon" href="https://vignette.wikia.nocookie.net/callofduty/images/c/c2/Pwnd_Stamp.png/revision/latest?cb=20120120235535" />
  12.  
  13. <meta http-equiv="Content-Language" content="en-us">
  14.  
  15. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  16.  
  17. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  18.  
  19. <META HTTP-EQUIV="EXPIRES" CONTENT="0">
  20.  
  21. <META HTTP-EQUIV="Content-Language" content="Id">
  22.  
  23. <META HTTP-EQUIV="Pragma" content="no-cache">
  24.  
  25. <META NAME="RESOURCE-TYPE" CONTENT="DOCUMENT">
  26.  
  27. <META NAME="DISTRIBUTION" CONTENT="GLOBAL">
  28.  
  29. <META NAME="AUTHOR" CONTENT="./UZUMAK1 | Indonesia Silent Code">
  30.  
  31. <META NAME="Copyright" CONTENT="Indonesian Silent Code">
  32.  
  33. <META NAME="Description" CONTENT="We Are Indonesia Silent Code">
  34.  
  35. <META NAME="Keywords" CONTENT="Wibu Bau Bawang ">
  36.  
  37. <META NAME="Publisher" CONTENT="Indonesian Silent Code">
  38.  
  39. <META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
  40.  
  41. <META NAME="REVISIT-AFTER" CONTENT="1 DAYS">
  42.  
  43.  
  44.  
  45.  
  46.  
  47. <!-- decode mulai dari sini sampe' kebawah -->
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. <SCRIPT>
  56.  
  57. TypingText = function(element, interval, cursor, finishedCallback) {
  58.  
  59. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  60.  
  61. this.running = true; // Never run.
  62.  
  63. return;
  64.  
  65. }
  66.  
  67. this.element = element;
  68.  
  69. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  70.  
  71. this.interval = (typeof interval == "undefined" ? 100 : interval);
  72.  
  73. this.origText = this.element.innerHTML;
  74.  
  75. this.unparsedOrigText = this.origText;
  76.  
  77. this.cursor = (cursor ? cursor : "");
  78.  
  79. this.currentText = "";
  80.  
  81. this.currentChar = 0;
  82.  
  83. this.element.typingText = this;
  84.  
  85. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  86.  
  87. TypingText.all.push(this);
  88.  
  89. this.running = false;
  90.  
  91. this.inTag = false;
  92.  
  93. this.tagBuffer = "";
  94.  
  95. this.inHTMLEntity = false;
  96.  
  97. this.HTMLEntityBuffer = "";
  98.  
  99. }
  100.  
  101. TypingText.all = new Array();
  102.  
  103. TypingText.currentIndex = 0;
  104.  
  105. TypingText.runAll = function() {
  106.  
  107. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  108.  
  109. }
  110.  
  111. TypingText.prototype.run = function() {
  112.  
  113. if(this.running) return;
  114.  
  115. if(typeof this.origText == "undefined") {
  116.  
  117. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  118.  
  119. return;
  120.  
  121. }
  122.  
  123. if(this.currentText == "") this.element.innerHTML = "";
  124.  
  125. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  126.  
  127. if(this.currentChar < this.origText.length) {
  128.  
  129. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  130.  
  131. this.tagBuffer = "<";
  132.  
  133. this.inTag = true;
  134.  
  135. this.currentChar++;
  136.  
  137. this.run();
  138.  
  139. return;
  140.  
  141. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  142.  
  143. this.tagBuffer += ">";
  144.  
  145. this.inTag = false;
  146.  
  147. this.currentText += this.tagBuffer;
  148.  
  149. this.currentChar++;
  150.  
  151. this.run();
  152.  
  153. return;
  154.  
  155. } else if(this.inTag) {
  156.  
  157. this.tagBuffer += this.origText.charAt(this.currentChar);
  158.  
  159. this.currentChar++;
  160.  
  161. this.run();
  162.  
  163. return;
  164.  
  165. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  166.  
  167. this.HTMLEntityBuffer = "&";
  168.  
  169. this.inHTMLEntity = true;
  170.  
  171. this.currentChar++;
  172.  
  173. this.run();
  174.  
  175. return;
  176.  
  177. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  178.  
  179. this.HTMLEntityBuffer += ";";
  180.  
  181. this.inHTMLEntity = false;
  182.  
  183. this.currentText += this.HTMLEntityBuffer;
  184.  
  185. this.currentChar++;
  186.  
  187. this.run();
  188.  
  189. return;
  190.  
  191. } else if(this.inHTMLEntity) {
  192.  
  193. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  194.  
  195. this.currentChar++;
  196.  
  197. this.run();
  198.  
  199. return;
  200.  
  201. } else {
  202.  
  203. this.currentText += this.origText.charAt(this.currentChar);
  204.  
  205. }
  206.  
  207. this.element.innerHTML = this.currentText;
  208.  
  209. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  210.  
  211. this.currentChar++;
  212.  
  213. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  214.  
  215. } else {
  216.  
  217. this.currentText = "";
  218.  
  219. this.currentChar = 0;
  220.  
  221. this.running = false;
  222.  
  223. this.finishedCallback();
  224.  
  225. }
  226.  
  227. }
  228.  
  229. </script>
  230.  
  231. </head>
  232.  
  233. <style type="text/css">
  234.  
  235. body{
  236.  
  237. background: #000000;
  238.  
  239. color:#999;
  240.  
  241. font-family:/*Lucida Console,*/ Monotype, Tahoma, Verdana, 'Vivaldi', Mistral, Antrokas;
  242.  
  243. font-size:14px;
  244.  
  245. margin:40px;
  246.  
  247. padding:0;
  248.  
  249. }
  250.  
  251. #layang {
  252.  
  253. text-align: center;
  254.  
  255. margin-right:1px;
  256.  
  257. padding-top:10px;
  258.  
  259. position:fixed;
  260.  
  261. bottom:0px;
  262.  
  263. right:1px;
  264.  
  265. }
  266.  
  267. a:link {color:#ffffff}
  268.  
  269. a:visited {color:#ffffff}
  270.  
  271. a:hover {color:white; text-decoration: none;}
  272.  
  273. a:active {color:gold}
  274.  
  275. body {
  276.  
  277. overflow-x: hidden;
  278.  
  279. }
  280.  
  281. body {
  282.  
  283. overflow-y: hidden;
  284.  
  285. }
  286.  
  287. td{font-family: verdana; font-size: 9pt; color: #00ff00}
  288.  
  289. a{font-family: verdana; font-size: 12pt; color: #00ff00}
  290.  
  291. body {
  292.  
  293. overflow-x: hidden;
  294.  
  295. }
  296.  
  297. body {
  298.  
  299. overflow-y: hidden;
  300.  
  301. }
  302.  
  303. </style>
  304.  
  305. <body>
  306. <embed src="http://www.youtube.com/v/PUXzhFP2rag&amp;hl=en_US&amp;loop=1&amp;feature=related&amp;autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="1" height="1">
  307.  
  308.  
  309. <center>
  310.  
  311. <font color="#ff0000"><img src="https://i.imgur.com/capeMin.png" height="200" alt="Hacked by ./UZUMAK1">
  312. &nbsp;_______________________________________________________________________________________________</p>
  313.  
  314.  
  315. </font></center><font color="#ff0000">
  316.  
  317. <div id="example1"></div>
  318.  
  319. <pre id="example2">
  320. [+] Login : root
  321. [+] Password : *******
  322. [+] Status : CLOSED
  323. [+] Security : 00.00% null<br/> [+] Attacker : ./UZUMAK1 <br/> [+] Notes : Don't Panic Your File And Database be-save
  324. [+] Reason : Scurity Test <br/> [+] Greetz : Mr.Rm19 || Mr.Hydra || Mr.4c1L Cr0tZz || 4NG3L 0F SH4D0W || P4K RW
  325. [+] We Are : 008 || ./RosesDie || BigHero || CL0NE || ./UZUMAK1 || D3D0T
  326.  
  327. </pre>
  328.  
  329. <script type="text/javascript">
  330.  
  331. //Define first typing example:
  332.  
  333. new TypingText(document.getElementById("example1"));
  334.  
  335. //Define second typing example (use "slashing" cursor at the end):
  336.  
  337. new TypingText(document.getElementById("example2"), 100, function(i){
  338.  
  339. var ar = new Array("<b>_</b>"); return " " + ar[i.length %
  340.  
  341. ar.length]; });
  342.  
  343. //Type out examples:
  344.  
  345. TypingText.runAll();
  346.  
  347. </script>
  348. </font>
  349. <center>
  350. <a href="https://www.facebook.com/ISC2k17/" title="Indonesia Silent Code Fanspage"><img src="http://pngimg.com/uploads/facebook_logos/facebook_logos_PNG19762.png" width="30" height="30"/></a>
  351. &nbsp;<br />
  352. &nbsp;
  353. </center>
  354.  
  355. </body>
  356.  
  357. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement