AS1/2 better identifiers renaming (deobfuscation)

This commit is contained in:
Jindra Petk
2013-03-24 07:42:51 +01:00
parent d549856d49
commit 67dec09957
6 changed files with 37 additions and 2 deletions

View File

@@ -542,7 +542,11 @@ public class SWFInputStream extends InputStream {
if (((ins instanceof ActionEquals) || (ins instanceof ActionEquals2)) && (stack.size() == 1) && (stack.peek() instanceof DirectValueTreeItem)) {
stack.push(new DirectValueTreeItem(null, 0, new Null(), new ArrayList<String>()));
}
ins.translate(localData, stack, output);
try {
ins.translate(localData, stack, output);
} catch (Exception ex) {
//ignore
}
if (ins.isExit()) {
break;
}