ecshop 漏洞集合

 


ECSHOP漏洞汇总-漏洞修改记录
更新时间:2017-03-23 点击量:1228
以下为网络内容转载,仅供技术研究。
1.
漏洞名称: ecshop注入漏洞修复
补丁编号: 2862905
补丁文件: /api/client/includes/lib_api.php
补丁来源: 云盾自研
更新时间:
漏洞描述: ecshop存在一个盲注漏洞,问题存在于/api/client/api.php文件中,提交特制的恶意POST请求可进行SQL注入攻击,可获得敏感信息或操作数据库。【注意:该补丁为云盾自研代码修复方案,云盾会根据您当前代码是否符合云盾自研的修复模式进行检测,如果您自行采取了底层/框架统一修复、或者使用了其他的修复方案,可能会导致您虽然已经修复了改漏洞,云盾依然报告存在漏洞,遇到该情况可选择忽略该漏洞提示】
修改:api/client/includes/lib_api.php
 
function API_UserLogin($post)  
    {  
     if(get_magic_quotes_gpc()){  
          $post['UserId']=$post['UserId'];  
        }else{  
          $post['UserId']=addslashes($post['UserId']);  
        }  
   
   
       $post['username'] = isset($post['UserId']) ? trim($post['UserId']) : '';  
        $post['password'] = isset($post['Password']) ? strtolower(trim($post['Password'])) : '';  
   
        /* 检查密码是否正确 */  
        $sql = "SELECT user_id, user_name, password, action_list, last_login".  
        " FROM " . $GLOBALS['ecs']->table('admin_user') .  
        " WHERE user_name = '" . htmlspecialchars($post['username']). "'";//对用户名进行简单过滤  
   
        $row = $GLOBALS['db']->getRow($sql);
2.跨站攻击
www.aaa.com/mobile/buy.php?id=849<body+οnlοad=prompt()>
在includes/init.php中引入阿里云通用漏洞补丁文件,waf.php。
1
require(ROOT_PATH . 'includes/waf.php');
并加以修改:
 
else //购物车没有此物品,则插入  
         {  
            $goods_price = get_final_price($goods_id, $num, true, $spec);  
             $parent['goods_price']  = max($goods_price, 0);  
             $parent['goods_number'] = $num;  
             $parent['parent_id']    = 0;  
     $sql = "SELECT * FROM " .$GLOBALS['ecs']->table('cart'). " WHERE goods_id = '$goods_id' ";  
     $hasgoods = $GLOBALS['db']->query($sql);  
 if(empty($hasgoods)){  
             $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('cart'), $parent, 'INSERT');  
 }else{  
       echo "该商品已经存在!";exit;  
 }  
         }  
    }
如果不修改lib_order.php文件,跨站攻击虽然阻止了,但是数据库错误语句会暴露!
3.
漏洞名称:ecshop注入漏洞修复
补丁编号: 2785226
补丁文件:/flow.php
补丁来源: 云盾自研
更新时间: 
漏洞描述: ECSHOP的配送地址页面网页没有验证地区参数的有效性,存在sql注入漏洞,攻击者可利用火狐tamper data等插件修改提交到配送地址页面的post数据,造成未授权的数据库操作甚至执行任意代码。
修改:flow.php
 
          /* 保存收货人信息  
              */  
             $consignee = array(  
                 'address_id'    => empty($_POST['address_id']) ? 0  : intval($_POST['address_id']),  
                 'consignee'     => empty($_POST['consignee'])  ? '' : trim(htmlspecialchars($_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'])      ? '' : htmlspecialchars($_POST['email']),  
                 'address'       => empty($_POST['address'])    ? '' : htmlspecialchars($_POST['address']),  
                'zipcode'       => empty($_POST['zipcode'])    ? '' : make_semiangle(trim(htmlspecialchars($_POST['zipcode']))),  
                 'tel'           => empty($_POST['tel'])        ? '' : make_semiangle(trim(htmlspecialchars($_POST['tel']))),  
                 'mobile'        => empty($_POST['mobile'])     ? '' : make_semiangle(trim(htmlspecialchars($_POST['mobile']))),  
                 'sign_building' => empty($_POST['sign_building']) ? '' : htmlspecialchars($_POST['sign_building']),  
                 'best_time'     => empty($_POST['best_time'])  ? '' : htmlspecialchars($_POST['best_time']),  
             );  
   
使用htmlspecialchars不能消除漏洞,  
        $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']),  
            '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'])     ? '' : compile_str(make_semiangle(trim($_POST['mobile']))),  
            'sign_building' => empty($_POST['sign_building']) ? '' : compile_str($_POST['sign_building']),  
            'best_time'     => empty($_POST['best_time'])  ? '' : compile_str($_POST['best_time']),  
        );
4.
漏洞名称: ecshop SQL注入漏洞
补丁编号: 6850408
补丁文件: /admin/affiliate_ck.php
补丁来源: 云盾自研
更新时间:
漏洞描述: ecshop的后台编辑文件/admin/affiliate_ck.php中,对输入参数auid未进行正确类型转义,导致整型注入的发生。
修改:affiliate_ck.php
 
