add thread enumeration support

This commit is contained in:
Adir Shitrit
2025-11-07 18:09:06 +02:00
parent 5c524b14ba
commit 8abd70d48a
2 changed files with 78 additions and 0 deletions

View File

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