MonkeyDebugger

Debug js using monkey patch

Autor
JiyuShao
Dnevne instalacije
0
Ukupnih instalacija
50
Ocjene
0 0 0
Verzija
2024-07-18
Stvoreno
28.05.2024.
Ažurirano
18.07.2024.
Licenza
MIT
Primjenjuje se
Sve stranice

Monkey Debugger

由于在工作中会有很多调试 JS 沙箱的场景,写了这个脚本专门用于方便调试 new Functioneval 里面的代码,有如下能力:

  • new Function 运行前注入自定义代码,默认是 debugger;
  • new Function 运行前去除 debugger 逻辑(反反调试)
  • eval 运行前注入自定义代码,默认是 debugger;
  • eval 运行前去除 debugger 逻辑(反反调试)
  • 移除 console-ban 在谷歌高版本浏览器内的限制(反反调试)
  • 添加 Fetch with credentials 功能