Files
ghost/ghost-core/src/lib.rs

16 lines
462 B
Rust
Raw Normal View History

pub mod detection;
pub mod error;
pub mod hooks;
pub mod memory;
pub mod process;
pub mod shellcode;
2025-11-07 18:09:06 +02:00
pub mod thread;
pub use detection::{DetectionEngine, DetectionResult, ThreatLevel};
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};
2025-11-07 18:09:06 +02:00
pub use thread::ThreadInfo;