This commit is contained in:
vanhauser-thc 2024-09-12 10:24:05 +02:00
parent 4086b93ad7
commit fc7c95e9f4
2 changed files with 13 additions and 14 deletions

View File

@ -2443,21 +2443,20 @@ void check_crash_handling(void) {
if (read(fd, &fchar, 1) == 1 && fchar == '|') { if (read(fd, &fchar, 1) == 1 && fchar == '|') {
SAYF( SAYF("\n" cLRD "[-] " cRST
"\n" cLRD "[-] " cRST "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 experimenting, 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 \n" " To avoid having crashes misinterpreted as timeouts, please \n"
" temporarily modify /proc/sys/kernel/core_pattern, like so:\n\n" " temporarily modify /proc/sys/kernel/core_pattern, like so:\n\n"
" echo core | sudo tee /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")) {

View File

@ -1505,7 +1505,7 @@ int main(int argc, char **argv_orig, char **envp) {
#ifdef __linux__ #ifdef __linux__
if (afl->fsrv.nyx_mode) { if (afl->fsrv.nyx_mode) {
OKF("AFL++ Nyx mode is enabled (developed and mainted by Sergej Schumilo)"); OKF("AFL++ Nyx mode is enabled (developed and maintained by Sergej Schumilo)");
OKF("Nyx is open source, get it at https://github.com/Nyx-Fuzz"); OKF("Nyx is open source, get it at https://github.com/Nyx-Fuzz");
} }