Replies: 1 comment 1 reply
-
X-Authentik-Meta-Version is only sent to forward authentication backend servers, not to the end user, so there's no worry in keeping that header |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
The question is whether I should hide the version information of the authentik server. I am using nginx (reverse proxy), and I log in to the authentik server at example: auth.domain.com.
Is there a risk if I don’t hide the authentik server version information, or would hiding the following cause any issues?
Of course, the less information attackers have about the versions, the better. How should I approach this issue?
I am using an nginx server, and login occurs on the authentik server at auth.domain.com. I am considering whether I should hide the version information of the authentik server from external parties.
Is there a security risk if I don’t hide this information?
If I hide the version numbers, could any potential changes cause issues?
I know that it’s generally better to provide as little information about the system to attackers as possible. How should I approach this issue?
I am thinking of adding the following to the auth.domain.com address:
proxy_hide_header X-Powered-By;
proxy_hide_header X-Authentik-Version;
proxy_hide_header X-Authentik-Meta-Version;
proxy_hide_header Server;
Or is there a better way to implement this?
Best regards,
Samppady
Beta Was this translation helpful? Give feedback.
All reactions