Default name is CliSecure

This commit is contained in:
de4dot 2012-11-20 01:13:36 +01:00
parent 5ce21b18a7
commit 969d41c089

View File

@ -191,6 +191,7 @@ namespace de4dot.code.deobfuscators.Agile_NET {
}
void findCliSecureAttribute() {
obfuscatorName = "CliSecure";
foreach (var type in module.Types) {
if (Utils.StartsWith(type.FullName, "SecureTeam.Attributes.ObfuscatedByCliSecureAttribute", StringComparison.Ordinal)) {
cliSecureAttributes.Add(type);