Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import org.owasp.benchmarkutils.score.parsers.sarif.PTAIReader;
import org.owasp.benchmarkutils.score.parsers.sarif.PrecautionReader;
import org.owasp.benchmarkutils.score.parsers.sarif.SemgrepSarifReader;
import org.owasp.benchmarkutils.score.parsers.sarif.SiteShadowReader;
import org.owasp.benchmarkutils.score.parsers.sarif.SnykReader;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
Expand Down Expand Up @@ -106,6 +107,7 @@ public static List<Reader> allReaders() {
new ShiftLeftReader(),
new ShiftLeftScanReader(),
new SnappyTickReader(),
new SiteShadowReader(),
new SnykReader(),
new SonarQubeJsonReader(),
new SonarQubeReader(),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* OWASP Benchmark Project
*
* <p>This file is part of the Open Web Application Security Project (OWASP) Benchmark Project For
* details, please see <a
* href="https://owasp.org/www-project-benchmark/">https://owasp.org/www-project-benchmark/</a>.
*
* <p>The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Foundation, version 2.
*
* <p>The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* @author Michael (SiteShadow)
* @created 2026
*/
package org.owasp.benchmarkutils.score.parsers.sarif;

public class SiteShadowReader extends SarifReader {

public SiteShadowReader() {
super("SiteShadow", false, CweSourceType.TAG);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just checked - SiteShadow is a commercial tool.

}
}