CVE-2026-55455
Analyzed Analyzed - Analysis Complete

Outbound HTTP Loopback Access in Appsmith

Vulnerability report for CVE-2026-55455, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-24

Last updated on: 2026-06-26

Assigner: GitHub, Inc.

Description

Appsmith is a platform to build admin panels, internal tools, and dashboards. Prior to 2.1, the outbound HTTP host filter applied by WebClientUtils (used by the REST API and GraphQL datasource plugins) validates hosts against an exact-match string denylist. The comprehensive address-class check (loopback, any-local, link-local, fc00::/7) exists only on a separate code path used by SMTP, not by the HTTP plugin path. As a result, an authenticated user can craft outbound requests that reach loopback-bound services inside the container. This vulnerability is fixed in 2.1.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-24
Last Modified
2026-06-26
Generated
2026-07-15
AI Q&A
2026-06-25
EPSS Evaluated
2026-07-13
NVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
appsmith appsmith to 2.1 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
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 Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in Appsmith versions prior to 2.1, where the outbound HTTP host filter used by REST API and GraphQL datasource plugins only checks hosts against an exact-match denylist. Unlike the SMTP code path, it does not perform a comprehensive address-class check for loopback or local addresses. As a result, an authenticated user can craft outbound HTTP requests that reach loopback-bound services inside the container, potentially accessing internal services that should be protected.

Impact Analysis

The vulnerability allows an authenticated user to send outbound HTTP requests to loopback-bound services inside the container. This could lead to unauthorized access to internal services that are normally inaccessible from outside the container, potentially exposing sensitive internal data or functionality.

Mitigation Strategies

To mitigate this vulnerability, upgrade Appsmith to version 2.1 or later, where the issue with the outbound HTTP host filter has been fixed.

Compliance Impact

The CVE-2026-55455 vulnerability allows authenticated users to bypass outbound HTTP host filters and access loopback-bound services inside the container. This can lead to unauthorized access to internal services and potentially full host takeover in certain Docker deployments.

Such unauthorized access and potential data exposure could negatively impact compliance with common standards and regulations like GDPR and HIPAA, which require strict controls on data access and protection of sensitive information.

Mitigations such as applying comprehensive IP address checks, network-level egress filtering, and disabling open signup are recommended to reduce the risk and help maintain compliance.

Detection Guidance

This vulnerability can be detected by identifying if an authenticated user can create or execute REST API actions that make outbound HTTP requests to loopback or local addresses inside the container, such as 0.0.0.0, 127.0.0.2, or [::].

To detect exploitation attempts or presence of this vulnerability, you can monitor or log outbound HTTP requests from the Appsmith instance targeting loopback or local IP addresses.

Suggested commands include inspecting network connections and HTTP requests from the Appsmith container or host.

  • Use netstat or ss to check for unusual outbound connections to loopback addresses: `netstat -tnp | grep -E '127\.0\.0\.|0\.0\.0\.0|::1|::'` or `ss -tnp | grep -E '127\.0\.0\.|0\.0\.0\.0|::1|::'`
  • Monitor HTTP request logs or Appsmith action logs for requests targeting loopback or local IPs, e.g., URLs like http://0.0.0.0:2019/config/
  • Within the Appsmith interface, review REST API datasource actions for suspicious URLs pointing to internal IP addresses.

Additionally, network-level egress filtering can be used to block outbound requests to loopback or local IP ranges to prevent exploitation.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-55455. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart