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

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

缺陷编号:wooyun-2013-043664

漏洞标题:siteserver最新版3.6.4 sql inject 第七蛋

相关厂商:百容千域软件技术开发有限责任公司

漏洞作者: 小新

提交时间:2013-11-21 23:09

修复时间:2014-02-19 23:10

公开时间:2014-02-19 23:10

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:10

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2013-11-21: 细节已通知厂商并且等待厂商处理中
2013-11-24: 厂商已经确认,细节仅向厂商公开
2013-11-27: 细节向第三方安全合作伙伴开放
2014-01-18: 细节向核心白帽子及相关领域专家公开
2014-01-28: 细节向普通白帽子公开
2014-02-07: 细节向实习白帽子公开
2014-02-19: 细节向公众公开

简要描述:

siteserver 最新版3.6.4 存在注入, 第七个注入

详细说明:

第七个注入存在/UserCenter/cms/contents.aspx
用.NET Reflector 反编译UserCenter.Pages.dll这个文件
查看代码如下:

int totalCount;
bool flag;
string keyword = this.Keyword.Text.Trim();
if ((((uint) totalCount) - ((uint) flag)) <= uint.MaxValue)
{
string start = this.start.Value;
if (0 != 0)
{
return;
}
string end = this.end.Value;
if ((((uint) flag) - ((uint) flag)) <= uint.MaxValue)
{
base.SetPublishmentSystemID(TranslateUtils.ToInt(this.ddlPublishmentSystemID.SelectedValue));
this.spContents.ControlToPaginate = this.dlContents;
this.dlContents.ItemDataBound += new RepeaterItemEventHandler(this.x140df91522580d1f);
this.spContents.ItemsPerPage = 30;
this.spContents.ConnectionString = BaiRongDataProvider.ConnectionString;
this.spContents.SelectCommand = DataProvider.ContentDAO.GetSelectCommendOfTouGao(base.PublishmentSystemInfo.AuxiliaryTableForContent, base.PublishmentSystemID, start, end, keyword, base.UserName, this.touGaoType);
}
this.spContents.SortField = "ID";


关注keyword

public string GetSelectCommendOfTouGao(string tableName, int publishmentSystemID, string start, string end, string keyword, string userName, ETouGaoType touGaoType)
{
....
builder.AppendFormat("AND (Title LIKE '%{0}%' OR Content LIKE '%{0}%')", keyword);


很明显的注入

漏洞证明:

因为这次是post类型,server会对viewstate进行check,所以需要注册一个会员,登录后访问

http://www.target.com/UserCenter/cms/contents.aspx?PublishmentSystemID=1


在关键字处填写

' and @@version=1 and 1='


2013-11-21-224941_896x236_scrot.png


2013-11-21-224954_716x231_scrot.png


修复方案:

对keyword进行过滤

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


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:6

确认时间:2013-11-24 19:49

厂商回复:

周末刚上来看见,回头让产品部门测试,若确实存在,我们立马修复,谢谢小哥最近的工作,辛苦了!

最新状态:

暂无