-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
运行自己可执行文件时报错,如何解决 #125
Comments
可以在调用 |
fans.zip |
我看了一下,你这个调用点是比较外层的一个位置,是构造一整个请求头,逻辑越复杂,调用遇到的问题就会越多,也会包含很多没必要的逻辑。一般建议尽量从更内层去调用,比如,调用某个字段的生成方法或者更核心的加密函数。 |
如何调用c函数,有没有例子可以参考 |
我的意思是,你主要目标是哪个字段,我们从字段层面来看问题 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Traceback (most recent call last):
File "/Users/xsf/Project/spider/.venv/lib/python3.10/site-packages/chomper/core.py", line 213, in _start_emulate
self.uc.emu_start(address, stop_addr)
File "/Users/xsf/Project/spider/.venv/lib/python3.10/site-packages/unicorn/unicorn_py3/unicorn.py", line 642, in emu_start
raise UcError(status)
unicorn.unicorn_py3.unicorn.UcError: Invalid memory fetch (UC_ERR_FETCH_UNMAPPED)
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/Users/xsf/Project/sp_wokers/jtCode/chomper/jt.py", line 82, in
main()
File "/Users/xsf/Project/sp_wokers/jtCode/chomper/jt.py", line 64, in main
dict = objc.msg_send("RPCAppServiceFacade", "queryFeedsRPCHeaderField")
File "/Users/xsf/Project/spider/.venv/lib/python3.10/site-packages/chomper/objc.py", line 55, in msg_send
return self.emu.call_symbol("_objc_msgSend", receiver, sel, *new_args)
File "/Users/xsf/Project/spider/.venv/lib/python3.10/site-packages/chomper/core.py", line 744, in call_symbol
return self._start_emulate(address, *args)
File "/Users/xsf/Project/spider/.venv/lib/python3.10/site-packages/chomper/core.py", line 216, in _start_emulate
self.crash("Unknown reason", exc=e)
File "/Users/xsf/Project/spider/.venv/lib/python3.10/site-packages/chomper/core.py", line 361, in crash
raise EmulatorCrashedException(
chomper.exceptions.EmulatorCrashedException: Unknown reason at 0x0
The text was updated successfully, but these errors were encountered: