- Description
- Examples
- Cron Entry
- Reference - What the module is doing and how
- Assigning parameters using Hiera
- Limitations
- Contributing to the development of this module
- Credits
This is a module for managing the installation, configuration and initial database creation of the AIDE (Advanced Intrustion Detection Environment) package.
AIDE creates a database of files and their attributes from the rules that it finds in its config file. Once this database is initialized, it can be used to verify the integrity of the files contained within it. If the file attributes change according to the rules supplied, a summary of changes is logged and can be acted upon.
Refer to the AIDE manual for further details about configuration options.
The module will also add a cron job to periodically run the aide --check
command to verify the integrity of the AIDE database. Results will be logged to the log file (defaults to /var/log/aide/aide.log
) and to the AUTH log facility.
==========
class { 'aide': minute => 0, hour => 6, }
The simplest use of warrenpnz/aide
is to place a watch on the root directory, as follows.
aide::watch { 'example':
path => '/',
rules => 'p'
}
This example adds the line / R
which watches the permissions of all files on the operating system. Obviously, this is a simplistic, non useful solution.
Note that the path parameter is optional with the default being the watch name, e.g.
aide::watch { '/etc':
rules => 'p'
}
aide::watch { 'watch etc':
path => '/etc',
rules => 'p+md5'
}
This example adds the line /etc p+md5
which watches /etc
with both permissions and md5sums. This could also be implemented as follows.
aide::watch { '/etc':
rules => ['p', 'md5']
}
Sometimes you wish to use the same rule to watch multiple directories, and in keeping with the Don't Repeat Yourself(DRY) viewpoint, we should create a common name for the rule. This can be done via the aide::rule
stanza.
aide::rule { 'MyRule':
name => 'MyRule',
rules => ['p', 'md5']
}
aide::watch { '/etc':
rules => 'MyRule'
}
aide::watch { 'otherApp':
path => '/path/to/other/config/dir',
rules => 'MyRule'
}
Here we are defining a rule in called MyRule which will add the line MyRule = p+md5
. The next two stanzas can reference that rule. They will show up as /etc MyRule
and /path/to/other/config/dir MyRule
.
aide::watch { 'Exclude /var/log':
path => '/var/log',
type => 'exclude'
}
This with ignore all files under /var/log. It adds the line !/var/log
to the config file.
aide::watch { '/var/log/messages':
type => 'equals',
rules => 'MyRule'
}
This will watch only the file /var/log/messages. It will ignore /var/log/messages/thingie. It adds the line =/var/log/messages MyRule
to the config file.
A cron job is created during installation to run aide checks that use the hour
and minute
parameters to specify the run time.
This cron job can be disabled by setting the aide::nocheck
parameter.
The following parameters are accepted by the ::aide
class:
Data type: String.
AIDE package name.
Default value: aide
.
Data type: String.
AIDE version for installation passed to Package::ensure
Default value: latest
.
Data type: String.
Location of AIDE database file
Default value: /var/lib/aide/aide.db
.
Data type: String.
Location of update AIDE database file
Default value: /var/lib/aide/aide.db.new
.
Data type: Boolean.
Gzip the AIDE database file (may affect performance)
Default value: false
.
Data type: String.
AIDE check output log.
Default value: /var/log/aide/aide.log
.
Data type: Boolean.
Enables logging to the system logging service AUTH facility and /var/log/messages
.
Default value: true
.
Data type: Integer.
Minute of cron job to run
Default value: 0
.
Data type: Integer.
Hour of cron job to run
Default value: 0
.
Data type: Boolean.
Whether to enable or disable scheduled checks
Default value: true
.
Data type: String
Set this vaule to send email of results from aide --check in cron.
Default value: undef
Values can be set using hiera, for example:
aide::syslogout: false
aide::hour: 1
Currently supports RedHat, CentOS, Debian and Ubuntu Linux
Pull requests for new functionality or bug fixes that follow the Puppet style guide are welcome.
This module is a refactor based on the initial work of Matt Lauber and uses parameter based classes rather than includes and includes additional features for:
- enabling gzip for database
- allow for overrides of aide.conf and cron.d templates
- aide logging options