当前位置:WooYun >> 漏洞信息

漏洞概要 关注数(24) 关注此漏洞

缺陷编号:wooyun-2015-096475

漏洞标题:易游留言板任意重置管理员密码

相关厂商:stnts.com

漏洞作者: 牛肉包子

提交时间:2015-02-13 15:41

修复时间:2015-04-02 10:23

公开时间:2015-04-02 10:23

漏洞类型:设计缺陷/逻辑错误

危害等级:高

自评Rank:20

漏洞状态:漏洞已经通知厂商但是厂商忽略漏洞

漏洞来源: http://www.wooyun.org,如有疑问或需要帮助请联系 [email protected]

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-02-13: 细节已通知厂商并且等待厂商处理中
2015-02-18: 厂商主动忽略漏洞,细节向第三方安全合作伙伴开放
2015-04-14: 细节向核心白帽子及相关领域专家公开
2015-04-24: 细节向普通白帽子公开
2015-05-04: 细节向实习白帽子公开
2015-04-02: 细节向公众公开

简要描述:

这套系统在网吧广泛运用,通过这个入侵网吧,是绝佳良器

详细说明:

来网吧里面,看到了这个留言板。以前也搞过这个留言板,都是通过下载sqlite的数据库,然后找到管理员的md5。然后,破解md5再进后台。如果,md5破不出来咋办。不要慌,看了源代码你就懂了。
看到EyooBoard\module\message\reset.inc.php

<?php
$ip = getIP();
if($ip != '127.0.0.1') exit('Access Denied');
switch($do) {
case 'reset' :
$password = post('password');
if($password) {
//更新密码
if($db->query('update systemuser set password="'.md5($password).'" WHERE username="admin"')) {
echo "<script>
alert('密码重置成功!');
isIE = /msie/.test(window.navigator.userAgent.toLowerCase());
if(isIE) {
window.open('','_parent','');
window.close();
}
else {
document.write('设置成功,请关闭窗口!')
}
</script>";
}
else {
echo "<script>
alert('密码重置失败!');
isIE = /msie/.test(window.navigator.userAgent.toLowerCase());
if(isIE) {
window.open('','_parent','');
window.close();
}
else {
document.write('设置成功,请关闭窗口!')
}
</script>";
}
}
else{
header("Location:index.php?mod=message&act=reset");
}
break;
default :
include template("reset");
break;
}
?>


先获取ip,如果ip是127.0.0.1就可以重置管理员密码。
我们再看到getip()

function getIP()
{
return isset($_SERVER["HTTP_X_FORWARDED_FOR"])?$_SERVER["HTTP_X_FORWARDED_FOR"]
:(isset($_SERVER["HTTP_CLIENT_IP"])?$_SERVER["HTTP_CLIENT_IP"]
:$_SERVER["REMOTE_ADDR"]);
}


看到这儿应该就懂了。用x-forwarded-for伪造ip。然后修改管理员密码就行。

漏洞证明:

先把xff的ip设置为127.0.0.1

1.png


然后访问

http://xx00.com:16788//eyooboard/index.php?mod=message&act=reset


2.png


这样就直接可以重置管理员密码。
密码被重置为wooyun

3.png


成功进入后台

4.png


getshell的方法,在乌云发过,我就不写了。
案例:

5.png


我就不一个一个去试了。

修复方案:

代码不能这样写

版权声明:转载请注明来源 牛肉包子@乌云


漏洞回应

厂商回应:

危害等级:无影响厂商忽略

忽略时间:2015-04-02 10:23

厂商回复:

最新状态:

暂无