aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2024-09-12 10:24:05 +0200
committervanhauser-thc <vh@thc.org>2024-09-12 10:24:05 +0200
commitfc7c95e9f4d26ea3ab13543d166ed0dc4d0b81a3 (patch)
tree603de28fc6ddfdc3bfc4bbd3472a6e76328185b2
parent4086b93ad799e3cd28968102a2d175b166a31300 (diff)
downloadafl++-fc7c95e9f4d26ea3ab13543d166ed0dc4d0b81a3.tar.gz
nits
-rw-r--r--src/afl-fuzz-init.c29
-rw-r--r--src/afl-fuzz.c2
2 files changed, 15 insertions, 16 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c
index d3085d42..72a765ff 100644
--- a/src/afl-fuzz-init.c
+++ b/src/afl-fuzz-init.c
@@ -2443,21 +2443,20 @@ void check_crash_handling(void) {
if (read(fd, &fchar, 1) == 1 && fchar == '|') {
- SAYF(
- "\n" cLRD "[-] " cRST
- "Your system is configured to send core dump notifications to an\n"
- " external utility. This will cause issues: there will be an "
- "extended delay\n"
- " between stumbling upon a crash and having this information "
- "relayed to the\n"
- " fuzzer via the standard waitpid() API.\n"
- " If you're just experimenting, set "
- "'AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1'.\n\n"
-
- " To avoid having crashes misinterpreted as timeouts, please \n"
- " temporarily modify /proc/sys/kernel/core_pattern, like so:\n\n"
-
- " echo core | sudo tee /proc/sys/kernel/core_pattern\n");
+ SAYF("\n" cLRD "[-] " cRST
+ "Your system is configured to send core dump notifications to an\n"
+ " external utility. This will cause issues: there will be an "
+ "extended delay\n"
+ " between stumbling upon a crash and having this information "
+ "relayed to the\n"
+ " fuzzer via the standard waitpid() API.\n"
+ " If you're just experimenting, set "
+ "'AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1'.\n\n"
+
+ " To avoid having crashes misinterpreted as timeouts, please \n"
+ " temporarily modify /proc/sys/kernel/core_pattern, like so:\n\n"
+
+ " echo core | sudo tee /proc/sys/kernel/core_pattern\n");
if (!getenv("AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES")) {
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index 726a2260..5ab8d7e9 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -1505,7 +1505,7 @@ int main(int argc, char **argv_orig, char **envp) {
#ifdef __linux__
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");
}