1. 15 1月, 2018 7 次提交
  2. 14 1月, 2018 2 次提交
  3. 04 1月, 2018 3 次提交
  4. 03 1月, 2018 2 次提交
  5. 02 1月, 2018 17 次提交
  6. 31 12月, 2017 1 次提交
  7. 21 12月, 2017 3 次提交
  8. 01 5月, 2017 3 次提交
    • D
      Fixed issue where deobfuscated classes,methods,and fields were not being... · bf3863d1
      Daniel Ramos 提交于
      Fixed issue where deobfuscated classes,methods,and fields were not being commented with their original name.
      bf3863d1
    • D
      Fixed issue where postProcess may overwrite Deobfuscated method names. · 94e9291c
      Daniel Ramos 提交于
      The function will now check if the method name was aliased by Deobfuscation and if so it will use that name for all the overriden methods. Note: If the deobfuscation file contains two names for the same overriden method in two related Classes then the name that "wins" is non-deterministic.
      94e9291c
    • D
      Fixed issue where renamed classes/methods referenced in a different dex file... · 459d133b
      Daniel Ramos 提交于
      Fixed issue where renamed classes/methods referenced in a different dex file would not be renamed properly. Deobfuscation only modified the Class info for the InfoStorage of the Dex file the class belonged to. If a class in another Dex file referenced it, it would not know of the rename.
      
      This commit moves InfoStorage to the RootNode. This allows all classes to know of each other regardless of the Dex file. A dexId field was added to the DexNode class to allow the the MethodInfo.fromDex function to continue to use method index to locate methods. The getMethod and putMethod functions in InfoStorage was modified to take a DexNode. The DexNode id is used to create a unique key used for the lookup into the methods HashMap.
      459d133b
  9. 30 4月, 2017 2 次提交