OS Hardening as Code, Episode 2
Cloud AMI Security Risks · Linux Hardening as Code**
Note: the tool in this series was released as Stratum and renamed to BakeX at
v0.6.0 — same project, same license, same team. Commands below use the currentbakex
CLI. If you arrived here looking forstratumorpip install stratumoss, you’re in the
right place: github.com/invicton/bakex.
TL;DR
- A hardening runbook is a list of steps someone runs. A HardeningBlueprint YAML is a build artifact — if it wasn’t applied, the image doesn’t exist
- Linux hardening as code means declaring your entire OS security baseline in a single YAML file and building it reproducibly across any provider
bakex build blueprints/ubuntu/22.04/cis-l1-aws.yamleither produces a hardened image or fails — there is no partial state- The blueprint includes: target OS/provider/base image, compliance benchmark, filesystem layout, users, and per-rule overrides with documented justifications
- One blueprint file = one source of truth for your hardening posture, version-controlled and reviewable like any other infrastructure code
- Post-build OpenSCAP scan runs automatically — the image only snapshots if it passes
The Problem: A Runbook That Gets Skipped Once Is a Runbook That Gets Skipped
Hardening runbook
│
▼
Human executes
steps manually
│
├─── 47 deployments: followed correctly
│
└─── 1 deployment at 2am: step 12 skipped
│
▼
Instance in production
without audit logging,
SSH password auth enabled,
unnecessary services running
Linux hardening as code eliminates the human decision point. If the blueprint wasn’t applied, the image doesn’t exist.
EP01 showed that default cloud AMIs arrive pre-broken — unnecessary services, no audit logging, weak kernel parameters, SSH configured for convenience not security. The obvious response is a hardening script. But a script run by a human is still a process step. It can be skipped. It can be done halfway. It can drift across different engineers who each interpret “run the hardening script” slightly differently.
A production deployment last year. The platform team had a solid CIS L1 hardening runbook — 68 steps, well-documented, followed consistently. Then a critical incident at 2am required three new instances to be deployed on short notice. The engineer on call ran the provisioning script and, under pressure, skipped the hardening step with the intention of running it the next morning.
They didn’t. The three instances stayed in production unhardened for six weeks before an automated scan caught them. Audit logging wasn’t configured. SSH was accepting password authentication. Two unnecessary services were running that weren’t in the approved software list.
Nothing was breached. But the finding went into the next compliance report as a gap, the team spent a week remediating, and the post-mortem conclusion was “we need better runbook discipline.”
That’s the wrong conclusion. The runbook isn’t the problem. The problem is that hardening was a process step instead of a build constraint.
What Linux Hardening as Code Actually Means
Linux hardening as code is the same principle as infrastructure as code applied to OS security posture: the desired state is declared in a file, the file is the source of truth, and the execution is deterministic and repeatable.
HardeningBlueprint YAML
│
▼
bakex build
│
┌──────┴──────────────────┐
│ Provider Layer │
│ (cloud-init, disk │
│ names, metadata │
│ endpoint per provider) │
└──────┬──────────────────┘
│
┌──────┴──────────────────┐
│ Ansible-Lockdown │
│ (CIS L1/L2, STIG — │
│ the hardening steps) │
└──────┬──────────────────┘
│
┌──────┴──────────────────┐
│ OpenSCAP Scanner │
│ (post-build verify) │
└──────┬──────────────────┘
│
▼
Golden Image (AMI/GCP image/Azure image)
+ Compliance grade in image metadata
The YAML file is what you write. BakeX handles the rest.
The HardeningBlueprint YAML
The blueprint is the complete, auditable declaration of your OS security posture:
# blueprints/ubuntu/22.04/cis-l1-aws.yaml
bakex_version: "0.6.0"
kind: HardeningBlueprint
metadata:
name: ubuntu22-cis-l1-aws
version: "1.0.0"
description: >
CIS Ubuntu Linux 22.04 LTS Benchmark — Level 1 Server profile for AWS.
tags: [ubuntu, ubuntu22.04, cis, level1, server, aws]
target:
os: ubuntu22.04
arch: x86_64
provider: aws
base_image: ami-0c7217cdde317cfec # Ubuntu 22.04 LTS, us-east-1 (x86_64)
instance_type: t3.medium
root_volume_size_gb: 20
system:
hostname: hardened-node
timezone: UTC
locale: en_US.UTF-8
selinux_mode: null # Ubuntu uses AppArmor; null skips SELinux
filesystem: # CIS 1.1.x: separate mounts with noexec/nosuid/nodev
- device: tmpfs
mountpoint: /tmp
fstype: tmpfs
options: [rw, nosuid, nodev, noexec, relatime]
size: 2G
- device: tmpfs
mountpoint: /dev/shm
fstype: tmpfs
options: [rw, nosuid, nodev, noexec, relatime]
users:
root:
lock: true # CIS 5.4.2: lock the root account
accounts:
- name: bakex-admin
groups: [sudo]
shell: /bin/bash
ssh_authorized_keys: [] # Add: - "ssh-ed25519 AAAA..."
compliance:
benchmark: xccdf_org.ssgproject.content_benchmark_UBUNTU2204
profile: xccdf_org.ssgproject.content_profile_cis_level1_server
datastream: /usr/share/xml/scap/ssg/content/ssg-ubuntu2204-ds.xml
fail_on_findings: true
severity_threshold: medium
controls: # per-rule overrides, keyed by XCCDF rule ID
xccdf_org.ssgproject.content_rule_grub2_enable_selinux:
enabled: false
justification: >
Ubuntu Linux uses AppArmor as the mandatory access control framework.
SELinux is not installed or applicable on this distribution.
xccdf_org.ssgproject.content_rule_package_telnet_removed: true
That is not a simplified illustration — it is the shipped cis-l1-aws.yaml, trimmed of comments. Each section is explicit:
target — which OS, which provider, and which base image to harden. This is the only provider-specific section. Everything below it is portable.
compliance — the OpenSCAP benchmark, profile, and datastream. These are full XCCDF identifiers, not friendly names like cis-l1, because they’re passed straight to oscap. Ubuntu ships no SCAP content package, so BakeX downloads the matching datastream from a ComplianceAsCode release and checksum-verifies it.
filesystem — a list of mounts, each with its CIS-required options.
users — root lock state and the service accounts baked into the image.
controls — documented exceptions, keyed by XCCDF rule ID. Not suppressions — overrides with a recorded justification. A bare true enforces a rule; a map with enabled: false disables it and demands a reason. This is the difference between “we turned off this control” and “this control is not applicable, documented here.”
Building the Image
# Validate the blueprint before building — exit 0 if valid, 1 if not
bakex validate blueprints/ubuntu/22.04/cis-l1-aws.yaml
# Build — this will take 15-25 minutes
bakex build blueprints/ubuntu/22.04/cis-l1-aws.yaml
Validation is fast and offline:
OK blueprints/ubuntu/22.04/cis-l1-aws.yaml (HardeningBlueprint 'ubuntu22-cis-l1-aws')
1/1 blueprint(s) valid.
The build walks five stages, and the provider is read from the blueprint — there is no --provider flag to get wrong:
Building 'ubuntu22-cis-l1-aws' (aws) → job 7f3c9e82-4d1b-4c05-a7f3-c9e82d1b4c05
[2026-07-27T15:42:01] Provisioning via aws
[2026-07-27T15:42:45] Applying pre-hardening system configuration (hostname, filesystem, users)
[2026-07-27T15:43:12] Applying Ansible-Lockdown hardening roles
[2026-07-27T15:52:11] Running OpenSCAP compliance scan
[2026-07-27T15:54:10] Snapshotting golden image
[2026-07-27T15:54:47] Image ready: ami-0a7f3c9e82d1b4c05
Status: complete
Two things worth noticing. bakex build also accepts a bundled profile name, so bakex build ubuntu22-cis-l1-aws does the same thing without a path. And --json emits the job record instead of the log, which is what you want in CI.
If the post-build scan comes back below the configured threshold, the build fails — no AMI is created. The instance is terminated. The image does not exist. Exit code is 1, and Status: failed carries the reason.
That is the structural guarantee. You cannot skip a build step at 2am because at 2am you’re calling bakex build, not running steps manually.
The Control Override Mechanism
The override mechanism is what separates this from checkbox compliance.
Every security benchmark has controls that conflict with how production environments actually work. CIS L1 recommends /tmp on a separate partition. Many cloud instances use tmpfs with equivalent nodev, nosuid, noexec mount options. The intent of the control is satisfied. The literal implementation differs.
Without an override mechanism, you have two bad options: fail the scan (noisy, meaningless), or configure the scanner to ignore the control (undocumented, invisible to auditors).
The blueprint’s controls section gives you a third option: record the override and its justification in the same version-controlled artifact that produced the image.
controls:
xccdf_org.ssgproject.content_rule_grub2_enable_selinux:
enabled: false
justification: >
Ubuntu Linux uses AppArmor as the mandatory access control framework.
SELinux is not installed or applicable on this distribution.
Note that the key is the full XCCDF rule ID, not a CIS section number. That is deliberate — the rule ID is what OpenSCAP reports, so the override and the scanner finding line up exactly with no translation table in between.
Be precise about what this does today. As of v0.6.0 the controls block is declarative:
it records intent alongside the blueprint, and the UI reads it back, but it is not yet compiled
into an OpenSCAP tailoring file. The scan still evaluates the full profile, so an overridden
rule still shows up as a finding and still counts against the score. What you get right now is
provenance — the justification lives in git, next to the thing that built the image, reviewable
in a pull request — not automatic score adjustment.
That is a smaller claim than “documented exceptions are counted as compliant,” and it’s the
true one. Wiring overrides through to scan tailoring is the obvious next step, and it’s the
kind of well-scoped gap that makes a good first contribution.
What the Blueprint Gives You That a Script Doesn’t
| Hardening script | HardeningBlueprint YAML | |
|---|---|---|
| Version-controlled | Possible but not enforced | Always — it’s a file |
| Auditable exceptions | Typically not | Built-in override mechanism |
| Post-build verification | Manual or none | Automatic OpenSCAP scan |
| Image exists only if hardened | No | Yes — build fails if scan fails |
| Multi-cloud portability | Requires separate scripts | Swap the target block; compliance sections stay identical |
| Drift detection | Not possible | Rescan instance against original grade |
| Skippable at 2am | Yes | No — you’d have to change the build process |
The last row is the one that matters. A script is skippable because there’s a human in the loop. A blueprint is a build artifact — you can’t deploy the image without the blueprint having been applied, because the image is what the blueprint produces.
Validating a Blueprint Before Building
# Schema validation — one file
bakex validate blueprints/ubuntu/22.04/cis-l1-aws.yaml
# Or the whole library at once
bakex validate blueprints/**/*.yaml
# Machine-readable, for CI and agents
bakex validate blueprints/ubuntu/22.04/cis-l1-aws.yaml --json
bakex validate exits 0 when every file is valid and 1 when any file fails, which makes it a one-line CI gate. It never touches a cloud API — it is pure schema and cross-field checking, so it runs in your pipeline before you’ve paid for a build instance.
That cross-field part matters more than it sounds. Validation rejects OS/provider combinations the catalog doesn’t support, so a blueprint asking for an OS that provider can’t supply fails at validation time rather than fifteen minutes into a build.
If you want to generate or check blueprints from something other than the CLI, the format is published as a JSON Schema (Draft 2020-12) at docs/schema/hardening-blueprint.schema.json. Point your editor at it for autocomplete, or hand it to an LLM and let it write the blueprint.
Production Gotchas
Build time is 15–25 minutes. Ansible-Lockdown applies 144+ tasks for CIS L1. Build this into your pipeline timing — don’t expect golden images in 3 minutes.
Cloud-init ordering matters. On AWS, certain hardening steps (sysctl tuning, PAM configuration) interact with cloud-init. The BakeX provider layer handles sequencing — but if you add custom hardening roles, test the cloud-init interaction explicitly.
Some CIS controls conflict with managed service requirements. AWS Systems Manager Session Manager requires specific SSH configuration. RDS requires specific networking settings. Use the controls override section to document these — don’t suppress them silently.
Kernel parameter hardening requires a reboot. Controls in the 3.x (network parameters) and 1.5.x (kernel modules) sections apply sysctl changes that take effect on reboot. The BakeX build process reboots the instance before the OpenSCAP scan — don’t skip the reboot if you’re building manually.
Key Takeaways
- Linux hardening as code means the blueprint YAML is the build artifact — the image either exists and is hardened, or it doesn’t exist
- The
controlsoverride mechanism is the difference between undocumented suppressions and auditable, reasoned exceptions - Post-build OpenSCAP scan runs automatically — a failing grade blocks image creation
bakex validateis an offline, exit-code-shaped CI gate — it catches unsupported OS/provider pairs before a build instance is ever launched- The compliance sections are portable across providers (EP03 covers this): swap the
targetblock, and the benchmark, filesystem, users, and control overrides stay byte-identical - Version-controlling the blueprint gives you a complete history of what your OS security posture was at any point in time — the same way Terraform state tracks infrastructure
What’s Next
One blueprint, one provider. EP02 showed that the skip-at-2am problem is solved when hardening is a build artifact rather than a process step.
What it didn’t address: what happens when you expand to a second cloud. GCP uses different disk names. Azure cloud-init fires in a different order. The AWS metadata endpoint IP is different from every other provider. If you maintain separate hardening scripts per cloud, they drift within a month.
EP03 covers multi-cloud OS hardening: one compliance posture, six providers, no drift — and it shows the diff that proves it.
Next: multi-cloud OS hardening — one blueprint for AWS, GCP, and Azure
Get EP03 in your inbox when it publishes → linuxcent.com/subscribe