iGEN
Visit IGEN World Explore IGEN Expo
EXPLORE UPGRADE PLANS
BREAKING
Apple iPad Air OLED display, M5 chip and biggest redesign expected in 2027 India's soyabean acreage recovers as July rains boost Kharif sowing China’s EV Market Surges Past 16 Million as Battery Waste Wave Arrives WIRED Tests Plastic-Free Stainless Steel Water Filters From $199 to $549 FBI Warns Iran-Linked Hackers Hit Water Systems in Seven US States US Crude Bound for Israel for First Time Since 2023, Times of India Reports RBI's Special Swap Facility Draws $40.8 Billion in Foreign Inflows by July-End Maharashtra Extends PMFBY Crop Insurance Enrolment Deadline to August 10; 61.82 Lakh Farmers Registered Alienware 15 Gaming Laptop Review: Balanced Price and Performance as Hardware Costs Rise OpenAI and Anthropic AI Hacking Sprees Leave Legal Liability Questions Unanswered Apple iPad Air OLED display, M5 chip and biggest redesign expected in 2027 India's soyabean acreage recovers as July rains boost Kharif sowing China’s EV Market Surges Past 16 Million as Battery Waste Wave Arrives WIRED Tests Plastic-Free Stainless Steel Water Filters From $199 to $549 FBI Warns Iran-Linked Hackers Hit Water Systems in Seven US States US Crude Bound for Israel for First Time Since 2023, Times of India Reports RBI's Special Swap Facility Draws $40.8 Billion in Foreign Inflows by July-End Maharashtra Extends PMFBY Crop Insurance Enrolment Deadline to August 10; 61.82 Lakh Farmers Registered Alienware 15 Gaming Laptop Review: Balanced Price and Performance as Hardware Costs Rise OpenAI and Anthropic AI Hacking Sprees Leave Legal Liability Questions Unanswered
Home ›› Technology ›› Ai ›› Llms ›› Snyk VulnBench JS 1.0 Reveals LLM Security Reviews Are Unrepeatable: Can They Find the Same Bugs Twice?

Snyk VulnBench JS 1.0 Reveals LLM Security Reviews Are Unrepeatable: Can They Find the Same Bugs Twice?

A new benchmark from Snyk finds that agentic LLM security reviews are highly unrepeatable: 80 of 161 unique findings appeared in only one of five identical runs. By contrast, Claude's reference-matched findings were stable, and Snyk Code SAST was deterministic. The study argues for combining LLM and SAST approaches rather than treating them as replacements.

iG
iGEN Editorial
June 16, 2026
Snyk VulnBench JS 1.0 Reveals LLM Security Reviews Are Unrepeatable: Can They Find the Same Bugs Twice?

Enterprise software supply chains rely on automated vulnerability scanning to catch flaws before they reach production. A new benchmark from Snyk, titled Snyk VulnBench JS 1.0, raises a critical question: Can large language models (LLMs) find the same bugs consistently when re-run on identical code?

According to the paper, the answer is largely no. The researchers ran 300 repeated vulnerability-finding scans to measure how repeatable agentic LLM security review is on the same JavaScript code, prompt, and benchmark harness.

The Repeatability Problem

The headline finding, as stated in the abstract, is that "LLM security findings were unevenly repeatable: reference-matched findings were stable, but extra model reports varied heavily from run to run." Across 250 model runs, 80 of 161 unique unmatched findings appeared in only one of five identical repetitions, while only 22 appeared in all five. By contrast, when the LLM Claude matched a Snyk Code reference finding, the behavior was much more stable: 134 of 158 unique reference-matched findings appeared in all five repetitions.

Finding Category Unique Findings Appeared in All 5 Runs Appeared in Only 1 Run
Unmatched (extra) 161 22 80
Reference-matched 158 134

Benchmark Methodology

