Skip to content

Commit

Permalink
dont mark Group Policy Creator owners as high value
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkjanm committed Jul 26, 2024
1 parent 15d4697 commit 65c0fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bloodhound/enumeration/memberships.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def enumerate_groups(self, timestamp="", fileNamePrefix=""):
highvalue = ["S-1-5-32-544", "S-1-5-32-550", "S-1-5-32-549", "S-1-5-32-551", "S-1-5-32-548"]

def is_highvalue(sid):
if sid.endswith("-512") or sid.endswith("-516") or sid.endswith("-519") or sid.endswith("-520"):
if sid.endswith("-512") or sid.endswith("-516") or sid.endswith("-519"):
return True
if sid in highvalue:
return True
Expand Down

0 comments on commit 65c0fca

Please sign in to comment.