Security Vulnerability Report
中文
CVE-2026-43505 CVSS 6.5 MEDIUM

CVE-2026-43505

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

Description

An issue was discovered in Prosody before 0.12.6 and 1.0.0 through 13.0.0 before 13.0.5, when mod_proxy65 is enabled. Because mod_proxy65 mishandles access control in the activation scenario, relaying of unauthenticated traffic can occur.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/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.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import struct # Conceptual PoC for checking unauthenticated relay # Target: Prosody mod_proxy65 def check_proxy(host, port): try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((host, port)) # SOCKS5 Handshake: No Auth s.send(b"\x05\x01\x00") response = s.recv(2) if response == b"\x05\x00": print("[+] Server allows no-auth method, potentially vulnerable.") # Further exploit logic would involve CONNECT requests else: print("[-] Server requires auth or not vulnerable.") s.close() except Exception as e: print(f"Error: {e}") if __name__ == "__main__": # Replace with actual target IP and port check_proxy("127.0.0.1", 5000)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-43505", "sourceIdentifier": "[email protected]", "published": "2026-05-01T15:16:52.653", "lastModified": "2026-05-01T17:15:38.703", "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, when mod_proxy65 is enabled. Because mod_proxy65 mishandles access control in the activation scenario, relaying of unauthenticated traffic can occur."}], "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:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-420"}]}], "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://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"]}]}}