Skip to content

Commit

Permalink
Switch from fatal to warning for Creator Owner AD fixup when analyzin…
Browse files Browse the repository at this point in the history
…g .... different things only ;)
  • Loading branch information
lkarlslund committed Jan 15, 2022
1 parent b3ecd2f commit 4ad7800
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/integrations/activedirectory/analyze/analyze-ad.go
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,8 @@ func init() {
Loader.AddProcessor(func(ao *engine.Objects) {
creatorowner, found := ao.Find(engine.ObjectSid, engine.AttributeValueSID(windowssecurity.CreatorOwnerSID))
if !found {
log.Fatal().Msg("Could not find Creator Owner Well Known SID !?!? I perish at the thought")
log.Warn().Msg("Could not find Creator Owner Well Known SID. Not doing post-merge fixup")
return
}

for target, methods := range creatorowner.CanPwn {
Expand Down

0 comments on commit 4ad7800

Please sign in to comment.