10 open-source Rego policies encoding benchmarks/stig/rhel_9 policies. Apache 2.0, Rego v1, ready to load into OPA or Enterprise OPA.
10 Rego policy files encoding benchmarks/stig/rhel_9 policies, part of the Rego Policy Libraries — a standalone, dependency-free collection of Open Policy Agent policies for published security and compliance standards. No orchestrator, no agent, no vendor runtime.
git clone https://github.com/ynotbhatc/rego_policy_libraries.git
opa eval -d rego_policy_libraries/benchmarks/stig/rhel_9 -f pretty 'data'
Or load into a running OPA:
for f in rego_policy_libraries/benchmarks/stig/rhel_9/*.rego; do
curl -X PUT --data-binary @"$f" "$OPA/v1/policies/$(basename $f .rego)"
done
Gating a change of state — evaluate a proposed action before it proceeds, and refuse it if it violates the standard. Measuring state — evaluate collected facts about an environment against the standard to produce compliance evidence. The same policy content serves both; only the integration differs.
account_auth.rego stig.rhel_9.account_authaudit_logging.rego stig.rhel_9.audit_loggingconfiguration_management.rego stig.rhel_9.configuration_managementfile_permissions.rego stig.rhel_9.file_permissionsnetwork.rego stig.rhel_9.networkpki_crypto.rego stig.rhel_9.pki_cryptoservices.rego stig.rhel_9.servicessoftware_integrity.rego stig.rhel_9.software_integrityssh_config.rego stig.rhel_9.ssh_configstig_rhel9_complete.rego stig.rhel_9Test coverage is published in
COVERAGE.md, and uncovered policies are the best
first contribution — each is small, self-contained, and either passes
opa test or does not. See
CONTRIBUTING.md.