The idea of walking up to a lock and saying “here are all of my keys. Do any unlock you?” is kind of weird and backwards. But I realize, thinking about it, I was doing that all the time at a previous job where I’d just mash my entire wallet against the keycard reader. Bonus tangent: join me in playing “Payment Roulette” where you mash your wallet against payment terminals and let your credit and debit cards sort out…
That’s very trusting that there isn’t some race condition on the POS that ends up charging them all.
ssh whoami.filippo.io
41–50 of 90 posts
Re: ssh whoami.filippo.io
#42Re: ssh whoami.filippo.io
#43The idea of walking up to a lock and saying “here are all of my keys. Do any unlock you?” is kind of weird and backwards. But I realize, thinking about it, I was doing that all the time at a previous job where I’d just mash my entire wallet against the keycard reader. Bonus tangent: join me in playing “Payment Roulette” where you mash your wallet against payment terminals and let your credit and debit cards sort out…
That’s very trusting that there isn’t some race condition on the POS that ends up charging them all.
Re: ssh whoami.filippo.io
#44Today I learned that GitHub keeps a publicly accessible list of all pubkeys linked to each user's account.
Yes I get that its not sensitive information, but as this demo demonstrates it can fingerprint people who might not be unaware re: this quirk of SSH's coupled with this part of the Github API.
Re: ssh whoami.filippo.io
#45Earlier quoted context omitted.
That's a petty interpretation, it's a big leap reading "don't send your unique identity to strange servers by default" as "never use private keys, always use passwords instead." Nothing about that config snippet precludes using private keys for known servers.
Well that is how I read it :P I think it would be good to point out that you can add other Host sections to override it.
I value this and I universally disable password auth…on the server :)
E: as listed by others, IdentitiesOnly=yes seems like a better approach?
Re: ssh whoami.filippo.io
#46Earlier quoted context omitted.
I think it's pretty clever, and demonstrates something very powerful about GitHub's position as de facto global code repository: you can get a strong cryptographic identity for (almost) anyone on the service, which you can then sign/encrypt to, verify for, etc. age (another tool of Filippo's) leverages this to make encrypting to any GitHub user easy[1]. [1]: https://github.com/FiloSottile/age#encrypting-to-a-github-u…
> you can get a strong cryptographic identity for (almost) anyone on the service, which you can then sign/encrypt to, verify for, etc. I made https://sshign.tcardenas.me/ to take advantage of this. For example: [1] In the end, it isn't that useful. I only routinely sign digitally to deal with the (Spanish) government, and they provide their own certificates and software to do that. [1] https://sshign.tcardenas.me/?si…
The signature verification is handy.
Re: ssh whoami.filippo.io
#47You can turn this behavior off in .ssh/config with Host * PubkeyAuthentication no Put that at the bottom of the file, then turn back on for each host: Host site.com PubkeyAuthentication yes
Re: ssh whoami.filippo.io
#48You can turn this behavior off in .ssh/config with Host * PubkeyAuthentication no Put that at the bottom of the file, then turn back on for each host: Host site.com PubkeyAuthentication yes
Re: ssh whoami.filippo.io
#49Today I learned that GitHub keeps a publicly accessible list of all pubkeys linked to each user's account.
Seems questionable on Github's part to have .keys public by default, why not allow people to opt in ex: keybase.io equivalent? Yes I get that its not sensitive information, but as this demo demonstrates it can fingerprint people who might not be unaware re: this quirk of SSH's coupled with this part of the Github API.
Re: ssh whoami.filippo.io
#50Edit: totally disregard this, absolute brain fog moment