mirror of
https://github.com/usnistgov/macos_security.git
synced 2026-03-03 17:02:01 +00:00
* Introduce SCAP genneration code * Add input creation commands * Initial documentation * Parameterize benchmark @id suffix * Remove OpenSCAP reference * Remove OpenSCAP reference from README.md * Change description to simply be the title * Remove <notice> * Parameterize data stream collection suffix * Make inclusion of SCAP references optional by default. * Pursue elusive document version * Comment out debug message * Correct typo in Makefile * Correct emit-namespaces and emit-schemaLocation Both currently unused at this time Insert xml-model processing instruction for SCAP schema * Provide transform to indent and excise some node types This can be used to render concise SCAP XML documents a bit easier to read. (But at the cost of increased size). XML comment and process0-instruction nodes will be excised. The transform can be used with any XSLT 1.0+ implementation (such as xsltproc). * Add timestamp to report and identify description * Remove superfluous <mark> element * Pursue wandering contributors * Add validation example to Makefile * Add "-g" argument to generate_guidance.py * Remove xsi:schemaLocation removal * Correct xsi:schemaLocation targets * Add validation step * Correct xsi:schemaLocation targets (again) To use absolute locations * Add CPE 2.3 platform designation * Correct intra-document CPE-related constructs * Correct double-reversed id "namespace" and "name" * Correct double-reversed id "namespace" and "name" * Correct Group warning selection * Tidy up document pre-root comments * Remove validation step from default make Add SCAP and NVD references. * SCAP 1.3 Schematron rules Find errors missed by others. Not part of build steps.
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ocil xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://scap.nist.gov/schema/ocil/2.0 ocil-2.0.xsd"
|
|
xmlns="http://scap.nist.gov/schema/ocil/2.0">
|
|
<generator>
|
|
<product_name>Manual Labor</product_name>
|
|
<product_version>1</product_version>
|
|
<schema_version>2.0</schema_version>
|
|
<timestamp>2020-06-18T17:00:00Z</timestamp>
|
|
</generator>
|
|
<questionnaires>
|
|
<questionnaire id="ocil:gov.nist.mscp.content:questionnaire:1">
|
|
<title>Obtain a pass or a fail</title>
|
|
<actions>
|
|
<test_action_ref>ocil:gov.nist.mscp.content:testaction:1</test_action_ref>
|
|
</actions>
|
|
</questionnaire>
|
|
</questionnaires>
|
|
<test_actions>
|
|
<boolean_question_test_action id="ocil:gov.nist.mscp.content:testaction:1" question_ref="ocil:gov.nist.mscp.content:question:1">
|
|
<when_true>
|
|
<result>PASS</result>
|
|
</when_true>
|
|
<when_false>
|
|
<result>FAIL</result>
|
|
</when_false>
|
|
</boolean_question_test_action>
|
|
</test_actions>
|
|
<questions>
|
|
<boolean_question id="ocil:gov.nist.mscp.content:question:1">
|
|
<question_text>Do you wish this checklist item to be considered to have passed?</question_text>
|
|
</boolean_question>
|
|
</questions>
|
|
</ocil>
|