Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
github.com/jaormx/compliance-profile-operator
This is an operator which is in charge of managing compliance profiles. It builds upon OpenSCAP profiles in order to do this.
A ProfileBundle object is a wrapper on an OpenSCAP datastream, this will refer to a container image that packages an XCCDF file[1].
Example:
apiVersion: compliance.openshift.io/v1alpha1
kind: ProfileBundle
metadata:
name: example-profilebundle
spec:
contentImage: quay.io/jhrozek/ocp4-openscap-content:latest
contentFile: ssg-ocp4-ds.xml
status:
dataStreamStatus: VALID
Where:
A Profile is an object that represents a profile itself. Which is, un turn, a set of rules that'll be checked for in a system.
Profiles will be creates by the operator itself and are not meant to be created by administrators, these are derived from the ProfileBundle object.
Example:
apiVersion: compliance.openshift.io/v1alpha1
kind: Profile
metadata:
name: moderate
title: NIST 800-53 Moderate-Impact Baseline for Red Hat Enterprise Linux CoreOS
description: |-
This compliance profile reflects the core set of Moderate-Impact Baseline
...
id: xccdf_org.ssgproject.content_profile_moderate
rules:
- file_permissions_node_config
- account_disable_post_pw_expiration
Where:
A TailoredProfile is an object that represents changes that need to be done for a specific profile. Given that profiles are meant to be immutable, these changes need a specific object (which is this one).
Example:
kind: TailoredProfile
apiVersion: compliance.openshift.io/v1alpha1
metadata:
name: moderate-custom
spec:
extends: moderate
title: |
NIST 800-53 Moderate-Impact Baseline for Red Hat Enterprise Linux
CoreOS customized for this deployment
description: |
This compliance profile reflects the core set of Moderate-Impact
Baseline configuration settings for deployment of Red Hat
Enterprise
…
enableRules:
- ruleName: chronyd_client_only
rationale: We really need to enable this
disableRules:
- ruleName: chronyd_no_chronyc_network
rationale: This doesn’t apply to my cluster
variables:
- var_password_pam_difok: 5
status:
id: xccdf_org.ssgproject.content_profile_ocp4-moderate-custom
tailoringConfigMap:
name: moderate-custom-tp
namespace: this-namespace
Where:
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.