From 57b06ea5b1af01d7e45fc460c642dddf134b476d Mon Sep 17 00:00:00 2001 From: sami Date: Thu, 10 Sep 2026 14:58:10 +0400 Subject: [PATCH] pkg: ignore libFuzzer crash artifacts libFuzzer writes crash-* / oom-* / leak-* / timeout-* into CWD on a find and each holds the crashing input verbatim. None were ignored; CORE caught two by hand before committing. Prevention, not cleanup. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_0143aKiohmDiyefJBwHDJJqw --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 1ba717e..9701178 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,11 @@ massif.out.* *.log *.veloxpart *.veloxpart.meta + +# Fuzzing crash artifacts — libFuzzer writes these to CWD on a find and each holds the +# crashing input verbatim. Ignore so they are never committed by accident (CORE caught +# two by hand before this rule existed). +crash-* +oom-* +leak-* +timeout-*