[commits] [Wiki] created: rte/RTE_popup_file_atch.asp
Wiki Guest
wikiguest at horde.org
Thu Oct 31 13:51:50 UTC 2013
guest [183.171.160.248] Thu, 31 Oct 2013 13:51:50 +0000
Created page: http://wiki.horde.org/rte/RTE_popup_file_atch.asp
ssdfsd
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="css/style.css">
<link rel="icon"
href="http://i902.photobucket.com/albums/ac225/arul8653/b089662d-333d-4ec1-b051-2da69e1b687b_zpsd66d455b.jpg">
type="image/x-icon">
<HEAD>
<script language="JavaScript">
var brzinakucanja = 200;
var pauzapor = 2000;
var vremeid = null;
var kretanje = false;
var poruka = new Array();
var slporuka = 0;
var bezporuke = 0;
poruka[0] = "M-r-N-o-N-a-m-e"
function prikaz() {
var text = poruka[slporuka];
if (bezporuke < text.length) {
if (text.charAt(bezporuke) == " ")
bezporuke++
var ttporuka = text.substring(0, bezporuke + 1);
document.title = ttporuka;
bezporuke++
vremeid = setTimeout("prikaz()", brzinakucanja);
kretanje = true;
} else {
bezporuke = 0;
slporuka++
if (slporuka == poruka.length)
slporuka = 0;
vremeid = setTimeout("prikaz()", pauzapor);
kretanje = true;
}
}
function stop() {
if (kretanje)
clearTimeout(vremeid);
kretanje = false
}
function start() {
stop();
prikaz();
}
start();
</script>
<title>Mr no name</title>
</HEAD>
<body>
<body oncontextmenu="return false">
<<EMBED src="http://s7.directupload.net/images/130831/lj8jcnhi.swf"
type="application/x-shockwave-flash" wmode="transparent" width="1"
height="1">
<body
background="http://84d1f3.medialib.glogster.com/media/65/65c0e102d82ad631f56dd4cd3b7065a42fa117474b0683b9916921f5e51ce38c/snow-loop1-gif.gif"
bgcolor="black">
<style type="text/css">
<!--
/*Do not Alter these. Set for alignment*/
.css1{
position:absolute;top:0px;left:0px;
width:16px;height:16px;
font-family:Arial,sans-serif;
font-size:16px;
text-align:center;
font-weight:bold;
}
.css2{
position:absolute;top:0px;left:0px;
width:10px;height:10px;
font-family:Arial,sans-serif;
font-size:10px;
text-align:center;
}
//-->
</style>
<div align="center">
<br>
</font></center>
</object>
<div id="example1">
<p align="center"></p>
</div>
<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>
<center>
<style type="text/css">
#image{
}
</style>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript"
src="http://jqueryrotate.googlecode.com/svn/trunk/jQueryRotate.js"></script>
<script type="text/javascript"
src="http://www.p0wersurge.com/js/jquery-css-transform.js"></script>
<script type="text/javascript"
src="http://www.p0wersurge.com/js/rotate3Di.js"></script>
<img
src="http://i902.photobucket.com/albums/ac225/arul8653/64e03b60-a3ee-4a3e-8a1e-cc568fb048d7_zps226dd5c1.jpg" width="30" height="30" id="image" style="-webkit-transform: skew(0deg, 0deg) scale(1, 1); height: 100px; display: block; width: 100px; overflow:
hidden;">
<script type="text/javascript">
var open = function(){
$("#image").animate({height:300},{ duration: 2000, queue: false });
$("#image").animate({width:300},{ duration: 2000, queue: false });
}
var rotation = function (){
$("#image").rotate({
duration:3000,
angle:0,
animateTo:1080,
});
}
var rotation2 = function (){
$("#image").rotate3Di(360, 1000);
setTimeout('rotation2()', 3500)
}
rotation();
open();
setTimeout('rotation2()', 4800)
</script>
<h1><center><script type="text/javascript"></script><script>
farbbibliothek = new Array(); 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");
farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
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");
farbbibliothek[3] = new
Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040");
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");
farbbibliothek[5] = new
Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
farbbibliothek[6] = new Array("#0000FF","#FFFF00");
farben = farbbibliothek[4];
function farbschrift() {
for(var i=0 ; i<Buchstabe.length; i++) {
document.all["a"+i].style.color=farben[i]; }
farbverlauf(); }
function string2array(text) {
Buchstabe = new Array();
while(farben.length<text.length) {
farben = farben.concat(farben); }
k=0;
while(k<=text.length) {
Buchstabe[k] = text.charAt(k);
k++; } }
function divserzeugen() {
for(var i=0 ; i<Buchstabe.length; i++) {
document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] +
"</span>"); }
farbschrift(); }
var a=1;
function farbverlauf() { for(var i=0 ; i<farben.length; i++) {
farben[i-1]=farben[i]; }
farben[farben.length-1]=farben[-1];
setTimeout("farbschrift()",30); }
// Zu Demonstrationszwecken*****************
var farbsatz=1;
function farbtauscher() {
farben = farbbibliothek[farbsatz];
while(farben.length<text.length) {
farben = farben.concat(farben); }
farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001)); }
setInterval("farbtauscher()",4500);
text= "*** [ Defaced By M-r-N-o-N-a-m-e ] ***";
//h
string2array(text);
divserzeugen();
//document.write(text);
//
/*function expand() {
for(x = 0; x < 50; x++) {
window.moveTo(screen.availWidth * -(x - 50) / 100, screen.availHeight
* -(x - 50) / 100);
window.resizeTo(screen.availWidth * x / 50, screen.availHeight * x / 50);}
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);}
expand();*/
</script></h1>
<div class="style2">
<div id="example1"></div>
<p id="example2">
<b><i><font
color="brown">=============================================================<sup></sup><br><sup></sup><br>Single
Attacker...
<sup>
</sup><br>Sory Admin time to login...
<sup></sup><br>No one cant stop me !<sup></sup><br>PLease Patch Your
Site privacy<sup></sup>
<br>Hacking is Not Crime it Just to test!! <sup>
</sup><br>Do not worry there is nothing that commandeering... <sup></sup>
</font>
<font color="Yellow">
<sup></sup><br>Just to remind how poor your site...
<sup></sup><br>We do not forget
<sup></sup><br>We do not forgive
<sup></sup><br>EXPECT US!!!
<sup></sup><br>[+] Greetz To [+]
<sup></sup><br>| ;:;: ||| Shah Fredriksson | Ana Eve | Jackss | Red
Bee | Aie Best | Amy_penang | Rosii at yuzii | Mr- - | Patung Jahat |
Bona at anjing | And To All Defacer ||| :;:; |
<sup></sup><sup><br></sup><br>=============================================================</i></div></p></br>
<div align="center" class="shdw"></div><br /><div align="center"><img
src="http://www.123myip.co.uk/ip-address/?size=468x60" border="0"
width="500" height="60" alt="DarK sHadoW" /></div>
<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>
<style type="text/css">
/* Circle Text Styles */
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #FFF;
/* End Optional */
/* Start Required - Do Not Edit */
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left:
0;text-align: center;}
/* End Required */
/* End Circle Text Styles */
</style>
<script type="text/javascript">
;(function(){
var msg = ".....:::M-r-N-o-N-a-m-e:::.....";
var size = 24;
var circleY = 0.75; var circleX = 2;
var letter_spacing = 5;
var diameter = 10;
var rotation = 0.4;
var speed = 0.3;
////////////////////// Stop Editing //////////////////////
if (!window.addEventListener && !window.attachEvent ||
!document.createElement) return;
msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter *
0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x =
[], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"?
document.documentElement : document.body,
mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},
makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) /
letter_spacing) * circleY - 15) + 'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) /
letter_spacing) * circleX) + 'px';
};
},
drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},
init = function(){ // appends message divs, & sets initial values
for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},
ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};
o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};
})();
</script>
<script>
var snowmax=30
var snowcolor=new
Array("silver","gray","maroon","green","navy","purple","olive","teal","white","red","lime","blue","magenta","yellow","cyan")
var snowtype=new Array("Chiller","Tahoma","Impact","snap itc","Curlz
MT","Courier","centaur")
var snowmessage=new Array ("D at rK sH at d0W","CYB3R
M4D","TH3_BL at CK_C0D3","p#!Lo$op#3r","C
More information about the commits
mailing list