mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #33884 from aaronlehmann/redact-secret-payload
middleware: Redact secret data on "secret create"
This commit is contained in:
commit
b9f248d0ea
2 changed files with 80 additions and 4 deletions
|
@ -41,7 +41,7 @@ func DebugRequestMiddleware(handler func(ctx context.Context, w http.ResponseWri
|
||||||
|
|
||||||
var postForm map[string]interface{}
|
var postForm map[string]interface{}
|
||||||
if err := json.Unmarshal(b, &postForm); err == nil {
|
if err := json.Unmarshal(b, &postForm); err == nil {
|
||||||
maskSecretKeys(postForm)
|
maskSecretKeys(postForm, r.RequestURI)
|
||||||
formStr, errMarshal := json.Marshal(postForm)
|
formStr, errMarshal := json.Marshal(postForm)
|
||||||
if errMarshal == nil {
|
if errMarshal == nil {
|
||||||
logrus.Debugf("form data: %s", string(formStr))
|
logrus.Debugf("form data: %s", string(formStr))
|
||||||
|
@ -54,13 +54,22 @@ func DebugRequestMiddleware(handler func(ctx context.Context, w http.ResponseWri
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func maskSecretKeys(inp interface{}) {
|
func maskSecretKeys(inp interface{}, path string) {
|
||||||
|
// Remove any query string from the path
|
||||||
|
idx := strings.Index(path, "?")
|
||||||
|
if idx != -1 {
|
||||||
|
path = path[:idx]
|
||||||
|
}
|
||||||
|
// Remove trailing / characters
|
||||||
|
path = strings.TrimRight(path, "/")
|
||||||
|
|
||||||
if arr, ok := inp.([]interface{}); ok {
|
if arr, ok := inp.([]interface{}); ok {
|
||||||
for _, f := range arr {
|
for _, f := range arr {
|
||||||
maskSecretKeys(f)
|
maskSecretKeys(f, path)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if form, ok := inp.(map[string]interface{}); ok {
|
if form, ok := inp.(map[string]interface{}); ok {
|
||||||
loop0:
|
loop0:
|
||||||
for k, v := range form {
|
for k, v := range form {
|
||||||
|
@ -70,7 +79,16 @@ func maskSecretKeys(inp interface{}) {
|
||||||
continue loop0
|
continue loop0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
maskSecretKeys(v)
|
maskSecretKeys(v, path)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Route-specific redactions
|
||||||
|
if strings.HasSuffix(path, "/secrets/create") {
|
||||||
|
for k := range form {
|
||||||
|
if k == "Data" {
|
||||||
|
form[k] = "*****"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
58
api/server/middleware/debug_test.go
Normal file
58
api/server/middleware/debug_test.go
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
package middleware
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestMaskSecretKeys(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
path string
|
||||||
|
input map[string]interface{}
|
||||||
|
expected map[string]interface{}
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
path: "/v1.30/secrets/create",
|
||||||
|
input: map[string]interface{}{"Data": "foo", "Name": "name", "Labels": map[string]interface{}{}},
|
||||||
|
expected: map[string]interface{}{"Data": "*****", "Name": "name", "Labels": map[string]interface{}{}},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/v1.30/secrets/create//",
|
||||||
|
input: map[string]interface{}{"Data": "foo", "Name": "name", "Labels": map[string]interface{}{}},
|
||||||
|
expected: map[string]interface{}{"Data": "*****", "Name": "name", "Labels": map[string]interface{}{}},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
path: "/secrets/create?key=val",
|
||||||
|
input: map[string]interface{}{"Data": "foo", "Name": "name", "Labels": map[string]interface{}{}},
|
||||||
|
expected: map[string]interface{}{"Data": "*****", "Name": "name", "Labels": map[string]interface{}{}},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/v1.30/some/other/path",
|
||||||
|
input: map[string]interface{}{
|
||||||
|
"password": "pass",
|
||||||
|
"other": map[string]interface{}{
|
||||||
|
"secret": "secret",
|
||||||
|
"jointoken": "jointoken",
|
||||||
|
"unlockkey": "unlockkey",
|
||||||
|
"signingcakey": "signingcakey",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
expected: map[string]interface{}{
|
||||||
|
"password": "*****",
|
||||||
|
"other": map[string]interface{}{
|
||||||
|
"secret": "*****",
|
||||||
|
"jointoken": "*****",
|
||||||
|
"unlockkey": "*****",
|
||||||
|
"signingcakey": "*****",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, testcase := range tests {
|
||||||
|
maskSecretKeys(testcase.input, testcase.path)
|
||||||
|
assert.Equal(t, testcase.expected, testcase.input)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue