Created
March 24, 2023 07:36
-
-
Save robbat2/b456f09b7799f4dafe24115095b8b29c to your computer and use it in GitHub Desktop.
Mark compromised GitHub.com key as revoked
This file contains 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
#!/bin/bash | |
# You might need to insert this in a slightly different place | |
cat >>/etc/ssh/ssh_config <<EOF | |
Host * | |
RevokedHostKeys /etc/ssh/ssh_revoked_hosts | |
EOF | |
cat >>/etc/ssh/ssh_revoked_hosts <<EOF | |
# https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/ | |
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment