diff options
| author | 2023-06-05 21:21:37 +0000 | |
|---|---|---|
| committer | 2023-06-05 21:21:37 +0000 | |
| commit | 300243ca3e341ce19c4da5bad06bd3b291131fe0 (patch) | |
| tree | 257ab8dd0bfa15545aab61d28ac2c2b11b270ec6 | |
| parent | e71945b79168b27d410342270ea78fd3a78c6632 (diff) | |
| parent | 5c5c57d0396deec4faf34acdab737aac1b196fce (diff) | |
Merge "Allowlist gcert and prodcertstatus binaries"
| -rw-r--r-- | ui/build/paths/config.go | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/ui/build/paths/config.go b/ui/build/paths/config.go index b3092eaf1..b3e871fc7 100644 --- a/ui/build/paths/config.go +++ b/ui/build/paths/config.go @@ -86,27 +86,29 @@ func GetConfig(name string) PathConfig { // This list specifies whether a particular binary from $PATH is allowed to be // run during the build. For more documentation, see path_interposer.go . var Configuration = map[string]PathConfig{ - "bash": Allowed, - "dd": Allowed, - "diff": Allowed, - "dlv": Allowed, - "expr": Allowed, - "fuser": Allowed, - "getopt": Allowed, - "git": Allowed, - "hexdump": Allowed, - "jar": Allowed, - "java": Allowed, - "javap": Allowed, - "lsof": Allowed, - "openssl": Allowed, - "pstree": Allowed, - "rsync": Allowed, - "sh": Allowed, - "stubby": Allowed, - "tr": Allowed, - "unzip": Allowed, - "zip": Allowed, + "bash": Allowed, + "dd": Allowed, + "diff": Allowed, + "dlv": Allowed, + "expr": Allowed, + "fuser": Allowed, + "gcert": Allowed, + "getopt": Allowed, + "git": Allowed, + "hexdump": Allowed, + "jar": Allowed, + "java": Allowed, + "javap": Allowed, + "lsof": Allowed, + "openssl": Allowed, + "prodcertstatus": Allowed, + "pstree": Allowed, + "rsync": Allowed, + "sh": Allowed, + "stubby": Allowed, + "tr": Allowed, + "unzip": Allowed, + "zip": Allowed, // Host toolchain is removed. In-tree toolchain should be used instead. // GCC also can't find cc1 with this implementation. |