Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 524 Bytes

File metadata and controls

16 lines (13 loc) · 524 Bytes

Cypher queries

Domain users with dangerous privileges to domain groups.

MATCH p=(m:User)-[:Owns|Self|AllExtendedRights|WriteDacl|GenericAll|WriteOwner|ExecuteDCOM|GenericWrite|AllowedToDelegate|ForceChangePassword]->(n:Group)
RETURN p

g

Domain users with dangerous privileges to other domain users

MATCH p=(m:User)-[:Owns|Self|AllExtendedRights|WriteDacl|GenericAll|WriteOwner|ExecuteDCOM|GenericWrite|AllowedToDelegate|ForceChangePassword]->(n:User)
RETURN p

u