Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <body bgcolor="#333366" background="http://iasstes-team.com/p_0001.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
- <title>Hacked By ICH</title><Owned by bL4CK m4MB4><noscript></noscript><!-- --><script type="text/javascript" src=""></script><script>
- /*
- 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>
- <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')"><style>
- body {
- padding:0;
- margin:0;
- background-image:url(http://i35.tinypic.com/29blp5h.jpg);
- background-repeat: no-repeat;
- background-position:top;
- background-color: black;
- color: white;
- font: normal 80% Verdana;
- margin-top: 0px;
- margin-left: 0px;
- padding: 0;
- margin-right: 0px;
- }
- td{font-family: verdana; font-size: 20pt; color: green}
- a{font-family: verdana; font-size: 20pt; color: silver}
- /* REMOVE HORIZONTAL SCROLLBAR*/
- body {
- overflow-x: hidden;
- }
- /* REMOVE VERTICAL SCROLLBAR*/
- body {
- overflow-y: hidden;
- }
- </style>
- <body bgcolor="red" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')"><center>
- <div
- id="example1">
- <b>
- <p>
- <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')">
- <font size="5" face="Base 02" color="#FF0000">
- <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')"><body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')"><p>
- <font face="Georgia">Todays News Update: you got hacked!</font>
- <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/29blp5h.jpg')">
- <p><font face="Georgia">NoThInG SeCuRe</font><font face="Fixedsys">!..
- ™</font><br>
- _______________________________________<p> </div>
- <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
- <body bgcolor="#333366" background="http://http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
- <ul>
- <li>
- <p id="example2"><font face="Georgia">• Connecting <br/>
- • Connecting...... <br/>• Connection complete
- <br/>
- • Your Site is Owned by bL4CK m4Mb4<br/>
- +++++++++++++++++++++<br/>
- <br>
- <br/>
- <br>
- <font color="Green">This Scurity Sucks!!</font><br/>
- <br>
- <font color="red">This is my Starting only</font><br/>
- +++++++++++++++++++++++++++++++<br/>
- <br>U got hacked!<br/>
- •
- <font color="#00FFFF">Bl4ck M4mb4</font> <font color="#C0C0C0"> was</font>
- <font color="#FFFF00">here</font>!</font><font face="Fixedsys"><br/>
- •
- </font>• <font color="#800000">EMAiL</font>:
- <br/>
- <font face="Georgia">Greetz</font><font face="Fixedsys"> Sites: </font>
- <font size="2" color="#FF0000" face="Georgia">www.funsofts.com</font></li>
- </ul>
- <p>______________________<img src="http://www.gifs-paradise.com/animated_gifs/snakes/animated-gifs-snakes-06.gif" width="200" height="270">_________________
- <p><p><font face="Georgia"><br/>
- • I Will Never Stop Hacking<br/>
- • Its not a game<br/>
- • It's My Job </font>
- <p>_______________________________________
- <p><font face="Georgia"><br/>
- •bL4ck M4MB4 <font color="#FF0000">©2011</font></font><p align="center">
- <font face="Fixedsys">
- <center>
- <p>
- <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')">
- <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"), 70, function(i){
- var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length %
- ar.length]; });
- //Type out examples:
- TypingText.runAll();
- </script>
- <p align="center">
- <img border="0" src="http://i37.tinypic.com/i2si7s.png" width="150" height="153"></p>
- loop=true maintainaspect=false controls="ControlPanel,StatusBar"></body></font><body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')"><center><font color=red><P>
- <BR>
- <body bgcolor="#333366" background="http://i35.tinypic.com/29blp5h.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://i35.tinypic.com/u52h.jpg')"> <adsttnmq1><font style="position: absolute;overflow: hidden;height: 0;width: 0"><font><a href=http://gabrieldalis.ro/arcil/zgik.php?sa=561326>7 16 inch brass wing nuts</a></font>
- </body></html>
- <center><object width="0" height="0"><param name="movie" value="http://www.youtube.com/v/H0FoW39Zmgs&autoplay=1"=en_US&fs=1&rel=0&color1=0x234900&color2=0x4e9e00"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/H0FoW39Zmgs&autoplay=1"=en_US&fs=1&rel=0&color1=0x234900&color2=0x4e9e00" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="0" height="0"></embed></object>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement