|
| 1 | +#!/bin/bash |
| 2 | + |
| 3 | +# Originally taken from the Flux project (https://github.com/fluxcd/flux/tree/master/docker) where is under an |
| 4 | +# Apache-2.0 license |
| 5 | + |
| 6 | +set -eu |
| 7 | + |
| 8 | +known_hosts_file=${1} |
| 9 | +known_hosts_file=${known_hosts_file:-/etc/ssh/ssh_known_hosts} |
| 10 | +hosts="github.com gitlab.com bitbucket.org ssh.dev.azure.com vs-ssh.visualstudio.com" |
| 11 | +hosts_2022="source.developers.google.com" |
| 12 | + |
| 13 | +# The heredoc below was generated by constructing a known_hosts using |
| 14 | +# |
| 15 | +# ssh-keyscan github.com gitlab.com bitbucket.org ssh.dev.azure.com vs-ssh.visualstudio.com > ./known_hosts |
| 16 | +# |
| 17 | +# then generating the sorted fingerprints with |
| 18 | +# |
| 19 | +# ssh-keygen -l -f ./known_hosts | LC_ALL=C sort |
| 20 | +# |
| 21 | +# then checking against the published fingerprints from: |
| 22 | +# - github.com: https://help.github.com/articles/github-s-ssh-key-fingerprints/ |
| 23 | +# - gitlab.com: https://docs.gitlab.com/ee/user/gitlab_com/#ssh-host-keys-fingerprints |
| 24 | +# - bitbucket.org: https://confluence.atlassian.com/bitbucket/ssh-keys-935365775.html |
| 25 | +# - ssh.dev.azure.com & vs-ssh.visualstudio.com: sign in, then go to User settings -> SSH Public Keys |
| 26 | +# (this is where the public key fingerprint is shown; it's not a setting) |
| 27 | +# - source.developers.google.com: https://cloud.google.com/source-repositories/docs/cloning-repositories |
| 28 | + |
| 29 | +fingerprints=$(mktemp -t) |
| 30 | +cleanup() { |
| 31 | + rm -f "$fingerprints" |
| 32 | +} |
| 33 | +trap cleanup EXIT |
| 34 | + |
| 35 | +# make sure sorting is in the same locale as the heredoc |
| 36 | +export LC_ALL=C |
| 37 | + |
| 38 | +generate() { |
| 39 | + ssh-keyscan ${hosts} > ${known_hosts_file} |
| 40 | + ssh-keyscan -p 2022 ${hosts_2022} >> ${known_hosts_file} |
| 41 | +} |
| 42 | + |
| 43 | +validate() { |
| 44 | +ssh-keygen -l -f ${known_hosts_file} | sort > "$fingerprints" |
| 45 | + |
| 46 | +diff - "$fingerprints" <<EOF |
| 47 | +2048 SHA256:ROQFvPThGrW4RuWLoL9tq9I9zJ42fK4XywyRtbOz/EQ gitlab.com (RSA) |
| 48 | +2048 SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8 github.com (RSA) |
| 49 | +2048 SHA256:ohD8VZEXGWo6Ez8GSEJQ9WpafgLFsOfLOtGGQCQo6Og ssh.dev.azure.com (RSA) |
| 50 | +2048 SHA256:ohD8VZEXGWo6Ez8GSEJQ9WpafgLFsOfLOtGGQCQo6Og vs-ssh.visualstudio.com (RSA) |
| 51 | +2048 SHA256:zzXQOXSRBEiUtuE8AikJYKwbHaxvSc0ojez9YXaGp1A bitbucket.org (RSA) |
| 52 | +256 SHA256:AGvEpqYNMqsRNIviwyk4J4HM0lEylomDBKOWZsBn434 [source.developers.google.com]:2022 (ECDSA) |
| 53 | +256 SHA256:HbW3g8zUjNSksFbqTiUWPWg2Bq1x8xdGUrliXFzSnUw gitlab.com (ECDSA) |
| 54 | +256 SHA256:eUXGGm1YGsMAS7vkcx6JOJdOGHPem5gQp4taiCfCLB8 gitlab.com (ED25519) |
| 55 | +EOF |
| 56 | + |
| 57 | +} |
| 58 | + |
| 59 | +retries=10 |
| 60 | +count=0 |
| 61 | +ok=false |
| 62 | +wait=2 |
| 63 | +until ${ok}; do |
| 64 | + generate && validate && ok=true || ok=false |
| 65 | + count=$(($count + 1)) |
| 66 | + if [[ ${count} -eq ${retries} ]]; then |
| 67 | + echo "ssh-keyscan failed, no more retries left" |
| 68 | + exit 1 |
| 69 | + fi |
| 70 | + sleep ${wait} |
| 71 | +done |
0 commit comments