LebiShop商城系统最新版两处SQL注入二

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

### 简要描述: LebiShop商城系统最新版两处SQL注入二 ### 详细说明: LebiShop商城系统最新版两处SQL注入 第一处SQL注入 /ajax/ajax_user.aspx 对应反编译后的文件shop.ajax.ajax_user.UserProduct_Edit方法 ``` // Shop.Ajax.Ajax_user public void UserProduct_Edit() { int t = RequestTool.RequestInt("type", 141); int num = RequestTool.RequestInt("num", 1); int pid = RequestTool.RequestInt("pid", 0); string property = RequestTool.RequestString("property"); string propertypriceids = RequestTool.RequestString("propertypriceids"); int warndays = RequestTool.RequestInt("warndays", 0); if (t != 141 && t != 142 && t != 143 && t != 144) { base.Response.Write("{\"msg\":\"OK\"}"); return; } if ((t == 141 || t == 144) && this.CurrentUser.id == 0) { base.Response.Write(string.Concat(new string[] { "{\"msg\":\"", base.Tag("请先登陆"), "\",\"url\":\"", base.URL("P_Login", ""), "\"}" })); return; } EX_User.UserProduct_Edit(this.CurrentUser, pid, num, t, property, warndays, propertypriceids); ``` 注意这里的propertypriceids通过RequestTool.RequestString方法获取...

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