盈动信息发布系统 /sites/main/LRXZ.aspx文件ID参数SQL注入漏洞

- AV AC AU C I A
发布: 2025-04-13
修订: 2025-04-13

### 0x01 漏洞框架 系统:盈动信息发布系统 盈动信息发布系统为杭州东方盈动计算机网络工程有限公司一款cms产品。 注入: 问题文件:/sites/main/LRXZ.aspx 问题参数:ID ### 0x02 漏洞详情 代码分析: ``` protected void Page_Load(object sender, EventArgs e) { 略... string text; if (this.Page.Request.QueryString["ID"] != null) { text = this.Page.Request.QueryString["ID"];/*获取参数*/ } else { text = "465"; } this.lblID.Text = text; string condition = "ClassID='" + this.lblID.Text + "' AND WebID=1 AND Deleted='0'";/*直接拼接SQL*/ this.GetPageInfo(condition);/*注入A*/ this.BindData(condition);/*注入B*/ } } ``` this.GetPageInfo分析: ``` private void GetPageInfo(string condition) { SqlConnection sqlConnection = new SqlConnection(Globals.get_ConnectStr()); SqlCommand sqlCommand = new SqlCommand("Get_SiteData_ByPagination", sqlConnection); sqlCommand.CommandType = CommandType.StoredProcedure; sqlCommand.Parameters.Add("@TblName", SqlDbType.NVarChar, 255).Value = "Articles"; sqlCommand.Parameters.Add("@PageSize", SqlDbType.Int).Value = this.PageInfo.get_PageSize();...

0%
暂无可用Exp或PoC
当前有0条受影响产品信息