mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 20:28:08 +00:00
no core dumps
This commit is contained in:
@ -29,6 +29,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
|
|||||||
- ensure one fuzzer sync per cycle
|
- ensure one fuzzer sync per cycle
|
||||||
- fix afl_custom_queue_new_entry original file name when syncing
|
- fix afl_custom_queue_new_entry original file name when syncing
|
||||||
from fuzzers
|
from fuzzers
|
||||||
|
- on a crashing seed potentially the wrong input was disabled
|
||||||
- added AFL_EXIT_ON_SEED_ISSUES env that will exit if a seed in
|
- added AFL_EXIT_ON_SEED_ISSUES env that will exit if a seed in
|
||||||
-i dir crashes the target or results in a timeout. By default
|
-i dir crashes the target or results in a timeout. By default
|
||||||
afl++ ignores these and uses them for splicing instead.
|
afl++ ignores these and uses them for splicing instead.
|
||||||
|
@ -451,8 +451,12 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
|
|||||||
/* Dumping cores is slow and can lead to anomalies if SIGKILL is delivered
|
/* Dumping cores is slow and can lead to anomalies if SIGKILL is delivered
|
||||||
before the dump is complete. */
|
before the dump is complete. */
|
||||||
|
|
||||||
// r.rlim_max = r.rlim_cur = 0;
|
if (!fsrv->debug) {
|
||||||
// setrlimit(RLIMIT_CORE, &r); /* Ignore errors */
|
|
||||||
|
r.rlim_max = r.rlim_cur = 0;
|
||||||
|
setrlimit(RLIMIT_CORE, &r); /* Ignore errors */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/* Isolate the process and configure standard descriptors. If out_file is
|
/* Isolate the process and configure standard descriptors. If out_file is
|
||||||
specified, stdin is /dev/null; otherwise, out_fd is cloned instead. */
|
specified, stdin is /dev/null; otherwise, out_fd is cloned instead. */
|
||||||
|
Reference in New Issue
Block a user