
Container Runtime Hardening with Podman - Paranoid Level Sandboxing #2
Source: YouTube · Data Lab Tech · published Jul 28, 2026 · 31:53
This video demonstrates container runtime hardening for the "Great" project, focusing on securing Linux containers using Podman, seccomp, and network isolation techniques to mitigate supply chain attacks.
Key Takeaways:
• The project uses a hardened Wolfie base image and pins all image dependencies to specific SHA-256 hashes to prevent tampering 29:59.
• Containers run with a read-only root filesystem, using a tmpfs mount for the home directory to allow necessary writes without compromising system integrity 13:56.
• UID and GID mapping configures container root users to map to non-existent high UIDs (30,000+) on the host, ensuring escaped attackers have no privileges 12:48.
• Network isolation uses a dedicated Unbound DNS container and strict firewall rules, blocking all non-whitelisted external traffic 8:44.
• All Linux capabilities are dropped by default with seccomp profiles restricting system calls, restoring only specific capabilities for necessary services like Unbound 19:00.
• The run-allowed dispatcher and nno-wrapper manage profile composition, ensuring only permitted commands execute within the constrained environment 1:41.
Effective container security requires a multi-layered approach combining image integrity, filesystem restrictions, and strict network and privilege controls to defend against modern supply chain threats.
Sources:
Generate CPE Credits
Generate a professional CPE document from this video's transcript.
Estimated credit: 0.5 CPE hours
Estimate uses the video runtime (1 hour ≈ 1 CPE, rounded to the nearest 0.5, minimum 0.5, maximum 2.0). The final amount can be lower after review, never higher.
Topic: Cloud Security. Commonly maps to: Security Architecture and Engineering, Communication and Network Security. Exact CISSP domains are assigned during generation.
Free account. One generation at a time, with a daily limit.
CPEBuddy is independent and not affiliated with or endorsed by ISC2, ISACA, or any certification body. Exports are formatted for common CPE submissions; acceptance is at your certification body's discretion.
Transcript Preview
First 800 characters of the transcript
So as promised today we're going to look at uh container runtime hardening the first layer uh of defense that we we built into uh great. Okay guys, so today we are going to learn about container runtime hardening and we'll go through each of these items uh and you know in practice how how this looks like uh with podman. Uh of course you can also do this on um docker without uh much there is really not a big difference I believe. Uh and so first let's take a look at the project and this is what uh the project uh for great looks like. Uh we were looking at the readme file. Okay. Uh most of the code is defined within this just file over here and today we are going to focus on containers. So we'll be looking at our container files. Not all of these are relevant for today. mainly the base proba…