Papers › FuzzingBrain-Bench V1: Evaluating Open-Ended Bug Discovery by LLMs

FuzzingBrain-Bench V1: Evaluating Open-Ended Bug Discovery by LLMs

25 Aug 2026arXiv:2608.25158added by Syntology

Ze Sheng, Aleksandar Kezic, Zhicheng Chen, Jeff Huang

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Evaluating the ability of large language models (LLMs) to discover software bugs is increasingly important. Existing benchmarks typically evaluate this capability by asking the model to generate a proof-of-concept input that triggers a predefined target vulnerability. However, this setup may overlook valid crashes discovered by the model when they do not match the predefined target. As a result, the evaluation may not reflect the model's real capability. We present FuzzingBrain-Bench, a benchmark for assessing AI models' ability to discover bugs in open-source software. Models are given an open-source project and a sanitizer-instrumented harness in a self-contained Docker image. Their goal is to generate inputs that trigger as many distinct crashes as possible through the harness. A model's performance on each challenge is scored based on the number of distinct crash signatures it produces, capped at a predefined maximum and weighted by a difficulty coefficient. FuzzingBrain-Bench V1 consists of 77 challenges drawn from 43 open-source projects, with 36 C, 32 C++, and 9 Java/JVM challenges. We evaluate Claude Haiku 4.5, Claude Sonnet 4.6, and Claude Opus 4.8 on the full benchmark. Claude Opus 4.8 performs best, triggering crashes in 60 of 77 challenges and achieving a score of 196 out of 579. None of the three models triggers a crash in 13 challenges. The FuzzingBrain-Bench corpus and harnesses are publicly available at https://github.com/fuzzingbrain/FuzzingBrain-Bench.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2608.25158")

Code

Syntology Ran 12 of 16 code samples harvested from 1 repository linked to this paper; 4 have no recorded run. Of those that ran: 12 ran with no contract checked.

By repository: found in paper text by Syntology: 16 samples from 1 repository, 12 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

fuzzingbrain/FuzzingBrain-Bench found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

16 samples harvested; 12 ran; 0 honoured the contract we drafted; 4 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

12ran
4unverified

Licence: 0 of the 16 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from fuzzingbrain/FuzzingBrain-Bench. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

bold fuzzingbrain/FuzzingBrain-Bench/fbbench/cli/console.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 1370e9f752f5f705 · report
build_summary fuzzingbrain/FuzzingBrain-Bench/fbbench/report/summary.py found in paper text by Syntology ran MIT (permissive) · 6317431bfe36f156 · report
challenge_image fuzzingbrain/FuzzingBrain-Bench/fbbench/images.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 33c4df93cbb2c24b · report
crash_class fuzzingbrain/FuzzingBrain-Bench/fbbench/grading/signature.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 17080f4df0f25399 · report
dim fuzzingbrain/FuzzingBrain-Bench/fbbench/cli/console.py found in paper text by Syntology ran fingerprinted MIT (permissive) · ca491cc5d1be584e · report
extract_frames fuzzingbrain/FuzzingBrain-Bench/fbbench/grading/signature.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 6c33b6a9ed87e0d6 · report
green fuzzingbrain/FuzzingBrain-Bench/fbbench/cli/console.py found in paper text by Syntology ran fingerprinted MIT (permissive) · e5eb532b2f8c9e32 · report
harness_sanitizer fuzzingbrain/FuzzingBrain-Bench/fbbench/grading/bench_yaml.py found in paper text by Syntology ran MIT (permissive) · a7b42a664f11282e · report
needs_key fuzzingbrain/FuzzingBrain-Bench/fbbench/models/catalog.py found in paper text by Syntology ran MIT (permissive) · 87b4aab0c217d966 · report
provider_for fuzzingbrain/FuzzingBrain-Bench/fbbench/models/catalog.py found in paper text by Syntology ran MIT (permissive) · f59ecb479ce1cbfa · report
read_bench fuzzingbrain/FuzzingBrain-Bench/fbbench/grading/bench_yaml.py found in paper text by Syntology ran MIT (permissive) · 9f96a2f9d905d879 · report
resolve_output fuzzingbrain/FuzzingBrain-Bench/fbbench/paths.py found in paper text by Syntology ran MIT (permissive) · 3d125552e950ffa6 · report
context_window fuzzingbrain/FuzzingBrain-Bench/fbbench/models/catalog.py found in paper text by Syntology unverified MIT (permissive) · 34502631765c82a5 · report
grade_blob fuzzingbrain/FuzzingBrain-Bench/fbbench/grading/grader.py found in paper text by Syntology unverified MIT (permissive) · a36ce28f7e4672da · report
signature fuzzingbrain/FuzzingBrain-Bench/fbbench/grading/signature.py found in paper text by Syntology unverified MIT (permissive) · 970f6bc996703833 · report
write_summary fuzzingbrain/FuzzingBrain-Bench/fbbench/report/summary.py found in paper text by Syntology unverified MIT (permissive) · d79e7045540e92ee · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2608.25158, was issued in August 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections