Skip to content

Commit 579d2f3

Browse files
authored
Update query-enterprise-exposure-graph.md
In the *Show all users logged in to more than one critical device* query provided, while it is described that results should provide devices with criticality above 4, the condition in the query is wrong (< instead of >).
1 parent 2d30404 commit 579d2f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exposure-management/query-enterprise-exposure-graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ This query results in a list of users logged into more than one critical device,
205205
let IdentitiesAndCriticalDevices = ExposureGraphNodes
206206
| where
207207
// Critical Device
208-
(set_has_element(Categories, "device") and isnotnull(NodeProperties.rawData.criticalityLevel) and NodeProperties.rawData.criticalityLevel.criticalityLevel < 4)
208+
(set_has_element(Categories, "device") and isnotnull(NodeProperties.rawData.criticalityLevel) and NodeProperties.rawData.criticalityLevel.criticalityLevel > 4)
209209
// or identity
210210
or set_has_element(Categories, "identity");
211211
ExposureGraphEdges

0 commit comments

Comments
 (0)