jsfuck最后的结果可能会少数据,可能需要单步调试。
以我爱破解2021的js题目为例
1.debugger;+js代码单步调试
2.参考https://www.52pojie.cn/forum.php?mod=viewthread&tid=1378708&highlight=%B4%BA%BD%DA
hook关键函数
还有个知识点,js转Unit8Array
function arrToStr(arr){
var decoder = new TextDecoder();
return decoder.decode(arr);
}
function strToArr(str){
var encoder = new TextEncoder();
return encoder.encode(str);
}
参考帖子TextEncoder && TextDecode的用法_碧海生波之弄潮儿的博客-CSDN博客_js textencoder