Initial commit: Veritas Aegis Security Suite Modules

This commit is contained in:
2026-07-28 20:43:01 +02:00
commit b56f87a588
7 changed files with 46 additions and 0 deletions
+9
View File
@@ -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
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🛡️ Veritas Auditor & Wipe v1.0 - DoD Safe Wiping");
Ok(())
}
+9
View File
@@ -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
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🔒 Veritas ProcessGuard v1.0 - Anti-Tampering SDK");
Ok(())
}
Submodule
+1
Submodule ransomguard added at bf261ad3a9
+9
View File
@@ -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
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🩺 Veritas Triage v1.0 - Forensic Collector");
Ok(())
}