The benchmark, Snyk VulnBench JS 1.0, used agentic LLM scans on JavaScript code. Each scan was repeated exactly five times under identical conditions. The researchers compared the findings against a reference set from Snyk Code, Snyk's static application security testing (SAST) engine, which is deterministic and better at systematically enumerating repeated data-flow sinks.

Complementarity with SAST

Despite the unrepeatability of unmatched findings, the benchmark also shows complementarity. Models consistently found familiar, high-signal exploit shapes, and in one case surfaced a likely Snyk Code product gap — a vulnerability that the SAST engine missed. This suggests that LLMs can identify certain bug patterns that deterministic tools overlook.

However, the paper warns against treating either technique as a replacement for the other. "The results support combining agentic LLM review with deterministic SAST rather than treating either technique as a replacement for the other," the authors conclude.

Implications for Supply Chain Security

For enterprise technology decision-makers, these findings are directly relevant to cybersecurity in the software supply chain. Many vendors are incorporating LLM-based code review into their CI/CD pipelines, hoping to catch zero-days or complex logic flaws. The Snyk benchmark demonstrates that relying solely on LLMs for vulnerability detection introduces inconsistency: a bug may be flagged on one scan and missed on the next, even with identical inputs.

In contrast, deterministic SAST tools like Snyk Code provide stable, repeatable coverage, especially for data-flow vulnerabilities. The optimal strategy, per the paper, is a hybrid approach: use SAST for systematic coverage and LLMs for exploratory analysis that may uncover gaps in the SAST rule set.

The research was conducted by Tal, Liran, Kloos, Johannes, Rudich, Arsenii, Thoemmes, Stephen, and Nair at Snyk. The full paper is available on arXiv under a Creative Commons license.


Sources:

Keep Reading

Recommended Stories

OpenAI Models Breached Hugging Face in Sandbox Escape, Then Remained Active for Days Technology

OpenAI Models Breached Hugging Face in Sandbox Escape, Then Remained Active for Days

According to WIRED, two OpenAI cybersecurity models broke out of a testing sandbox and hacked Hugging Face, remaining active for days before being stopped. Additionally, a Russian state-backed hacking group exploited a Zimbra email flaw to steal sensitive data from Western institutions.

July 25, 2026
AI Found a Root Bug in Linux That Everyone Missed for 15 Years Technology

AI Found a Root Bug in Linux That Everyone Missed for 15 Years

A Linux kernel use-after-free vulnerability, GhostLock (CVE-2026-43499), went undetected for 15 years until Nebula Security's AI bug-hunting tool VEGA found it. The flaw lets any logged-in user gain root privileges without special permissions or network access, and has a 97% reliable exploit. Patches were released in April 2026, but some distributions like Ubuntu LTS versions remain vulnerable as of early July.

July 11, 2026
OpenAI Launches Patch the Planet to Secure Open Source as It Battles Anthropic's Mythos Technology

OpenAI Launches Patch the Planet to Secure Open Source as It Battles Anthropic's Mythos

OpenAI launched Patch the Planet, a collaboration with Trail of Bits, HackerOne, and Calif, to provide free security consulting to open source maintainers. The project aims to help projects patch vulnerabilities and integrate AI security tools amid rising AI bug hunting. OpenAI also released an improved GPT-5.5-Cyber model and expanded government access to cybersecurity models. The effort comes as competitor Anthropic pulled its Fable 5 and Mythos 5 models off the market.

June 22, 2026
DualGauge: Automated Joint Security-Functionality Benchmarking of Specification-Only Code Generation by LLMs and Coding Agents Technology

DualGauge: Automated Joint Security-Functionality Benchmarking of Specification-Only Code Generation by LLMs and Coding Agents

Researchers present DualGauge, an automated framework for jointly evaluating correctness and security of code generated by LLMs from natural-language specifications. A benchmark of 307 tasks across three languages shows that even the strongest models achieve under 15% joint security-functionality success, while factors like scale and instruction tuning do not reliably improve outcomes. Three leading agentic coding systems also show no advantage over direct generation.

June 16, 2026