Skip to content

lookout audit hardening

Workload security posture: containers running privileged or holding node-root capabilities, pods sharing the host network/PID/IPC namespaces, hostPath mounts, default-ServiceAccount tokens that something actually uses, and namespaces with no Pod Security Admission enforcement. Judges every pod-template owner in scope — Deployments, StatefulSets, DaemonSets, CronJobs, unowned Jobs and unowned Pods — plus the namespaces around them. Scope with —namespace or -A; scanned counts pod templates examined, the namespaces note counts namespaces.

MCP tool: k8s_audit_hardening (MCP profile: audit)

Terminal window
lookout audit hardening [flags]
FlagTypeDefaultMeaning
--namespacestring—limit the scan to one namespace
-Abool—scan all namespaces
--workloadstring—target one workload as <Kind>/<namespace>/<name>, e.g. Deployment/prod/api
--sinceduration—how far back to look (0 = command default)
--formatstringlogfmtoutput format: logfmt|json (one record per line either way)
--timeoutduration10sabort the invocation after this long (exit 1)
--kubeconfigstring—path to a kubeconfig file, instead of $KUBECONFIG / ~/.kube/config
--contextstring—kubeconfig context to read, instead of its current-context. Selects a cluster for THIS invocation only — nothing is written back — so concurrent invocations can target different clusters. Reported as context=<name> in the summary line
--exemptionsstring—path to a git-reviewed exemption file (YAML); covered findings are ANNOTATED with their reason and expiry and counted as exempt=<n> in the summary, never dropped

Every kind= this command can emit, and the severities it carries them at. Nothing else appears in its output; a kind absent from a run means the check looked and found nothing. See the finding-kind glossary for the whole vocabulary.

KindSeverityClaim
audit.privileged_containerwarninga container runs privileged or holds a node-root capability (ALL, SYS_ADMIN): a container escape is a node compromise
audit.host_namespacewarningthe pod shares the node’s network, PID, or IPC namespace
audit.hostpath_mountwarning, infothe pod mounts a host path; warning when it is writable, info when read-only
audit.default_sa_automountwarningthe pod runs as the namespace’s default ServiceAccount with its token automounted, and something in the pod can use it
audit.podsecurity_gapswarningthe namespace enforces no Pod Security Admission level, so none of the above is prevented

Beyond the shared envelope fields (kind, severity, namespace, kind_of_object, name, reason, message, fingerprint, exempt_reason, exempt_expires):

FieldMeaning
containerscontainers implicated by the finding — those running privileged, or holding a node-root capability
container_namestheir names, capped at 8 with a +N more tail
total_containerscontainers in the pod template, init containers included, so containers reads as a fraction
capabilitiesthe node-root capabilities added by those containers (ALL, SYS_ADMIN), sorted and deduplicated
host_pathshostPath volumes the template mounts; a declared but unmounted hostPath volume grants no access and is not counted
host_path_namesthe paths on the node, sorted and capped at 8
service_accountthe ServiceAccount the finding is about — always default, the one every pod gets when its template names none
mounting_workloadsworkloads in the namespace running as the default ServiceAccount without disabling automount at the pod level; the finding does not fire at 0
mounting_workload_namestheir Kind/name, sorted and capped at 8
pss_enforcethe namespace’s pod-security.kubernetes.io/enforce label, omitted when unset
pss_warnits /warn label, omitted when unset — set without /enforce means the namespace is in dry-run
pss_auditits /audit label, omitted when unset — same dry-run meaning
workloadspod templates this pass judged in the namespace, so an unenforced namespace with nothing in it reads differently from a busy one
namespacessummary note: namespaces examined — the denominator for every namespace-subject claim, which scanned (pod templates) does not cover

Output: one finding per line (logfmt; —format=json for one JSON object per line), keys in fixed order; healthy resources emit nothing. The final line is always the summary: scanned= findings= elapsed= — findings=0 with a summary present means “scanned and healthy”; a stream without a summary line is void. Exit 0 data, 1 runtime error (diagnostics on stderr only), 2 usage.

Terminal window
lookout audit hardening -A
lookout audit hardening --namespace=prod
lookout audit hardening -A --exemptions=exemptions.yaml --format=json