Initial commit: Veritas Forensics Suite Modules (VRE, VIM, VAN, Registry Explorer)

This commit is contained in:
2026-07-28 20:43:12 +02:00
commit 9dbf6d0727
8 changed files with 67 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "registry-explorer"
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 Registry Explorer v1.0");
Ok(())
}
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "van"
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 Analyzer (VAN) v1.0 - Metadaten Extraktor");
Ok(())
}
+11
View File
@@ -0,0 +1,11 @@
[package]
name = "vim"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
tokio.workspace = true
anyhow.workspace = true
sha2.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("💾 Veritas Imager (VIM) v1.0 - Forensischer 1:1 Duplikator");
Ok(())
}
+11
View File
@@ -0,0 +1,11 @@
[package]
name = "vre"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
tokio.workspace = true
anyhow.workspace = true
tracing.workspace = true
+9
View File
@@ -0,0 +1,9 @@
use anyhow::Result;
use veritas_core::hwid::generate_hardware_id;
#[tokio::main]
async fn main() -> Result<()> {
println!("🛡️ Veritas Recovery Engine (VRE) v1.0");
println!("Hardware-ID: {}", generate_hardware_id());
Ok(())
}