zone-h URL: http://www.zone-h.org/mirror/id/30836907

Capture Date:       2018-02-17 23:48:35 JST

  zone-h info:
    Mirror saved on : 2018-02-17 14:46:31
    Notified by     : mohamed.xo
    Domain          : http://vesper.xsrv.jp
    IP address      : 210.188.201.174
    System          : Linux
    Web server      : Apache

  Analyze:
    String Match:
      Contents:
            2 : Hacked by
            2 : Hacked
            1 : Hacked by MohaMed
            1 : hacker
            1 : Hacked by MohaMed.Xo
            1 : Hacker
            1 : MohaMed
            1 : Virtual
            1 : Hackers
            1 : MohaMed.Xo

  MD5:  2a31f9eced2470dcccf49f1768b897a6
        * 30836907

  Analyze: String Match Contents: 10, 12 ; MD5: 1 ;

  Header:
        Server: Apache
        Last-Modified: Sat, 17 Feb 2018 14:40:43 GMT

  Contents:
        
        
        <!DOCTYPE html>
        <!--
        #######################################################################################################################
        #   _     _      _     _      _     _      _     _      _     _      _     _      _     _      _     _      _     _   #
        #  (c).-.(c)    (c).-.(c)    (c).-.(c)    (c).-.(c)    (c).-.(c)    (c).-.(c)    (c).-.(c)    (c).-.(c)    (c).-.(c)  #
        #   / ._.       / ._.       / ._.       / ._.       / ._.       / ._.       / ._.       / ._.       / ._.    #
        # __( Y )/__  __( Y )/__  __( Y )/__  __( Y )/__  __( Y )/__  __( Y )/__  __( Y )/__  __( Y )/__  __( Y )/__ #
        #(_.-/'-'-._)(_.-/'-'-._)(_.-/'-'-._)(_.-/'-'-._)(_.-/'-'-._)(_.-/'-'-._)(_.-/'-'-._)(_.-/'-'-._)(_.-/'-'-._)#
        #   || R ||      || O ||      || O ||      || T ||      || E ||      || R ||      || R ||      || O ||      || R ||   #
        # _.' `-' '._  _.' `-' '._  _.' `-' '._  _.' `-' '._  _.' `-' '._  _.' `-' '._  _.' `-' '._  _.' `-' '._  _.' `-' '._ #
        #(.-./`-`.-.)(.-./`-'.-.)(.-./`-'.-.)(.-./`-'.-.)(.-./`-'.-.)(.-./`-`.-.)(.-./`-`.-.)(.-./`-'.-.)(.-./`-`.-.)#
        # `-'     `-'  `-'     `-'  `-'     `-'  `-'     `-'  `-'     `-'  `-'     `-'  `-'     `-'  `-'     `-'  `-'     `-' #
        #                                                                                                                     #
        #######################################################################################################################
        -->
        
        <head>
        
        <link href="" rel="shortcut icon" type="image/vnd.microsoft.icon" />
        
        </head>
        
        <body bgcolor="black" oncontextmenu="return false" onkeydown="return false">
        
        <div id="container">
        	<div id="flag" class="shadowed" title="&#1605;&#1585;&#1603;&#1586; &#1578;&#1608;&#1579;&#1610;&#1602; &#1575;&#1604;&#1575;&#1606;&#1578;&#1607;&#1575;&#1603;&#1575;&#1578; &#1601;&#1610; &#1587;&#1608;&#1585;&#1610;&#1577;">
        
        <title> Hacked by MohaMed.Xo</title>
        <link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
        &nbsp;<!-- no txt inicio --><script language="Javascript">
        <!-- Begin
        function disableselect(e){
        return false
        }
        function reEnable(){
        return true
        }
        document.onselectstart=new Function ("return false")
        if (window.sidebar){
        document.onmousedown=disableselect
        document.onclick=reEnable
        }
        // End -->
        </script><!-- no txt fin --><META http-equiv=Content-Type content="text/html; charset=windows-1254"><STYLE type=text/css>BODY {
          SCROLLBAR-FACE-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #000000; SCROLLBAR-ARROW-COLOR: #ffffff; SCROLLBAR-TRACK-COLOR: #ffffff; FONT-FAMILY: Verdana; SCROLLBAR-DARKSHADOW-COLOR: #000000
        }
        .Estilo10 {
          COLOR: #ffffff; FONT-FAMILY: Haettenschweiler
        }
        .Estilo8 {
          FONT-SIZE: 10px; COLOR: #ffffff; FONT-FAMILY: Haettenschweiler
        }
        </STYLE><SCRIPT LANGUAGE="JavaScript">
        /*
        An object-oriented Typing Text script, to allow for multiple instances.
        A script that causes any text inside any text element to be "typed out", one letter at a time. Note that any HTML tags will not be included in the typed output, to prevent them from causing problems. Tested in Firefox v1.5.0.1, Opera v8.52, Konqueror v3.5.1, and IE v6.
        Browsers that do not support this script will simply see the text fully displayed from the start, including any HTML tags.
        
        Functions defined:
          TypingText(element, [interval = 100,] [cursor = "",] [finishedCallback = function(){return}]):
            Create a new TypingText object around the given element.  Optionally
            specify a delay between characters of interval milliseconds.
            cursor allows users to specify some HTML to be appended to the end of
            the string whilst typing.  Optionally, can also be a function which
            accepts the current text as an argument.  This allows the user to
            create a "dynamic cursor" which changes depending on the latest character
            or the current length of the string.
            finishedCallback allows advanced scripters to supply a function
            to be executed on finishing.  The function must accept no arguments.
        
          TypingText.run():
            Run the effect.
        
          static TypingText.runAll():
            Run all TypingText-enabled objects on the page.
        */
        
        TypingText = function(element, interval, cursor, finishedCallback) {
          if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
            this.running = true;  // Never run.
            return;
          }
          this.element = element;
          this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
          this.interval = (typeof interval == "undefined" ? 20 : interval);
          this.origText = this.element.innerHTML;
          this.unparsedOrigText = this.origText;
          this.cursor = (cursor ? cursor : "");
          this.currentText = "";
          this.currentChar = 0;
          this.element.typingText = this;
          if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
          TypingText.all.push(this);
          this.running = false;
          this.inTag = false;
          this.tagBuffer = "";
          this.inHTMLEntity = false;
          this.HTMLEntityBuffer = "";
        }
        TypingText.all = new Array();
        TypingText.currentIndex = 0;
        TypingText.runAll = function() {
          for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
        }
        TypingText.prototype.run = function() {
          if(this.running) return;
          if(typeof this.origText == "undefined") {
            setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);  // We haven't finished loading yet.  Have patience.
            return;
          }
          if(this.currentText == "") this.element.innerHTML = "";
        //  this.origText = this.origText.replace(/<([^<])*>/, "");     // Strip HTML from text.
          if(this.currentChar < this.origText.length) {
            if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
              this.tagBuffer = "<";
              this.inTag = true;
              this.currentChar++;
              this.run();
              return;
            } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
              this.tagBuffer += ">";
              this.inTag = false;
              this.currentText += this.tagBuffer;
              this.currentChar++;
              this.run();
              return;
            } else if(this.inTag) {
              this.tagBuffer += this.origText.charAt(this.currentChar);
              this.currentChar++;
              this.run();
              return;
            } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
              this.HTMLEntityBuffer = "&";
              this.inHTMLEntity = true;
              this.currentChar++;
              this.run();
              return;
            } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
              this.HTMLEntityBuffer += ";";
              this.inHTMLEntity = false;
              this.currentText += this.HTMLEntityBuffer;
              this.currentChar++;
              this.run();
              return;
            } else if(this.inHTMLEntity) {
              this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
              this.currentChar++;
              this.run();
              return;
            } else {
              this.currentText += this.origText.charAt(this.currentChar);
            }
            this.element.innerHTML = this.currentText;
            this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
            this.currentChar++;
            setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
          } else {
          this.currentText = "";
          this.currentChar = 0;
                this.running = false;
                this.finishedCallback();
          }
        }
        </script><style>
        td{align: center; font-family: Bradley Hand ITC; font-size: 18pt; color: black}
        a{align: center; font-family: Bradley Hand ITC; font-size: 12pt; color: red}
          
        </style><font size="4" face="Orbitron" color='#585858'><embed src="https://youtube.googleapis.com/v/-vBx-fowBlM%26autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="1" height="1"></font><p align="center">
        image
        <center>
        <img border="1"  style="border:1px solid #FFFFFF;" src="http://ibelieveinsci.com/wp-content/uploads/sport_1436166580.jpg?w=584&h=389" width="400" height="250"></p></center>
        <center>
        <div id="example1">
        <p id="example2">
        
        <b>
            
          </font></a></b></span> 
                <body style="background-image: url('https://logrhythm.com/images/slides/hacker.gif'); background-attachment: fixed">
        
        <font size="7" face="Orbitron" color='#424242'>[</font><font size="7" face="Orbitron" color='#FFFFFF'> 
        Hacked by</font><font size="7" face="Orbitron" color='#808080'> </font>
        
        <font size="7" face="Orbitron" color='#FF0000'> 
         MohaMed.Xo</font><font size="7" face="Orbitron" color='#04B404'> 
        </font>
        
        <font size="7" face="Orbitron" color='#424242'>]</font><font color="#424242">
        </font>
        </b>
        <br>
        <font size="4" face="Orbitron" color='#585858'><font color='red'><br></font> 
        </font><b>
        <font size="5" face="Orbitron" color='#424242'>[ </font><span lang="en-us">
        <font size="5" face="Orbitron" color='#FFFFFF'>Arab Muslim </font><font size="5" face="Orbitron" color='#FF0000'>Was Here</font></span><font size="5" face="Orbitron" color='#585858'>
        </font>
        <font size="5" face="Orbitron" color='#424242'> ]
        </font>
        <font size="5" face="Orbitron" color='#585858'> 
        <br>
        </font>
        </b>
        <font size="4" face="Orbitron" color='#585858'><b>&nbsp;</b><hr size=3 width= 25% color="#424242" align=center>
        <font size='3' face="Tahoma" color='white'>
        <p>
        Message To The World : [ English ]
        <br>
        Hello World ...
        <br>
        But gets in Syria massacres , murder and rape of women and the displacement of 
        elders, women and children tolerated at all ...
        <br>
        This penetration to deliver a simple message to the world about what is 
        happening in Syria massacres and other ...
        <br>
        We want to get our message across to the largest number of sites on the World 
        Wide Web Virtual ... Bye ...
        <br>
        Free Syria ...&nbsp;
        <br><font size="4" face="Orbitron" color='#585858'><hr size=3 width= 25% color="#424242" align=center>
        </font>
        <p dir="rtl"><span lang="ar-sa">&#1585;&#1587;&#1575;&#1604;&#1577; &#1573;&#1604;&#1609; &#1575;&#1604;&#1593;&#1575;&#1604;&#1605; </span>[<span lang="ar-sa"> 
        &#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577;</span> ]<span lang="ar-sa"> :</span><br>
        &#1571;&#1610;&#1607;&#1575; &#1575;&#1604;&#1593;&#1575;&#1604;&#1605; ...<br></span>&#1575;&#1606;&#1605;&#1575; &#1610;&#1581;&#1589;&#1604; &#1601;&#1610; &#1587;&#1608;&#1585;&#1610;&#1575; &#1605;&#1606; &#1605;&#1580;&#1575;&#1586;&#1585; &#1608;&#1602;&#1578;&#1604; &#1608;&#1575;&#1594;&#1578;&#1589;&#1575;&#1576; &#1604;&#1604;&#1606;&#1587;&#1575;&#1569; &#1608;&#1578;&#1588;&#1585;&#1610;&#1583; 
        &#1604;&#1604;&#1588;&#1610;&#1608;&#1582; &#1608;&#1575;&#1604;&#1606;&#1587;&#1575;&#1569; &#1608;&#1575;&#1604;&#1575;&#1591;&#1601;&#1575;&#1604; &#1604;&#1575; &#1610;&#1605;&#1603;&#1606; &#1575;&#1604;&#1587;&#1603;&#1608;&#1578; &#1593;&#1606;&#1607; &#1605;&#1591;&#1604;&#1602;&#1575; ...<br>
        	&#1608;&#1607;&#1584;&#1575; &#1575;&#1604;&#1575;&#1582;&#1578;&#1585;&#1575;&#1602; &#1604;&#1578;&#1608;&#1589;&#1610;&#1604; &#1585;&#1587;&#1575;&#1604;&#1577; &#1576;&#1587;&#1610;&#1591;&#1577; &#1604;&#1604;&#1593;&#1575;&#1604;&#1605; &#1593;&#1606; &#1605;&#1575; &#1610;&#1581;&#1589;&#1604; &#1601;&#1610; &#1587;&#1608;&#1585;&#1610;&#1575; &#1605;&#1606; &#1605;&#1580;&#1575;&#1586;&#1585; &#1608;&#1594;&#1610;&#1585;&#1607;&#1575; 
        ...<br>&#1606;&#1585;&#1610;&#1583; &#1575;&#1610;&#1589;&#1575;&#1604; &#1585;&#1587;&#1575;&#1604;&#1578;&#1606;&#1575; &#1604;&#1575;&#1603;&#1576;&#1585; &#1593;&#1583;&#1583; &#1605;&#1606; &#1575;&#1604;&#1605;&#1608;&#1575;&#1602;&#1593; &#1593;&#1604;&#1609; &#1575;&#1604;&#1588;&#1576;&#1603;&#1577; &#1575;&#1604;&#1593;&#1606;&#1603;&#1576;&#1608;&#1578;&#1610;&#1577; &#1575;&#1604;&#1575;&#1601;&#1578;&#1585;&#1575;&#1590;&#1610;&#1577; 
        ... &#1573;&#1604;&#1609; &#1575;&#1604;&#1604;&#1602;&#1575;&#1569; ...<br>&#1587;&#1608;&#1585;&#1610;&#1575; &#1575;&#1604;&#1581;&#1585;&#1577; ...<br><font size="4" face="Orbitron" color='#585858'><hr size=3 width= 25% color="#424242" align=center>
        </font></font></font><p dir="rtl">
        <b><font face="Tahoma" size="4" color="#FF0000">[ </font>
        <font face="Tahoma" size="4" color="#FFFFFF">Attack From egypt Hackers
        <font face="Tahoma" size="4" color="#FF0000"> 
        ]<br>
        </font></b>
        <font face="Orbitron" color='#585858'><b><font face="Tahoma" color="#FF0000"><span lang="ar-sa">
        
        
        
        <!-- cursor inicio -->
        <style>
        div
        {
        cursor:url(http://programas.publispain.com/imagenes/copy.gif),url(myBall.cur),auto;
        }
        </style>
        <!-- cursor fin -->
        <script type="text/javascript">
        //Define first typing example:
        new TypingText(document.getElementById("example1"));
        //Define second typing example (use "slashing" cursor at the end):
        new TypingText(document.getElementById("example2"), 50, function(i){
        var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
        ar.length]; });
        //Type out examples:
        TypingText.runAll();
        </script>
        
        <SCRIPT language=JavaScript type=text/javascript>
        <!--
        var rows=1; // must be an odd number
        var speed=10; // lower is faster
        var reveal=10; // between 0 and 2 only. The higher, the faster the word appears
        var effectalign="default" //enter "center" to center it.
        </script>
        <font size="4" face="Orbitron" color='#585858'><hr size=3 width= 25% color="#424242" align=center>
        </font>
        <p>&nbsp;
        </div>
        
        <embed 
        <center>
        <iframe width="0%" height="0" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https:///ajhabib/sets/syrian-revolution&amp;auto_play=true&amp;auto_play=true&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"></iframe><p>
        </p><p>
        </p></center></embed>
        
        </body>
        
        </html>