summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/Deobfuscator.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* crap-ton of bug fixes for inner classesGravatar jeff2014-08-181-0/+2
|
* added support for automatic reconstruction of inner and anonymous classesGravatar hg2014-08-171-24/+27
| | | | also added class to restore bridge method flags taken out by the obfuscator
* trying to get inner/anonymous classes working... I have a working heuristic ↵Gravatar jeff2014-08-151-14/+4
| | | | in place to detect anonymous classes, but I can't seem to get Procyon to decompile them correctly. I'm writing the InnerClasses attribute and translating all the inner class names, but there must be something else I'm missing...
* added support for field access searchesGravatar jeff2014-08-131-4/+26
| | | | added proper detection/handling for constructors
* got simple method call graph working!Gravatar jeff2014-08-121-29/+5
|
* refactor Ancestries into Ancestries and JarIndexGravatar jeff2014-08-111-8/+8
|
* added method inheritance browsingGravatar jeff2014-08-111-2/+2
| | | | also finally fixed method renamer to rename all method implementations in the inheritance hierarchy.
* refactored to remove ClassFile class to prep for upcoming stack navigation. ↵Gravatar jeff2014-08-101-14/+11
| | | | It wasn't really necessary anymore.
* filter out tokens that are not obfuscatedGravatar jeff2014-08-101-61/+16
|
* completely re-wrote token recognizer to bootstrap from Procyon's ASTGravatar jeff2014-08-101-34/+80
| | | | changed imports to guava instead of whatever collections library happened to be on my classpath
* started working on recognition of non-class member identifiers in the sourceGravatar jeff2014-08-071-14/+73
| | | | | | got class extends,implements working and argument,field types added filtering to make sure highlighted class names are actually classes in the jar
* added un-obfuscated classes to the deobfuscated classes listGravatar jeff2014-08-061-0/+4
|
* show deobfuscated names in class inheritanceGravatar jeff2014-08-061-5/+10
|
* added simple class inheritance browsingGravatar jeff2014-08-061-0/+5
|
* added stable save order for mappings to hopefully help with mergingGravatar jeff2014-08-041-39/+80
| | | | | | | | added color-coding for source identifiers redesigned rename GUI customized editor pane, added popup menu finished name validation added last-chance save on window close
* started working on method parameter renamingGravatar jeff2014-08-021-2/+2
|
* fixed bug with save mappings menuGravatar jeff2014-07-311-45/+15
| | | | | gui shows deobfuscated classes list now working on name validation/sanitization
* switched to line-by-line mergable, human-readable file format for mappingsGravatar jeff2014-07-301-14/+17
|
* added gui/cli loading of jars/mappingsGravatar jeff2014-07-291-8/+23
| | | | gui can save mappings too
* added identifier renaming capabilityGravatar jeff2014-07-271-2/+113
| | | | | | copied some code over from M3L to handle the heavy bytecode magic. It's ok... M3L will eventually depend on Enigma. Completely restructured the mappings though. This way is better. =)
* made gui responsive to caret position and show identifier infoGravatar hg2014-07-271-0/+5
|
* initial commitGravatar jeff2014-07-261-0/+109
so far source analysis is working. =)