Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Added filters to the query
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpeach9 committed Jun 9, 2022
1 parent 0ca6e39 commit 9582025
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions jupiterone/questions/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ questions:
queries:
- name: bad
query: |
FIND duo_account AS acct
RETURN
acct.displayName,acct.passwordRequiresLowerAlpha,acct.passwordRequiresNumeric,
acct.passwordRequiresSpecial,acct.passwordRequiresUpperAlpha
FIND duo_account WITH passwordRequiresLowerAlpha != true
AND
passwordRequiresNumeric != true
AND
passwordRequiresSpecial != true
AND
passwordRequiresUpperAlpha != true
tags:
- duo

0 comments on commit 9582025

Please sign in to comment.