Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ GHSA-h8cj-hpmg-636v — interfaces

🟠 CVSS 8.0 — High ✅ No Known Exploit CWE-89 OSV
8.0
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

appsmith has SQL Injection in FilterDataService via Unsafe DROP TABLE Execution

Summary

A SQL injection vulnerability exists in FilterDataServiceCE.java where the dropTable method constructs a SQL DROP TABLE statement using string concatenation with the table name. If the table name is derived from user input, this allows for arbitrary SQL command execution.

Details

The vulnerability is located in app/server/appsmith-interfaces/src/main/java/com/appsmith/external/services/ce/FilterDataServiceCE.java.

Line 627 in dropTable method:

```java

public void dropTable(String tableName) {

String dropTableQuery = "DROP TABLE " + tableName + ";";

executeDbQuery(dropTableQuery);

}

```

The tableName argument is concatenated directly into the SQL string without validation or escaping.

PoC

If dropTable is exposed to user input (e.g., via a utility API that accepts a table name to clean up), an attacker could provide a value like:

valid_table; DROP TABLE users; --

The resulting query would be:

DROP TABLE valid_table; DROP TABLE users; --;

This would delete the intended table and then delete the users table (or execute any other injected SQL).

Impact

  • Type: SQL Injection
  • Impact: Data Loss (Drop Table), potentially Data Exfiltration or Modification depending on database permissions.
  • Who is impacted: Appsmith server instances.

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs administrative privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality high, integrity high, availability high.

Weakness class

GHSA-h8cj-hpmg-636v is classified as CWE-89: SQL Injection. Untrusted input is concatenated into an SQL statement, letting an attacker change the query and reach data the request should not return.

Affected software

GHSA-h8cj-hpmg-636v is recorded against 1 package.

  • com.appsmith:interfaces (fixed in 1.99)

Timeline and source

Published on 29 April 2026 and last revised on 5 May 2026. No public exploit is currently recorded for this entry. Record sourced from OSV.

References

github.com (Web)
github.com (Web)
github.com (Package)

Details

Severity HIGH
CVSS Score 8.0
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
CWE CWE-89
Public Exploit ✅ No
Source OSV
Published 2026-04-29
Updated 2026-08-20
Modified 2026-05-05
Fix URL N/A

Affected Packages

Software From version Fixed in
com.appsmith:interfaces 1.99

Site Security Check

Is interfaces part of your stack?

GHSA-h8cj-hpmg-636v is rated CVSS 8.0 High. BotEraser scans your installation against known CVE records and tells you whether this vulnerability applies to the versions you actually run.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.