Compare commits
No commits in common. "c8" and "c8-beta" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/openscap-1.3.13.tar.gz
|
||||
SOURCES/openscap-1.3.7.tar.gz
|
||||
|
||||
@ -1 +1 @@
|
||||
3fad4a88243c254a23faacef8a246ba761d49697 SOURCES/openscap-1.3.13.tar.gz
|
||||
238acbe6e18162b54cbdd0083c52511c00faa268 SOURCES/openscap-1.3.7.tar.gz
|
||||
|
||||
@ -1,45 +0,0 @@
|
||||
From 3a9fbd448ac18e50dfdf5a60af043cda7cdd63d0 Mon Sep 17 00:00:00 2001
|
||||
From: Matthew Burket <mburket@redhat.com>
|
||||
Date: Fri, 5 Dec 2025 09:12:43 -0600
|
||||
Subject: [PATCH] Always check the current lists before inserting on blueprints
|
||||
|
||||
Fixes OpenSCAP#2282
|
||||
---
|
||||
src/XCCDF_POLICY/xccdf_policy_remediate.c | 2 +-
|
||||
.../unittests/test_remediation_blueprint.xccdf.xml | 10 ++++++++++
|
||||
2 files changed, 11 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/XCCDF_POLICY/xccdf_policy_remediate.c b/src/XCCDF_POLICY/xccdf_policy_remediate.c
|
||||
index 842ef2df9d..c7c02f0135 100644
|
||||
--- a/src/XCCDF_POLICY/xccdf_policy_remediate.c
|
||||
+++ b/src/XCCDF_POLICY/xccdf_policy_remediate.c
|
||||
@@ -724,7 +724,7 @@ static inline int _parse_blueprint_fix(const char *fix_text, struct blueprint_cu
|
||||
memcpy(val, &fix_text[ovector[2]], ovector[3] - ovector[2]);
|
||||
val[ovector[3] - ovector[2]] = '\0';
|
||||
|
||||
- if (!oscap_list_contains(customizations->kernel_append, val, (oscap_cmp_func) oscap_streq)) {
|
||||
+ if (!oscap_list_contains(tab[i].list, val, (oscap_cmp_func) oscap_streq)) {
|
||||
oscap_list_prepend(tab[i].list, val);
|
||||
} else {
|
||||
free(val);
|
||||
diff --git a/tests/API/XCCDF/unittests/test_remediation_blueprint.xccdf.xml b/tests/API/XCCDF/unittests/test_remediation_blueprint.xccdf.xml
|
||||
index 2fc909795b..de3b8468a8 100644
|
||||
--- a/tests/API/XCCDF/unittests/test_remediation_blueprint.xccdf.xml
|
||||
+++ b/tests/API/XCCDF/unittests/test_remediation_blueprint.xccdf.xml
|
||||
@@ -104,6 +104,16 @@ enabled = ["sshd"]
|
||||
<fix system="urn:redhat:osbuild:blueprint">
|
||||
[customizations.services]
|
||||
masked = ["evil"]
|
||||
+</fix>
|
||||
+ <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5">
|
||||
+ <check-content-ref href="test_remediation_simple.oval.xml" name="oval:moc.elpmaxe.www:def:1"/>
|
||||
+ </check>
|
||||
+ </Rule>
|
||||
+ <Rule selected="true" id="xccdf_moc.elpmaxe.www_rule_11">
|
||||
+ <title>Enable sshd</title>
|
||||
+ <fix system="urn:redhat:osbuild:blueprint">
|
||||
+[customizations.services]
|
||||
+enabled = ["sshd"]
|
||||
</fix>
|
||||
<check system="http://oval.mitre.org/XMLSchema/oval-definitions-5">
|
||||
<check-content-ref href="test_remediation_simple.oval.xml" name="oval:moc.elpmaxe.www:def:1"/>
|
||||
@ -1,12 +1,11 @@
|
||||
Name: openscap
|
||||
Version: 1.3.13
|
||||
Version: 1.3.7
|
||||
Release: 1%{?dist}
|
||||
Summary: Set of open source libraries enabling integration of the SCAP line of standards
|
||||
Group: System Environment/Libraries
|
||||
License: LGPLv2+
|
||||
URL: http://www.open-scap.org/
|
||||
Source0: https://github.com/OpenSCAP/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
|
||||
Patch0: 2284.patch
|
||||
BuildRequires: cmake >= 2.6
|
||||
BuildRequires: swig libxml2-devel libxslt-devel perl-generators perl-XML-Parser
|
||||
BuildRequires: rpm-devel
|
||||
@ -135,12 +134,10 @@ cd build
|
||||
%cmake -DENABLE_PERL=OFF \
|
||||
-DENABLE_DOCS=ON \
|
||||
-DENABLE_OSCAP_UTIL_DOCKER=OFF \
|
||||
-DENABLE_OSCAP_UTIL_IM=OFF \
|
||||
-DENABLE_OSCAP_UTIL_CHROOT=ON \
|
||||
-DENABLE_OSCAP_UTIL_PODMAN=ON \
|
||||
-DENABLE_OSCAP_UTIL_VM=ON \
|
||||
-DENABLE_OSCAP_REMEDIATE_SERVICE=OFF \
|
||||
-DOPENSCAP_PROBE_LINUX_DPKGINFO=OFF \
|
||||
..
|
||||
make %{?_smp_mflags}
|
||||
make docs
|
||||
@ -218,34 +215,6 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_bindir}/oscap-run-sce-script
|
||||
|
||||
%changelog
|
||||
* Mon Dec 08 2025 Matthew Burket <mburket@redhat.com> - 1.3.13-1
|
||||
- Rebase to the latest upstream version (RHEL-133977)
|
||||
- Add note that oscap xccdf eval --local-file only works with SCAP 1.3 data streams (RHEL-74343)
|
||||
|
||||
* Mon May 05 2025 Evgenii Kolesnikov <ekolesni@redhat.com> - 1:1.3.12-2
|
||||
- Initialize tmt (RHEL-43240)
|
||||
|
||||
* Fri Apr 25 2025 Evgenii Kolesnikov <ekolesni@redhat.com> - 1:1.3.12-1
|
||||
- Upgrade to the latest upstream release (RHEL-88842)
|
||||
- Fix error when tailoring DISA content (RHEL-34104)
|
||||
- Fix OSCAP_PROBE_IGNORE_PATHS handling (RHEL-67297)
|
||||
|
||||
* Wed Aug 07 2024 Milan Lysonek <mlysonek@redhat.com> - 1.3.10-3
|
||||
- Switch gating to tmt plan (RHEL-43240)
|
||||
|
||||
* Mon Apr 08 2024 Jan Černý <jcerny@redhat.com> - 1.3.10-2
|
||||
- Explicitely disable dpkginfo probe
|
||||
|
||||
* Tue Apr 02 2024 Jan Černý <jcerny@redhat.com> - 1.3.10-1
|
||||
- Rebase to the latest upstream version (RHEL-31221)
|
||||
- Add ability to define a limit of collected items (RHEL-11925)
|
||||
- Add option --references that can select rules based on their reference (RHEL-1479)
|
||||
|
||||
* Fri Jul 14 2023 Evgenii Kolesnikov <ekolesni@redhat.com> - 1.3.8-1
|
||||
- Upgrade to the latest upstream release (rhbz#2217441)
|
||||
- Add offline support for sysctl probe (rhbz#2185791)
|
||||
- Fix systemd* probes unit enumeration (rhbz#2219533)
|
||||
|
||||
* Fri Jan 27 2023 Jan Černý <jcerny@redhat.com> - 1.3.7-1
|
||||
- Upgrade to the latest upstream release (rhbz#2159290)
|
||||
- Fix error when processing OVAL filters (rhbz#2126882)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user