CQ
CQ
@newthis As to the syscall num 983042, there is a syscall number typo, I have opened https://github.com/qilingframework/qiling/pull/1115 to fix it. > You can set multithread=False Try to set `multithread=False` will...
@wtdcode There is no `ql.stop()` currently if I didn't miss it, only `ql.os.stop()`, and it works for both cases. And my suggestion is: > To make it consistent, maybe it's...
@KA2010 According to your log, it seemed that the http service wasn't up. Also, I guess your qiling version is not up to data. From your side, you can: 1)...
@KA2010 Can you give some more information? Such as, 1. partial output of `git log` in `qiling` repository, 2. `pip3 list | grep unicorn`, 3. the output of the `python...
@KA2010 According to the above log, the http service wasn't up because the failure of `ioctl(fd = 0x3, cmd = 0x8915, arg = 0x7ff3cd04)`, which is used to get ip...
Here are the related outputs in my env, and the http service is up. Can't reproduced your problem in my env. ```shell ~/qiling/examples/fuzzing/tenda_ac15$ ls addressNat_overflow.sh fuzz_tendaac15_httpd.py README.md saver_tendaac15_httpd.py afl_inputs fuzz_tendaac15_httpd.sh...
@jt0dd Maybe you can try to use `ql.hook_mem_fetch_invalid(custom_hook)`. It will stop the execution before raising the error `"Invalid memory fetch (UC_ERR_FETCH_UNMAPPED)"`. In `custom_hook()`, you can drop `ipython` to analyze the...
@jt0dd add `import ipdb; ipdb.set_trace()` in the `custom_hook` function of `ql.hook_mem_fetch_invalid(custom_hook)`, then you can stop it before raising error and analyze the context such as register, stack. Although, as discussed...
Maybe you can refer to the script shown in https://github.com/qilingframework/qiling/issues/840? If it doesn't solve, try to set `multithread=True`
@janwolfram According to the provided log, maybe you can try to set `ql.root = True` ? There are two issues related to socket permission. ``` [+] write() = 0x1 [+]...