Advertisement
cephurs

izangu

Apr 18th, 2014
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 16.85 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3.     <head>
  4.         <title>UGNazi - H4ck3rGr0up</title>
  5.         <link rel="shortcut icon" href="http://www.iconj.com/ico/r/j/rjo21jij8v.ico" type="image/x-icon" />
  6.         <style>
  7.             /* Default Style */
  8.             BODY {
  9.                 font-family: Verdana, Arial;
  10.                 font-size: 12px;
  11.                 color: #ff;
  12.                 background-color: black;
  13.                 background-image: url(http://i.imgur.com/4q2Op.gif);
  14.                 background-repeat: repeat;
  15.             }
  16.             /* Place Holder Style */
  17.  
  18.             #Container {
  19.                 width: 780px;
  20.                 margin-left: auto;
  21.                 margin-right: auto;
  22.             }
  23.             #Content {
  24.                 background-color: black;
  25.                 border: 1px solid #24262B;
  26.                 padding: 10px;
  27.                 margin-top: -13px;
  28.             }
  29.  
  30.             /* Title Style */
  31.             #Title {
  32.                 font-family: Verdana, Arial;
  33.                 font-size: 22px;
  34.                 font-weight: bold;
  35.                 color: #333333;
  36.                 border-bottom: 1px solid #24262B;
  37.                 margin-bottom: 10px;
  38.             }
  39.  
  40.             /* Copyright */
  41.             #Copyright {
  42.                 text-align: center;
  43.             }
  44.  
  45.             .style3 {color: #400000; font-size: 12; font-family: Georgia, "Times New Roman", Times, serif; }
  46.             .style10 {color: #444; font-size: +28; }
  47.             .style13 {color: #FFFFFF; }
  48.             .style14 {color: #999999}
  49.             .style16 {font-size: 14px}
  50.             .style17 {color: #400000}
  51.             .style1337 {color: #FF00FF}
  52.         </style>  
  53.         <script>
  54.           (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  55.           (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  56.           m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  57.           })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  58.  
  59.           ga('create', 'UA-49806608-1', 'ugnazi.com');
  60.           ga('send', 'pageview');
  61.  
  62.         </script>
  63.         <script type="text/javascript">
  64.             TypingText = function(element, interval, cursor, finishedCallback) {
  65.                 if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  66.                     this.running = true;
  67.                     return;
  68.                 }
  69.                
  70.                 this.element = element;
  71.                 this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  72.                 this.interval = (typeof interval == "undefined" ? 100 : interval);
  73.                 this.origText = this.element.innerHTML;
  74.                 this.unparsedOrigText = this.origText;
  75.                 this.cursor = (cursor ? cursor : "");
  76.                 this.currentText = "";
  77.                 this.currentChar = 0;
  78.                 this.element.typingText = this;
  79.                
  80.                 if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  81.                
  82.                 TypingText.all.push(this);
  83.                 this.running = false;
  84.                 this.inTag = false;
  85.                 this.tagBuffer = "";
  86.                 this.inHTMLEntity = false;
  87.                 this.HTMLEntityBuffer = "";
  88.             }
  89.  
  90.             TypingText.all = new Array();
  91.             TypingText.currentIndex = 0;
  92.  
  93.             TypingText.runAll = function() {
  94.                 for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  95.            }
  96.  
  97.            TypingText.prototype.run = function() {
  98.                if(this.running) return;
  99.                if(typeof this.origText == "undefined") {
  100.                    setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  101.                    return;
  102.                }
  103.                if(this.currentText == "") this.element.innerHTML = "";
  104.                if(this.currentChar < this.origText.length) {
  105.                    if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  106.                        this.tagBuffer = "<";
  107.                        this.inTag = true;
  108.                        this.currentChar++;
  109.                        this.run();
  110.                        return;
  111.                    } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  112.                        this.tagBuffer += ">";
  113.                         this.inTag = false;
  114.                         this.currentText += this.tagBuffer;
  115.                         this.currentChar++;
  116.                         this.run();
  117.                         return;
  118.                     } else if(this.inTag) {
  119.                         this.tagBuffer += this.origText.charAt(this.currentChar);
  120.                         this.currentChar++;
  121.                         this.run();
  122.                         return;
  123.                     } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  124.                        this.HTMLEntityBuffer = "&";
  125.                         this.inHTMLEntity = true;
  126.                         this.currentChar++;
  127.                         this.run();
  128.                         return;
  129.                     } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  130.                        this.HTMLEntityBuffer += ";";
  131.                         this.inHTMLEntity = false;
  132.                         this.currentText += this.HTMLEntityBuffer;
  133.                         this.currentChar++;
  134.                         this.run();
  135.                         return;
  136.                     } else if(this.inHTMLEntity) {
  137.                         this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  138.                         this.currentChar++;
  139.                         this.run();
  140.                         return;
  141.                     } else {
  142.                         this.currentText += this.origText.charAt(this.currentChar);
  143.                     }
  144.                    
  145.                     this.element.innerHTML = this.currentText;
  146.                     this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  147.                    this.currentChar++;
  148.                    setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  149.                } else {
  150.                    this.currentText = "";
  151.                    this.currentChar = 0;
  152.                    this.running = false;
  153.                    this.finishedCallback();
  154.                }
  155.            }
  156.  
  157.                        function disableselect(e){
  158.                return false
  159.            }
  160.  
  161.            function reEnable(){
  162.                return true
  163.            }
  164.  
  165.            //if IE4+
  166.            document.onselectstart=new Function ("return false")
  167.            document.oncontextmenu=new Function ("return false")
  168.            //if NS6
  169.            if (window.sidebar){
  170.                document.onmousedown=disableselect
  171.                document.onclick=reEnable
  172.            }
  173.        </script>
  174.     </head>
  175.  
  176.     <body onLoad="scrlsts()" onLoad="StartTexte()">
  177.  
  178.         <script type="text/javascript">
  179.             var max=0;
  180.             function textlist()
  181.             {
  182.                 max=textlist.arguments.length;
  183.                 for (i=0; i<max; i++)
  184.                    this[i]=textlist.arguments[i];
  185.            }
  186.  
  187.            tl=new textlist (
  188.                " UGNazi - H4ck3rGr0up",
  189.                " UGNazi - H4ck3rGr0up ",
  190.                " UGNazi - H4ck3rGr0up ",
  191.                " UGNazi - H4ck3rGr0up",
  192.                " UGNazi - H4ck3rGr0up",
  193.                " UGNazi - H4ck3rGr0up",
  194.                " get@me."
  195.            );
  196.  
  197.            var text_x=0; pos=0;
  198.            var l=tl[0].length;
  199.  
  200.            function textticker()
  201.            {
  202.                document.form1.textfeld.value=tl[text_x].substring(0,pos)+"_";
  203.  
  204.                if(pos++==l)
  205.                {
  206.                    pos=0;
  207.                    setTimeout("textticker()",2000);
  208.                    text_x++;
  209.                    if(text_x==max)
  210.                            text_x=0;
  211.                    l=tl[text_x].length;
  212.                } else
  213.                    setTimeout("textticker()",50);
  214.            }
  215.  
  216.            function StartTexte()
  217.            {
  218.                textticker();
  219.            }
  220.  
  221.        </script>
  222.  
  223.         <p align="center">
  224.             <font size="5" color="#333" face="Courier New">
  225.                 <marquee behavior="scroll" direction="left" scrollamount="9" scrolldelay="10" width="26%"><span class="footerlink"><b>UGNazi.com: H4ck3rGr0up</b></span></marquee>
  226.             </font>
  227.         </p>
  228.         <div id="Container">
  229.  
  230.             <div id="Title">
  231.                 <center>
  232.                     Welcome Nazi</br>
  233.                 <font size="3"><a href="news.html" target="_blank"><font color="#444">We hear everything</font></a> <font color="#333">|</font> <a href="targets.html" target="_blank"><font color="#444">Targets & Reasons</font></a> <font color="#333">|</font> <a href="not_stubborn.html" target="_blank"><font color="#444">Why we do what we do...</font></a></font></br>
  234.                </center>
  235.            </div>
  236.            <br>
  237.  
  238.            <!-- Content -->
  239.            <div id="Content">
  240.                <p align="center">
  241.                    <h1>
  242.                        <b>
  243.                            <center>
  244.                                <script type="text/javascript">
  245.                                    farbbibliothek = new Array();
  246.                                     farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100");
  247.                                     farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  248.                                     farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00");
  249.                                     farbbibliothek[3] = new Array("#000","#111","#222","#333","#444","#555","#666","#777","#888","#888","#777","#666","#555","#444","#333","#222","#111","#000");
  250.                                     farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  251.                                     farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  252.                                     farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  253.                                     farben = farbbibliothek[4];
  254.                                     function farbschrift()
  255.                                     {
  256.                                         for(var i=0 ; i<Buchstabe.length; i++)
  257.                                        {
  258.                                            document.all["a"+i].style.color=farben[i];
  259.                                        }
  260.                                        farbverlauf();
  261.                                    }
  262.                                    function string2array(text)
  263.                                    {
  264.                                        Buchstabe = new Array();
  265.                                        while(farben.length<text.length)
  266.                                        {
  267.                                            farben = farben.concat(farben);
  268.                                        }
  269.                                        k=0;
  270.                                        while(k<=text.length)
  271.                                        {
  272.                                            Buchstabe[k] = text.charAt(k);
  273.                                            k++;
  274.                                        }
  275.                                    }
  276.                                    function divserzeugen()
  277.                                    {
  278.                                        for(var i=0 ; i<Buchstabe.length; i++)
  279.                                        {
  280.                                            document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  281.                                         }
  282.                                         farbschrift();
  283.                                     }
  284.                                     var a=1;
  285.                                     function farbverlauf()
  286.                                     {
  287.                                         for(var i=0 ; i<farben.length; i++)
  288.                                        {
  289.                                            farben[i-1]=farben[i];
  290.                                        }
  291.                                        farben[farben.length-1]=farben[-1];
  292.  
  293.                                        setTimeout("farbschrift()",30);
  294.                                    }
  295.                                    // Zu Demonstrationszwecken*****************
  296.                                    var farbsatz=1;
  297.                                    function farbtauscher()
  298.                                    {
  299.                                        farben = farbbibliothek[farbsatz];
  300.                                        while(farben.length<text.length)
  301.                                        {
  302.                                            farben = farben.concat(farben);
  303.                                        }
  304.                                        farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  305.                                    }
  306.                                    setInterval("farbtauscher()",5000);
  307.                                    text= "UGNazi :: H4ck3rGr0up"; //h
  308.                                    string2array(text);
  309.                                    divserzeugen();
  310.                                    //document.write(text);
  311.                                </script>
  312.                             </center>
  313.                         </b>
  314.                     </h1>
  315.                 </p>
  316.                 <center>
  317.                     <p align="center" class="style3" id="message">
  318.                         <span class="style10"><b>In memory of JoshTheGod, CosmoTheGod, Zeekill & TheGodFather</b></span><br>
  319.                        <span class="style10"><a href="http://twitter.com/JoshTheGod" target="_blank"><b><font color="#333">Follow us on Twitter</font></b></a></span><br>
  320.                        <span class="style10"><img src="http://i.imgur.com/kPPCc.jpg" width="100%"></span><br>
  321.  
  322.                        <p align="center" class="style3">
  323.                            <span class="style17">Contact : </span><span class="style3"> <strong>antigov@tormail.net (Use TorMail | <a href="/email_us.html" target="_blank"><u><span class="style3">How To</span></u></a>)</strong>
  324.                            <script type="text/javascript">
  325.                                new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
  326.                                 TypingText.runAll();
  327.                             </script>
  328.                         </p>
  329.                     </p>
  330.                    
  331.                     <p id="Copyright" align="center">
  332.                         <font color="#565051" size="2" face="Courier New"><br>Copyright &copy; 2014 UGNazi.com</font>
  333.                         <embed src="https://www.youtube.com/v/aOePTOFrHHI?autoplay=1&loop=1&controls=0&fs=0&showsearch=0&rel=0&disablekb=1" type="application/x-shockwave-flash" width="1" height="1" allowscriptaccess="always" allowfullscreen="false"></embed>
  334.                     </p>
  335.  
  336.                     <p><font color="#565051" size="1" face="Courier New">Layout by <a href="http://twitter.com/VariousLulz" target="_blank" /><font size="1" color="#565051" face="Courier New">@VariousLulz</font><a></font></p>
  337.                     <br>
  338.                 </center>
  339.             </div>
  340.         </div>
  341.     </body>
  342. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement