Ensure gnutls-utils is installed
An XCCDF Rule
Description
The gnutls-utils
package can be installed with the following command:
$ apt-get install gnutls-utils
Rationale
GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. This package contains command line TLS client and server and certificate manipulation tools.
- ID
- xccdf_org.ssgproject.content_rule_package_gnutls-utils_installed
- Severity
- Medium
- References
- Updated
Remediation - Shell Script
DEBIAN_FRONTEND=noninteractive apt-get install -y "gnutls-utils"
Remediation - OS Build Blueprint
[[packages]]
name = "gnutls-utils"
version = "*"
Remediation - Ansible
- name: Ensure gnutls-utils is installed
package:
name: gnutls-utils
state: present
tags:
- enable_strategy
Remediation - Puppet
include install_gnutls-utils
class install_gnutls-utils {
package { 'gnutls-utils':
ensure => 'installed',
}