Detect other SN attribute

This commit is contained in:
de4dot 2012-02-03 10:45:31 +01:00
parent 022bbe15af
commit bc6630f760

View File

@ -132,7 +132,9 @@ namespace de4dot.code.deobfuscators.Spices_Net {
void findSpicesAttributes() {
foreach (var type in module.Types) {
if (type.FullName == "NineRays.Decompiler.NotDecompile") {
switch (type.FullName) {
case "NineRays.Decompiler.NotDecompile":
case "NineRays.Obfuscator.Evaluation":
addAttributeToBeRemoved(type, "Obfuscator attribute");
foundSpicesAttribute = true;
break;