Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[KNO-409] - Remove ORDER BY #34

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
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
Loading