pub struct ModuleSettings {
pub ida_crasher: bool,
pub import_protection: bool,
pub pack_output_file: 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: boolWhether to crash the IDA decompiler intentionally.
import_protection: boolWhether to enable IAT/Import protection.
pack_output_file: boolShould the output file be packed/compressed? This option only works for usermode modules.
obscure_entry_point: boolObscure the entry point of the module with anti tamper and anti debug tactics
clear_unwind_info: boolClear unwind information. makes it harder for attackers to locate functions, however structured exception handling will not work.
fake_pdb_string: FakePdbStringFake PDB string settings.
custom_section_name: CustomSectionNameCustom PE section name settings.
Trait Implementations§
Source§impl Debug for ModuleSettings
impl Debug for ModuleSettings
Source§impl<'de> Deserialize<'de> for ModuleSettings
impl<'de> Deserialize<'de> for ModuleSettings
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 ModuleSettings
impl RefUnwindSafe for ModuleSettings
impl Send for ModuleSettings
impl Sync for ModuleSettings
impl Unpin for ModuleSettings
impl UnwindSafe for ModuleSettings
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