dotscope 0.7.0

A high-performance, cross-platform framework for analyzing and reverse engineering .NET PE executables
Documentation
1
2
3
4
5
6
7
8
9
10
//! Obfuscar-specific deobfuscation techniques.
//!
//! Obfuscar is a renaming-focused obfuscator with XOR-based string hiding as its
//! only code-transforming protection. The string hiding injects a
//! `<PrivateImplementationDetails>{GUID}` helper type with per-string accessor
//! methods that are decrypted via emulation.

mod strings;

pub use strings::ObfuscarStrings;