Hello,
We have embedded Kibana dashboards in our application. if xpack security is enabled, we configure a nginx proxy so that the user viewing the dashboards can seamlessly access/view the dashboards without having to be prompted for credentials to login to Kibana. We do that by setting a rule in the proxy similar to this:
Now, this can expose a vulnerability because:
"A username was detected either in the request query string or the Set-Cookie header. A username is considered sensitive private information that should be protected. Exposing a username in query strings or cookies can also leave it exposed in server logs, proxy logs, and network traffic inspection tools."
Question:
Aside from using a proxy, how do we allow our application users to be able to view the embedded Kibana dashboards without having to get prompted for Kibana Credentials? I welcome suggestions.
It sounds like this configuration is currently working for you. Am I correct in assuming that the content of $cookie_MY_KIBANA_COOKIE is actually a base64-encoded username:password string?
From this quote it sounds like some vulnerability scanner picked this up. This configuration should not result in a cookie being set in the user's browser, and it should not result in the credentials being exposed to end-users.
Perhaps the scanner is picking up a different cookie from your application?
Also, I did notice you are not using SSL on your Kibana server, which I would highly recommend if your Nginx proxy is not running on the same host.
This is a commonly requested feature! Starting in Kibana 7.11, you'll be able to configure your own anonymous access all within in Kibana
Ok thank you for the reply.
And yes the auth header has the base64-encoded string of the kibana credentials.
The issue with the approach of putting the auth in the cookie and set that in the auth header to be sent to Kibana is, if the same user who access the embedded dashboards then, within the same browser, navigates to the kibana URL, then the user is logged in right away.
And that is a security issue.
Any other approaches/recommendations (aside from Kibana 7.11)?
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.