33 lines
681 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 知识点debugger, 混淆
## 解题思路
控制台查看请求顺序,发现`cookie``https://www.python-spider.com/challenge/9`生成的
![请求](./img/6.png)
事件断点
![请求](./img/1.png)
过掉debugger
![请求](./img/2.png)
进入虚拟空间
![请求](./img/3.png)
由于题目是
还是一个复杂的混淆老规矩还是计算sign时间为1589023846363对应的sign是
这里我简单粗暴一下,多次断点,找到函数`_0x1ad825(_0x2962b7)`,尝试打印
![请求](./img/4.png)
那么这里我把变量`_0x2962b7`修改成1589023846363是不是此题就搞定了
![请求](./img/5.png)
经过测试成功解决