Affected by GO-2022-0559
and 11 other vulnerabilities
GO-2022-0559: HashiCorp Consul and Consul Enterprise 1.10.1 Txn.Apply endpoint allowed services to register proxies for other services, enabling access to service traffic. in github.com/hashicorp/consul
GO-2022-0593: HashiCorp Consul Privilege Escalation Vulnerability in github.com/hashicorp/consul
GO-2022-0615: Hashicorp Consul HTTP health check endpoints returning an HTTP redirect may be abused as SSRF vector in github.com/hashicorp/consul
GO-2022-0776: Denial of Service (DoS) in HashiCorp Consul in github.com/hashicorp/consul
GO-2022-0894: Hashicorp Consul Missing SSL Certificate Validation in github.com/hashicorp/consul
GO-2022-0895: HashiCorp Consul L7 deny intention results in an allow action in github.com/hashicorp/consul
GO-2022-1029: HashiCorp Consul vulnerable to authorization bypass in github.com/hashicorp/consul
GO-2023-1827: Hashicorp Consul vulnerable to denial of service in github.com/hashicorp/consul
GO-2023-1851: HashiCorp Consul Cross-site Scripting vulnerability in github.com/hashicorp/consul
GO-2023-1853: HashiCorp Consul vulnerable to Origin Validation Error in github.com/hashicorp/consul
GO-2025-4081: Consul key/value endpoint is vulnerable to denial of service in github.com/hashicorp/consul
GO-2025-4082: Consul event endpoint is vulnerable to denial of service in github.com/hashicorp/consul
type ACL interface {
// KeyRead checks for permission to read a given key KeyRead(string) bool// KeyWrite checks for permission to write a given key KeyWrite(string) bool// KeyWritePrefix checks for permission to write to an// entire key prefix. This means there must be no sub-policies// that deny a write.
KeyWritePrefix(string) bool// ACLList checks for permission to list all the ACLs ACLList() bool// ACLModify checks for permission to manipulate ACLs ACLModify() bool
}
type StaticACL struct {
// contains filtered or unexported fields
}
StaticACL is used to implement a base ACL policy. It either
allows or denies all requests. This can be used as a parent
ACL to act in a blacklist or whitelist mode.