Closed
Conversation
SiteShadow is an open-source SAST tool that performs graph-based intraprocedural and interprocedural taint analysis using tree-sitter WASM parsing. It outputs results in SARIF 2.1.0 format with CWEs encoded in rule property tags. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
hisopo
pushed a commit
to hisopo/BenchmarkJava
that referenced
this pull request
Mar 29, 2026
SiteShadow is an open-source SAST tool performing graph-based taint analysis using tree-sitter WASM. Results: 100% TPR, 0% FPR on all 7 taint-relevant CWEs (22, 78, 79, 89, 90, 501, 643). 902 TPs, 0 FPs. Does not cover: hash, crypto, weakrand, securecookie categories. Overall average including unscored categories: 63.64%. Companion BenchmarkUtils PR: OWASP-Benchmark/BenchmarkUtils#283 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Closed
3 tasks
Author
|
Closing — resubmitting alongside updated results covering all 11 CWEs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
SiteShadowReaderextendingSarifReaderfor parsing SiteShadow SAST resultsCweSourceType.TAG— CWEs are encoded in SARIF rule property tags (e.g.,["CWE-89", "security"])Reader.allReaders()Context
SiteShadow performs graph-based intraprocedural and interprocedural taint analysis for Java (and other languages). On OWASP Benchmark v1.2, it achieves:
A companion PR to BenchmarkJava will add the SARIF results file and generated scorecard.
Test plan
canRead()for SiteShadow SARIF files🤖 Generated with Claude Code