wangyiyunketang-downloader icon indicating copy to clipboard operation
wangyiyunketang-downloader copied to clipboard

解密模块问题

Open bibinocode opened this issue 2 years ago • 1 comments

// 将atob和bota换成buff的写法后,json.parse解析plaintext不可能解析的到吧?,本身就不是一个对象的说。 const plaintext = _(f(s.words)) return JSON.parse(plaintext)

bibinocode avatar Jun 27 '22 18:06 bibinocode

s.words是一个字节数组,f函数对其进行了进一步的处理,然后调用了“_”函数将其转换为了字符串,最后调用JSON.paser解析还原为原始对象,可以动态调试下断查看他的运行流程

juilletVent avatar Jun 28 '22 00:06 juilletVent