feat: implement sophisticated shellcode pattern detection

This commit is contained in:
Adir Shitrit
2025-11-08 11:15:12 +02:00
parent c65d24cd16
commit 7eddbb575a
3 changed files with 350 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ pub mod error;
pub mod hooks;
pub mod memory;
pub mod process;
pub mod shellcode;
pub mod thread;
pub use detection::{DetectionEngine, DetectionResult, ThreatLevel};
@@ -10,4 +11,5 @@ pub use error::{GhostError, Result};
pub use hooks::{detect_hook_injection, HookDetectionResult, HookInfo};
pub use memory::{MemoryProtection, MemoryRegion};
pub use process::ProcessInfo;
pub use shellcode::{ShellcodeDetection, ShellcodeDetector};
pub use thread::ThreadInfo;