pub struct CDModuleSettings {
pub ida_crasher: bool,
pub import_protection: bool,
pub obscure_entry_point: bool,
pub clear_unwind_info: bool,
pub fake_pdb_string: FakePdbString,
pub custom_section_name: CustomSectionName,
}
Expand description
Global obfuscation settings for the module.
Fields§
§ida_crasher: bool
Whether to crash the IDA decompiler intentionally.
import_protection: bool
Whether to enable IAT/Import protection.
obscure_entry_point: bool
Obscure the entry point of the module with anti tamper and anti debug tactics
clear_unwind_info: bool
Clear unwind information. makes it harder for attackers to locate functions, however structured exception handling will not work.
fake_pdb_string: FakePdbString
Fake PDB string settings.
custom_section_name: CustomSectionName
Custom PE section name settings.
Trait Implementations§
Source§impl Debug for CDModuleSettings
impl Debug for CDModuleSettings
Source§impl<'de> Deserialize<'de> for CDModuleSettings
impl<'de> Deserialize<'de> for CDModuleSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CDModuleSettings
impl RefUnwindSafe for CDModuleSettings
impl Send for CDModuleSettings
impl Sync for CDModuleSettings
impl Unpin for CDModuleSettings
impl UnwindSafe for CDModuleSettings
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