Blame README.md

Packit Service 569379
# OpenSCAP
Packit Service 569379
Packit Service 569379
[![Build status](https://ci.appveyor.com/api/projects/status/3o5fnld1m98bo0so/branch/master?svg=true)](https://ci.appveyor.com/project/OpenSCAP/openscap/branch/master)
Packit Service 569379
[![Build Status](https://travis-ci.org/OpenSCAP/openscap.svg?branch=master)](https://travis-ci.org/OpenSCAP/openscap)
Packit Service 569379
Packit Service 569379
Open Source Security Compliance Solution
Packit Service 569379
Packit Service 569379
## About
Packit Service 569379
Packit Service 569379
The oscap program is a command line tool that allows users to load, scan,
Packit Service 569379
validate, edit, and export SCAP documents.
Packit Service 569379
Packit Service 569379
 * Homepage of the project: [www.open-scap.org](http://www.open-scap.org)
Packit Service 569379
 * User Manual: [OpenSCAP User Manual](docs/manual/manual.adoc)
Packit Service 569379
 * Compilation, testing and debugging: [OpenSCAP Developer Manual](docs/developer/developer.adoc)
Packit Service 569379
 * For new contributors: [How to contribute](docs/contribute/contribute.adoc)
Packit Service 569379
Packit Service 569379
## Contributing
Packit Service 569379
Packit Service 569379
We welcome all contributions to the OpenSCAP project. If you would like to contribute, either by fixing existing issues or adding new features, please check out our [contribution guide](docs/contribute/contribute.adoc) to get started. If you would like to discuss anything, ask questions, or if you need additional help getting started, you can either send a message to our FreeNode IRC channel, **#openscap**, or to our [mailing list](https://www.redhat.com/mailman/listinfo/open-scap-list).
Packit Service 569379
Packit Service 569379
Packit Service 569379
## Use cases
Packit Service 569379
Packit Service 569379
### SCAP Content Validation
Packit Service 569379
Packit Service 569379
 * The following example shows how to validate a given source data stream; all components within the data stream are validated (XCCDF, OVAL, OCIL, CPE, and possibly other components):
Packit Service 569379
```
Packit Service 569379
oscap ds sds-validate scap-ds.xml
Packit Service 569379
```
Packit Service 569379
Packit Service 569379
Packit Service 569379
### Scanning
Packit Service 569379
Packit Service 569379
 * To evaluate all definitions within the given OVAL Definition file, run the following command:
Packit Service 569379
```
Packit Service 569379
oscap oval eval --results oval-results.xml scap-oval.xml
Packit Service 569379
```
Packit Service 569379
*where scap-oval.xml is the OVAL Definition file and oval-results.xml is the OVAL Result file.*
Packit Service 569379
Packit Service 569379
 * To evaluate all definitions from the OVAL component that are part of a particular data stream within a SCAP data stream collection, run the following command:
Packit Service 569379
```
Packit Service 569379
oscap oval eval --datastream-id ds.xml --oval-id xccdf.xml --results oval-results.xml scap-ds.xml
Packit Service 569379
```
Packit Service 569379
*where ds.xml is the given data stream, xccdf.xml is an XCCDF file specifying the OVAL component, oval-results.xml is the OVAL Result file, and scap-ds.xml is a file representing the SCAP data stream collection.*
Packit Service 569379
Packit Service 569379
 * To evaluate a specific profile in an XCCDF file run this command:
Packit Service 569379
```
Packit Service 569379
oscap xccdf eval --profile Desktop --results xccdf-results.xml --cpe cpe-dictionary.xml scap-xccdf.xml
Packit Service 569379
```
Packit Service 569379
*where scap-xccdf.xml is the XCCDF document, Desktop is the selected profile from the XCCDF document, xccdf-results.xml is a file storing the scan results, and cpe-dictionary.xml is the CPE dictionary.*
Packit Service 569379
Packit Service 569379
 * To evaluate a specific XCCDF benchmark that is part of a data stream within a SCAP data stream collection run the following command:
Packit Service 569379
```
Packit Service 569379
oscap xccdf eval --datastream-id ds.xml --xccdf-id xccdf.xml --results xccdf-results.xml scap-ds.xml
Packit Service 569379
```
Packit Service 569379
*where scap-ds.xml is a file representing the SCAP data stream collection, ds.xml is the particular data stream, xccdf.xml is ID of the component-ref pointing to the desired XCCDF document, and xccdf-results.xml is a file containing the scan results.*
Packit Service 569379
Packit Service 569379
Packit Service 569379
### Document generation
Packit Service 569379
Packit Service 569379
 * without XCCDF rules
Packit Service 569379
```
Packit Service 569379
oscap xccdf generate guide XCCDF-FILE > XCCDF-GUIDE-FILE
Packit Service 569379
```
Packit Service 569379
Packit Service 569379
 * with XCCDF rules
Packit Service 569379
```
Packit Service 569379
oscap xccdf generate guide --profile PROFILE XCCDF-FILE > XCCDF-GUIDE-FILE
Packit Service 569379
```
Packit Service 569379
Packit Service 569379
 *  generate report from scanning
Packit Service 569379
```
Packit Service 569379
oscap xccdf generate report XCCDF-RESULT-FILE > XCCDF-REPORT-FILE
Packit Service 569379
```