Fix HIPAA session timeout for OpenSSH >= 8.2 - #15029
Open
ggbecker wants to merge 2 commits into
Open
Conversation
ggbecker
requested review from
a team,
Mab879,
jan-cerny,
matusmarhefka and
vojtapolasek
as code owners
August 21, 2026 11:07
Member
|
That CI fail is valid. |
ClientAliveCountMax=0 has opposite behavior on OpenSSH >= 8.2: it disables timeouts completely instead of timing out after ClientAliveInterval. This breaks session timeout requirements on RHEL 9+, RHEL 10, and SLE 15+. Add logind_session_timeout to HIPAA controls to provide system-wide idle session termination via systemd-logind. Exclude sshd_set_keepalive_0 from RHEL10, SLE15, and SLE16 HIPAA profiles where it has broken behavior. Update profile stability tests to reflect the changes.
The logind_session_timeout rule requires RHEL >= 8.7 per its platform constraints. The rhel8 product represents all RHEL 8 versions (8.0-8.10), so exclude the rule to avoid including it on RHEL 8.0-8.6 where it won't work.
ggbecker
force-pushed
the
fix-hipaa-session-timeout
branch
from
August 21, 2026 15:58
db334e6 to
49c1529
Compare
Member
Author
introduced the removed back to the default.profile so it's part of the RHEL10 datastream. |
|
@ggbecker: The following tests failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Mab879
approved these changes
Aug 21, 2026
Member
|
@ComplianceAsCode/suse-maintainers please take a look. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add logind_session_timeout to HIPAA controls to provide system-wide idle session termination via systemd-logind. Exclude sshd_set_keepalive_0 from RHEL10, SLE15, and SLE16 HIPAA profiles where it has broken behavior.
Update profile stability tests to reflect the changes.