This is an oc
plugin that is meant to be used with the
compliance-operator.
It's a set of utilities that make it easier to use the operator.
Helps download the raw compliance results from the Persistent Volume that the operator stores them at.
To fetch the results of all the scans from a scansettingbinding, simply do:
$ oc compliance fetch-raw scansettingbinding nist-moderate -o resultsdir/
It'll be a similar operator if you want to use ComplianceSuite
or
ComplianceScan
objects.
Forces the scan or set of scans to re-run on command instead of waiting for them to be scheduled.
$ oc compliance rerun-now scansettingbinding nist-moderate
Creates a report of what compliance standards and controls will a benchmark fulfil. It also shows the rules that address each control.
$ oc compliance controls profile rhcos4-moderate
+-------------+------------------+-----------------------------------------------------------------------------------+
| FRAMEWORK | CONTROLS | RULES |
+-------------+------------------+-----------------------------------------------------------------------------------+
| NERC-CIP | CIP-002-3 R1.1 | rhcos4-sysctl-kernel-kptr-restrict |
+ +------------------+ +
| | CIP-002-3 R1.2 | |
+ +------------------+-----------------------------------------------------------------------------------+
| | CIP-003-3 R1.3 | rhcos4-no-netrc-files |
+ +------------------+ +
| | CIP-003-3 R3 | |
+ +------------------+ +
| | CIP-003-3 R3.1 | |
+ +------------------+ +
| | CIP-003-3 R3.2 | |
+ +------------------+ +
| | CIP-003-3 R3.3 | |
+ +------------------+-----------------------------------------------------------------------------------+
| | CIP-003-3 R4.2 | rhcos4-configure-crypto-policy |
+ + +-----------------------------------------------------------------------------------+
...
This will display the rules and controls for all benchmarks.
It's also possible to filter for a specific benchmark using the -b
flag.
Creates a ScanSettingBinding
or the given parameters
$ oc compliance bind -N my-binding profile/rhcos4-moderate
--dry-run
is also supported. This will print the yaml that's needed to create the object.
Gathers information in one place about a specific compliance result.
oc compliance view-result rhcos4-e8-worker-sysctl-kernel-kptr-restrict
+----------------------+---------------------------------------------------------------------------------+
| KEY | VALUE |
+----------------------+---------------------------------------------------------------------------------+
| title | Restrict Exposed Kernel |
| | Pointer Addresses Access |
+----------------------+---------------------------------------------------------------------------------+
| status | PASS |
+----------------------+---------------------------------------------------------------------------------+
| severity | medium |
+----------------------+---------------------------------------------------------------------------------+
| description | <code>kernel.kptr_restrict</code><pre>$ sudo sysctl -w |
| | kernel.kptr_restrict=1</pre><code>/etc/sysctl.d</code><pre>kernel.kptr_restrict |
| | = 1</pre>: |
+----------------------+---------------------------------------------------------------------------------+
| rationale | <code>seq_printf()</code>) |
| | exposes
kernel writeable |
| | structures that can contain |
| | functions pointers. If a write |
| | vulnereability occurs
in |
| | the kernel allowing a |
| | write access to any of this |
| | structure, the kernel can be |
| | compromise. This
option |
| | disallow any program withtout |
| | the CAP_SYSLOG capability from |
| | getting the kernel pointers |
| | addresses,
replacing them |
| | with 0. |
+----------------------+---------------------------------------------------------------------------------+
| NIST-800-53 Controls | SC-30, SC-30(2), SC-30(5), |
| | CM-6(a) |
+----------------------+---------------------------------------------------------------------------------+
| Avalailable Fix | Yes |
+----------------------+---------------------------------------------------------------------------------+
| Fix Object | --- |
| | |
| | apiVersion: |
| | machineconfiguration.openshift.io/v1 |
| | |
| | kind: MachineConfig |
| | |
| | spec: |
| | |
| | config: |
| | |
| | ignition: |
| | |
| | version: 3.1.0 |
| | |
| | storage: |
| | |
| | files: |
| | |
| | - contents: |
| | |
| | source: |
| | data:,kernel.kptr_restrict%3D1 |
| | |
| | mode: 420 |
| | |
| | path: |
| | /etc/sysctl.d/75-sysctl_kernel_kptr_restrict.conf |
| | |
| | |
+----------------------+---------------------------------------------------------------------------------+
| Result Object Name | rhcos4-e8-worker-sysctl-kernel-kptr-restrict |
+----------------------+---------------------------------------------------------------------------------+
| Rule Object Name | rhcos4-sysctl-kernel-kptr-restrict |
+----------------------+---------------------------------------------------------------------------------+
| Remediation Created | No |
+----------------------+---------------------------------------------------------------------------------+
Helps download the remediations the Compliance Operator recommends. These are stored as YAML files in the filesystem, so one would then be able to apply them to a cluster.
Note that if the MachineConfigs objects will be rendered with the default roles
master
and worker
. If you need different ones, you can add them via the
--mc-roles
flag.
oc compliance fetch-fixes profile ocp4-cis -o tmp/
No fixes to persist for rule 'ocp4-accounts-restrict-service-account-tokens'
...
No fixes to persist for rule 'ocp4-api-server-audit-log-maxbackup'
Persisted rule fix to tmp/ocp4-api-server-audit-log-maxsize.yaml
Persisted rule fix to tmp/ocp4-api-server-encryption-provider-cipher.yaml
Persisted rule fix to tmp/ocp4-api-server-encryption-provider-config.yaml
There is an install
target that's already set up in the Makefile for this
project.
However, as any other oc
plugin, you may just copy the binary to the same
directory where the oc
binary is.
The master
branch trackes the latest development, even though this plugin is
considered feature complete.
The stable
branch offers a stable base that isn't the tip of the development
branch (master
). So long as the master
branch doesn't contain backwards
incompatible changes, the stable
branch will be rebased on top of master
to
pickup new changes, namely dependency updates.