-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Heartbeat] Support HTTP Digest auth. #15837
Comments
Pinging @elastic/uptime (:uptime) |
+1 for HTTP Digest auth support. We have a client's requirement to monitor JBoss through its management URL/API, but it is configured with Digest auth by default. |
+1 we'd need this too |
One thought is as we roll out our synthetics framework, based on node.js, you'll have access to a full JS environment, letting you do weird things like digest auth. It's a bit early (and we're focusing on browsers at the moment) but it makes sense as a path to me. See https://www.elastic.co/what-is/synthetic-monitoring . |
I'll throw my hat in the ring for this too. Again, need to access JBoss stats and only Digest auth is supported. I'll probably set up a script to curl and log the data I need on a timer and then scrape the json with filebeat |
Hi! We're labeling this issue as |
👍 |
I'm going to close this issue in favor of elastic/synthetics#137, which will almost certainly be the way this is implemented in the future. Please feel free to follow that issue! |
Describe the enhancement:
It looks like go's HTTP client doesn't support digest, but there is a proposal here. So, we'd have to do a custom implementation. This originated with this discuss post.
Describe a specific use case for the enhancement or feature:
HTTP digest is an old insecure standard, using a long deprecated hashing algorithm (MD5), and provides few of the protections TLS/SSL provide.
Users may be forced to use it to monitor legacy software however, so it wouldn't be bad to support.
The text was updated successfully, but these errors were encountered: