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

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

缺陷编号:wooyun-2014-062489

漏洞标题:某教学平台通用SQL注入漏洞

相关厂商:Cncert国家互联网应急中心

漏洞作者: 路人甲

提交时间:2014-06-10 10:24

修复时间:2014-09-08 10:26

公开时间:2014-09-08 10:26

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:12

漏洞状态:已交由第三方合作机构(cncert国家互联网应急中心)处理

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

rt

详细说明:

程序名称:信息技术教学辅助平台3.0 ITtools
关键字:intitle:信息技术教学辅助平台3.0
案例:

http://ittools.lhspzx.com/teacher/weboffice/GetExtname.ashx?id=1
http://fzpt.hyxyxx.com/teacher/weboffice/GetExtname.ashx?id=1
http://it.qzgjzx.cn/teacher/weboffice/GetExtname.ashx?id=1
http://61.175.224.187:888/teacher/weboffice/GetExtname.ashx?id=1
http://wsyj.dg6z.net:81/teacher/weboffice/GetExtname.ashx?id=1


漏洞文件:
GetExtname.ashx
id参数未过滤就带入查询,导致注入产生

<%@ WebHandler Language="VB" Class="GenericHandler2" %>
Imports System.IO
Imports System
Imports System.Web
Imports System.Data
Imports System.Data.SqlClient
Imports System.Web.Configuration
Public Class GenericHandler2 : Implements IHttpHandler
Dim cndata As New SqlConnection
Dim cmdSQL As New SqlCommand
Dim rd As SqlDataReader
Dim context As HttpContext
Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
context.Response.ContentType = "text/plain"
Dim fileid As String = context.Request.QueryString("id") //这里取得参数ID
Dim fileurl As String = ""
cndata.ConnectionString = WebConfigurationManager.ConnectionStrings("chenbin").ConnectionString
cmdSQL.Connection = cndata
cndata.Open()
cmdSQL.CommandText = "SELECT [url],course,list FROM it_stuupfile WHERE id=" & fileid
' 0 1 2 //这里直接带入查询了
rd = cmdSQL.ExecuteReader
If rd.Read Then
fileurl = "~/uploadfile/stufile/course/" & rd.GetValue(1) & "/" & rd.GetValue(2) & "/" & rd.GetValue(0)
End If
rd.Close()
cndata.Close()
fileurl = HttpContext.Current.Server.MapPath(fileurl)
fileurl = Mid(System.IO.Path.GetExtension(fileurl), 2)
context.Response.Write(fileurl)
context.Response.End()

End Sub


Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
Get
Return False
End Get
End Property
End Class


实例演示:
http://61.175.224.187:888/teacher/weboffice/GetExtname.ashx?id=1

1.jpg


1.jpg


http://ittools.lhspzx.com/teacher/weboffice/GetExtname.ashx?id=1

1.jpg


http://fzpt.hyxyxx.com/teacher/weboffice/GetExtname.ashx?id=1

1.jpg


http://it.qzgjzx.cn/teacher/weboffice/GetExtname.ashx?id=1

1.jpg


http://wsyj.dg6z.net:81/teacher/weboffice/GetExtname.ashx?id=1

1.jpg


over!

漏洞证明:

1.jpg


1.jpg


修复方案:

过滤处理

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


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:13

确认时间:2014-06-14 22:40

厂商回复:

最新状态:

暂无