Live data from Hacker News

Show HN: I made Devzat – It's like Discord but in the terminal, over SSH

news.ycombinator.com

131–140 of 154 posts

Re: Show HN: I made Devzat – It's like Discord but in the terminal, over SSH

#133

Did you know you are exposing your identity for each "permission denied" error? SSH repeatedly tries all of your public keys to authenticate. Someone was able to harvest that and figure multiple github profiles of the client in past.

huh that's... really bad. Is there some way of turning that off? grepping through the man file didn't tell me about any options.

Re: Show HN: I made Devzat – It's like Discord but in the terminal, over SSH

#135

Earlier quoted context omitted.

Oh, interesting I guess it just feels like people into tech and software would yk, not engage in hate speech. Then again, I'm pretty new to the world in general.

Quoted post unavailable.

He also loves monopolies

Re: Show HN: I made Devzat – It's like Discord but in the terminal, over SSH

#136

Earlier quoted context omitted.

But unfortunately it is highly censored. And if you're part of any community that is banned, your account is banned as well. It happens often. Something I experienced, as a former member of a nootropics server. I don't find the service very trustworthy, but I think that if you're a gamer, it may work out just fine for you.

I got banned for demonstrating spectre and meltdown to a work audience, during the presentation. FML.

This is everything right here.

Re: Show HN: I made Devzat – It's like Discord but in the terminal, over SSH

#137

make sure one's ssh-agent forwarding is off when connecting to strange hosts :)

Are you telling me that everyone who clones a repo from GitHub via SSH is in fact authorizing GitHub to use their private key? Why hasn't anyone made a slick web page with a catchy name like AuthBleed or SecretAgent to describe that one yet?

Re: Show HN: I made Devzat – It's like Discord but in the terminal, over SSH

#138

Holy crap, moderation is hard.

One thing you might consider doing is using https://github.com/USER.keys to verify the identity of the person connecting. Then use the GitHub API to verify they have at least N followers and has existed for N days. It would be wonderful to have a social network for open source developers on the command line.

Re: Show HN: I made Devzat – It's like Discord but in the terminal, over SSH

#140
post #137

make sure one's ssh-agent forwarding is off when connecting to strange hosts :)

Are you telling me that everyone who clones a repo from GitHub via SSH is in fact authorizing GitHub to use their private key? Why hasn't anyone made a slick web page with a catchy name like AuthBleed or SecretAgent to describe that one yet?

The default OpenSSH settings are safe. You have to explicitly whitelist servers or domains in `.ssh/config`, but if you were to blatantly blast:

Host * ForwardAgent yes

The scenario you talk about is certainly possible, especially since OpenSSH does not require a "tap" for each authorization once the agent is unlocked. (Side note: this is one thing hardware u2f keys absolutely got correct).

Post reply on HN