<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: hamelin123</title>
    <description>The latest articles on DEV Community by hamelin123 (@hamelin123).</description>
    <link>https://dev.to/hamelin123</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4035759%2Fe6c07084-858d-464e-89ce-9f964b716399.png</url>
      <title>DEV Community: hamelin123</title>
      <link>https://dev.to/hamelin123</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hamelin123"/>
    <language>en</language>
    <item>
      <title>The same detector scores 45.5 or 100 on the OWASP Benchmark. Both are 'true.'</title>
      <dc:creator>hamelin123</dc:creator>
      <pubDate>Wed, 19 Aug 2026 09:45:32 +0000</pubDate>
      <link>https://dev.to/hamelin123/the-same-detector-scores-455-or-100-on-the-owasp-benchmark-both-are-true-512k</link>
      <guid>https://dev.to/hamelin123/the-same-detector-scores-455-or-100-on-the-owasp-benchmark-both-are-true-512k</guid>
      <description>&lt;p&gt;Every SAST vendor quotes an accuracy number. Almost none of them tell you the three things you'd need to reproduce it. We took a single, fixed detector and showed that its "accuracy" on the OWASP Benchmark swings by more than 50 points depending on choices that have nothing to do with the detector itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;A SAST accuracy score is &lt;strong&gt;not reproducible&lt;/strong&gt; unless three things are disclosed: the &lt;strong&gt;benchmark version&lt;/strong&gt;, the &lt;strong&gt;CWE subset&lt;/strong&gt; that was averaged, and the &lt;strong&gt;matching rule&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Same detector, same detections — score comes out &lt;strong&gt;45.5&lt;/strong&gt; across all 11 categories, or &lt;strong&gt;100.0&lt;/strong&gt; on the injection-only subset. A &lt;strong&gt;54.5-point swing&lt;/strong&gt; from subset selection alone.&lt;/li&gt;
&lt;li&gt;The OWASP Benchmark's official &lt;strong&gt;macro-average weights the smallest category 14.4× more&lt;/strong&gt; than a case-weighted average would. We computed all of this from the suite's own public ground truth; the script is in the study.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why one number hides four decisions
&lt;/h2&gt;

&lt;p&gt;The OWASP Benchmark is the closest thing the SAST world has to a shared ruler. But "score = X" collapses at least four independent choices into one figure, and each one moves the result:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Which version of the benchmark.&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Version&lt;/th&gt;
&lt;th&gt;Test cases&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;v1.1&lt;/td&gt;
&lt;td&gt;21,041&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;v1.2&lt;/td&gt;
&lt;td&gt;2,740&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;v1.2 is &lt;strong&gt;7.7× smaller&lt;/strong&gt; than v1.1. A false-positive rate computed over 21,041 cases and one computed over 2,740 are not the same measurement, and "OWASP Benchmark score" rarely says which population it's over.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Macro-average vs. case-weighted.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The official scorer takes a &lt;strong&gt;macro-average&lt;/strong&gt; — every category counts equally, regardless of how many test cases it has. That sounds fair until you look at what it does to the small categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;XPath injection&lt;/strong&gt; has 35 test cases. Under the macro-average it gets &lt;strong&gt;9.1%&lt;/strong&gt; of the score (1 of 11 categories). Weighted by its actual case count it would get &lt;strong&gt;1.3%&lt;/strong&gt;. That's a &lt;strong&gt;14.4× inflation&lt;/strong&gt; of the smallest category.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SQL injection&lt;/strong&gt; has 504 cases — it gets the same &lt;strong&gt;9.1%&lt;/strong&gt; under macro, but &lt;strong&gt;18.4%&lt;/strong&gt; when weighted by cases. So the official average makes SQLi count roughly &lt;em&gt;half&lt;/em&gt; as much as its share of the suite.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Neither weighting is wrong. But they answer different questions, and a headline number doesn't tell you which one you're looking at.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Which CWE subset got averaged.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's the part that should make you suspicious of any single figure. Take a neutral probe that scores perfect detection on the injection families and nothing else:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Averaged across &lt;strong&gt;all 11 categories&lt;/strong&gt;: &lt;strong&gt;45.5&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;On the &lt;strong&gt;injection-only subset&lt;/strong&gt;: &lt;strong&gt;100.0&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Same probe. &lt;strong&gt;54.5 points&lt;/strong&gt; of difference, entirely from which categories you chose to report.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. How you match a finding to an expected result.&lt;/strong&gt; Line-level, method-level, or file-level matching each produce a different true/false-positive count from identical scan output.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it was computed
&lt;/h2&gt;

