(ModuleDefMD mod)
| 348 | |
| 349 | |
| 350 | static bool SetTargetMethod(ModuleDefMD mod) |
| 351 | { |
| 352 | return (targetMethod = mod.Types.SelectMany(t => t.Methods).FirstOrDefault(m => m.Name == stringDecryptMethodName && m.DeclaringType.FullName == stringDecryptMethodType)) != null; |
| 353 | } |
| 354 | |
| 355 | |
| 356 | static void HandleObjectProperties(string payloadsDir, object obj, int indent = 0, HashSet<object> visited = null) |
nothing calls this directly
no outgoing calls
no test coverage detected