$ ./crash[1] 6342 segmentation fault (core dumped) ./crash$ file corecore: ELF 32-bit LSB core file Intel 80386, version 1 (SYSV), SVR4-style, from './crash'$ rm -f core$ chmod -r crash$ ./crash[1] 6706 segmentation fault (core dumped) ./crash$ ls -la corels: cannot access core: No such file or directory
$ cat /proc/sys/kernel/core_pattern|/tmp/crash_handler %p %s %c %P$ cat /tmp/crash_handler#!/usr/bin/pythonimport syswith open("/tmp/core_pattern_args", "w+") as f:f.write(repr(sys.argv) + '\n')$ chmod +r crash$ ./crash[1] 25796 segmentation fault (core dumped) ./crash
$ chmod -r crash$ ./crash
[1] 25899 segmentation fault (core dumped) ./crash$ sudo cat /tmp/core_pattern_args['/tmp/crash_handler', '25796', '11', '0']['/tmp/crash_handler', '25899', '11', '0']
> email to afl-users+unsubscribe@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "afl-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/afl-users/ivDT0SZTriM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to afl-users+unsubscribe@googlegroups.com.
https://arxiv.org/pdf/1803.01307.pdf
Unfortunately, like all too many research tools, it doesn't appear to be
publicly available.
Peter.
Hi Heiko,
Thanks for your interest and the typos. I will fix them and update the pdf on arXiv.
We do plan to release the software in the future(I am busy for other works now). It will be released at https://github.com/AngoraFuzzer .
- Peng
======
So essentially good news, we only have to be a bit patient...
Greetings, Heiko