Yeni Tasarım İndex (Beklemede Kalın)

Arkadaşlar Sizce İndex Nasıl Olmuş ?

  • Evet

    Oy: 1 50.0%
  • Hayır

    Oy: 1 50.0%

  • Kullanılan toplam oy
    2
  • Anket kapatılmış .
3 Haz 2015
196
0
TurkHackTeam
Arkadaşlar İndex Hazır Birkaç Düzenlemeleri Yapıyorum Ondan Sonra Kodları Paylaşıcam Yorumlarınızı Bekliyorum


GYqBbZ.jpg




Kod:
<!DOCTYPE html>
<html>

<head>
	<title>Hacked By PleaseAttackMeTR </title>
	<link rel="SHORTCUT ICON" href="http://i.hizliresim.com/Oqd00D.jpg" type="image/gif">
	<**** charset="UTF-8">
	<**** name="Author" content="Dev1453"/>
	<**** name="copyright" content="JNG90"/>
	<**** name="description" content="Eskiler Bilir...."/>
	<link href='http://fonts.googleapis.com/css?family=Iceland:400,700' rel='stylesheet' type='text/css'>
	<link href='http://fonts.googleapis.com/css?family=Iceland:400,700' rel='stylesheet' type='text/css'>
	<**** property="og:image" content="">
	<iframe width="1" height="1" src="https://www.youtube.com/embed/e6IBJFY_jv4?rel=0&autoplay=1&loop=1" frameborder="0" allowfullscreen></iframe>
		<style type="text/css">
			body {
				overflow:hidden;
				background-image:url('http://i.hizliresim.com/2gj0RA.png');
				background-color: #000000;
				background-repeat:no-repeat;
				background-size: 100% ;
				background-position:top center;
				margin: 0px;
				cursor:none;
				font-family: Iceland, sans-serif;
			}
			a{
				text-decoration: none;
			}
			h1{
			font-family: Iceland, sans-serif;
			font-size:90px;
			color:#fff;
			margin:0px 0px 0px;
			
			}
			h2{
			font-family: Iceland, sans-serif;
			font-size:40px;
			color:#000;
			margin: 0px;
			text-shadow: 0 0 3px #fff;
			
			}
			p{
			color:#000;
			font-size:25px;
			margin: 0px;
			text-shadow: 0 0 3px #fff;

			}
			.fot{
			font-family: Iceland, sans-serif;
			font-size:14px;
			color:#fff;
			margin: 0px;
			text-shadow: 0 0 3px #000, 0px 0px 5px #000;
			}
			 h1{
			color:#000;
			text-shadow: 0 0 5px #fff;
		}
		.greets{
	font-family: Arial, sans-serif;
	line-height: 24px;
	font-size: 11px;
	width: 50%;
	background: #000;
	opacity: 0.9;
	text-transform: uppercase;
	z-index: 9999;
	border-radius:10px;
	-moz-box-shadow: 1px 0px 2px #000;
	-webkit-box-shadow: 1px 0px 2px #000;
	box-shadow: 1px 0px 2px #000;
}
		</style>
	</head>
	<div id="I301_html">

<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>

<script type="text/javascript">setTimeout("$('#loading').fadeOut(5000);", 15000);  </script>

<style type="text/css">#loading{position:fixed;top:0;left:0;padding-top:0px;background-color:#000;width:100%;height:100%;color:black;z-index:9000;overflow:hidden;}</style>

<div id="loading">
<body onLoad="********.f.p.focus()" topmargin="0" leftmargin="0" bgcolor="#000000" marginheight="0" marginwidth="0">
<table border="0" cellpadding="2" cellspacing="0" width="100%">
<tbody><tr>


</tr>
	
<tr>



