GHSA-98hq-4wmw-98w9: Arbitrary code execution in de.tum.in.ase:artemis-java-test-sandbox
8.3
CVSS Score
3.1
Basic Information
CVE ID
-
GHSA ID
EPSS Score
-
CWE
Published
2/10/2023
Updated
2/24/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
de.tum.in.ase:artemis-java-test-sandbox | maven | < 1.11.2 | 1.11.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability arises because the custom SecurityManager
in the sandbox does not override checkLink(String)
, which is required to restrict library loading. System.load
and System.loadLibrary
are standard Java methods that trigger checkLink
checks. Without proper access control in checkLink
, these methods allow students to load malicious native libraries containing arbitrary code. The advisory explicitly identifies these methods as the exploitation vectors, and their presence in student-accessible code makes them vulnerable entry points.