-
Notifications
You must be signed in to change notification settings - Fork 33
Update 14.2 to p2 #354
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
Merged
Merged
Update 14.2 to p2 #354
Conversation
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
Obtained from: OpenSSH 5e07dee272c3 Security: CVE-2025-26466 Security: FreeBSD-SA-25:05.openssh Approved by: so Sponsored by: The FreeBSD Foundation (cherry picked from commit 8a16d08) (cherry picked from commit 34798cb)
Obtained from: OpenSSH 38df39ecf278 Security: CVE-2025-26465 Security: FreeBSD-SA-25:05.openssh Approved by: so Sponsored by: The FreeBSD Foundation (cherry picked from commit 170059d) (cherry picked from commit 4ad8c19)
Approved by: so
Reviewer's Guide by SourceryThis pull request updates OpenSSH to version 14.2p2. It includes bug fixes related to host key verification, PING packet handling, and several input validation and error handling improvements. It also updates the SSH protocol banner with the latest FreeBSD version. Sequence diagram for handling SSH2_MSG_PINGsequenceDiagram
participant Client
participant Server
Client->>Server: SSH2_MSG_PING
alt Server is in pre-authentication or rekeying phase
Server-->>Client: (No response)
else Server is authenticated and not rekeying
Server->>Server: sshpkt_start(SSH2_MSG_PONG)
Server->>Server: sshpkt_put_string(data from PING)
Server->>Server: sshpkt_send()
Server-->>Client: SSH2_MSG_PONG
end
Updated class diagram for SocketEntryclassDiagram
class SocketEntry {
-session_ids: char**
-nsession_ids: int
+process_ext_session_bind(SocketEntry *e)
}
note for SocketEntry "Added check for AGENT_MAX_SESSION_IDS in process_ext_session_bind to prevent recording too many session IDs."
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Summary by Sourcery
This pull request updates the OpenSSH version to 14.2p2 and includes several bug fixes. It also prevents replying to PING messages in pre-authentication and during key exchange.
Bug Fixes: