Skip to content

Commit

Permalink
[KNO-409] - Remove ORDER BY
Browse files Browse the repository at this point in the history
  • Loading branch information
jmountifield authored Jun 24, 2024
1 parent 0a59a68 commit 5fa47f6
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions jupiterone/questions/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ questions:
- name: Applications Scanned
resultsAre: INFORMATIVE
query: |
FIND veracode_project WITH lastCompletedScanDate!=undefined
FIND veracode_project WITH lastCompletedScanDate != undefined
tags:
- veracode
- vuln-mgmt
Expand All @@ -106,10 +106,7 @@ questions:
query: |
FIND veracode_project AS p
THAT HAS veracode_finding WITH open=true AS f
RETURN
f.displayName as "CWE: Filename and Line Number",
count(p) as Applications
ORDER BY Applications DESC
RETURN f.displayName as "CWE: Filename and Line Number", count(p) as Applications
tags:
- veracode
- vuln-mgmt
Expand All @@ -124,9 +121,8 @@ questions:
- name: Unresolved exploits with very high severity.
resultsAre: INFORMATIVE
query: |
FIND veracode_finding with severity ~= ("Very High" or "critical") AND exploitabilityDescription ~= "Likely" AS s
RETURN
s.displayName,s.filePath,s.description,s.resolution
FIND veracode_finding WITH (severity = /Very High/i OR severity = /Critical/i) AND exploitabilityDescription = /Likely/i AS s
RETURN s.displayName, s.filePath, s.description, s.resolution
tags:
- veracode
- vuln-mgmt

0 comments on commit 5fa47f6

Please sign in to comment.