pub struct SecurityConfig {
pub detect_suspicious_apis: bool,
pub detect_anti_debug: bool,
pub detect_anti_vm: bool,
pub detect_crypto: bool,
pub detect_network: bool,
pub detect_filesystem: bool,
pub detect_registry: bool,
pub min_string_length: usize,
}
Expand description
Configuration for security analysis
Fields§
§detect_suspicious_apis: bool
Enable suspicious API detection
detect_anti_debug: bool
Enable anti-debugging detection
detect_anti_vm: bool
Enable anti-VM detection
detect_crypto: bool
Enable cryptographic indicators
detect_network: bool
Enable network indicators
detect_filesystem: bool
Enable filesystem indicators
detect_registry: bool
Enable registry indicators (Windows)
min_string_length: usize
Minimum string length for analysis
Trait Implementations§
Source§impl Clone for SecurityConfig
impl Clone for SecurityConfig
Source§fn clone(&self) -> SecurityConfig
fn clone(&self) -> SecurityConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SecurityConfig
impl Debug for SecurityConfig
Auto Trait Implementations§
impl Freeze for SecurityConfig
impl RefUnwindSafe for SecurityConfig
impl Send for SecurityConfig
impl Sync for SecurityConfig
impl Unpin for SecurityConfig
impl UnwindSafe for SecurityConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more