Show HN: My SSH server knows who you are
71–80 of 257 posts
Re: Show HN: My SSH server knows who you are
#72Earlier quoted context omitted.
Didn't work for me either. It seems like it fails more than it succeeds based on the results posted in this thread.
presumably, those for which it worked are less likely to post? FWIW, it worked for me.
Re: Show HN: My SSH server knows who you are
#73 We tried to use that to find your GitHub username, but we
couldn't :( maybe you don't even have GitHub ssh keys, do you?
You just need to properly configure your SSH.Re: Show HN: My SSH server knows who you are
#74Re: Show HN: My SSH server knows who you are
#75FYI, this happens because SSH automatically presents a public key to the server when trying to authenticate. If the server doesn't know that key, then SSH tries the next one. You can enumerate all of someone's keys this way (like this SSH server does) If you want to disable this sort of behaviour you can disable SSH from sending keys automatically, and then tell SSH which identity files need to be sent to each host.…
Re: Show HN: My SSH server knows who you are
#76Re: Show HN: My SSH server knows who you are
#77Re: Show HN: My SSH server knows who you are
#78Nice idea, but don't run the command if you have Host * ForwardAgent yes On your ~/.ssh/config
What is the effect of ForwardAgent ?
Re: Show HN: My SSH server knows who you are
#79FYI, this happens because SSH automatically presents a public key to the server when trying to authenticate. If the server doesn't know that key, then SSH tries the next one. You can enumerate all of someone's keys this way (like this SSH server does) If you want to disable this sort of behaviour you can disable SSH from sending keys automatically, and then tell SSH which identity files need to be sent to each host.…
Re: Show HN: My SSH server knows who you are
#801. ssh sends the pubkey you use on github ^1
2. his server compare with the publicly ^2 available pub key you uploaded to github.com
^1 (not mine, i set keys per domain)
^2 news to me!