Advertisement
Guest User

html

a guest
Jun 23rd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.98 KB | None | 0 0
  1.  
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <link rel='shortcut icon' href='https://scontent-a-sin.xx.fbcdn.net/hphotos-xpa1/v/t1.0-9/15487_671175589647018_4705148860226276746_n.jpg?oh=9b204232fa662d4fb206f6b8c64f68d4&oe=54E0020D' />
  4. <title>.:: CYBER BOSS ::. </title>
  5. <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
  6. <style type="text/css">
  7.  
  8.  
  9. *,html,body,div,p,h2{padding: 0px;margin: 4px;}body{background: url("http://cdn.wonderfulengineering.com/wp-content/uploads/2016/01/black-wallpaper-4.jpg");}#container{margin: 0 auto;width: 980px;padding-top: 40px;}#content-container{float: left;width: 980px;}#content{clear: left;float: left;width: 581px;padding: 20px 0 20px 0;margin: 0 0 0 30px;play: inline;color: #333;}#content h2 {font-family: Cambria;font-size: 170px;}#aside{float: right;width: 348px;padding: 0px;display: inline;background-image: url('http://');height: 376px;}.hacker{float: right;font-family: Cambria;font-size: 30px;font-weight: bold;}.notes{padding-top: 90px;line-height: 1.3em;font-weight: bold;font-size: 16px;font-family: "Courier New";}.contact{padding-top: 30px;font-size: 18px;font-family: "Courier New", Courier, monospace;font-weight: bold;color: #800000;}#music{padding: 80px 80px 0px 0px;float: right;clear: right;}.STYLE1 {
  10. padding-top: 20px;
  11. line-height: 1.3em;
  12. font-weight: bold;
  13. font-size: 15px;
  14. font-family: "Courier New";
  15. border-width: 100;
  16. width: 900px;
  17. }
  18. .STYLE4 {color: #990000}
  19. .STYLE5 {color: #00FF00}
  20. .STYLE9 {color: #33FF00}
  21. body,td,th {
  22. color: #FFFFFF;
  23. }
  24. .STYLE10 {color: maroon}
  25. .STYLE11 {color: #FF0000}
  26. </style>
  27. </head>
  28. <script type="text/javascript">/*<![CDATA[*/
  29. TypingText = function(element, interval, cursor, finishedCallback) {
  30.  
  31.  
  32.  
  33. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  34.  
  35.  
  36.  
  37. this.running = true;
  38.  
  39.  
  40.  
  41. return;
  42.  
  43.  
  44.  
  45. }
  46.  
  47.  
  48.  
  49. this.element = element;
  50.  
  51.  
  52.  
  53. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  54.  
  55.  
  56.  
  57. this.interval = (typeof interval == "undefined" ? 100 : interval);
  58.  
  59.  
  60.  
  61. this.origText = this.element.innerHTML;
  62.  
  63.  
  64.  
  65. this.unparsedOrigText = this.origText;
  66.  
  67.  
  68.  
  69. this.cursor = (cursor ? cursor : "");
  70.  
  71.  
  72.  
  73. this.currentText = "";
  74.  
  75.  
  76.  
  77. this.currentChar = 0;
  78.  
  79.  
  80.  
  81. this.element.typingText = this;
  82.  
  83.  
  84.  
  85. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  86.  
  87.  
  88.  
  89. TypingText.all.push(this);
  90.  
  91.  
  92.  
  93. this.running = false;
  94.  
  95.  
  96.  
  97. this.inTag = false;
  98.  
  99.  
  100.  
  101. this.tagBuffer = "";
  102.  
  103.  
  104.  
  105. this.inHTMLEntity = false;
  106.  
  107.  
  108.  
  109. this.HTMLEntityBuffer = "";
  110.  
  111.  
  112.  
  113. }
  114.  
  115.  
  116.  
  117. TypingText.all = new Array();
  118.  
  119.  
  120.  
  121. TypingText.currentIndex = 0;
  122.  
  123.  
  124.  
  125. TypingText.runAll = function() {
  126.  
  127.  
  128.  
  129. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  130.  
  131.  
  132.  
  133. }
  134.  
  135.  
  136.  
  137. TypingText.prototype.run = function() {
  138.  
  139.  
  140.  
  141. if(this.running) return;
  142.  
  143.  
  144.  
  145. if(typeof this.origText == "undefined") {
  146.  
  147.  
  148.  
  149. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  150.  
  151.  
  152.  
  153. return;
  154.  
  155.  
  156.  
  157. }
  158.  
  159.  
  160.  
  161. if(this.currentText == "") this.element.innerHTML = "";
  162.  
  163.  
  164.  
  165. if(this.currentChar < this.origText.length) {
  166.  
  167.  
  168.  
  169. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  170.  
  171.  
  172.  
  173. this.tagBuffer = "<";
  174.  
  175.  
  176.  
  177. this.inTag = true;
  178.  
  179.  
  180.  
  181. this.currentChar++;
  182.  
  183.  
  184.  
  185. this.run();
  186.  
  187.  
  188.  
  189. return;
  190.  
  191.  
  192.  
  193. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  194.  
  195.  
  196.  
  197. this.tagBuffer += ">";
  198.  
  199.  
  200.  
  201. this.inTag = false;
  202.  
  203.  
  204.  
  205. this.currentText += this.tagBuffer;
  206.  
  207.  
  208.  
  209. this.currentChar++;
  210.  
  211.  
  212.  
  213. this.run();
  214.  
  215.  
  216.  
  217. return;
  218.  
  219.  
  220.  
  221. } else if(this.inTag) {
  222.  
  223.  
  224.  
  225. this.tagBuffer += this.origText.charAt(this.currentChar);
  226.  
  227.  
  228.  
  229. this.currentChar++;
  230.  
  231.  
  232.  
  233. this.run();
  234.  
  235.  
  236.  
  237. return;
  238.  
  239.  
  240.  
  241. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  242.  
  243.  
  244.  
  245. this.HTMLEntityBuffer = "&";
  246.  
  247.  
  248.  
  249. this.inHTMLEntity = true;
  250.  
  251.  
  252.  
  253. this.currentChar++;
  254.  
  255.  
  256.  
  257. this.run();
  258.  
  259.  
  260.  
  261. return;
  262.  
  263.  
  264.  
  265. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  266.  
  267.  
  268.  
  269. this.HTMLEntityBuffer += ";";
  270.  
  271.  
  272.  
  273. this.inHTMLEntity = false;
  274.  
  275.  
  276.  
  277. this.currentText += this.HTMLEntityBuffer;
  278.  
  279.  
  280.  
  281. this.currentChar++;
  282.  
  283.  
  284.  
  285. this.run();
  286.  
  287.  
  288.  
  289. return;
  290.  
  291.  
  292.  
  293. } else if(this.inHTMLEntity) {
  294.  
  295.  
  296.  
  297. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  298.  
  299.  
  300.  
  301. this.currentChar++;
  302.  
  303.  
  304.  
  305. this.run();
  306.  
  307.  
  308.  
  309. return;
  310.  
  311.  
  312.  
  313. } else {
  314.  
  315.  
  316.  
  317. this.currentText += this.origText.charAt(this.currentChar);
  318.  
  319.  
  320.  
  321. }
  322.  
  323.  
  324.  
  325. this.element.innerHTML = this.currentText;
  326.  
  327.  
  328.  
  329. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  330.  
  331.  
  332.  
  333. this.currentChar++;
  334.  
  335.  
  336.  
  337. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  338.  
  339.  
  340.  
  341. } else {
  342.  
  343.  
  344.  
  345. this.currentText = "";
  346.  
  347.  
  348.  
  349. this.currentChar = 0;
  350.  
  351.  
  352.  
  353. this.running = false;
  354.  
  355.  
  356.  
  357. this.finishedCallback();
  358.  
  359.  
  360.  
  361. }
  362.  
  363.  
  364.  
  365. }
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373. /*]]>*/
  374. </script>
  375. <body onLoad="animate();start()" onresize="resize()" onorientationchange="resize()" onmousedown="context.fillStyle='rgba(0,0,0,'+opacity+')'" onmouseup="context.fillStyle='rgb(0,0,0)'">
  376. <p class="STYLE1" id="message">
  377. <font color="aqua">root@world:~#</font><span class="STYLE11">Please Read Me..!!!</span><br />
  378. <a href="https://www.facebook.com/groups/Dark.Defence/">Gue Hanya Sampah</a> !!<br />
  379. <font color='aqua'><i>" Hacked By : ZACKCYBER "</i></font><br /><br />
  380. <font color="yellow">fuck: </font><span class="STYLE11">Teman Musiman..!!! :D </span><br />
  381. <font color="red">Banyak yang bilang kalo di dunia underground itu banyak teman musiman..!</font> <font color="red"></font><font
  382. color="red"Teman musiman itu seperti apakah..?
  383. </font>Katanya sih mereka selalu datang saat ada perlunya saja.., Disaat mereka sudah mendapatkan apa yang mereka inginkan mereka pergi begitu saja..! Apalah daya gue cuma seorang newbie, Yang masih mengemis" pada sang mastah..!!<font color="red">Dah gitu aja curhatan gue.. :D<font
  384. /> <br />
  385. <font color="aqua">root@world:~# </font><span class="STYLE11">Jus't Test our security</span><br />
  386. <font color="aqua">Jadilah teman yang selalu ada disaat susah n' senang<br /><br />
  387. <span class="STYLE9">[+] cintailah temanmu seikhlas hatimu :)</span><br />
  388. <span class="STYLE9">[+] jangan pernah mengecewakan temanmu disaat dia mempercayaimu</span><br />
  389. <span class="STYLE9">[+] susah dan senang selalu bersama jangan cuma ada maunya saja baru ingat dia</span><br />
  390. <span class="STYLE9">[+] buat gue arti teman itu sangat berarti buat kehidupan</span><br />
  391. <span class="STYLE9">[+] gak ada teman hidup lu gk akan berarti apa-apa </span><br />
  392. <span class="STYLE9">[+] jagalah temanmu itu sebaik mungkin :) </span><br />
  393. <span class="STYLE9">[+] jangan pernah kamu manfaatkan temanmu itu yg sudah mempercayaimu</span><br />
  394. <span class="STYLE9">[+] Dah gitu aja peace and love :D</span><br />
  395. <font color="aqua">Offical groups : </font><span class="STYLE11">~ CGO CYBER TEAM ~ CGO DEFACER TEAM ~ Hacker Team ~ DEFACER THAMRIN TEAM ~ CYBER INDO ~ CYBEROOT ~ INDONESIAN CODE PARTY ~ ALL TEAM INDONESIA HACKER ~</span><br />
  396. <p class="notes">&nbsp;</p>
  397. <br />
  398. <script language=JavaScript type=text/javascript><!--// Method-5 animation script (compressed)
  399. /***** initialize global film variables ******/
  400. var frames = 31; // <---- total number of pictures in film
  401. var delay = 90; // <---- delay after each frame
  402. var color = "brown"; // <---- Color of cat
  403. var changecol = false; // <---- Randomly change color of cat? If true the cat will change colors if false the color of the cat will be the value of the color variable.
  404. var move_cat = true; // <---- Move cat? If true the cat will move side to side. If false the cat will stay in one place.
  405. var cat_fontsize = 10; // <---- In pixels
  406.  
  407. /***** initialize anim screen position (in pixels) *****/
  408.  
  409. var topp = 50; // <---- window position bottom
  410. var left = (move_cat)?-20:-10; // <---- window position left
  411. var width = 300; // <---- window width
  412. var height = 187; // <---- window height
  413.  
  414.  
  415. /***** initialize anim control variables *****/
  416.  
  417. var posi = 0; // <---- actual picture position (frame counter)
  418. var prev = 1; // <---- previous picture number
  419. var run = true; // <---- boolean : true (?????) or !true (?????)
  420.  
  421.  
  422. /***** initialize style sheets ****/
  423.  
  424. document.write("<" + "style type='text/css'><" + "!-- ");
  425. for (i = 0; i <= frames; i++) {
  426. if (move_cat) {
  427. left = left + 2;
  428. }
  429. document.write("#cat" + i + " {position:absolute; color:" + color + "; font-size:" + cat_fontsize + "px; left:" + left + "%; top:" + topp + "px; width:" + width + "px; height:" + height + "px; z-index:" + i + "; visibility:hidden}");
  430. }
  431. document.write("--" + "><" + "/style>");
  432.  
  433. /******* animation module ******/
  434. function change_color() {
  435. var colors = new Array("#6C2DC7", "#00FFFF", "#00FF00", "#FFFF00", "#FF0000", "#FF00FF", "#1589FF", "#8D38C9", "#E3319D", "#6C2DC7", "#7E354D", "#736AFF", "#306754", "#E45E9D", "#000099", "#33CC00", "#25A0C5");
  436. var randomnum = Math.floor(Math.random() * 17)
  437. var random_color = colors[randomnum];
  438. for(i=0;i<=frames;i++) {
  439. if(i==0) {
  440.  
  441. }
  442. else {
  443. document.getElementById('cat' + i).style.color = random_color;
  444. }
  445. }
  446. }
  447.  
  448. function animate() {
  449. posi = posi + 1;
  450. if (posi > frames) {
  451. if (run) {
  452. if (changecol && move_cat) {
  453. setTimeout("animate2(posi-1, prev); change_color();", delay);
  454. } else if (changecol && !move_cat) {
  455. posi = 1;
  456. setTimeout("animate(); change_color();", delay);
  457. } else if (!changecol && move_cat) {
  458. setTimeout("animate2(posi-1, prev);", delay);
  459. } else if (!changecol && !move_cat) {
  460. posi = 1;
  461. setTimeout("animate();", delay);
  462. }
  463. }
  464. } else {
  465. document.getElementById("cat"+ prev).style.visibility = 'hidden';
  466. document.getElementById("cat"+ posi).style.visibility = 'visible';
  467. prev = posi;
  468. if (run) setTimeout("animate()", delay);
  469. }
  470. }
  471.  
  472. function animate2(posi2, prev2) {
  473. posi = posi2 - 1;
  474. if (posi < 1) {
  475. if (run) {
  476. if (changecol) {
  477. setTimeout("animate(); change_color();", delay);
  478. } else {
  479. setTimeout("animate();", delay);
  480. }
  481. }
  482. } else {
  483. document.getElementById("cat"+ prev).style.visibility = 'hidden';
  484. document.getElementById("cat"+ posi).style.visibility = 'visible';
  485. prev = posi;
  486. if (run) setTimeout("animate2(posi, prev-1)", delay);
  487. }
  488. }
  489. //--></SCRIPT>
  490. <DIV id=cat1>
  491. <PRE>
  492. <iframe width="1" height="1" src="https://www.youtube.com/embed/_oEi9Se6MlA?rel=0&autoplay=1&loop=1&playlist=_oEi9Se6MlA" frameborder="0" allowfullscreen></iframe>
  493. </html>
  494. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'>
  495. <script src='http://yourjavascript.com/1171704334/efek-salju-faisal.js' type='text/javascript'/></script>
  496.  
  497.  
  498. </PRE>
  499. </DIV>
  500. <script type="text/javascript">/*<![CDATA[*/
  501. new TypingText(document.getElementById("message"), 40, function(i){ var ar = new Array("_", " ", "_", " "); return " " + ar[i.length % ar.length]; });
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509. //Type out examples:
  510.  
  511.  
  512.  
  513. TypingText.runAll();
  514.  
  515.  
  516.  
  517. /*]]>*/
  518.  
  519. </script>
  520. <script type="text/javascript"> //<![CDATA[
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement