I was reading GitLab’s documentation (see link) on how to write to a repository from within the CI pipeline and noticed something: The described Docker executor is able to authenticate e.g. against the Git repository with only a private SSH key, being told absolutely nothing about the user’s name it is associated with.
If I’m correct, that would mean that technically, I could authenticate to an SSH server without supplying my name if I use a private key?
I know that when I don’t supply a user explicitly like ssh user@server
or via .ssh/config
, the active environment’s user is used automatically, that’s not what I’m asking.
The public key contains a user name/email address string, I’m aware, is the same information also encoded into the private key as well? If yes, I don’t see the need to hand that info to an SSH call. If no, how does the SSH server know which public key it’s supposed to use to challenge my private key ownership? It would have to iterate over all saved keys, which sounds rather inefficient to me and potentially unsafe (timing attacks etc.).
I hope I’m somewhat clear, for some reason I find it really hard to phrase this question.
EDIT: Noticed you’re talking about Gitlab in the question, and I responded about Github, but I’m certain that gitlab does everything the same way, because that’s all the technology is capable of. (I have no way to test the
ssh -T
command at the end for gitlab, though, so ymmv.)To clear up some minor confusion here:
At this point it already knows who is trying to authenticate. Once your authentication request succeeds with your public key (the usual challenge-response handshake associated with asymmetric cryptography), github interacts with your ssh client (most likely
git
) applying the permissions of your user and your user account.BTW, github has a documented method for testing the handshake without doing any git operations:
Depending on your ssh config, you might also need to supply
-i some_filename.pem
to this. Github will reply withand then close the connection.
Note that the test authentication uses the username
git
and, again, contains no information about who you are. It’s all just looked up on github’s side.