-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Clear terminal when auth server is in FIPS mode #10095
Conversation
@@ -373,6 +373,8 @@ message PingResponse { | |||
Features ServerFeatures = 3 [ (gogoproto.jsontag) = "server_features" ]; | |||
// ProxyPublicAddr is the server's public proxy address. | |||
string ProxyPublicAddr = 4 [ (gogoproto.jsontag) = "proxy_public_addr" ]; | |||
// IsBoring signals whether or not the server was compiled with BoringCrypto. | |||
bool IsBoring = 5 [ (gogoproto.jsontag) = "is_boring" ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not exposed on the public unauth /ping
endpoint right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct. This is only exposed on auth's grpc server.
@timothyb89 @lxea Can you take another look at this when you have a moment? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
@atburke Let's backport this to |
This change clears the terminal at the end of a session when the auth server is in FIPS mode, even if tsh isn't.
This change clears the terminal at the end of a session when the auth server is in FIPS mode, even if tsh isn't.
This change clears the terminal at the end of a session when the auth server is in FIPS mode, even if tsh isn't.
This change clears the terminal at the end of a session when the auth server is in FIPS mode, even if tsh isn't.
Follow-up to #8850. This PR clears the terminal at the end of a session when the auth server is in FIPS mode, even if
tsh
isn't.Resolves #9767.