Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.63 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.  
  5. <title>----| Hacked By Calvin Bruce |----</title>
  6.  
  7. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  8.  
  9. <meta content="Kita Selamanya" name="description">
  10.  
  11. <meta content="aku sayang kamu" name="keywords">
  12.  
  13. <meta property="og:description" content=" ,, By Calvin Bruce ,, " />
  14.  
  15. <Link href='http://www.goodlightscraps.com/content/i_love_you/i_love_u_25.gif' rel='SHORTCUT ICON'/>
  16.  
  17. <style type="text/css">
  18.  
  19. A:link {text-decoration: none; color: #150517;}
  20.  
  21. A:visited {text-decoration: none; color: #150517;}
  22.  
  23. A:active {text-decoration: none; color: #150517;}
  24.  
  25. A:hover {font-size:24; font-weight:bold; color: #150517;}
  26.  
  27. </style>
  28.  
  29. <script type="text/javascript">
  30.  
  31. TypingText = function(element, interval, cursor, finishedCallback) {
  32.  
  33. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  34.  
  35. this.running = true; // Never run.
  36.  
  37. return;
  38.  
  39. }
  40.  
  41. this.element = element;
  42.  
  43. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  44.  
  45. this.interval = (typeof interval == "undefined" ? 150 : interval);
  46.  
  47. this.origText = this.element.innerHTML;
  48.  
  49. this.unparsedOrigText = this.origText;
  50.  
  51. this.cursor = (cursor ? cursor : "");
  52.  
  53. this.currentText = "";
  54.  
  55. this.currentChar = 0;
  56.  
  57. this.element.typingText = this;
  58.  
  59. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  60.  
  61. TypingText.all.push(this);
  62.  
  63. this.running = false;
  64.  
  65. this.inTag = false;
  66.  
  67. this.tagBuffer = "";
  68.  
  69. this.inHTMLEntity = false;
  70.  
  71. this.HTMLEntityBuffer = "";
  72.  
  73. }
  74.  
  75. TypingText.all = new Array();
  76.  
  77. TypingText.currentIndex = 0;
  78.  
  79. TypingText.runAll = function() {
  80.  
  81. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  82.  
  83. }
  84.  
  85. TypingText.prototype.run = function() {
  86.  
  87. if(this.running) return;
  88.  
  89. if(typeof this.origText == "undefined") {
  90.  
  91. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  92.  
  93. return;
  94.  
  95. }
  96.  
  97. if(this.currentText == "") this.element.innerHTML = "";
  98.  
  99. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  100.  
  101. if(this.currentChar < this.origText.length) {
  102.  
  103. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  104.  
  105. this.tagBuffer = "<";
  106.  
  107. this.inTag = true;
  108.  
  109. this.currentChar++;
  110.  
  111. this.run();
  112.  
  113. return;
  114.  
  115. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  116.  
  117. this.tagBuffer += ">";
  118.  
  119. this.inTag = false;
  120.  
  121. this.currentText += this.tagBuffer;
  122.  
  123. this.currentChar++;
  124.  
  125. this.run();
  126.  
  127. return;
  128.  
  129. } else if(this.inTag) {
  130.  
  131. this.tagBuffer += this.origText.charAt(this.currentChar);
  132.  
  133. this.currentChar++;
  134.  
  135. this.run();
  136.  
  137. return;
  138.  
  139. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  140.  
  141. this.HTMLEntityBuffer = "&";
  142.  
  143. this.inHTMLEntity = true;
  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 = false;
  156.  
  157. this.currentText += this.HTMLEntityBuffer;
  158.  
  159. this.currentChar++;
  160.  
  161. this.run();
  162.  
  163. return;
  164.  
  165. } else if(this.inHTMLEntity) {
  166.  
  167. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  168.  
  169. this.currentChar++;
  170.  
  171. this.run();
  172.  
  173. return;
  174.  
  175. } else {
  176.  
  177. this.currentText += this.origText.charAt(this.currentChar);
  178.  
  179. }
  180.  
  181. this.element.innerHTML = this.currentText;
  182.  
  183. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  184.  
  185. this.currentChar++;
  186.  
  187. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  188.  
  189. } else {
  190.  
  191. this.currentText = "";
  192.  
  193. this.currentChar = 0;
  194.  
  195. this.running = false;
  196.  
  197. this.finishedCallback();
  198.  
  199. }
  200.  
  201. }
  202.  
  203. </script>
  204.  
  205. </head>
  206.  
  207. <a href="http://www.uploadmusic.org/"><object type="application/x-shockwave-flash" width="17"
  208.  
  209. height="17"data="http://www.uploadmusic.org/musicplayer.swf?song_url=http%3A%2F%2Fwww.uploadmusic.org%2FMUSIC%2F9172851359040441.mp3&autoplay=true"><param name="movie"value="http://www.uploadmusic.org/musicplayer.swf?song_url=http%3A%2F%2Fwww.uploadmusic.org%2FMUSIC%2F9172851359040441.mp3&song_title=uploadmusic.org&autoplay=true"
  210.  
  211. /></object><img src="http://www.uploadmusic.org/smallplayer.gif" border="0">
  212.  
  213. <br>Upload Music</a>
  214.  
  215. <center><table>
  216.  
  217. <tr>
  218.  
  219. <td colspan="2"><font color="white" size="2">
  220.  
  221. </font><font color="white" size="2">
  222.  
  223. --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  224.  
  225. </font><br><pre>
  226.  
  227. <font color ="red" size="6">Hey Lamia😘 I am Calvin. </font>
  228.  
  229. <font color ="red" size="6">When I saw you My Heart is running fast and my pulse stopped for SomeTimes.</font>
  230.  
  231. <font color ="red" size="6">This website is hacked just for you</font>
  232.  
  233. <font color="blue" size="6">Please give me a opportunity to love you</font>
  234.  
  235. <font color ="pink" size="6">Please become my Princess😍</font>
  236.  
  237. <font color ="white" size="24"> Click play button for music</font><br>
  238. <font size="24">👇</font>
  239.  
  240. <span style="visibility: visible"><iframe widllth="100" height="100" scrolling="no" frameborder="no" loop="true" allow="autoplay" src="http://8upload.ir/uploads/f836545075.mp3"></iframe></span>
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247. </pre></td></tr>
  248.  
  249. <tr>
  250.  
  251.  
  252. <td><a><img src="https://i.ibb.co/VBfTqLZ/FB-IMG-15755658078208813.jpg" border="3" heigth="270px" width="370px" title="One Love Forever "></a></td>
  253.  
  254.  
  255.  
  256.  
  257. <td>
  258.  
  259. <pre id="sualmukuna_cugh">
  260.  
  261. <font color="#FFFFFF"">
  262.  
  263. <font face='Courier' color='#00FFFF'new size='10'>Hey.. <left>
  264.  
  265. <font face='Courier' color='#00FFFF'new size='10'>Hey........ Lamia <left>
  266.  
  267. </ font > <br> <font face='Courier' color='#00FFFF'new size='10'>I really crushed on you when i saw you..... 😉
  268.  
  269. </ font> <font face='Courier' color='#00FFFF'new size='10'>
  270. I really love you...........
  271. </ font> <font = 'Courier 'color =' # 00FFFF'new size = '10'>Please become my life partner😊
  272.  
  273. </ font> <font face='Courier' color='#00FFFF'new size='10'>I Like Your Smile ,I Like Your Vibe , I Like Your Style....
  274. At last I want to say you ::I love you.. I love you so much😘
  275.  
  276. āĻ†āĻŽāĻŋ āĻ¤ā§‹āĻŽāĻžāĻ•ā§‡ āĻ…āĻ¨ā§‡āĻ• āĻ­āĻžāĻ˛ā§‹āĻŦāĻžāĻ¸āĻŋ 😍 āĻ†āĻŽāĻžāĻ•ā§‡ āĻĢāĻŋāĻ°āĻŋā§Ÿā§‡ āĻĻāĻŋāĻ“ āĻ¨āĻžāĨ¤ </ font> <br> <br> <br>
  277.  
  278. </font>
  279.  
  280. <i><font color="Red"> From </font><font color="#FF00FF">Calvin Bruce</font></i>
  281.  
  282. </pre>
  283.  
  284. <script type="text/javascript">
  285.  
  286. //Define first typing example:
  287.  
  288. new TypingText(document.getElementById("sualmukuna_cugh"));
  289.  
  290. //Type out examples:
  291.  
  292. TypingText.runAll();
  293.  
  294. </script>
  295.  
  296. </td></tr></table>
  297.  
  298. <font color="white" size="2">
  299.  
  300. --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  301.  
  302. <script language="javascript"src="http://rikz.mobie.in/script/snow/cyansnow.js"type="text/javascript">
  303.  
  304. </script>
  305.  
  306. </font>
  307.  
  308. </td></tr><font color="#FF00FF"" size="2">
  309.  
  310. <br> [ &nbsp;&nbsp;&nbsp; I WAS BORN TO TELL YOU I LOVE YOU &nbsp;&nbsp;&nbsp; ] </font><br></center>
  311.  
  312. <font face=calibri color=Red size=3><b>
  313.  
  314. <marquee width=65%>Thanks To : (Ariyan)</marquee></br></font>
  315.  
  316. <body style='-moz-user-select: true; cursor: crosshair;'><body bgcolor="black" link="#150517" active="#150517" visited="#150517" text="#38eccc" onkeydown='return false;' oncontextmenu='return false;' onmousedown='return false;'>
  317. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement