Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update and rename Readme.txt to Readme.md #45

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions playbooks/AIDE/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# AIDE - Advanced Intrusion Detection Environment

Advanced Intrusion Detection Environment (AIDE) is an application that uses various tools to detect changes to particular files on a system and report on them so that you can maintain baseline file integrity and detect unauthorized changes and potential tootkits.
AIDE takes a "snapshot" of the state of the system, this "snapshot" is used to build a database. When an administrator wants to run an integrity test, AIDE compares the database against the current status of the system. Should a change have happened to the system between the snapshot creation and the test, AIDE will detect it and report it

# Playbooks

`installaide.yaml`:

The install and configure playbook will perform the following:
- Become the superuser.
- Check if the AIDE database exists. This is needed for idempotency, and will fail if the AIDE database exists.
- Install the AIDE package.
- Initialize AIDE, create a baseline, and enable the database.

`checkaide.yaml`:

The check playbook which runs on an Oracle Linux 8 host will perform the following:
- Become the superuser.
- Run the aide check command and report the result.
- If no differences are found, then report no differences and pass the job.
- If differences are found, then report differences and fail the job.

`aide_create_new_baseline.yaml`:

A new service requirement may need multiple hosts to have additional software installed and configured, following this installation and configuration any subsequent AIDE checks will fail. The create new baseline playbook will perform the following:
- Become the superuser.
- Run the initialize aide command.
- Re-enable the database.

`remove_aide.yaml`:

If it is necessary to remove the AIDE configuration from multiple hosts, then the remove aide playbook which runs on an Oracle Linux 8 host will perform the following:
- Become the superuser.
- Remove the AIDE package.
- Clean up the AIDE file system.

For more details on Advanced Intrusion Detection Environment with Oracle Linux Automation Manager, refer to the [Technical Paper](https://www.oracle.com/a/ocom/docs/linux/using-advanced-intrusion-detection-environment.pdf).
1 change: 0 additions & 1 deletion playbooks/AIDE/Readme.txt

This file was deleted.