if (!empty($_GET['auid']))  
      {  
          $smarty->assign('action_link',  array('text' => $_LANG['back_note'], 'href'=>"users.php?act=edit&id=intval($_GET[auid])"));//注:该处auid需要用单引号包围  
      }  
   
   
     if (isset($_GET['auid']))  
     {  
         $sqladd = ' AND a.user_id=' . intval($_GET['auid']);  
     }


5.
漏洞名称: ecshop注入漏洞修复
补丁编号: 6699875
补丁文件: /admin/shophelp.php shopinfo.php
补丁来源: 云盾自研
更新时间: 
漏洞描述: ecshop的后台编辑文件/admin/shophelp.php中  shopinfo.php ,对输入参数$_POST['id']未进行正确类型转义,导致整型注入的发生。
修改:shophelp.php shopinfo.php
 
/* 取得文章数据 */  
         $sql = "SELECT article_id, title, content FROM ".$ecs->table('article')."WHERE article_id =".intval($_REQUEST['id']);  
         $article = $db->GetRow($sql);  
   
         /* 检查重名 */  
         if ($_POST['title'] != $_POST['old_title'])  
         {  
             $is_only = $exc->is_only('title', htmlspecialchars($_POST['title']), intval($_POST['id']));  
        
             if (!$is_only)  
             {  
                 sys_msg(sprintf($_LANG['title_exist'], stripslashes($_POST['title'])), 1);  
             }  
         }  
        
   
   
         /* 更新数据 */  
         $cur_time = gmtime();  
         if ($exc->edit("title='$_POST[title]', content='$_POST[FCKeditor1]',add_time ='$cur_time'",intval($_POST['id'])))  
         {  
             /* 清除缓存 */  
             clear_cache_files();  
   
   
         /* 取文章数据 */  
         $sql = "SELECT article_id,title, cat_id, article_type, is_open, author, author_email, keywords, content FROM "   
.$ecs->table('article'). " WHERE article_id=intval($_REQUEST['id'])";
6.
漏洞名称: ecshop后台SQL注入漏洞修复
补丁编号: 6461678
补丁文件: /admin/comment_manage.php
补丁来源: 云盾自研
更新时间:
漏洞描述: ecshop的/admin/comment_manage.php中,对输入参数sort_by、sort_order未进行严格过滤,导致SQL注入
修改:comment_manage.php
1
2
 $filter['sort_by']      = empty($_REQUEST['sort_by']) ? 'add_time' : trim(htmlspecialchars($_REQUEST['sort_by']));  
     $filter['sort_order']   = empty($_REQUEST['sort_order']) ? 'DESC' : trim(htmlspecialchars($_REQUEST['sort_order']));
7.
漏洞名称: ecshop注入漏洞
补丁编号: 2785221
补丁文件:/api/client/includes/lib_api.php
补丁来源: 云盾自研
更新时间:
漏洞描述: ECShop存在一个盲注漏洞,问题存在于/api/client/api.php文件中,提交特制的恶意POST请求可进行SQL注入攻击,可获得敏感信息或操作数据库。
修改:api/client/includes/lib_api.php
 
 * 用户登录函数  
      * 验证登录,设置COOKIE  
      *  
      * @param array $post  
      */  
     function API_UserLogin($post)  
     {  
         $post['username'] = isset($post['UserId']) ? trim(htmlspecialchars($post['UserId'])) : '';
8.
漏洞名称: ecshop注入漏洞修复
补丁编号: 1948165
补丁文件: /includes/modules/payment/alipay.php
补丁来源: 云盾自研
更新时间:
漏洞描述: ECSHOP支付插件存在SQL注入漏洞,此漏洞存在于/includes/modules/payment/alipay.php文件中,该文件是ECshop的支付宝插件。由于ECShop使用了str_replace函数做字符串替换,黑客可绕过单引号限制构造SQL注入语句。只要开启支付宝支付插件就能利用该漏洞获取网站数据,且不需要注册登入。
修改:alipay.php
 
 $order_sn = str_replace($_GET['subject'], '', $_GET['out_trade_no']);  
         $order_sn = trim($order_sn);  
         $len = strlen($_GET['subject']);  
         $t_subject = substr ($_GET['out_trade_no'], 0, $len);  
         //$order_sn = substr ($_GET['out_trade_no'], $len);  
         if ($t_subject != $_GET['subject'])  
         {         
                 $order_sn = $_GET['out_trade_no'];  
         }  
         /** 
          * end 
          */  

         //$order_sn = trim($order_sn);





ecshop SQL注入漏洞导致代码执行
11208761
/includes/lib_insert.php
云盾自研
2017-03-06 06:29:40
ecshop的/includes/lib_insert.php文件中,对输入参数未进行正确类型转义,导致整型注入的发生。
[php]  view plain  copy
  1. 139c139,140  
  2. +       $arr['num'] = intval($arr['num']);  
  3. +       $arr['id'] = intval($arr['id']);  
  4. 267c268  
  5. ---  
  6. 270c271,272  
  7. +       $arr['id'] = intval($arr['id']);  
  8. +       $arr['type'] = addslashes($arr['type']);  
  9. 308c310  
  10. ---  
  11. +       $arr['id'] = intval($arr['id']);  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值