cyber-security-resources/docker-and-k8s-security/docker/docker-bench-websploit.sh

22 lines
842 B
Bash
Raw Normal View History

2021-04-11 21:38:26 +00:00
#!/bin/bash
# A lame and quick script to run docker-bench-security in WebSploit Labs
# Omar Santos @santosomar
2021-04-11 21:31:55 +00:00
echo "Running docker-bench-security from WebSploit"
docker run --rm --net host --pid host --userns host --cap-add audit_control \
-e DOCKER_CONTENT_TRUST=$DOCKER_CONTENT_TRUST \
-v /etc:/etc:ro \
-v /lib/systemd/system:/lib/systemd/system:ro \
-v /usr/bin/containerd:/usr/bin/containerd:ro \
-v /usr/bin/runc:/usr/bin/runc:ro \
-v /usr/lib/systemd:/usr/lib/systemd:ro \
-v /var/lib:/var/lib:ro \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
--label docker_bench_security \
docker/docker-bench-security > bench_results.txt
2021-04-11 21:34:29 +00:00
2021-04-11 21:38:26 +00:00
cat bench_results.txt | grep WARN
echo "The output above only includes the major findings. The complete results have been stored at: $(pwd)/bench_results.txt "