ecshop最新版本存储XSS至后台

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

### 简要描述: 存储XSS,你懂的,赠送给乌云,俺貌似只是可能大概想连载下~ ### 详细说明: 下订单时,收货人信息里,未对电子邮件地址进行有效的过滤(未过滤双引号),导致在后台订单列表页及订单详情页可XSS. ``` /flow.php 373行 $consignee = array( 'address_id' => empty($_POST['address_id']) ? 0 : intval($_POST['address_id']), 'consignee' => empty($_POST['consignee']) ? '' : compile_str(trim($_POST['consignee'])), 'country' => empty($_POST['country']) ? '' : intval($_POST['country']), 'province' => empty($_POST['province']) ? '' : intval($_POST['province']), 'city' => empty($_POST['city']) ? '' : intval($_POST['city']), 'district' => empty($_POST['district']) ? '' : intval($_POST['district']), 'email' => empty($_POST['email']) ? '' : compile_str($_POST['email']), //compile_str只是对<>进行了处理 'address' => empty($_POST['address']) ? '' : compile_str($_POST['address']), 'zipcode' => empty($_POST['zipcode']) ? '' : compile_str(make_semiangle(trim($_POST['zipcode']))), 'tel' => empty($_POST['tel']) ? '' : compile_str(make_semiangle(trim($_POST['tel']))), 'mobile' => empty($_POST['mobile'])...

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