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
We are using bluesky-kafka in a service with a secure Kafka instance, so we provide some secrets via the consumer/producer config (e.g. sasl.password).
We just noticed that when we set the service's log level to DEBUG, that bluesky-kafka is logging the entire config and leaking the password into our logs.
This is preventing us from using debug logs at the moment.
I can think of two possible solutions:
We just remove the relevant log calls and make the consumer of the library responsible for logging the config that they're passing in if they want to.
We just log important/interesting keys from the config
I would recommend solution 1 because its simple and I think its easy enough for consumers of the library to log the config themselves. Solution 2 does have the risk that the config schema changes in the future with sensitive keys renamed/added that aren't covered by the redactor and we would need to maintain it.
If you're happy with one of those solutions (or have another suggestion) I'd be happy to raise a PR!
Thanks for the suggestions, @NoxHarmonium!
While solution (1) is straightforward, users may want to see the configuration of the servers, etc. in the logs.
I share your concerns in the proposed solution (2) regarding redacting the config appearing in the logs, but we could add enough tests to capture the keys if they are not in a "white list" of keys we define.
Solution (3) seems a bit safer if we forget to update the list.
Hi,
We are using bluesky-kafka in a service with a secure Kafka instance, so we provide some secrets via the consumer/producer config (e.g. sasl.password).
We just noticed that when we set the service's log level to DEBUG, that bluesky-kafka is logging the entire config and leaking the password into our logs.
This is preventing us from using debug logs at the moment.
I can think of two possible solutions:
I would recommend solution 1 because its simple and I think its easy enough for consumers of the library to log the config themselves. Solution 2 does have the risk that the config schema changes in the future with sensitive keys renamed/added that aren't covered by the redactor and we would need to maintain it.
If you're happy with one of those solutions (or have another suggestion) I'd be happy to raise a PR!
Thanks!
Relevant lines:
bluesky-kafka/bluesky_kafka/consume.py
Line 121 in c85d98d
bluesky-kafka/bluesky_kafka/produce.py
Line 122 in c85d98d
The text was updated successfully, but these errors were encountered: