---
id: GHSA-vwjc-v7x7-cm6g
title: >-
  ArcadeDB: Scripting authorization gate (GHSA-48qw-824m-86pr) bypassed via SQL
  DEFINE FUNCTION ... LANGUAGE js
summary: >-
  ArcadeDB: Scripting authorization gate (GHSA-48qw-824m-86pr) bypassed via SQL
  DEFINE FUNCTION ... LANGUAGE js
severity: high
cwe:
  - CWE-74
vendor: arcadedb
product: 'com.arcadedb:arcadedb-engine'
ecosystem: maven
affected:
  - 'com.arcadedb:arcadedb-engine < 26.7.2'
patched:
  - 'com.arcadedb:arcadedb-engine 26.7.2'
published: '2026-07-16'
updated: '2026-07-16'
source: GHSA
sourceUrl: 'https://github.com/advisories/GHSA-vwjc-v7x7-cm6g'
references:
  - url: >-
      https://github.com/ArcadeData/arcadedb/security/advisories/GHSA-vwjc-v7x7-cm6g
  - url: 'https://github.com/ArcadeData/arcadedb/releases/tag/26.7.2'
  - url: 'https://github.com/advisories/GHSA-vwjc-v7x7-cm6g'
tags:
  - ghsa
  - maven
ingestedAt: '2026-07-16T20:58:02.671Z'
---

## Overview

The GHSA-48qw-824m-86pr hardening added a checkPermissionsOnDatabase(UPDATE_SECURITY) gate on the polyglot engine (PolyglotQueryEngine.java:112-114,126,176,199), but only there. The SQL route to JavaScript never touches it: DefineFunctionStatement.executeSimple (DefineFunctionStatement.java:37-100), LocalSchema.registerFunctionLibrary, and SQLQueryEngine library-function invocation (SQLQueryEngine.java:198-224) do no scripting-permission check.

Exploit: any user authorized for the DB (including a read-only role) runs POST /api/v1/command/<db> {"language":"sql","command":"DEFINE FUNCTION x.run \"<js>\" LANGUAGE js"} then SELECT x.run(), executing arbitrary JavaScript and defeating the control meant to restrict scripting to security admins. On this path allowedPackages is empty so Java.type host lookup and reflection are blocked, but IOAccess.ALL still permits load(url) SSRF/remote-JS inclusion and unbounded CPU/memory DoS.

Fix: gate DefineFunctionStatement.executeSimple, the SQLQueryEngine library-function wrapper (to also cover pre-existing libraries), and DeleteFunctionStatement with UPDATE_SECURITY for js/polyglot languages. Centralize as one assertCanExecuteUserCode(database) invoked by every code-execution surface. Also set IOAccess.NONE / PolyglotAccess.NONE on the Context (GraalPolyglotEngine.java:86,91).

## Affected packages

- `com.arcadedb:arcadedb-engine < 26.7.2`

## Remediation

Upgrade to a patched release:

- `com.arcadedb:arcadedb-engine 26.7.2`
