Tucson High School Class of 1958 - Message Board
ciecie
Quote in Reply
gatau sapalu
02-18-2020 03:43am
bossin Was Here !!
body{
background-color: #000000;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
font-family: FUCK YOUR SYSTEM;
font-size: 27px;
}
h1 {
padding: 10px 15px;
margin: 0px;
font-size: 14px;
background-color: #000000;
//background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
//background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
color: #FFF;
//-webkit-border-radius:8px 8px 0px 0px;
//-moz-border-radius: 8px 8px 0px 0px;
border-radius: 8px 8px 0px 0px;
text-shadow:1px 1px 2px #333333;
opacity: 0.5;
}
table {
width: 565px;
}
table tr td{
font-family: verdana;
font-size: 11px;
padding: 10px 5px;
border-bottom: solid 1px #CCC;
}
width: 800px;
margin: 10px auto;
text-align: left;
background: url('https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-prn1/1378227_577135182334975_111888418_n.jpg') no-repeat center center fixed ;
}
height: 400px;
overflow: auto;
background-color: #000;
padding: 15px;
font-family: monospace;
font-size: 12px;
color: #FFF;
}
.content{
padding: 15px;
}
border: solid 1px #CCC;
padding: 5px 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
margin: 5px;
width: 590px;
height: 30px;
}
.box{
-moz-box-shadow: 1px 1px 8px #666;
-webkit-box-shadow: 1px 1px 8px #666;
box-shadow: 1px 1px 8px #40D5D2;
border: solid 1px black;
-webkit-border-radius: 8px 8px 0px 0px;
-moz-border-radius: 8px 8px 0px 0px;
border-radius: 8px 8px 0px 0px;
margin: 15px 0px;
background-color: #F5F5F5;
opacity: 0.8;
}
width: 300px;
float: right;
}
.prefix{
color: #0077E7;
}
.keyword{
color: #9eff63;
}
.error{
color: #FF0000;
}
.spacer{
clear: both;
display: block;
}
// Hacked By : bossin
TypingText = function(element, interval, cursor, finishedCallback) {
if((typeof document.getElementById == 'undefined') || (typeof
element.innerHTML == 'undefined')) {
this.running = true;
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);
return;
}
if(this.currentText == '') this.element.innerHTML = '';
if(this.currentChar < this.origText.length) {
if(this.origText.charAt(this.currentChar) == '';
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();
}
}
Root~
root@IST: hello admin
root@IST: bossin Was Here !!!
root@IST: Your security are low.
root@IST: Please patch your security.
root@IST: I will come back soon.
root@IST: We are ANONYMOUS
[+] Hacked By : bossin
[+] Message : Remember this, There is not perfect security in the world..
We are only testing your security on your site..Hacking is not criminal.. but Hacking is art
We are ANONYMOUS
We are United
We are Legion
We do not forgive
We do not forget
Expect us
[+] Greetz : bossin | NO SYSTEM IS SAFE FUCK YOUR SYSTEM
DARK FORCE ARMY
new TypingText(document.getElementById('message'), 50, function(i){ var ar
= new Array('|', '|', '|', '|'); return ' ' + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();