STIGQter STIGQter: STIG Summary: Red Hat OpenShift Container Platform 4.x Security Technical Implementation Guide Version: 2 Release: 6 Benchmark Date: 01 Jul 2026:

OpenShift must disable virtual syscalls.

DISA Rule

SV-257549r1137645_rule

Vulnerability Number

V-257549

Group Title

SRG-APP-000243-CTR-000600

Rule Version

CNTR-OS-000570

Severity

CAT II

CCI(s)

Weight

10

Fix Recommendation

Apply the machine config to disable virtual syscalls by executing the following:

for mcpool in $(oc get mcp -oname | sed "s:.*/::" ); do
echo "apiVersion: machineconfiguration.openshift.io/v1
kind: MachineConfig
metadata:
name: 05-kernelarg-vsyscall-none-$mcpool
labels:
machineconfiguration.openshift.io/role: $mcpool
spec:
config:
ignition:
version: 3.1.0
kernelArguments:
- vsyscall=none
" | oc apply -f -
done

Check Contents

Check the current CoreOS boot loader configuration has virtual syscalls disabled by executing the following:

for node in $(oc get node -oname); do oc debug $node -- chroot /host /bin/bash -c 'echo -n "$HOSTNAME "; grep vsyscall=none boot/loader/entries/*.conf || echo "not found"' 2>/dev/null; done

If "vsyscall" is not set to "none" or returns "not found", this is a finding.

Vulnerability Number

V-257549

Documentable

False

Rule Version

CNTR-OS-000570

Severity Override Guidance

Check the current CoreOS boot loader configuration has virtual syscalls disabled by executing the following:

for node in $(oc get node -oname); do oc debug $node -- chroot /host /bin/bash -c 'echo -n "$HOSTNAME "; grep vsyscall=none boot/loader/entries/*.conf || echo "not found"' 2>/dev/null; done

If "vsyscall" is not set to "none" or returns "not found", this is a finding.

Check Content Reference

M

Target Key

5547