63js加密传输数据与返回数据二进制-RC4

This commit is contained in:
luzhisheng 2023-02-23 23:14:49 +08:00
parent 1fcfd8c5a2
commit 1e04519ecd

View File

@ -1,4 +1,4 @@
# 知识点:返回数据二进制 atob btoa crypto
# 知识点:返回数据二进制 atob btoa crypto crypto-js
## 解题思路
查看请求结果,发现是乱码
@ -33,15 +33,15 @@
![请求](./img/5.png)
接下来就是s函数。通过s函数能得到请求体中乱码值
接下来就是`s`函数。通过`s`函数能得到请求体中乱码值
![请求](./img/6.png)
这里用的是 `crypto-js` 的`RC4`加密,
这里用的是 `crypto` 的`RC4`加密,
但是`RC4`加密结果不会出现乱码,尝试继续跟进代码看看具体原因
这里近我是直接通过 `return` 关键词一步步断点进入
这里近我是直接通过 `return` 关键词一步步断点进入
`return` 断点1