CVE-2026-30858
Published: 07 March 2026
Summary
CVE-2026-30858 is a medium-severity SSRF (CWE-918) vulnerability in Tencent Weknora. Its CVSS base score is 6.5 (Medium).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 30.8th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.
This vulnerability is AI-related — categorised as NLP and Transformers; in the Supply Chain and Deployment risk domain.
The strongest mitigations our analysis identified are NIST 800-53 SC-7 (Boundary Protection) and SI-10 (Information Input Validation).
Deeper analysis
CVE-2026-30858 is a DNS rebinding vulnerability in the web_fetch tool of WeKnora, an LLM-powered framework designed for deep document understanding and semantic retrieval. Versions of WeKnora prior to 0.3.0 are affected. The flaw enables bypassing URL validation, allowing access to internal resources on the server, including private IP addresses such as 127.0.0.1 and 192.168.x.x.
An unauthenticated attacker can exploit this vulnerability by crafting a malicious domain that resolves to a public IP address during the validation phase but subsequently resolves to a private IP during execution. This grants access to sensitive local services and enables potential data exfiltration. The vulnerability carries a CVSS v3.1 base score of 6.5 (AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N) and is associated with CWE-918 (Server-Side Request Forgery).
The vulnerability has been patched in WeKnora version 0.3.0. Additional details on the advisory and mitigation are available in the GitHub security advisory at https://github.com/Tencent/WeKnora/security/advisories/GHSA-h6gw-8f77-mmmp.
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-10181
Vulnerability details
WeKnora is an LLM-powered framework designed for deep document understanding and semantic retrieval. Prior to version 0.3.0, a DNS rebinding vulnerability in the web_fetch tool allows an unauthenticated attacker to bypass URL validation and access internal resources on the server,…
more
including private IP addresses (e.g., 127.0.0.1, 192.168.x.x). By crafting a malicious domain that resolves to a public IP during validation and subsequently resolves to a private IP during execution, an attacker can access sensitive local services and potentially exfiltrate data. This issue has been patched in version 0.3.0.
- CWE(s)
AI Security AnalysisAI
- AI Category
- NLP and Transformers
- Risk Domain
- Supply Chain and Deployment
- OWASP Top 10 for LLMs 2025
- None mapped
- Classification Reason
- Matched keywords: llm
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
SSRF via DNS rebinding in public web_fetch tool directly enables T1190 to reach internal endpoints; resulting access to local services/private IPs enables T1005 data collection.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly requires validation of URL/domain inputs in web_fetch to block DNS-rebinding attempts that bypass checks and reach private IPs.
Enforces boundary controls that deny the web_fetch tool's outbound connections to internal/private address ranges after rebinding occurs.
Implements information-flow policy enforcement that can restrict external-to-internal data flows attempted via the rebinding vector in web_fetch.