Frame Sentinel as IDS IPS and EDR

This commit is contained in:
Luna 2026-06-13 05:59:03 -07:00
parent 1a5b6f1d8d
commit 6a09fbb7f9
10 changed files with 47 additions and 33 deletions

View file

@ -1,9 +1,9 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""Enodia Sentinel — a Linux host security platform.
"""Enodia Sentinel — a Linux IDS/IPS/EDR platform.
Detection, file/package integrity, anti-rootkit checks, tamper-evidence,
forensic snapshots, and operator workflows. The Python re-architecture of the
bash v0 prototype.
Detection, explicit prevention workflows, file/package integrity, anti-rootkit
checks, tamper-evidence, forensic snapshots, and operator response. The Python
re-architecture of the bash v0 prototype.
"""
__version__ = "0.7.0"

View file

@ -51,7 +51,7 @@ def _cmd_check(cfg: Config) -> int:
def main(argv: list[str] | None = None) -> int:
parser = argparse.ArgumentParser(
prog="enodia-sentinel",
description="Linux host security platform.",
description="Linux IDS/IPS/EDR platform.",
)
parser.add_argument("--version", action="version",
version=f"enodia-sentinel {__version__}")