You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
client ID (potentially sensitive) is sent over the network, without native TLS support in cos-alerter this means sending sensitive data unencrypted
even with HTTPS enabled, a malicious actor can send a valid client ID to the /alive endpoint and pretend to be an active alertmanager instance while the actual instance may be down
Potential solutions:
TLS support + a pre-shared secret (password) included in the client POST requests sent to /alive (ins tead of sending only client ID that may be easy to guess)
sending a token in the POST request and mapping that token to a client ID in cos-alerter.yaml config
mutual TLS (might be an overkill)
The text was updated successfully, but these errors were encountered:
Enhancement Proposal
Currently:
Potential solutions:
The text was updated successfully, but these errors were encountered: