-
I used the following two methods, and it seemed that it could not work. I added them to extra_args.
1: -netdev user,id=net0,hostfwd=tcp::8888-:8888 -device e1000,netdev=net0
2: -net user,hostfwd=tcp…
-
In panda.py the rr_get_guest_instr_count() can return negative integer numbers when the system has a large instruction count. It turns out the C API used with cffi to build pyPANDA only returns an int…
-
Running
```
python -m pandare.qcows x86_64
```
in the docker container will (after downloading the generic qcow) print an absolute path to panda-system-x86_64 which is wrong.
-
Hello,
I am trying to use the hypercall feature of panda (both for custom callbacks and for hypercall callbacks in taint2), but I can't seem to trigger the callback using the cpuid instruction. I t…
-
Color is used without an `isatty` check or controlling flag. When piping logs to a file this will result in escape sequences being saved.
https://github.com/panda-re/panda/blob/047266e26ae4f1a9644ce…
-
When I load the syscalls2 plugin from a pypanda script, I see a slowdown of about 4x for the generic x86_64 qcow (among others). I don't think this is supposed to happen(?)
Relevant output with sys…
-
For architectures other than mips, this script will print a non-null proc object regardless if the `bug` flag is set. However, for mips, it will only print a valid value if `bug` is false.
```py
f…
-
I've seen `@panda.cb_virt_mem_after_write` trigger for an address but a corresponding `@panda.hook_virt_mem_write` or `pyperipheral` registered at that address won't fire.
-
After #1149 exceptions raised by pyplugins cause panda to exit without printing anything.
-
The API provided by [pypanda's arch class](https://docs.panda.re/arch.html) is quite useful for building cross-architecture analyses - it would be great if we had something similar in the standard C/C…