Advertisement
nostalgiaxploit

Waitingforyou

Jun 17th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.63 KB | None | 0 0
  1. <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  2. <title>NostalgiaXploit</title>
  3. <meta property="og:title" content="Pwnd?"><meta property="og:description" content="NostalgiaXploit"></head><body oncontextmenu="return false;" onkeydown="return false;" onmousedown="return false;" ondragstart="return false" onselectstart="return false" style="-moz-user-select: none; cursor: default;" id="body">
  4. <script type="text/javascript">
  5. function onReady(callback) {
  6. var intervalID = window.setInterval(checkReady, 3000);
  7. function checkReady() {
  8. if (document.getElementsByTagName('body')[0] !== undefined) {
  9. window.clearInterval(intervalID);
  10. callback.call(this);
  11. }
  12. }
  13. }
  14. function show(id, value) {
  15. document.getElementById(id).style.display = value ? 'block' : 'none';
  16. }
  17. onReady(function () {
  18. show('page', true);
  19. show('loading', false);
  20. });
  21. </script>
  22. <style type="text/css"><!--
  23. body {
  24. background: #262626 url("") top center repeat-x;
  25. }
  26. #page {
  27. display: none;
  28. }
  29. #loading {
  30. display: block;
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. z-index: 100;
  35. width: 100vw;
  36. height: 100vh;
  37. background-color: #262626(192, 192, 192, 0.5);
  38. background-image: url("https://i.imgur.com/1K0NYCV.gif");
  39. background-repeat: no-repeat;
  40. background-position: center;
  41. }
  42.  
  43. a:link, a:visited {font-weight:normal; text-decoration:none; color:red;}
  44. body {
  45. background: #262626;
  46. color: white;
  47. }
  48. .kedip {
  49. -webkit-animation-name: blinker;
  50. -webkit-animation-duration: 3s;
  51. -webkit-animation-timing-function: linear;
  52. -webkit-animation-iteration-count: infinite;
  53.  
  54. -moz-animation-name: blinker;
  55. -moz-animation-duration: 2s;
  56. -moz-animation-timing-function: linear;
  57. -moz-animation-iteration-count: infinite;
  58.  
  59. animation-name: blinker;
  60. animation-duration: 1s;
  61. animation-timing-function: linear;
  62. animation-iteration-count: infinite;
  63.  
  64. color: lavender;
  65. }
  66.  
  67. @-moz-keyframes blinker {
  68. 0% { opacity: 1.0; }
  69. 50% { opacity: 0.0; }
  70. 100% { opacity: 1.0; }
  71. }
  72. @keyframes blinker {
  73. 0% { opacity: 1.0; }
  74. 50% { opacity: 0.0; }
  75. 100% { opacity: 1.0; }
  76. }
  77. -->
  78. </style>
  79.  
  80. <script type="text/javascript">/*<![CDATA[*/
  81. TypingText = function(element, interval, cursor, finishedCallback) {
  82.  
  83.  
  84.  
  85. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  86.  
  87.  
  88.  
  89. this.running = true;
  90.  
  91.  
  92.  
  93. return;
  94.  
  95.  
  96.  
  97. }
  98.  
  99.  
  100.  
  101. this.element = element;
  102.  
  103.  
  104.  
  105. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  106.  
  107.  
  108.  
  109. this.interval = (typeof interval == "undefined" ? 100 : interval);
  110.  
  111.  
  112.  
  113. this.origText = this.element.innerHTML;
  114.  
  115.  
  116.  
  117. this.unparsedOrigText = this.origText;
  118.  
  119.  
  120.  
  121. this.cursor = (cursor ? cursor : "");
  122.  
  123.  
  124.  
  125. this.currentText = "";
  126.  
  127.  
  128.  
  129. this.currentChar = 0;
  130.  
  131.  
  132.  
  133. this.element.typingText = this;
  134.  
  135.  
  136.  
  137. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  138.  
  139.  
  140.  
  141. TypingText.all.push(this);
  142.  
  143.  
  144.  
  145. this.running = false;
  146.  
  147.  
  148.  
  149. this.inTag = false;
  150.  
  151.  
  152.  
  153. this.tagBuffer = "";
  154.  
  155.  
  156.  
  157. this.inHTMLEntity = false;
  158.  
  159.  
  160.  
  161. this.HTMLEntityBuffer = "";
  162.  
  163.  
  164.  
  165. }
  166.  
  167.  
  168.  
  169. TypingText.all = new Array();
  170.  
  171.  
  172.  
  173. TypingText.currentIndex = 0;
  174.  
  175.  
  176.  
  177. TypingText.runAll = function() {
  178.  
  179.  
  180.  
  181. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  182.  
  183.  
  184.  
  185. }
  186.  
  187.  
  188.  
  189. TypingText.prototype.run = function() {
  190.  
  191.  
  192.  
  193. if(this.running) return;
  194.  
  195.  
  196.  
  197. if(typeof this.origText == "undefined") {
  198.  
  199.  
  200.  
  201. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  202.  
  203.  
  204.  
  205. return;
  206.  
  207.  
  208.  
  209. }
  210.  
  211.  
  212.  
  213. if(this.currentText == "") this.element.innerHTML = "";
  214.  
  215.  
  216.  
  217. if(this.currentChar < this.origText.length) {
  218.  
  219.  
  220.  
  221. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  222.  
  223.  
  224.  
  225. this.tagBuffer = "<";
  226.  
  227.  
  228.  
  229. this.inTag = true;
  230.  
  231.  
  232.  
  233. this.currentChar++;
  234.  
  235.  
  236.  
  237. this.run();
  238.  
  239.  
  240.  
  241. return;
  242.  
  243.  
  244.  
  245. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  246.  
  247.  
  248.  
  249. this.tagBuffer += ">";
  250.  
  251.  
  252.  
  253. this.inTag = false;
  254.  
  255.  
  256.  
  257. this.currentText += this.tagBuffer;
  258.  
  259.  
  260.  
  261. this.currentChar++;
  262.  
  263.  
  264.  
  265. this.run();
  266.  
  267.  
  268.  
  269. return;
  270.  
  271.  
  272.  
  273. } else if(this.inTag) {
  274.  
  275.  
  276.  
  277. this.tagBuffer += this.origText.charAt(this.currentChar);
  278.  
  279.  
  280.  
  281. this.currentChar++;
  282.  
  283.  
  284.  
  285. this.run();
  286.  
  287.  
  288.  
  289. return;
  290.  
  291.  
  292.  
  293. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  294.  
  295.  
  296.  
  297. this.HTMLEntityBuffer = "&";
  298.  
  299.  
  300.  
  301. this.inHTMLEntity = true;
  302.  
  303.  
  304.  
  305. this.currentChar++;
  306.  
  307.  
  308.  
  309. this.run();
  310.  
  311.  
  312.  
  313. return;
  314.  
  315.  
  316.  
  317. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  318.  
  319.  
  320.  
  321. this.HTMLEntityBuffer += ";";
  322.  
  323.  
  324.  
  325. this.inHTMLEntity = false;
  326.  
  327.  
  328.  
  329. this.currentText += this.HTMLEntityBuffer;
  330.  
  331.  
  332.  
  333. this.currentChar++;
  334.  
  335.  
  336.  
  337. this.run();
  338.  
  339.  
  340.  
  341. return;
  342.  
  343.  
  344.  
  345. } else if(this.inHTMLEntity) {
  346.  
  347.  
  348.  
  349. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  350.  
  351.  
  352.  
  353. this.currentChar++;
  354.  
  355.  
  356.  
  357. this.run();
  358.  
  359.  
  360.  
  361. return;
  362.  
  363.  
  364.  
  365. } else {
  366.  
  367.  
  368.  
  369. this.currentText += this.origText.charAt(this.currentChar);
  370.  
  371.  
  372.  
  373. }
  374.  
  375.  
  376.  
  377. this.element.innerHTML = this.currentText;
  378.  
  379.  
  380.  
  381. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  382.  
  383.  
  384.  
  385. this.currentChar++;
  386.  
  387.  
  388.  
  389. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  390.  
  391.  
  392.  
  393. } else {
  394.  
  395.  
  396.  
  397. this.currentText = "";
  398.  
  399.  
  400.  
  401. this.currentChar = 0;
  402.  
  403.  
  404.  
  405. this.running = false;
  406.  
  407.  
  408.  
  409. this.finishedCallback();
  410.  
  411.  
  412.  
  413. }
  414.  
  415.  
  416.  
  417. }
  418.  
  419.  
  420.  
  421.  
  422.  
  423.  
  424.  
  425. /*]]>*/
  426. </script>
  427.  
  428. <!-- STAR PRELOADER SCRIPT -->
  429. <link href="https://fonts.googleapis.com/css?family=VT323|New+Rocker" rel="stylesheet">
  430. <style type="text/css">
  431. body{
  432. background:url(http://4.bp.blogspot.com/-gycadta9RGE/Vp9daSRMAPI/AAAAAAAAAo0/ZyoBoCtzDpM/s1600/12366205_651089518366463_7143600102239425426_n.jpg) repeat center center fixed black;
  433. }
  434. </style>
  435. <center><div class="kedip" id="page" style="display: block;"><center><img src="https://1.bp.blogspot.com/-QXPh73RpGfE/V3rM3DcTQkI/AAAAAAAAC6k/y4AoCIzBPzg1GCYAtjJ_E-5ZPwN4K_SYgCLcB/s1600/natski-subaru.jpg" <center=""><font face="New Rocker"><h1><font color="red">NostalgiaXploit</font></h1><font color="red">
  436. <p align="centet"></p></font></font><center><font face="New Rocker"><font color="red" size="3"><b></b></font><b></b></font><b><pre><font face="New Rocker"><font color="red" size="3">�<font color="black">You Are My Heart<font color="red">� <br>� <font color="black">Hai Hatiku Aku Disini<font color="red"> Aku Disini Akan Menuggumu<font color="black"> Aku Sebenernya Galau Sangat Karna Tidak Bisa Memelikimu Hari Ini Karna Aku Mau Hari Ini Kita Bisa Bersama Berdua<font color="red">�<br>�<font color="black">Dan Sebenarnya Aku Bahagia Kamu Sudah Mau Menerima Saya .Jujurlah Kepada Hatimu Jangan Ada Paksaan <font color="red">�<br><font color="red"> </font></font></font><font color="red"><font color="white"><font color="red"><font color="white"><font color="red"><font color="black">NostalgiaXploit@gmail.com<font color="yellow"></center>
  437.  
  438. </font></font></font></font></font></font></font></font></font></font></font></font></font></font><center><font color="red" size="3">Thanks to:/<font color="white"> GhostHunterIllusion<font color="red"> /<font color="white"> Indonesian Defacer Tersakiti<font color="red"> /<font color="white"> Hacker Patah Hati<font color="red"> /<font color="white">
  439. <script type="text/javascript" src="http://www.ipalf.com/widget.js?width=700&amp;bg=black&amp;border=9000&amp;textcol=200000%3Cspan%20styl=%22color:white%22%3E%3C/span%3E"></script><style>#ipalfinfo div{display:inline-block;margin: 0 6px 0 0}#ipalfinfo img{box-shadow: 1px 1px 3px #9000;border:0;display:inline}a#ipalfinfo{display:block;width:700px;text-align:center;color:#200000<span styl="color:white"></span>;text-decoration:none;background:#black;padding:10px;border:1px solid #9000;overflow:hidden;line-height:170%;}a#ipalfinfo:hover{background:#black;color:#200000<span styl="color:white"></span>;}.ipalflink{padding:2px 8px;text-align:right;width:704px;font-size:11px;border:1px solid #9000;border-top:0;overflow:hidden;line-height:150%;color:#200000<span styl="color:white"></span>;background:#black;}.ipalflink a{text-decoration:none;}</style><a id="ipalfinfo" href="http://www.ipalf.com/" target="_blank"><div>Your IP: <b>146.185.157.155</b></div><div>Country: <b>Netherlands</b> <img src="http://www.ipalf.com/flags/nl.png" alt="nl"></div><div>Region: <b>North Holland</b></div><div>City: <b>Amsterdam</b></div><div>Language: <b>nl</b></div><div>Browser: <b>Google Chrome</b></div><div>System: <b>Windows</b></div></a><style>#ipalfinfo div{display:inline-block;margin: 0 6px 0 0}#ipalfinfo img{box-shadow: 1px 1px 3px #9000;border:0;display:inline}a#ipalfinfo{display:block;width:700px;text-align:center;color:#200000<span styl="color:white"></span>;text-decoration:none;background:#black;padding:10px;border:1px solid #9000;overflow:hidden;line-height:170%;}a#ipalfinfo:hover{background:#black;color:#200000<span styl="color:white"></span>;}.ipalflink{padding:2px 8px;text-align:right;width:704px;font-size:11px;border:1px solid #9000;border-top:0;overflow:hidden;line-height:150%;color:#200000<span styl="color:white"></span>;background:#black;}.ipalflink a{text-decoration:none;}</style><a id="ipalfinfo" href="http://www.ipalf.com/" target="_blank"><div>Your IP: <b>36.65.76.93</b></div><div>Country: <b></b> <img src="http://www.ipalf.com/flags/.png" alt=""></div><div>Region: <b></b></div><div>City: <b></b></div><div>Language: <b></b></div><div>Browser: <b>Google Chrome</b></div><div>System: <b>Windows</b></div></a><style>#ipalfinfo div{display:inline-block;margin: 0 6px 0 0}#ipalfinfo img{box-shadow: 1px 1px 3px #9000;border:0;display:inline}a#ipalfinfo{display:block;width:700px;text-align:center;color:#200000<span styl="color:white"></span>;text-decoration:none;background:#black;padding:10px;border:1px solid #9000;overflow:hidden;line-height:170%;}a#ipalfinfo:hover{background:#black;color:#200000<span styl="color:white"></span>;}.ipalflink{padding:2px 8px;text-align:right;width:704px;font-size:11px;border:1px solid #9000;border-top:0;overflow:hidden;line-height:150%;color:#200000<span styl="color:white"></span>;background:#black;}.ipalflink a{text-decoration:none;}</style><a id="ipalfinfo" href="http://www.ipalf.com/" target="_blank"><div>Your IP: <b>120.188.94.229</b></div><div>Country: <b></b> <img src="http://www.ipalf.com/flags/.png" alt=""></div><div>Region: <b></b></div><div>City: <b></b></div><div>Language: <b></b></div><div>Browser: <b>Google Chrome</b></div><div>System: <b>Linux</b></div></a></font></font></font></font></font></font></font></font></center></font></pre></b></center></center></div><font face="New Rocker"><font color="red" size="3"><b><font color="red"><font color="white"><font color="red"><font color="white"><font color="red"><font color="white"><font color="yellow">
  440. <iframe width="0" height="0" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/38804753&color=%23ff5500&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
  441. <div id="loading" style="display: none;"></div>
  442.  
  443. </font></font></font></font></font></font></font></b></font></font>
  444.  
  445. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement