You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Run continuous coverage-guided fuzzing with libFuzzer",
40
+
"Run continuous coverage-guided fuzzing on Rust targets with libFuzzer",
46
41
"Execute cargo-fuzz on validated harnesses",
47
42
"Produce crash artifacts for analysis",
48
43
"Long-running fuzzing campaign"
@@ -55,10 +50,9 @@ common_inputs = [
55
50
]
56
51
57
52
output_artifacts = [
53
+
"fuzzing_results.json",
58
54
"crashes/",
59
-
"coverage-data/",
60
-
"corpus/",
61
-
"fuzzing-stats.json"
55
+
"results.json"
62
56
]
63
57
64
-
output_treatment = "Show fuzzing-stats.json as a live summary with total_executions, exec/sec, coverage_percent, and crashes_found. List files in crashes/ directory if any crashes found. The corpus/ and coverage-data/ directories are artifacts for downstream modules, don't display their contents."
58
+
output_treatment = "Read fuzzing_results.json which contains: targets_fuzzed, total_crashes, total_executions, crashes_path, and results array with per-target crash info. Display summary of crashes found. The crashes/ directory contains crash inputs for downstream crash-analyzer."
"Triage crashes by severity (critical, high, medium, low)",
49
44
"Generate security vulnerability reports"
@@ -56,9 +51,8 @@ common_inputs = [
56
51
]
57
52
58
53
output_artifacts = [
59
-
"unique-crashes.json",
60
-
"crash-report.md",
61
-
"severity-analysis.json"
54
+
"crash_analysis.json",
55
+
"results.json"
62
56
]
63
57
64
-
output_treatment = "Display crash-report.md as rendered markdown - this is the primary output. Show unique-crashes.json as a table with crash ID, severity, and affected function. Summarize severity-analysis.json showing counts by severity level (critical, high, medium, low)."
58
+
output_treatment = "Read crash_analysis.json which contains: total_crashes, unique_crashes, duplicate_crashes, severity_summary (high/medium/low/unknown counts), and unique_analyses array with details per crash. Display a summary table of unique crashes by severity."
0 commit comments