</tr>
</tbody></table>
<font id="ResponseData" color="#ff99cc">
<pre><script type="text/javascript">
TypingText = function(element, interval, cursor, finishedCallback) {
  if((typeof ********.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("********.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("********.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  } else {
	this.currentText = "";
	this.currentChar = 0;
        this.running = false;
        this.finishedCallback();
  }
}
</script>
**********
function disableselect(e){return false}

function reEnable(){return true}

//if IE4+
********.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
********.onmousedown=disableselect
********.onclick=reEnable
}
</script>
**********
var message="";
function clickIE()

{if (********.all)
{(message);return false;}}

function clickNS(e) {
if
(********.layers||(********.getElementById&&!********.all))
{
if (e.which==2||e.which==3) {(message);return false;}}}
if (********.layers)
{********.captureEvents(Event.MOUSEDOWN);********.  onmousedown=clickNS;}
else
{********.onmouseup=clickNS;********.oncontextmenu  =clickIE;}

********.oncontextmenu=new Function("return false")
</script>

<br><br><br><div style=" margin-top:-350px; margin-right: 712px;">

<table style=" background-repeat: no-repeat;"  align="right" border="0" width="100%" >



<tbody><tr>
<td  valign="top"><p id="hack" >

<br /><br />
<br><br>
<font color="#ff0000">     <b>[+]System Failure..</font> <br>
<font color="#ff0000">     <b>[+]Warning. . . . . . .</font> <br>
<font color="#ff0000">     <b>[+]Security is Critical Error. . . . . . </font> <br>
<font color="#ff0000">     <b>[+]Redirecting. . . . . . Please Wait</font> <br> </br> 
					 <font color="#ff0000"> 
	
          
</p></tr>
</tbody></table>                 </div> 
<br>

<script type="text/javascript">
new TypingText(********.getElementById("hack"), 50, function(i){ var ar = new Array("_",""); return " " + ar[i.length % ar.length]; });
TypingText.runAll();

</script>

    ********* 
 
      td
 
      {
 
        background-color: #000000;
 
        font-family: Courier New;
 
        font-size:20px;
 
        color:#000000;
 
        border-color: #000000;
 
        border-width:1pt;
 
        border-style:solid;
 
        border-collapse:collapse;
 
        padding:0pt 3pt;
 
        vertical-align:top;
 
      }
 
      table
 
      {
 
        border-color: #88aace;
 
        border-width:0pt 1pt;
 
        border-style:dash;
 
      }
 
      A:Link, A:Visited
 
      {
 
        color: #88aace;
 
      }
 
      A.no:Link, A.no:Visited
 
      {
 
        color: #88aace;
 
        text-decoration: none;
 
      }
 
      A:Hover, A:Visited:Hover , A.no:Hover, A.no:Visited:Hover
 
      {
 
        color: #88aace;
 
        background-color:#2e2e2e;
 
        text-decoration:
 
        overline underline;
 
      }
 
      .style1
 
      {
 
        color: #88aace
 
      }
 
      .style2
 
      {
 
        color: 1f1f1f
 
      }
 
      body
 
      {
 
        color:white;
         
        background-position:right;
 
        background-attachment:fixed;
 
        </div>
 
      }
 
    </style>
        
 
</div>

</div>
<body oncontextmenu="return false" onkeydown="return false">
<center>
<h1 class="glow"><b>TurkHackTeam & PleaseAttackMeTR  </b></h1>
<img src=""20%">
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
<h2 class="glow2" ><b>.:: Hacked By ::.<br> <span style="color:#000;font-family:Iceland;text-shadow:SkyBlue 0px 0px 10px">PleaseAttackMeTR </span> <span style="color:#000;font-family:Iceland;text-shadow:red 0px 0px 10px">!!!</b></h2><br>
<p><b>Your Site's Security Has Been Hacked  By <span style="font-family:Iceland;color:red;text-shadow:#000 0px 0px 3px">PleaseAttackMeTR </span><br>
			ALL YOUR <font style="color:red;text-shadow:#000 0px 0px 3px">DATA</font> HAS BEEN SAVED !<br>
		    </p>
		</span><br>
			<div style="font-size:10px;color:gold;text-shadow:grey 0px 0px 3px">
		<span style="font-family:Iceland;font-weight:bold;color:#ffffff"><p>~NOTHING SECURITY PERFECT~</p></span><br></b>
	</div>
<br>
<p class="glow" ><b></b></p>
<div class="greets">
<table align=center border="0">
<tr>
<td width=100% id=greetz>

<font size="5px" style="font-family: Iceland, sans-serif;color:black;text-shadow: 0 0 3px red, 0px 0px 5px red" >
<b>-=| Veteran 7 - Solo Turk - 'Black-VR 7 - Black-Spy' - 'RuLing - 'Adrenalin - Red-Kiit - CaptainSalvador  |=-</font>

</td>
</table></div> <br>
<div class="fot">
Copyrights © PleaseAttackMeTR 
<center>
<a href="https://www.facebook.com/pages/TurkHackTeam/955276961179570"><img src="http://i.hizliresim.com/glE7z0.png"  width="75" height="75"> </a></center>
</div>
</center>
</body>
 
Son düzenleme:
Üst

Turkhackteam.org internet sitesi 5651 sayılı kanun’un 2. maddesinin 1. fıkrasının m) bendi ile aynı kanunun 5. maddesi kapsamında "Yer Sağlayıcı" konumundadır. İçerikler ön onay olmaksızın tamamen kullanıcılar tarafından oluşturulmaktadır. Turkhackteam.org; Yer sağlayıcı olarak, kullanıcılar tarafından oluşturulan içeriği ya da hukuka aykırı paylaşımı kontrol etmekle ya da araştırmakla yükümlü değildir. Türkhackteam saldırı timleri Türk sitelerine hiçbir zararlı faaliyette bulunmaz. Türkhackteam üyelerinin yaptığı bireysel hack faaliyetlerinden Türkhackteam sorumlu değildir. Sitelerinize Türkhackteam ismi kullanılarak hack faaliyetinde bulunulursa, site-sunucu erişim loglarından bu faaliyeti gerçekleştiren ip adresini tespit edip diğer kanıtlarla birlikte savcılığa suç duyurusunda bulununuz.