Login Register






The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
Thread Rating:
  • 1 Vote(s) - 5 Average


Another deface. filter_list
Author
Message
RE: Another deface. #3
Haha, I'm loving that deface page. You seem to have a different one for every defaced site. But I really do like this one. Oh, and as you went through so much trouble to make sure people didn't get the source, here it is:

Spoiler:
Code:
<html><head><script language="Javascript">

</script><title>=====-- HackeD by JackDaniels --=====</title>
<link href="http://vogelkoppapua.org/upload/news_1298112291.png" rel="SHORTCUT ICON">

<style id="wrc-middle-css" type="text/css">.wrc_whole_window{    display: none;    position: fixed;     z-index: 2147483647;    background-color: rgba(40, 40, 40, 0.9);    word-spacing: normal;    margin: 0px;    padding: 0px;    border: 0px;    left: 0px;    top: 0px;    width: 100%;    height: 100%;    line-height: normal;    letter-spacing: normal;}.wrc_middle_main {    font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif;    font-size: 14px;    width: 600px;    height: auto;    margin: 0px auto;    margin-top: 15%;    background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-body.jpg) repeat-x left top;    background-color: rgb(39, 53, 62);}.wrc_middle_logo {    background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/logo.jpg) no-repeat left bottom;    width: 140px;    height: 42px;    color: orange;    display: table-cell;    text-align: right;    vertical-align: middle;}.wrc_icon_warning {    margin: 20px 10px 20px 15px;    float: left;    background-color: transparent;}.wrc_middle_title {    color: #b6bec7;    height: auto;    margin: 0px auto;    font-size: 2.2em;    white-space: nowrap;    text-align: center;}.wrc_middle_hline {    height: 2px;    width: 100%;    display: block;}.wrc_middle_description {    text-align: center;    margin: 15px;    font-size: 1.4em;    padding: 20px;    height: auto;    color: white;    min-height: 3.5em;}.wrc_middle_actions_main_div {    margin-bottom: 15px;    text-align: center;}.wrc_middle_actions_blue_button {    -moz-appearance: none;    border-radius: 7px;    -moz-border-radius: 7px/7px;    border-radius: 7px/7px;    background-color: rgb(0, 173, 223) !important;    display: inline-block;    width: auto;    cursor: Pointer;    border: 2px solid #00dddd;}.wrc_middle_actions_blue_button:hover {    background-color: rgb(0, 159, 212) !important;}.wrc_middle_actions_blue_button:active {    background-color: rgb(0, 146, 200) !important;    border: 2px solid #00aaaa;}.wrc_middle_actions_blue_button div {    display: inline-block;    width: auto;    cursor: Pointer;    margin: 3px 10px 3px 10px;    color: white;    font-size: 1.2em;    font-weight: bold;}.wrc_middle_action_low {    font-size: 0.9em;    white-space: nowrap;    cursor: Pointer;    color: grey !important;    margin: 10px 10px 0px 10px;    text-decoration: none;}.wrc_middle_action_low:hover {    color: #aa4400 !important;}.wrc_middle_actions_rest_div {    padding-top: 5px;    white-space: nowrap;    text-align: center;}.wrc_middle_action {    white-space: nowrap;    cursor: Pointer;    color: red !important;    font-size: 1.2em;    margin: 10px 10px 0px 10px;    text-decoration: none;}.wrc_middle_action:hover {    color: #aa4400 !important;}</style><script id="wrc-script-middle_window" type="text/javascript" language="JavaScript">var g_inputsCnt = 0;var g_InputThis = new Array(null, null, null, null);var g_alerted = false;/* we test the input if it includes 4 digits   (input is a part of 4 inputs for filling the credit-card number)*/function is4DigitsCardNumber(val){    var regExp = new RegExp('[0-9]{4}');    return (val.length == 4 && val.search(regExp) == 0);}/* testing the whole credit-card number 19 digits devided by three '-' symbols or   exactly 16 digits without any dividers*/function isCreditCardNumber(val){    if(val.length == 19)    {        var regExp = new RegExp('[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}');        return (val.search(regExp) == 0);    }    else if(val.length == 16)    {        var regExp = new RegExp('[0-9]{4}[0-9]{4}[0-9]{4}[0-9]{4}');        return (val.search(regExp) == 0);    }    return false;}function CheckInputOnCreditNumber(self){    if(g_alerted)        return false;    var value = self.value;    if(self.type == 'text')    {        if(is4DigitsCardNumber(value))        {            var cont = true;            for(i = 0; i < g_inputsCnt; i++)                if(g_InputThis[i] == self)                    cont = false;            if(cont && g_inputsCnt < 4)            {                g_InputThis[g_inputsCnt] = self;                g_inputsCnt++;            }        }        g_alerted = (g_inputsCnt == 4);        if(g_alerted)            g_inputsCnt = 0;        else            g_alerted = isCreditCardNumber(value);    }    return g_alerted;}function CheckInputOnPassword(self){    if(g_alerted)        return false;    var value = self.value;    if(self.type == 'password')    {        g_alerted = (value.length > 0);    }    return g_alerted;}function onInputBlur(self, bRatingOk, bFishingSite){    var bCreditNumber = CheckInputOnCreditNumber(self);    var bPassword = CheckInputOnPassword(self);    if((!bRatingOk || bFishingSite == 1) && (bCreditNumber || bPassword) )    {        var warnDiv = document.getElementById("wrcinputdiv");        if(warnDiv)        {            /* show the warning div in the middle of the screen */            warnDiv.style.left = "0px";            warnDiv.style.top = "0px";            warnDiv.style.width = "100%";            warnDiv.style.height = "100%";            document.getElementById("wrc_warn_fs").style.display = 'none';            document.getElementById("wrc_warn_cn").style.display = 'none';            if(bFishingSite)                document.getElementById("wrc_warn_fs").style.display = 'block';            else                document.getElementById("wrc_warn_cn").style.display = 'block';            warnDiv.style.display = 'block';        }    }}</script></head><body dir="ltr" background="http://img54.xooimage.com/files/f/7/2/kbk29185-227a592.gif" alink="#00ff00" link="#00c000" bgcolor="#000000" text="#008000" vlink="#00c000">



<div class="box">



<center>
<table bgcolor="black" border="3" cellcolor="red" cellpadding="0" cellspacing="1" width="780">
<tbody><tr><td>
<br>





<center><b><u><font color="red"><h2><blink>=====-- HackeD By JackDaniels --=====</blink></h2></font></u></b></center>
<p><strong><font size="5" color="red" face="courier"></font></strong></p><center><strong><font size="5" color="red" face="courier">          <img src="http://i391.photobucket.com/albums/oo360/meinabucket/Hacked.gif" width="706"><img src="http://i51.tinypic.com/160qtxz.gif" border="0" width="700" height="8"><img src="http://i53.tinypic.com/2435668.jpg" align="middle" border="0"><img src="http://i51.tinypic.com/160qtxz.gif" border="0" width="700" height="8">
</font></strong></center><p></p>




<script language="JavaScript">//Disable right mouse click Script
var message="Hacked by JackDaniels!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
</script>

<b>  <marquee scrollamount="5" scrolldelay="2"><font style="font-size: 12px; font-family: 'courier new';"><font color="red">..:: <font color="orange">This site was hacked by JackDaniels. If you are ragin with thunder, sit down count to ten have a Jack Daniels and relax." |||
You've officialy been defaced </font> ::..</font></font></marquee></b>

<p><b></b></p><center><b><font color="#A6A6A6" face="verdana" size="2"><p></p><b><p></p>


Thanks To : You<strong></strong><br></b></font><b><p><font color="#A6A6A6" face="verdana" size="2">To all my Friends : | Ventrilinty | ZE3TPR00 | The_Joker | S3rb | </font></p></b></b></center><p></p><b><b>


<p><b></b></p><center><b><font color="#A6A6A6" face="verdana" size="2"><b><p></p>
We are the world.


<br>
<br>
<center><font color="red">==========</font> <font color="green"> R00t<font color="#FFFF00">@</font>127.0.0.1 </font> <font color="red">==========</font></center>

<audio  autoplay="autoplay">
  <source src="http://mudokon.mu.funpic.de/YouTube/Anoymous_-_Illuminati.mp3" type="audio/ogg" />
  <source src="http://mudokon.mu.funpic.de/YouTube/Anoymous_-_Illuminati.mp3" type="audio/mpeg" />

</audio>


<embed src= type="application/x-shockwave-flash" wmode="transparent" width="1" height="1">


<script language="javascript">
nd_mode="bomb";
nd_dest="massive";
nd_control="on";
nd_sound="on";
nd_vAlign="top";
nd_hAlign="right";
nd_vMargin="10";
nd_hMargin="10";
nd_target="_top";


</script>
<script language="javascript" src="http://www.netdisaster.com/js/mynd.js"></script>

</b></font></b></center></b></b></td></tr></tbody></table></center></div><div id="nd_myAnim" style="position: absolute; top: 0px; left: 0px; height: 100%; width: 100%; z-index: 100;"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8" width="100%" height="100%" id="mySwf"><param name="movie" value="http://www.netdisaster.com/fla/mynd.swf?mode=bomb&amp;movie=meteor&amp;destruction=massive&amp;control=on&amp;son=on&amp;vAlign=top&amp;hAlign=right&amp;hMargin=10&amp;vMargin=10&amp;linkTarget=_top&amp;acces=http://www.netdisaster.com/fla/"><param name="menu" value="false"><param name="allowScriptAccess" value="always"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="http://www.netdisaster.com/fla/mynd.swf?mode=bomb&amp;movie=meteor&amp;destruction=massive&amp;control=on&amp;son=on&amp;vAlign=top&amp;hAlign=right&amp;hMargin=10&amp;vMargin=10&amp;linkTarget=_top&amp;acces=http://www.netdisaster.com/fla/" quality="high" wmode="transparent" allowscriptaccess="always" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="100%" id="mySwf" menu="false"></object></div></body></html>
[Image: F4Z9Dqw.png]

Reply





Messages In This Thread
Another deface. - by JackDaniels - 01-24-2013, 02:26 AM
RE: Another deface. - by Bannedshee - 01-24-2013, 02:31 AM
RE: Another deface. - by BreShiE - 01-24-2013, 02:43 AM
RE: Another deface. - by JackDaniels - 01-24-2013, 02:47 AM
RE: Another deface. - by Kinanizer - 01-24-2013, 02:54 AM
RE: Another deface. - by JackDaniels - 01-24-2013, 03:02 AM
RE: Another deface. - by Phytrix - 01-24-2013, 03:26 AM
RE: Another deface. - by JackDaniels - 01-24-2013, 03:30 AM
RE: Another deface. - by Phytrix - 01-24-2013, 03:36 AM
RE: Another deface. - by Kinanizer - 01-24-2013, 03:41 AM
RE: Another deface. - by Phytrix - 01-24-2013, 03:43 AM
RE: Another deface. - by Kinanizer - 01-24-2013, 03:45 AM
RE: Another deface. - by Phytrix - 01-24-2013, 03:48 AM
RE: Another deface. - by Kinanizer - 01-24-2013, 03:52 AM
RE: Another deface. - by Phytrix - 01-24-2013, 05:10 AM
RE: Another deface. - by JackDaniels - 01-24-2013, 03:54 AM
RE: Another deface. - by 3SidedSquare - 01-24-2013, 04:03 AM
RE: Another deface. - by Bannedshee - 01-24-2013, 04:06 AM
RE: Another deface. - by JackDaniels - 01-24-2013, 04:12 AM
RE: Another deface. - by Kinanizer - 01-24-2013, 04:10 AM
RE: Another deface. - by twelve - 01-24-2013, 05:28 AM
RE: Another deface. - by i0xIllusi0n - 01-24-2013, 05:55 AM
RE: Another deface. - by JackDaniels - 01-24-2013, 04:14 PM



Users browsing this thread: 1 Guest(s)