CuuMall免费开源商城系统 存在邮件欺骗风险 可劫持用户名和密码

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

### 简要描述: CuuMall免费开源商城系统 header欺骗风险 可劫持用户名和密码 ### 详细说明: 直接看代码: loginAction.class.php:(161-192): ``` public function getpassword( ) { $username = $_POST['username']; $mail = $_POST['email']; $us = new Model( "m_member" ); $d_us = $us->where( "username='".$username."'" )->find( ); if ( empty( $d_us ) ) { $this->assign( "waitSecond", 3 ); $this->assign( "msgTitle", "错误!" ); $this->assign( "jumpUrl", "__APP__/home/login/getpass" ); $this->error( "用户名不存在" ); exit( ); } if ( $d_us['email'] != $mail ) { $this->assign( "waitSecond", 3 ); $this->assign( "msgTitle", "错误!" ); $this->assign( "jumpUrl", "__APP__/home/login/getpass" ); $this->error( "认证邮箱不正确!" ); exit( ); } $data['mailstate'] = 1; $us->data( $data )->where( "username='".$username."'" )->save( ); $pass = $d_us['password']; $url = "http://".$_SERVER['SERVER_NAME']."/index.php/home/login/setpass/user/".$username."/pass/".$pass; vendor( "mail.class-phpmailer" ); $title = "=?UTF-8?B?".base64_encode( c( "MALLNAME" )."密码找回" )."?=";...

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