网站地图    收藏   

主页 > 后端 > 网站安全 >

Typo3 v4.5-4.7远程代码执行(RFI/LFI)及修复 - 网站安全

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

[导读] 标题: Typo3 v4.5-4.7 - Remote Code Execution (RFI/LFI)作者: MaXe下载地址: https://typo3.org/download/影响版本: 4.5.0 up to 4.5.8, 4.6.0 and 4.6.1 (+ development releases of4.7 ......

标题: Typo3 v4.5-4.7 - Remote Code Execution (RFI/LFI)
作者: MaXe
下载地址: https://typo3.org/download/
影响版本: 4.5.0 up to 4.5.8, 4.6.0 and 4.6.1 (+ development releases of
4.7 branch)
 
介绍:
TYPO3 is a small to midsize enterprise-class Content Management Framework
offering
the best of both worlds: out-of-the-box operation with a complete set of
standard
modules and a clean and sturdy high-performance architecture accomodating
virtually
every kind of custom solution or extension.
 
External Links:
http://typo3.org/
 
 
 
-:: The Advisory ::-
Requirements for any RCE:
- register_globals in the php.ini MUST be enabled (if the exploit fails
against a supposed to be vulnerable version, this is why. This setting is
often disabled by default.)
 
Requirements for RFI:
- allow_url_include has to be enabled (It's often "off" by default.)
 
 
Proof of Concept:
By browsing to a script / page, that uses the following file:
typo3/sysext/workspaces/Classes/Controller/AbstractController.php (direct
access may not be allowed)
It is possible to include PHP code to be executed via the "BACK_PATH"
global variable. This can be accessed in ways like:
AbstractController.php?BACK_PATH=LFI/RFI%00 www.2cto.com
 
The vulnerable piece of code: require_once($GLOBALS['BACK_PATH'] .
'template.php');
Demonstrates, that it is necessary to append a null-byte ( %00 ) after the
maliciously crafted input / URL. (Unless your remote file if applicable, is
named something.template.php)
 
 
-:: 解决方案::-
* 升级到最新版或change the vulnerable piece of
code to: require_once(PATH_site . TYPO3_mainDir . 'template.php');
 
 
 
References:
- http://typo3.org/fileadmin/security-team/bug32571/32571.diff
-
https://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2011-004/
-
http://news.typo3.org/news/article/important-security-bulletin-pre-announcement-2/

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

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

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

添加评论