You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure to start the forkserver *after* loading all the shared objects by setting the `AFL_ENTRYPOINT` environment variable (see [here](https://aflplus.plus/docs/env_variables/#5-settings-for-afl-qemu-trace) for details):
54
54
55
55
Choose an address just before the `while()` loop, for example:
56
56
```bash
57
-
qemu-arm-static -L $ALPINE_ROOT$ALPINE_ROOT/usr/bin/objdump -d $FUZZ/fuzz_harness.a| grep -A 1 "PyObject_GetAttrString"
57
+
qemu-arm-static -L $ALPINE_ROOT$ALPINE_ROOT/usr/bin/objdump -d $FUZZ/fuzz_harness | grep -A 1 "PyObject_GetAttrString"
58
58
59
59
00000584 <PyObject_GetAttrString@plt>:
60
60
584: e28fc600 add ip, pc, #0, 12
@@ -71,13 +71,13 @@ Check Qemu memory maps using the instructions from [here](https://aflplus.plus/d
71
71
72
72
Setup Python environment variables and run `afl-qemu-trace`:
0 commit comments