From 55f268bcac90f6be62fec0ad09edd956a953e830 Mon Sep 17 00:00:00 2001 From: "Mariusz B. / mgeeky" Date: Sat, 24 Sep 2022 23:24:31 +0200 Subject: [PATCH] Updated Handy-BloodHound-Cypher-Queries --- red-teaming/bloodhound/Handy-BloodHound-Cypher-Queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/red-teaming/bloodhound/Handy-BloodHound-Cypher-Queries.md b/red-teaming/bloodhound/Handy-BloodHound-Cypher-Queries.md index e201ec9..fea31a4 100644 --- a/red-teaming/bloodhound/Handy-BloodHound-Cypher-Queries.md +++ b/red-teaming/bloodhound/Handy-BloodHound-Cypher-Queries.md @@ -431,7 +431,7 @@ MATCH (u) WHERE toLower(u.name) = "computer3@contoso.com" SET u.owned=True RETUR - Mark users with non-empty UserPassword field as Owned: ``` -MATCH (u:User) WHERE u.userpassword =~ ".+" SET u.owned=True +MATCH (u:User) WHERE u.userpassword =~ ".+" SET u.owned = true RETURN u.name ``` - Mark High Value all members of High Value groups: