oscap-ssh (8) - Linux Manuals
oscap-ssh: Tool for running oscap over SSH and collecting results.
NAME
oscap-ssh - Tool for running oscap over SSH and collecting results.DESCRIPTION
oscap-ssh runs oscap tool on a remote system through SSH connection. The input files are transfered to the target system and after the scan finishes result files are transfered back. No temporary data remains on the remote machine.The tool requires bash, ssh, scp and mktemp to perform OVAL and XCCDF evaluation of remote machines. The remote machine also has to have oscap installed and in $PATH. This can be accomplished by installing openscap-scanner.
Usage of the tool mimics usage and options of oscap(8) tool.
USAGE
Evaluation of XCCDF content
$ oscap-ssh user [at] host 22 xccdf eval [options] INPUT_CONTENTOnly source datastreams are supported as INPUT_CONTENT!
Supported options are:
Supported options are:
Supported options are:
Specific option for oscap-ssh (must be first argument):
$ oscap-ssh root [at] 192.168.1.13 22 xccdf eval --profile xccdf_org.ssgproject.content_profile_common --report report.html /usr/share/xml/scap/ssg/content/ssg-fedora-ds.xml
$ oscap-ssh --sudo oscap-user [at] 192.168.1.13 22 xccdf eval --profile xccdf_org.ssgproject.content_profile_common --report report.html --results results.xml --results-arf arf.xml --tailoring-file ssg-fedora-ds-tailoring.xml /usr/share/xml/scap/ssg/content/ssg-fedora-ds.xml
Evaluation of OVAL content
$ oscap-ssh user [at] host 22 oval eval [options] INPUT_CONTENT
Collection of OVAL System Characteristic
$ oscap-ssh user [at] host 22 oval collect [options] INPUT_CONTENT
EXEMPLARY USAGE
Simple XCCDF evaluation
The following command evaluates a remote Fedora machine as root. HTML report is written out as report.html on the local machine. Can be executed from any machine that has ssh, scp and bash. The local machine does not need to have openscap installed.
XCCDF Evaluation with tailoring file
The following command uses a tailoring file and also copies back ARF and XCCDF results. The tailoring file is automatically copied from local machine to remote.
Running remotely as root
Note that the openscap scanner is best run by the 'root' user as in the first example above. To do this, the "PermitRootLogin" directive must be enabled in /etc/ssh/sshd_config, which is itself a security violation. A safer approach is to enable a non-privileged user ('oscap-user' in the second example above) to run only the oscap binary as root (with the '--sudo' flag) by updating the remote machine's 'sudoers' file or adding a file like /etc/sudoers.d/99-oscap-user:
REPORTING BUGS
Please report bugs using https://github.com/OpenSCAP/openscap/issues
AUTHORS
Martin Preisler <mpreisle [at] redhat.com>
Šimon Lukašík <slukasik [at] redhat.com>