&lt;p&gt;Nothing here is an estimate. We ran it against v1.2 ground truth using the OWASP BenchmarkUtils scorer with the &lt;strong&gt;Youden index&lt;/strong&gt; — &lt;code&gt;(sensitivity + specificity) − 1&lt;/code&gt;, normalized to 0–100 — and derived the category counts and weightings straight from the suite's public &lt;code&gt;expectedresults-1.2.csv&lt;/code&gt;. Change one of the four knobs, keep the detector fixed, and watch the headline move.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# reproduce the weighting + subset math from the official file:
OWASP Benchmark  -&amp;gt;  expectedresults-1.2.csv   (2,740 rows)
# our parser + the full 45.5-vs-100 derivation:
zennoxa.com/research/sast-benchmark-version-drift-2026
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What to actually ask for
&lt;/h2&gt;

&lt;p&gt;When a tool (ours included) quotes an OWASP Benchmark score, ask three questions before you believe it:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Which version&lt;/strong&gt; — v1.1 or v1.2?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Which categories&lt;/strong&gt; were averaged, and macro or case-weighted?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;What matching rule&lt;/strong&gt; turned scan output into true/false positives?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A score that can answer all three is a measurement. A score that can't is a billboard.&lt;/p&gt;

&lt;p&gt;The full derivation — every category's weight, the four knobs, and the reproducible script — is here:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;→ &lt;a href="https://zennoxa.com/research/sast-benchmark-version-drift-2026" rel="noopener noreferrer"&gt;Is a published SAST 'accuracy' score even reproducible?&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Published by Zennoxa Research. We hold our own numbers to this bar — if a claim on our site can't answer the three questions, it's a bug; tell us.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>sast</category>
      <category>testing</category>
      <category>opensource</category>
    </item>
    <item>
      <title>There are 755 static-analysis tools. Only 42 are open-source security scanners.</title>
      <dc:creator>hamelin123</dc:creator>
      <pubDate>Wed, 19 Aug 2026 08:02:37 +0000</pubDate>
      <link>https://dev.to/hamelin123/there-are-755-static-analysis-tools-only-42-are-open-source-security-scanners-3256</link>
      <guid>https://dev.to/hamelin123/there-are-755-static-analysis-tools-only-42-are-open-source-security-scanners-3256</guid>
      <description>&lt;p&gt;If you run a linter on your code today, you have a lot of choices. If you want one that actually looks for &lt;em&gt;security&lt;/em&gt; bugs — and is open source — you have far fewer than the ecosystem's size suggests.&lt;/p&gt;

&lt;p&gt;We parsed the public &lt;a href="https://github.com/analysis-tools-dev/static-analysis" rel="noopener noreferrer"&gt;analysis-tools.dev&lt;/a&gt; catalog (MIT-licensed, 755 tools) to get an actual count instead of a vibe. Here's what fell out.&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Of &lt;strong&gt;755&lt;/strong&gt; static-analysis tools in the catalog, &lt;strong&gt;86%&lt;/strong&gt; are open source — but only &lt;strong&gt;42&lt;/strong&gt; are open-source tools whose job is finding &lt;em&gt;security&lt;/em&gt; bugs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;21 languages&lt;/strong&gt; that already have an active linting ecosystem (five or more general static-analysis tools each) have &lt;strong&gt;zero&lt;/strong&gt; open-source security scanner. SQL, Shell, PowerShell, Dart, Elixir, Lua, R, Groovy, Clojure and Haskell are on that list.&lt;/li&gt;
&lt;li&gt;Every number here is reproducible from one public dataset. No survey, no vendor list, no "leaders" quadrant.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why the gap is easy to miss
&lt;/h2&gt;

