Skip to content
Open
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 @@ -7,8 +7,9 @@ category: Shortest Paths
description: Return shortest paths from Owned Azure Users to Azure Keyvaults to check for attack vectors.
query: |-
MATCH p = shortestPath((n:AZUser)-[:AZ_ATTACK_PATHS*..]->(g:AZKeyVault))
WHERE m.system_tags CONTAINS 'owned'
WHERE ((n:Tag_Owned) OR COALESCE(n.system_tags, '') CONTAINS 'owned')
RETURN p
revision: 1
revision: 2
resources:
acknowledgements: Daniel Scheidt, @theluemmel

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ category: Shortest Paths
description: Return shortest paths from Owned Azure Users to Azure VMs to check for attack vectors.
query: |-
MATCH p = shortestPath((m:AZUser)-[:AZ_ATTACK_PATHS*..]->(n:AZVM))
WHERE m.system_tags CONTAINS 'owned'
WHERE ((m:Tag_Owned) OR COALESCE(m.system_tags, '') CONTAINS 'owned')
RETURN p
revision: 1
revision: 2
resources:
acknowledgements: Daniel Scheidt, @theluemmel