Skip to content

Commit

Permalink
Fix SID collision as it has no real world chance of doing anything
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed Nov 10, 2023
1 parent 1014d17 commit 5c785ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/integrations/localmachine/analyze/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var (
// SeDenyInteractiveLogonRight
// SeDenyRemoteInteractiveLogonRight

EdgeSIDCollision = engine.NewEdge("SIDCollision").Tag("Informative")
EdgeSIDCollision = engine.NewEdge("SIDCollision").Tag("Informative").RegisterProbabilityCalculator(func(source, target *engine.Object) engine.Probability { return 0 })

DNSHostname = engine.NewAttribute("dnsHostName")
EdgeControlsUpdates = engine.NewEdge("ControlsUpdates").Tag("Affects")
Expand Down

0 comments on commit 5c785ed

Please sign in to comment.