AngeloD2022 / jsxer

jsxer is a fast and accurate decompiler for Adobe ExtendScript Binary (JSXBIN) files, featuring JSXBlind deobfuscation.
GNU Affero General Public License v3.0
183 stars 30 forks source link

Added syntax simplification logic to shorthand updates. #114

Closed AngeloD2022 closed 1 year ago

AngeloD2022 commented 1 year ago

for example...

Input Decompiled
i += -5 i -= 5
i += -1 i--
i -= -1 i++
i += 1 i++
i -= -3 i += 3
AngeloD2022 commented 1 year ago

Tested this with a larger file and it seems to work properly.