mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 01:31:37 +00:00
Merge pull request #2193 from ncoghlan/core-dump-notice-rewording
Offer more explicit core dump handling tip
This commit is contained in:
commit
30df52cd8c
@ -2443,20 +2443,19 @@ void check_crash_handling(void) {
|
|||||||
|
|
||||||
SAYF(
|
SAYF(
|
||||||
"\n" cLRD "[-] " cRST
|
"\n" cLRD "[-] " cRST
|
||||||
"Hmm, your system is configured to send core dump notifications to an\n"
|
"Your system is configured to send core dump notifications to an\n"
|
||||||
" external utility. This will cause issues: there will be an "
|
" external utility. This will cause issues: there will be an "
|
||||||
"extended delay\n"
|
"extended delay\n"
|
||||||
" between stumbling upon a crash and having this information "
|
" between stumbling upon a crash and having this information "
|
||||||
"relayed to the\n"
|
"relayed to the\n"
|
||||||
" fuzzer via the standard waitpid() API.\n"
|
" fuzzer via the standard waitpid() API.\n"
|
||||||
" If you're just testing, set "
|
" If you're just experimenting, set "
|
||||||
"'AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1'.\n\n"
|
"'AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1'.\n\n"
|
||||||
|
|
||||||
" To avoid having crashes misinterpreted as timeouts, please log in "
|
" To avoid having crashes misinterpreted as timeouts, please \n"
|
||||||
"as root\n"
|
" temporarily modify /proc/sys/kernel/core_pattern, like so:\n\n"
|
||||||
" and temporarily modify /proc/sys/kernel/core_pattern, like so:\n\n"
|
|
||||||
|
|
||||||
" echo core >/proc/sys/kernel/core_pattern\n");
|
" echo core | sudo tee /proc/sys/kernel/core_pattern\n");
|
||||||
|
|
||||||
if (!getenv("AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES")) {
|
if (!getenv("AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES")) {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user