代码反混淆操作全流程
使用Humanify进行代码反混淆主要包括以下步骤:
1. Preparation of input documents
将需要处理的混淆JavaScript代码保存为单独文件(如obfuscated.js
).
2. 运行处理命令
Basic command format:humanify [模式] [选项] 输入文件.js -o 输出文件.js
Typical usage scenarios:
- 使用OpenAI API:
humanify openai --apiKey='your-key' obfuscated.js -o deobfuscated.js
- 使用本地模式:
humanify local obfuscated.js -o deobfuscated.js
3. 等待处理完成
处理时间取决于文件大小和所选模式,通常从几秒到几分钟不等。
4. 检查输出结果
打开目标文件(如上例中的deobfuscated.js)查看结果,预期会看到:
- 代码被合理地分段和格式化
- 变量名称变为有意义的语义化名称
- 整体结构更符合人类阅读习惯
5. 问题排查(如需要)
可以添加--verbose
参数获取详细日志,或上GitHub Issues寻求社区帮助。
This answer comes from the articleHumanify: a tool to quickly decrypt and beautify JavaScript code with the help of AIThe