Skip to content

Commit dab0d58

Browse files
fixed missing vuln
1 parent ace20b1 commit dab0d58

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

docs/multiple-tests/pattern-vulnerability-high/results.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,6 @@
9898
message="Insecure dependency npm/[email protected] (CVE-2025-27152: axios: Possible SSRF and Credential Leakage via Absolute URL in axios Requests) (update to 0.30.0)"
9999
severity="high"
100100
/>
101-
<error
102-
source="vulnerability_high"
103-
line="14"
104-
message="Insecure dependency npm/[email protected] (CVE-2025-58754: axios: Axios DoS via lack of data size check) (update to 1.12.0)"
105-
severity="high"
106-
/>
107101
</file>
108102

109103
<file name="javascript/yarn.lock">
@@ -119,12 +113,6 @@
119113
message="Insecure dependency npm/[email protected] (CVE-2025-27152: axios: Possible SSRF and Credential Leakage via Absolute URL in axios Requests) (update to 0.30.0)"
120114
severity="high"
121115
/>
122-
<error
123-
source="vulnerability_high"
124-
line="5"
125-
message="Insecure dependency npm/[email protected] (CVE-2025-58754: axios: Axios DoS via lack of data size check) (update to 1.12.0)"
126-
severity="high"
127-
/>
128116
</file>
129117

130118
<file name="python/requirements.txt">

internal/tool/openssf_scanner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ func (s *OpenSSFScanner) createIssue(pkg ftypes.Package, target string, cand osv
192192
// scanKnownManifestsIfNoResults checks known manifests when Trivy produced no results
193193
func (s *OpenSSFScanner) scanKnownManifestsIfNoResults(report ptypes.Report, toolExecution codacy.ToolExecution) []codacy.Result {
194194
var out []codacy.Result
195-
if len(report.Results) != 0 || toolExecution.Files == nil {
195+
if toolExecution.Files == nil {
196196
return out
197197
}
198198
for _, f := range *toolExecution.Files {

0 commit comments

Comments
 (0)