mirror of
https://github.com/falcosecurity/falco.git
synced 2026-04-04 11:02:16 +00:00
An example showing how an overly permissive container environment can be exploited to install and run cryptomining software on a host system.
13 lines
173 B
Docker
13 lines
173 B
Docker
FROM docker:stable-dind
|
|
|
|
RUN set -ex \
|
|
&& apk add --no-cache \
|
|
bash curl
|
|
|
|
COPY start-cron-and-dind.sh /usr/local/bin
|
|
|
|
ENTRYPOINT ["start-cron-and-dind.sh"]
|
|
CMD []
|
|
|
|
|