Elektrine lite

← Feed

@hirihit640@sh.itjust.works

Post #3783131

2026-07-06 04:44 UTC

With that setup, an attacker could mount the host filesystem to the container and would own the host from that container. Can you elaborate more on this? Assuming an attacker is in the Jellyfin container with full remote code execution, how could they mount the host filesystem?

Replies (1)

  • @Morgikan@fedia.io 2026-07-06 05:13

    It would depend on having access to misconfigured permissions or docker.sock like when you chain containers to manage other containers. Because you have access to docker.sock and that socket can send API calls to the docker daemon (which is run from root) those commands would inherit the same level of access. An attacker could make the API call to mount /:/root and then access the host filesystem. It's just an example of how even though the container might not have anything worthwhile, it can be used to laterally move and open another door.

    Open ##3785418