1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
//! Deobfuscation framework for .NET assemblies.
//!
//! This module provides a comprehensive deobfuscation system built on SSA
//! (Static Single Assignment) form. The key insight is that SSA provides
//! explicit def-use chains that make value tracking and propagation natural.
//!
//! # Architecture
//!
//! The deobfuscation system is SSA-centric:
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────────────┐
//! │ Deobfuscation Pipeline │
//! ├─────────────────────────────────────────────────────────────────────────┤
//! │ Input: Assembly (CilObject) │
//! │ │ │
//! │ ▼ │
//! │ ┌─────────────────────────────────────────────────────────────────┐ │
//! │ │ Obfuscator Detection │ │
//! │ │ Obfuscator-based detection with confidence scoring │ │
//! │ └────────────────────────────┬────────────────────────────────────┘ │
//! │ │ │
//! │ ▼ │
//! │ ┌─────────────────────────────────────────────────────────────────┐ │
//! │ │ Build SSA & Analysis Context │ │
//! │ │ CFG → Dominance → Phi Placement → Interprocedural Analysis │ │
//! │ └────────────────────────────┬────────────────────────────────────┘ │
//! │ │ │
//! │ ▼ │
//! │ ┌─────────────────────────────────────────────────────────────────┐ │
//! │ │ Pass Scheduler (Fixpoint) │ │
//! │ │ ┌───────────────────────────────────────────────────────────┐ │ │
//! │ │ │ Run passes in priority order until no more changes: │ │ │
//! │ │ │ │ │ │
//! │ │ │ Value Propagation & Folding: │ │ │
//! │ │ │ • Constant Propagation (SCCP-based) │ │ │
//! │ │ │ • Copy Propagation / Phi Simplification │ │ │
//! │ │ │ • Global Value Numbering (CSE) │ │ │
//! │ │ │ • Strength Reduction │ │ │
//! │ │ │ │ │ │
//! │ │ │ Control Flow Recovery: │ │ │
//! │ │ │ • Control Flow Simplification (jump threading) │ │ │
//! │ │ │ • Control Flow Unflattening (dispatcher removal) │ │ │
//! │ │ │ • Enhanced Unflattening (SCCP + emulation) │ │ │
//! │ │ │ • Loop Canonicalization (preheader/latch insertion) │ │ │
//! │ │ │ │ │ │
//! │ │ │ Dead Code Elimination: │ │ │
//! │ │ │ • Dead Code Elimination (unreachable blocks) │ │ │
//! │ │ │ • Dead Method Elimination (unused methods) │ │ │
//! │ │ │ │ │ │
//! │ │ │ Predicate & Condition Handling: │ │ │
//! │ │ │ • Opaque Predicate Removal │ │ │
//! │ │ │ │ │ │
//! │ │ │ String & Data Recovery: │ │ │
//! │ │ │ • String Decryption (emulation-based) │ │ │
//! │ │ │ • String Pattern Matching (lightweight) │ │ │
//! │ │ │ │ │ │
//! │ │ │ Method Optimization: │ │ │
//! │ │ │ • Small Method Inlining │ │ │
//! │ │ └───────────────────────────────────────────────────────────┘ │ │
//! │ │ Repeat until fixpoint (no more changes) │ │
//! │ └────────────────────────────┬────────────────────────────────────┘ │
//! │ │ │
//! │ ▼ │
//! │ Output: DeobfuscationResult (stats, changes, detection info) │
//! └─────────────────────────────────────────────────────────────────────────┘
//! ```
//!
//! # Key Components
//!
//! ## Engine
//!
//! The main entry point for deobfuscation ([`crate::deobfuscation::DeobfuscationEngine`]):
//!
//! - Orchestrates detection, analysis, pass execution, and postprocessing
//! - Manages obfuscator support for detection and specialized handling
//! - Coordinates the pass scheduler for fixpoint iteration
//!
//! ## Obfuscator System
//!
//! Extensible obfuscator detection and handling ([`crate::deobfuscation::Obfuscator`]):
//!
//! - [`crate::deobfuscation::ObfuscatorDetector`] - Runs obfuscators to identify which one was used
//! - [`crate::deobfuscation::ObfuscatorRegistry`] - Manages registered obfuscators
//! - [`crate::deobfuscation::DetectionScore`] / [`crate::deobfuscation::DeobfuscationFindings`] - Confidence-based detection with findings
//!
//! ## Pass System
//!
//! SSA-based transformation passes ([`crate::compiler::SsaPass`]):
//!
//! - [`crate::compiler::PassScheduler`] - Manages pass execution order and fixpoint iteration
//! - [`crate::compiler::EventLog`] - Tracks changes made by passes
//! - [`crate::deobfuscation::AnalysisContext`] - Shared interprocedural analysis data
//!
//! # Built-in Passes
//!
//! The framework includes a comprehensive set of SSA transformation passes.
//! See the [`compiler`](crate::compiler) module for detailed documentation of each pass.
//!
//! ## Value Propagation & Folding
//!
//! | Pass | Description |
//! |------|-------------|
//! | [`ConstantPropagationPass`](crate::compiler::ConstantPropagationPass) | Propagates and folds constant values using SCCP |
//! | [`CopyPropagationPass`](crate::compiler::CopyPropagationPass) | Eliminates redundant copy operations and phi nodes |
//! | [`GlobalValueNumberingPass`](crate::compiler::GlobalValueNumberingPass) | Eliminates redundant computations via value numbering |
//! | [`StrengthReductionPass`](crate::compiler::StrengthReductionPass) | Replaces expensive operations with cheaper equivalents |
//!
//! ## Control Flow Recovery
//!
//! | Pass | Description |
//! |------|-------------|
//! | [`ControlFlowSimplificationPass`](crate::compiler::ControlFlowSimplificationPass) | Jump threading, branch simplification, dead tail removal |
//! | [`CffReconstructionPass`](crate::deobfuscation::CffReconstructionPass) | Z3-backed dispatcher analysis and CFG reconstruction |
//! | [`LoopCanonicalizationPass`](crate::compiler::LoopCanonicalizationPass) | Ensures loops have single preheaders and latches |
//!
//! ## Dead Code Elimination
//!
//! | Pass | Description |
//! |------|-------------|
//! | [`DeadCodeEliminationPass`](crate::compiler::DeadCodeEliminationPass) | Removes unreachable blocks and unused definitions |
//! | [`DeadMethodEliminationPass`](crate::compiler::DeadMethodEliminationPass) | Identifies and marks methods with no live callers |
//!
//! ## Predicate & Condition Handling
//!
//! | Pass | Description |
//! |------|-------------|
//! | [`OpaquePredicatePass`](crate::compiler::OpaquePredicatePass) | Removes always-true/false conditions, simplifies comparisons |
//!
//! ## Decryption
//!
//! | Pass | Description |
//! |------|-------------|
//! | [`DecryptionPass`](crate::deobfuscation::DecryptionPass) | Decrypts values via emulation of registered decryptor methods |
//!
//! Decryptors are registered via:
//! - Obfuscator-specific detection (e.g., ConfuserEx pattern matching)
//! - Heuristic detection for generic signature-based detection
//!
//! ## Method Optimization
//!
//! | Pass | Description |
//! |------|-------------|
//! | [`InliningPass`](crate::compiler::InliningPass) | Inlines small methods and constant-returning functions |
//!
//! # Usage
//!
//! ## Basic Usage
//!
//! ```rust,ignore
//! use dotscope::deobfuscation::{DeobfuscationEngine, EngineConfig};
//!
//! let config = EngineConfig::default();
//! let mut engine = DeobfuscationEngine::new(config);
//!
//! let mut assembly = CilObject::from_path("obfuscated.dll")?;
//! let result = engine.process_file(&mut assembly)?;
//!
//! println!("{}", result.summary());
//! ```
//!
//! ## Custom Configuration
//!
//! ```rust,no_run
//! use dotscope::deobfuscation::{DeobfuscationEngine, EngineConfig};
//!
//! let config = EngineConfig {
//! max_iterations: 50,
//! inline_threshold: 30,
//! emulation_max_instructions: 50000,
//! ..Default::default()
//! };
//!
//! let mut engine = DeobfuscationEngine::new(config);
//! ```
//!
//! ## Adding Custom Obfuscators
//!
//! ```rust,ignore
//! use dotscope::deobfuscation::{DeobfuscationEngine, Obfuscator};
//!
//! let mut engine = DeobfuscationEngine::with_defaults();
//! engine.register_obfuscator(Arc::new(MyCustomObfuscator::new()));
//! ```
// Infrastructure
// Deobfuscation-specific SSA passes (moved from compiler/passes/)
// Engine and detector
// Obfuscator support
// Core types
pub use execute_cleanup;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use DeobfuscationEngine;
pub use ;
pub use ;
pub use ;
pub use DeobfuscationResult;
pub use ;