Skip to content

Session VNC may be accessed by other sessions on the same host

Critical
genericness published GHSA-h2c9-7j2r-m98p Dec 20, 2024

Package

* (Stardust)

Affected versions

*

Patched versions

Any release after 12/20/24

Description

Impact

With this exploit, inter container communication (ICC) is not disabled. This would allow users within a container to access another containers agent, therefore compromising access.

Patches

The problem has been patched in any Stardust build past 12/20/24.

Workarounds

Get a list of containers

docker ps -a --filter network=stardust --format "table {{.ID}}"

Recreate the network preventing ICC

docker network rm stardust
docker network create  --opt "com.docker.network.bridge.enable_icc"="false" stardust
for i in "${ST_CONTAINERS[@]}"; do   docker network connect stardust $i; done

Severity

Critical

CVE ID

CVE-2024-56330

Weaknesses

Credits