-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: New environment variable obfuscation functionality
Signed-off-by: Matthias Glastra <[email protected]>
- Loading branch information
Showing
3 changed files
with
114 additions
and
2 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,66 @@ | ||
// Copyright 2021 The Witness Contributors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package environment | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/gobwas/glob" | ||
) | ||
|
||
// sourced from https://github.com/Puliczek/awesome-list-of-secrets-in-environment-variables/blob/main/raw_list.txt | ||
func DefaultObfuscateList() map[string]struct{} { | ||
return map[string]struct{}{ | ||
"*_TOKEN": {}, | ||
"SECRET_*": {}, | ||
"*_API_KEY": {}, | ||
"*_PASSWORD": {}, | ||
"*_JWT": {}, | ||
} | ||
} | ||
|
||
// FilterEnvironmentArray expects an array of strings representing environment variables. Each element of the array is expected to be in the format of "KEY=VALUE". | ||
// blockList is the list of elements to filter from variables, and for each element of variables that does not appear in the blockList onAllowed will be called. | ||
func ObfuscateEnvironmentArray(variables map[string]string, obfuscateList map[string]struct{}, onAllowed func(key, val, orig string)) { | ||
obfuscateGlobList := []glob.Glob{} | ||
|
||
for k, _ := range obfuscateList { | ||
if strings.Contains(k, "*") { | ||
obfuscateGlobCompiled, err := glob.Compile(k) | ||
if err != nil { | ||
fmt.Errorf("obfuscate glob pattern could not be interpreted: %w", err) | ||
Check failure on line 44 in attestation/environment/obfuscate.go GitHub Actions / lint
Check failure on line 44 in attestation/environment/obfuscate.go GitHub Actions / lint
Check failure on line 44 in attestation/environment/obfuscate.go GitHub Actions / lint
|
||
} | ||
|
||
obfuscateGlobList = append(obfuscateGlobList, obfuscateGlobCompiled) | ||
} | ||
} | ||
|
||
for key, v := range variables { | ||
val := v | ||
|
||
if _, inObfuscateList := obfuscateList[key]; inObfuscateList { | ||
val = "******" | ||
} | ||
|
||
for _, glob := range obfuscateGlobList { | ||
if glob.Match(key) { | ||
val = "******" | ||
} | ||
} | ||
|
||
onAllowed(key, val, v) | ||
} | ||
} |