diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-02-09 16:10:03 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2017-08-22 16:24:05 +0100 |
commit | 78963ce671198209cadd01ebb0aa20ae4fac22d6 (patch) | |
tree | 8b7fa8154dab43824039b41328c07e6843ed4415 | |
parent | e08f96cf1105a3ee9a23de7102d593443e031e0c (diff) |
Mention ssh-keygen in ssh fingerprint changed warning
Author: Chris Lamb <lamby@debian.org>
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1843
Bug-Ubuntu: https://bugs.launchpad.net/bugs/686607
Last-Update: 2017-08-22
Patch-Name: mention-ssh-keygen-on-keychange.patch
-rw-r--r-- | sshconnect.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sshconnect.c b/sshconnect.c index 7f169a8fd..881b08860 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -1080,9 +1080,13 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, | |||
1080 | error("%s. This could either mean that", key_msg); | 1080 | error("%s. This could either mean that", key_msg); |
1081 | error("DNS SPOOFING is happening or the IP address for the host"); | 1081 | error("DNS SPOOFING is happening or the IP address for the host"); |
1082 | error("and its host key have changed at the same time."); | 1082 | error("and its host key have changed at the same time."); |
1083 | if (ip_status != HOST_NEW) | 1083 | if (ip_status != HOST_NEW) { |
1084 | error("Offending key for IP in %s:%lu", | 1084 | error("Offending key for IP in %s:%lu", |
1085 | ip_found->file, ip_found->line); | 1085 | ip_found->file, ip_found->line); |
1086 | error(" remove with:"); | ||
1087 | error(" ssh-keygen -f \"%s\" -R \"%s\"", | ||
1088 | ip_found->file, ip); | ||
1089 | } | ||
1086 | } | 1090 | } |
1087 | /* The host key has changed. */ | 1091 | /* The host key has changed. */ |
1088 | warn_changed_key(host_key); | 1092 | warn_changed_key(host_key); |
@@ -1090,6 +1094,9 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, | |||
1090 | user_hostfiles[0]); | 1094 | user_hostfiles[0]); |
1091 | error("Offending %s key in %s:%lu", key_type(host_found->key), | 1095 | error("Offending %s key in %s:%lu", key_type(host_found->key), |
1092 | host_found->file, host_found->line); | 1096 | host_found->file, host_found->line); |
1097 | error(" remove with:"); | ||
1098 | error(" ssh-keygen -f \"%s\" -R \"%s\"", | ||
1099 | host_found->file, host); | ||
1093 | 1100 | ||
1094 | /* | 1101 | /* |
1095 | * If strict host key checking is in use, the user will have | 1102 | * If strict host key checking is in use, the user will have |