Skip to content

Packer plugin cnspec by Mondoo - Build machine images free of security misconfigurations and vulnerabilities!

License

Notifications You must be signed in to change notification settings

mondoohq/packer-plugin-cnspec

Repository files navigation

Packer Plugin for Mondoo cnspec

packer-plugin-cnspec illustration

Packer Plugin cnspec by Mondoo scans Linux and Windows HashiCorp Packer builds for vulnerabilities and security misconfigurations. The plugin retrieves CVE data from Mondoo that is updated daily with the latest CVEs and advisories. Additionally, cnspec runs security scans using cnspec-policies to uncover common misconfigurations that open your hosts to the risk of attack. cnspec supports scanning Linux, Windows, and macOS, as well as Docker containers.

Plugin modes

Packer Plugin cnspec is designed to work in one of two modes:

  • Unregistered - In unregistered mode, the plugin works without being registered with Mondoo Platform, and is designed to provide baseline security scanning with minimal configuration. On Linux builds, the plugin runs the Linux Security by Mondoo policy. On Windows builds, the plugin runs the Windows Security by Mondoo policy. Each of these policies provides security hardening checks based on industry standards for Linux and Windows. Scan results display in STDOUT during the Packer run.

  • Registered - In registered mode, the plugin is registered with your account in Mondoo Platform using a service account. This allows you to configure and customize any of the policies in Mondoo Platform, including CIS benchmarks and more. Scan results are shown in STDOUT and sent back to Mondoo Platform for your records.

Tutorials

Check out the Packer tutorials on the Mondoo documentation site:

Install Packer plugin cnspec

You can install Packer Plugin cnspec using the packer init command, install it manually, or build it from source.

Install using the packer init command

As of version 1.7, Packer's packer init command allows automatic installation of Packer plugins. For more information, read the Packer documentation.

To install Packer Plugin cnspec:

  1. Copy and paste this code into your Packer configuration.
packer {
  required_plugins {
    cnspec = {
      version = ">= 10.0.0"
      source  = "github.com/mondoohq/cnspec"
    }
  }
}
  1. Run this command:
packer init /path/to/template.pkr.hcl

Install manually

You can find pre-built binary releases of the plugin here.

Once you have downloaded the latest archive corresponding to your target OS, uncompress it to retrieve the plugin binary file corresponding to your platform. To install the plugin, follow the Packer documentation on installing a plugin.

Build from source

If you prefer to build the plugin from source:

  1. Clone this GitHub repository locally.

  2. Run this command from the root directory: go build

  3. After you successfully compile, the packer-plugin-cnspec plugin binary file is in the root directory. Copy the binary into ~/.packer.d/plugins/ by running this command: make dev

  4. To install the compiled plugin, follow the Packer documentation on installing plugins.

After building the cnspec plugin successfully, use the latest version of Packer to build a machine and verify your changes. In the example folder we provide a basic template. To force Packer to use the development binary installed in the previous step, comment out the packer {} block.

To use the developer plugin, set the packer plugin environment variable:

export PACKER_PLUGIN_PATH=~/.packer.d/plugins
packer build amazon-linux-2.pkr.hcl

Configure Packer Plugin cnspec

For detailed instructions on configuring the Packer Plugin cnspec, please visit the official HashiCorp documentation at Packer Plugin cnspec. There you'll find comprehensive guidance on setup and configuration options.

Sample Packer Templates

You can find example Packer templates in the examples directory in this repository. You can also find a GitHub Action workflow example of how to use cnspec to test builds as part of a CI/CD pipeline.

Get Started with cnspec

cnspec's benefits extend well beyond securing Packer builds! To start exploring, download cnspec.

Contributing

If you think you've found a bug in the code or you have a question about using this software, please reach out to us by opening an issue in this GitHub repository.

Contributions to this project are welcome! If you want to fix a bug, please do so by opening a pull request in this GitHub repository. If you want to add a feature, please start by opening an issue in this GitHub repository to discuss it with us beforehand.

Join the community!

Join the Mondoo Community GitHub Discussions to collaborate on policy as code and security automation.