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: boolEnable suspicious API detection
detect_anti_debug: boolEnable anti-debugging detection
detect_anti_vm: boolEnable anti-VM detection
detect_crypto: boolEnable cryptographic indicators
detect_network: boolEnable network indicators
detect_filesystem: boolEnable filesystem indicators
detect_registry: boolEnable registry indicators (Windows)
min_string_length: usizeMinimum 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