SaltStack Management
Last updated
Last updated
The REMnux distro uses to automate the installation and configuration of the tools that comprise the distro. This is accomplished using , each one describing the steps necessary to set up the software component. These files are stored in , and are available for your review. Read on to learn how REMnux uses these State Files to manage the configuration of a REMnux system.
A state file can direct SaltStack to install a tool by supporting a variety of formats in which such tools migh be packages, including , , Git repositories, , etc. Each state file represents one aspect of the state in which the system should be after SaltStack runs. The files follow the YAML markup language.
For example, here's the Salt state file for installing , a powerful debugger for examining ELF binaries:
The line edb-debugger:
specifies the name of the Ubuntu package that SaltStack should install. The pkgrepo: remnux
line specifies that SaltStack will find this package in the Ubuntu package repository named "remnux." The require
statement explains that this package depends on "xterm." The distro also includes state files that explain SaltStack should install and .
Here's an example of a Salt state file to install , a Python library for interacting with Zip file archives. SaltStack will use the Python 3 version of pip (pip3), which is installed using , to install pyzipper from the standard PyPI repository of Python software:
In the example above:
replace
directs SaltStack not to replace the file if it already exists.
user
and group
specify that the file should be owned by the user and the user's group.
makedirs
direct SaltStack to create the directory structure so the file can be placed in the location specified by name
.
The state file instructions above rely on the values home
and user
, which are set earlier in the file:
Since pyzipper depends on the "pycryptodomex" package, which might not be automatically installed by pip, the state file above explicitly specifies as a dependency.
REMnux also uses Salt state files configure the environment and the tools installed as part of the distro. For example, here's a short excerpt from , which is a reverse-engineering tool that includes a disassembler and debugger. (The installation of Ghira is handled using a separate file.)
specifies the desired state of the Ghidra "preferences" file, located in the user's home directory.
source
of the file is where this state file resides; this directs SaltStack to copy this file to the location specified by name
.
This excerpt from the Ghidra configuration state file uses the "" feature of SaltStack, which gives SaltStack access to named values defined before the state file has a chance to run. In this case, the state file sets the user
value by retrieving the pillar variable named remnux_user
, which is normally set by ; if it's not available, SaltStack is directed to use the default value "remnux." Further, depending on the user
value, the state file sets the home
value to point to the user's home directory.