Don't like ads? PRO users don't see any ads ;-)
Guest

INDEX

By: a guest on Aug 7th, 2012  |  syntax: None  |  size: 7.91 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3.  
  4.  
  5.  
  6.  
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8.  
  9.  
  10.  
  11.  
  12.  
  13. <head>
  14.  
  15.  
  16.  
  17.  
  18.  
  19. <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
  20.  
  21.  
  22.  
  23.  
  24.  
  25. <title>HacKeD By RALPH </title>
  26.  
  27.  
  28.  
  29.  
  30.  
  31. <style type="text/css">body, a, a:hover {cursor: url(http://generadors.es/defacing/negro.cur), progress;}</style>
  32.  
  33. <style type="text/css">
  34.  
  35.  
  36.  
  37.     body {
  38.  
  39.  
  40.  
  41.     background: black url("http://hackedbyr4lph.webs.com/g1.gif");
  42.  
  43.  
  44.  
  45.     background-repeat: repeat;
  46.  
  47.  
  48.  
  49.     background-position: center;
  50.  
  51.  
  52.  
  53.     background-attachment: fixed;
  54.  
  55.  
  56.  
  57.     }
  58.  
  59.  
  60.  
  61.    
  62.  
  63.  
  64.  
  65. *,html,body,div,p,h2{padding: 0px;margin: 0px;}body{background: black url("http://hackedbyr4lph.webs.com/g1.gif"); background-repeat: repeat; background-position: center; background-attachment: fixed;}#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;display: inline;color: #333;}#content h2 {font-family: Cambria;font-size: 170px;}#aside{float: right;width: 348px;padding: 0px;display: inline;background-image: url('');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";}.
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77. {padding-top: 30px;font-size: 18px;font-family: "Courier New", Courier, monospace;font-weight: bold;color: #000000;}#music{padding: 80px 80px 0px 0px;float: right;clear: right;}</style>
  78.  
  79.  
  80.  
  81.  
  82.  
  83. </head>
  84.  
  85.  
  86.  
  87.  
  88.  
  89. <noframes></noframes><noscript></noscript><!-- --><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script type="text/javascript">/*<![CDATA[*/
  90.  
  91.  
  92.  
  93.  
  94.  
  95. TypingText = function(element, interval, cursor, finishedCallback) {
  96.  
  97.  
  98.  
  99.  
  100.  
  101.   if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  102.  
  103.  
  104.  
  105.  
  106.  
  107.     this.running = true;
  108.  
  109.  
  110.  
  111.  
  112.  
  113.     return;
  114.  
  115.  
  116.  
  117.  
  118.  
  119.   }
  120.  
  121.  
  122.  
  123.  
  124.  
  125.   this.element = element;
  126.  
  127.  
  128.  
  129.  
  130.  
  131.   this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  132.  
  133.  
  134.  
  135.  
  136.  
  137.   this.interval = (typeof interval == "undefined" ? 100 : interval);
  138.  
  139.  
  140.  
  141.  
  142.  
  143.   this.origText = this.element.innerHTML;
  144.  
  145.  
  146.  
  147.  
  148.  
  149.   this.unparsedOrigText = this.origText;
  150.  
  151.  
  152.  
  153.  
  154.  
  155.   this.cursor = (cursor ? cursor : "");
  156.  
  157.  
  158.  
  159.  
  160.  
  161.   this.currentText = "";
  162.  
  163.  
  164.  
  165.  
  166.  
  167.   this.currentChar = 0;
  168.  
  169.  
  170.  
  171.  
  172.  
  173.   this.element.typingText = this;
  174.  
  175.  
  176.  
  177.  
  178.  
  179.   if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  180.  
  181.  
  182.  
  183.  
  184.  
  185.   TypingText.all.push(this);
  186.  
  187.  
  188.  
  189.  
  190.  
  191.   this.running = false;
  192.  
  193.  
  194.  
  195.  
  196.  
  197.   this.inTag = false;
  198.  
  199.  
  200.  
  201.  
  202.  
  203.   this.tagBuffer = "";
  204.  
  205.  
  206.  
  207.  
  208.  
  209.   this.inHTMLEntity = false;
  210.  
  211.  
  212.  
  213.  
  214.  
  215.   this.HTMLEntityBuffer = "";
  216.  
  217.  
  218.  
  219.  
  220.  
  221. }
  222.  
  223.  
  224.  
  225.  
  226.  
  227. TypingText.all = new Array();
  228.  
  229.  
  230.  
  231.  
  232.  
  233. TypingText.currentIndex = 0;
  234.  
  235.  
  236.  
  237.  
  238.  
  239. TypingText.runAll = function() {
  240.  
  241.  
  242.  
  243.  
  244.  
  245.   for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  246.  
  247.  
  248.  
  249.  
  250.  
  251. }
  252.  
  253.  
  254.  
  255.  
  256.  
  257. TypingText.prototype.run = function() {
  258.  
  259.  
  260.  
  261.  
  262.  
  263.   if(this.running) return;
  264.  
  265.  
  266.  
  267.  
  268.  
  269.   if(typeof this.origText == "undefined") {
  270.  
  271.  
  272.  
  273.  
  274.  
  275.     setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  276.  
  277.  
  278.  
  279.  
  280.  
  281.     return;
  282.  
  283.  
  284.  
  285.  
  286.  
  287.   }
  288.  
  289.  
  290.  
  291.  
  292.  
  293.   if(this.currentText == "") this.element.innerHTML = "";
  294.  
  295.  
  296.  
  297.  
  298.  
  299.   if(this.currentChar < this.origText.length) {
  300.  
  301.  
  302.  
  303.  
  304.  
  305.     if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  306.  
  307.  
  308.  
  309.  
  310.  
  311.       this.tagBuffer = "<";
  312.  
  313.  
  314.  
  315.  
  316.  
  317.       this.inTag = true;
  318.  
  319.  
  320.  
  321.  
  322.  
  323.       this.currentChar++;
  324.  
  325.  
  326.  
  327.  
  328.  
  329.       this.run();
  330.  
  331.  
  332.  
  333.  
  334.  
  335.       return;
  336.  
  337.  
  338.  
  339.  
  340.  
  341.     } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  342.  
  343.  
  344.  
  345.  
  346.  
  347.       this.tagBuffer += ">";
  348.  
  349.  
  350.  
  351.  
  352.  
  353.       this.inTag = false;
  354.  
  355.  
  356.  
  357.  
  358.  
  359.       this.currentText += this.tagBuffer;
  360.  
  361.  
  362.  
  363.  
  364.  
  365.       this.currentChar++;
  366.  
  367.  
  368.  
  369.  
  370.  
  371.       this.run();
  372.  
  373.  
  374.  
  375.  
  376.  
  377.       return;
  378.  
  379.  
  380.  
  381.  
  382.  
  383.     } else if(this.inTag) {
  384.  
  385.  
  386.  
  387.  
  388.  
  389.       this.tagBuffer += this.origText.charAt(this.currentChar);
  390.  
  391.  
  392.  
  393.  
  394.  
  395.       this.currentChar++;
  396.  
  397.  
  398.  
  399.  
  400.  
  401.       this.run();
  402.  
  403.  
  404.  
  405.  
  406.  
  407.       return;
  408.  
  409.  
  410.  
  411.  
  412.  
  413.     } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  414.  
  415.  
  416.  
  417.  
  418.  
  419.       this.HTMLEntityBuffer = "&";
  420.  
  421.  
  422.  
  423.  
  424.  
  425.       this.inHTMLEntity = true;
  426.  
  427.  
  428.  
  429.  
  430.  
  431.       this.currentChar++;
  432.  
  433.  
  434.  
  435.  
  436.  
  437.       this.run();
  438.  
  439.  
  440.  
  441.  
  442.  
  443.       return;
  444.  
  445.  
  446.  
  447.  
  448.  
  449.     } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  450.  
  451.  
  452.  
  453.  
  454.  
  455.       this.HTMLEntityBuffer += ";";
  456.  
  457.  
  458.  
  459.  
  460.  
  461.       this.inHTMLEntity = false;
  462.  
  463.  
  464.  
  465.  
  466.  
  467.       this.currentText += this.HTMLEntityBuffer;
  468.  
  469.  
  470.  
  471.  
  472.  
  473.       this.currentChar++;
  474.  
  475.  
  476.  
  477.  
  478.  
  479.       this.run();
  480.  
  481.  
  482.  
  483.  
  484.  
  485.       return;
  486.  
  487.  
  488.  
  489.  
  490.  
  491.     } else if(this.inHTMLEntity) {
  492.  
  493.  
  494.  
  495.  
  496.  
  497.       this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  498.  
  499.  
  500.  
  501.  
  502.  
  503.       this.currentChar++;
  504.  
  505.  
  506.  
  507.  
  508.  
  509.       this.run();
  510.  
  511.  
  512.  
  513.  
  514.  
  515.       return;
  516.  
  517.  
  518.  
  519.  
  520.  
  521.     } else {
  522.  
  523.  
  524.  
  525.  
  526.  
  527.       this.currentText += this.origText.charAt(this.currentChar);
  528.  
  529.  
  530.  
  531.  
  532.  
  533.     }
  534.  
  535.  
  536.  
  537.  
  538.  
  539.     this.element.innerHTML = this.currentText;
  540.  
  541.  
  542.  
  543.  
  544.  
  545.     this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  546.  
  547.  
  548.  
  549.  
  550.  
  551.     this.currentChar++;
  552.  
  553.  
  554.  
  555.  
  556.  
  557.     setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  558.  
  559.  
  560.  
  561.  
  562.  
  563.   } else {
  564.  
  565.  
  566.  
  567.  
  568.  
  569.         this.currentText = "";
  570.  
  571.  
  572.  
  573.  
  574.  
  575.         this.currentChar = 0;
  576.  
  577.  
  578.  
  579.  
  580.  
  581.         this.running = false;
  582.  
  583.  
  584.  
  585.  
  586.  
  587.         this.finishedCallback();
  588.  
  589.  
  590.  
  591.  
  592.  
  593.   }
  594.  
  595.  
  596.  
  597.  
  598.  
  599. }
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611. /*]]>*/</script>
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623. <body>
  624.  
  625.  
  626.  
  627.  
  628.  
  629. <body onbeforeprint="onbeforeprint()" onafterprint="onafterprint()"
  630.  
  631.  
  632.  
  633.  
  634.  
  635. onselectstart="return false" oncontextmenu="return false">
  636.  
  637.  
  638.  
  639. <script>alert("Hacked By @robin_lg");</script>
  640.  
  641. <div id="container">
  642.  
  643.  
  644.  
  645.  
  646.  
  647.         <div id="content-container">
  648.  
  649.  
  650.  
  651.  
  652.  
  653.                 <div id="content">
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  <font face="Times New Roman"><em style="font-style: normal"><span class="">
  660.  
  661.  
  662.  
  663. <span style="font-weight:normal; text-shadow:white 0px 0px 4px; color:white">
  664.  
  665. <strong>
  666.  
  667. <font color="white"><h2>HacKeD</h2></front>
  668.  
  669. <p class="hacker">by @robin_lg</p>
  670.  
  671. <p id="message" class="notes">         
  672.  
  673. # @robin_lg <br />
  674.  
  675. # Sauludos especiales a todos<br />
  676.  
  677. # GreeTz -> To All HackerZ + Anonymoys, ColombianHackers and @r4lph_is_here<br />
  678.     <br />
  679.  
  680. #<font color="Red">Contact : @robin_lg </font><pre><pre>
  681.  
  682.  
  683. #<font color="maroon"> #Op_Hacking_Word </font><br />
  684.  
  685. #<font color="maroon">" SECURITY 0.0% " </font></p>
  686.  
  687. <a href="https://twitter.com/robin_lg" class="twitter-follow-button" data-show-count="false" data-lang="es" data-size="large">Seguir @robin_lg</a>
  688. <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
  689. <p id="Message class="notes">&nbsp;</p>
  690.  
  691. <script type="text/javascript">/*<![CDATA[*/
  692.  
  693. new TypingText(document.getElementById("message"), 90, function(i){ var ar = new Array(">", "_", ">", "_"); return " " + ar[i.length % ar.length]; });
  694. //Type out examples:
  695. TypingText.runAll();
  696.   /*]]>*/</script>
  697.                 </div>
  698.                 <div id="aside" >
  699.                 </div>
  700.                 <embed src="http://www.youtube.com/v/brFrGcprj_E&hl=en_US&loop=1&feature=related&autoplay=1>
  701.                 </div>
  702.         </div>
  703.    <p>&nbsp;</p>
  704. </div>
  705. <!-- --><script type="text/javascript" src="http://static.websimages.com/static/global/js/webs/usersites/escort.js"></script><script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script></body>
  706. </html>