mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 06:25:57 +03:00
[GH-ISSUE #78] security: implement SSH host key verification (TOFU) #103
Labels
No labels
bug
enhancement
feature-request
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxcenter-ui#103
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @adminsyspro on GitHub (Mar 6, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/78
Problem
All SSH connections (rolling updates, test-ssh, replication) use
InsecureIgnoreHostKey, making them vulnerable to man-in-the-middle attacks.Expected
Implement Trust On First Use (TOFU): store the host key fingerprint on first connection, then verify it on subsequent connections. Alert the user if the fingerprint changes.
Implementation notes
sshHostKey(orsshFingerprint) toManagedHostmodelPriority
Medium — requires network-level MITM to exploit, but important for hardened environments.