Joey Jiao

Results 11 comments of Joey Jiao

For arm64 there is android emulator for it. But I looked at your code, you are only instrument x86_64, will that work for arm64? Right now, for AFL, I'm using...

I can do it in c, but have difficult to do it in javascript. C code: fd = open(FNAME, O_RDWR); //This will be 3 close(STDIN); dup(fd); //fd duplicate is now...

well, I use LD_PRELOAD to use the c lib. And now I'm able to fuzz for a while, and then it hangs. It seems that the frida-fuzzer doesn't support timeout?...

Same issue on my debian also seen on ubuntu 16.04.

The patch can fix the build error: ``` diff --git a/src/threads.c b/src/threads.c index 38b633f..547f21e 100644 --- a/src/threads.c +++ b/src/threads.c @@ -38,7 +38,9 @@ static struct task_struct *next_tid(struct task_struct *start) {...

@qlyoung yes, they are similar but #63 has more change I think For most android devices, cpu#0-3 is less power than cpu#4-7, so #63 prefers cpu#7 as the first candidate....

Then I would strongly recommand you to enable it by default, it really can find bugs escpecially these memory coruption bugs for this great crash tool. To enable it is...

And yes, comment the free line out can fix the double free.

https://github.com/google/sanitizers/wiki/AddressSanitizer is the description of -fsanitize=address. A pull request here https://github.com/crash-utility/crash/pull/46. For the double free, not sure if it will be the final fix, so didn't upload the change.

> is this different from #59 ? rebase issue, updated with only new changes. Thanks