faster AS2 deobfuscation (ActionDeobfuscatorSimple and ActionDeobfuscator combined to a single linked list based algorithm), caching deobfuscated action list

This commit is contained in:
honfika@gmail.com
2015-10-20 09:13:50 +02:00
parent d5fee60f26
commit f699fd72bb
18 changed files with 420 additions and 185 deletions

View File

@@ -347,7 +347,7 @@ public class ActionPanel extends JPanel implements SearchListener<ActionSearchRe
case HEX:
if (srcHexOnly == null) {
HighlightedTextWriter writer = new HighlightedTextWriter(Configuration.getCodeFormatting(), true);
Helper.byteArrayToHexWithHeader(writer, src.getActionBytes());
Helper.byteArrayToHexWithHeader(writer, src.getActionBytes().getRangeData());
srcHexOnly = new HighlightedText(writer);
}