[commits] [Wiki] created: upload.php

Wiki Guest wikiguest at horde.org
Tue Aug 27 02:28:21 UTC 2013


guest [41.249.177.192]  Tue, 27 Aug 2013 02:28:21 +0000

Created page: http://wiki.horde.org/upload.php

<html>
   <HEAD>
   <title>HaXed By الامبراطور المغربي</title>
<meta content='Hacked  by  الامبراطور المغربي ' name='subject'/>
<meta content='Hacked  by  الامبراطور المغربي '

name='Abstract'/>
<meta content='Hacked by الامبراطور المغربي '

name='description'/>
<meta content='الامبراطور المغربي' name='copyright'/>
<meta content='الامبراطور المغربي ' name='author'/>
<link  
href="http://cdn.timesofisrael.com/uploads/2012/11/Anonymous_emblem.svg_.png"  
rel="shortcut icon" ></link>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"
     type="text/javascript">
     </script>
     <script type="text/javascript">$(document).ready(function()  
{$(".facebookbox").hover(function() {$(this).stop().animate({right:  
"0"}, "medium");}, function() {$(this).stop().animate({right: "-250"},  
"medium");}, 500);});
     </script><style type="text/css">
     .facebookbox{background:  
url("http://3.bp.blogspot.com/-VXmAJdQRHJ8/Tra8E16fZGI/AAAAAAAAClg/o5M632x9qX8/s1600/floatingfb.png")
      no-repeat scroll left center transparent !important;display:  
block;float: right;height: 270px;padding: 0 5px 0 46px;width:  
245px;z-index: 99999;position:fixed;right:-250px;top:40%;}
     .facebookbox div{border:none;position:relative;display:block;}
     .facebookbox span{bottom: 12px;font: 8px "lucida  
grande",tahoma,verdana,arial,sans-serif;position: absolute;right:  
6px;text-align: right;z-index: 99999;}
     .facebookbox span a{color: black;text-decoration:none;}
     .facebookbox span a:hover{text-decoration:underline;}</style>

   <script type="text/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" ? 100 :

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 type='text/css'>
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
</style>
   </HEAD>
   <link href='http://fonts.googleapis.com/css?family=Orbitron:700'

rel='stylesheet' type='text/css'>


   <body oncontextmenu='return false;' onkeydown='return false;'

onmousedown='return false;'>
<div class="facebookbox" >
<iframe scrolling="no" frameborder="0" style="border: medium none;  
overflow: hidden; height: 270px; width: 245px;background:#fff;"  
src="http://www.facebook.com/plugins/likebox.php?href=https://www.facebook.com/MoroccanAgentSecret&width=245&colorscheme=light&show_faces=true&connections=9&stream=false&header=false&height=270"></iframe>
</div>
   <style type="text/css">    <!--    a:link {color: #00FF00;

text-decoration: none; }    a:active {color: #00FF00; text-decoration:

none; }    a:visited {color: #00FF00; text-decoration: none; }    a:hover

{color: #00FF00; text-decoration: none; }    body {

background-color: black;}            -->    </style>
   <DIV align="right"><FONT style="FONT-SIZE: 13pt" face="Courier"

color="white"><center><br />
   <img

src="https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-ash4/417443_454764847925968_345622161_n.png">
   <p id="example2"><p align="center"><font face="Orbitron" size="7"

color="red">HaCKeD by</font><font face="Orbitron" size="7" color="white">

  الامبراطور المغربي </font></p><br />    </p>


<center><p><marquee behavior="scroll" direction="left" scrollamount="2"

scrolldelay="20" width="50%"><font face="Orbitron" color="red"> 100%  
Hacked By :  | الامبراطور المغربي |  </font></marquee>

</marquee>
<center><p><marquee behavior="scroll" direction="right" scrollamount="2"

scrolldelay="20" width="50%"><font face="Orbitron"  
color="#00ff00">أقسم بالله العظيم ، أن أكون وفيا لديني ، و لوطني ، و  
لملكي ، و أن أظل وفيا لروح المسيرة الخضراء ، مكافحا عن وحدة وطني من  
البوغاز إلى الصحراء

</font></marquee>

</marquee>

<br />
<br />
<center>    <font face="Orbitron" size="2" color="red">Contact Us |

</font><font face="Orbitron" size="2" color="white"><a

href="https://www.facebook.com/MoroccanAgentSecret"

target="_blank">Moroccan Agent Secret</font>  <br />


   <script type="text/javascript">        //Define first typing example:

    //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>
<center>
</font>
<!-- HaCKeD الامبراطور المغربي -->
</script>
<font color="red" face="Chiller" size="4"><br></font>
<embed  
src="https://youtube.googleapis.com/v/OV7G76SeUDI?version=3&autoplay=1"  
type="application/x-shockwave-flash" wmode="transparent" height="1"  
width="1">
</script>
</html>




More information about the commits mailing list