commit b56f87a588ab92139b4ed45db51ba20b16c6d4dc Author: KanjiG Date: Tue Jul 28 20:43:01 2026 +0200 Initial commit: Veritas Aegis Security Suite Modules diff --git a/auditor-wipe/Cargo.toml b/auditor-wipe/Cargo.toml new file mode 100644 index 0000000..a5ac15e --- /dev/null +++ b/auditor-wipe/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "auditor-wipe" +version.workspace = true +edition.workspace = true +authors.workspace = true + +[dependencies] +veritas-core = { path = "../../veritas-core" } +anyhow.workspace = true diff --git a/auditor-wipe/src/main.rs b/auditor-wipe/src/main.rs new file mode 100644 index 0000000..8af5b87 --- /dev/null +++ b/auditor-wipe/src/main.rs @@ -0,0 +1,6 @@ +use anyhow::Result; + +fn main() -> Result<()> { + println!("🛡️ Veritas Auditor & Wipe v1.0 - DoD Safe Wiping"); + Ok(()) +} diff --git a/processguard/Cargo.toml b/processguard/Cargo.toml new file mode 100644 index 0000000..c38bac6 --- /dev/null +++ b/processguard/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "processguard" +version.workspace = true +edition.workspace = true +authors.workspace = true + +[dependencies] +veritas-core = { path = "../../veritas-core" } +anyhow.workspace = true diff --git a/processguard/src/main.rs b/processguard/src/main.rs new file mode 100644 index 0000000..3087254 --- /dev/null +++ b/processguard/src/main.rs @@ -0,0 +1,6 @@ +use anyhow::Result; + +fn main() -> Result<()> { + println!("🔒 Veritas ProcessGuard v1.0 - Anti-Tampering SDK"); + Ok(()) +} diff --git a/ransomguard b/ransomguard new file mode 160000 index 0000000..bf261ad --- /dev/null +++ b/ransomguard @@ -0,0 +1 @@ +Subproject commit bf261ad3a965dfd9af0c139bc7c96f26dee444b8 diff --git a/triage/Cargo.toml b/triage/Cargo.toml new file mode 100644 index 0000000..fdde3f0 --- /dev/null +++ b/triage/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "triage" +version.workspace = true +edition.workspace = true +authors.workspace = true + +[dependencies] +veritas-core = { path = "../../veritas-core" } +anyhow.workspace = true diff --git a/triage/src/main.rs b/triage/src/main.rs new file mode 100644 index 0000000..9d97bd5 --- /dev/null +++ b/triage/src/main.rs @@ -0,0 +1,6 @@ +use anyhow::Result; + +fn main() -> Result<()> { + println!("🩺 Veritas Triage v1.0 - Forensic Collector"); + Ok(()) +}