add basic detection engine with heuristics

This commit is contained in:
Adir Shitrit
2025-11-07 18:07:51 +02:00
parent 19e79449e0
commit c79e7d6ed6
3 changed files with 116 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
pub mod detection;
pub mod memory;
pub mod process;
pub use detection::{DetectionEngine, DetectionResult, ThreatLevel};
pub use memory::{MemoryProtection, MemoryRegion};
pub use process::ProcessInfo;