forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Harden Windows System Probe named pipe (DataDog#32354)
- Loading branch information
Showing
5 changed files
with
111 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Unless explicitly stated otherwise all files in this repository are licensed | ||
// under the Apache License Version 2.0. | ||
// This product includes software developed at Datadog (https://www.datadoghq.com/). | ||
// Copyright 2024-present Datadog, Inc. | ||
|
||
//go:build test && windows | ||
|
||
package server | ||
|
||
import ( | ||
"net" | ||
"os/user" | ||
) | ||
|
||
// NewListenerForCurrentUser sets up a named pipe listener for tests that mock system probe. | ||
// Do not use this for the normal system probe named pipe. | ||
func NewListenerForCurrentUser(namedPipeName string) (net.Listener, error) { | ||
// Prepare a security descriptor that allows the current user. | ||
currentUser, err := user.Current() | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
sd, err := formatSecurityDescriptorWithSid(currentUser.Uid) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return newListenerWithSecurityDescriptor(namedPipeName, sd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
releasenotes/notes/windows_system_probe_namedpipe_hardening-cfc08b47465f1f2b.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
security: | ||
- | | ||
On Windows, the named pipe \\.\pipe\dd_system_probe from system probe is now restricted to | ||
Local System, Administrators, and the ddagentuser. Any other custom users are not supported. |