&lt;p&gt;"Static analysis" and "security scanner" get used interchangeably, and the catalog is full of tools — so it &lt;em&gt;feels&lt;/em&gt; like the security-scanner space is crowded. When you split the catalog by what each tool is actually for, the picture changes:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Slice&lt;/th&gt;
&lt;th&gt;Count&lt;/th&gt;
&lt;th&gt;Share&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;All static-analysis tools&lt;/td&gt;
&lt;td&gt;755&lt;/td&gt;
&lt;td&gt;100%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Open source (any purpose)&lt;/td&gt;
&lt;td&gt;653&lt;/td&gt;
&lt;td&gt;86.5%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Security-focused (SAST)&lt;/td&gt;
&lt;td&gt;69&lt;/td&gt;
&lt;td&gt;9.1%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Open-source &lt;em&gt;and&lt;/em&gt; security-focused&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;42&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;61% of the security tools&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;A general linter tells you a function is too long. A security scanner tells you that a value from &lt;code&gt;request.args&lt;/code&gt; reached a SQL string without going through a parameterizer. Both are "static analysis." Only one is looking for the bug that ends up in a CVE. The catalog has 653 of the first kind and 42 of the second.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 21-language hole
&lt;/h2&gt;

&lt;p&gt;The more interesting finding isn't the total — it's &lt;em&gt;where the 42 aren't&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;We took every language that has at least five general static-analysis tools (i.e. a language with a real tooling community, not a niche one) and checked how many have an open-source security scanner. Twenty-one of them have none:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;SQL, Shell, Groovy, R, Lua, Dart, PowerShell, Elixir, Clojure, Haskell — and eleven more.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Some of those are load-bearing. Shell and PowerShell run your CI and your production boxes. SQL is where injection lives. Dart ships to phones. If you write those and want an open-source tool that reasons about security specifically, the catalog says you're on your own.&lt;/p&gt;

&lt;p&gt;Where the 42 &lt;em&gt;do&lt;/em&gt; cluster is unsurprising: Python (13 scanners), Go (12), Java (10), JavaScript (9). The languages with the most security tooling are the ones that already had the most tooling.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it was measured
&lt;/h2&gt;

&lt;p&gt;Nothing here needs to be taken on faith. The method is three steps against one file:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;License&lt;/strong&gt; — split proprietary vs. open source using the catalog's license field.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security scope&lt;/strong&gt; — keep only tools tagged &lt;code&gt;security&lt;/code&gt; in the catalog taxonomy.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Language coverage&lt;/strong&gt; — read each tool's language tags and count per language.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The catalog is a single JSON file in a public MIT repo. We publish the parser and the raw counts alongside the study, so you can re-run it and get the same 42 — or disagree with a classification and see exactly which tool moved the number.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# the dataset:
github.com/analysis-tools-dev/static-analysis  (data/*.yml)
# our parser + raw counts:
zennoxa.com/research/state-of-oss-sast-2026  -&amp;gt;  data.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why we bothered
&lt;/h2&gt;

&lt;p&gt;We build a security scanner (&lt;a href="https://zennoxa.com" rel="noopener noreferrer"&gt;Shield&lt;/a&gt;), so the honest disclosure is that this map has a self-interested corner. But the count doesn't change based on who's counting — 42 is 42, and the 21-language hole is in the public data whether or not you've heard of us. We'd rather publish the census than a quadrant.&lt;/p&gt;

&lt;p&gt;The full breakdown — every language, the license splits, and the reproducible &lt;code&gt;data.json&lt;/code&gt; — is here:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;→ &lt;a href="https://zennoxa.com/research/state-of-oss-sast-2026" rel="noopener noreferrer"&gt;State of Open-Source SAST 2026&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Published by Zennoxa Research. If you think a tool is misclassified, the raw counts are right there — tell us which one.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>sast</category>
      <category>opensource</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
