cat

329 points · 21 comments · view on lemmy.world

21 Comments

rikudou@lemmings.world · 85 pts · 1y (7 replies)

Here you go!

~ $ cat ~/.ssh/id_rsa
cat: /data/data/com.termux/files/home/.ssh/id_rsa: No such file or directory
~ $ cat ~/.ssh/id_ed25519
cat: /data/data/com.termux/files/home/.ssh/id_ed25519: No such file or directory
SatyrSack@feddit.org · 9 pts · 1y (6 replies)

The first command works for me on Termux, but the second matches your output. Does this just mean you have not set up SSH?

rikudou@lemmings.world · 17 pts · 1y (3 replies)

I use ssh regularly, I just use a different key for each server. And thus I don't use the default name (id_rsa) because it doesn't make sense.

thanks_shakey_snake@lemmy.ca · 9 pts · 1y (2 replies)

Let's see the hackers figure that one out!

rikudou@lemmings.world · 7 pts · 1y (1 reply)

cat ~/.ssh/* perhaps?

thanks_shakey_snake@lemmy.ca · 5 pts · 1y

Damn okay well if the hackers are at that level I guess you're just screwed.

kionite231@lemmy.ca · 4 pts · 1y (1 reply)

No that means they haven't ran ssh-keygen yet

idunnololz@lemmy.world · 5 pts · 1y

Or they did not use the default name. Devious D:

dan@upvote.au · 21 pts · 1y (10 replies)

id_rsa shouldn't exist any more.

bjoern_tantau@swg-empire.de · 38 pts · 1y

If I had a nickel for every time I had to change my ssh key algorithm I'd have two nickels.

Which isn't much but it's concerning that it happened twice.

friend_of_satan@lemmy.world · 24 pts · 1y (3 replies)

A few days ago I was messing with my ubiquiti dream router and its ssh config option said the key should start with ssh-rsa 🙄

dan@upvote.au · 21 pts · 1y (2 replies)

It probably accepts other key types and it's just the UI that's outdated. I doubt they're using an SSH implementation other than Dropbear or OpenSSH, and both support ed25519.

dbx12@programming.dev · 3 pts · 1y
[ removed ]
friend_of_satan@lemmy.world · 1 pts · 1y

I thought this might be the case, but haha, nope!

Scoopta@programming.dev · 12 pts · 1y (3 replies)

Fact of the matter is RSA is perfectly secure still...and ECDSA/ED25519 should also be extinct given the rising need for post quantum cryptography

Supermariofan67@programming.dev · 16 pts · 1y (2 replies)

The problem is not the RSA math itself but that it is both extremely slow and implementing it is particularly susceptible to bugs and side channel attacks https://blog.trailofbits.com/2019/07/08/fuck-rsa/

Scoopta@programming.dev · 1 pts · 1y (1 reply)

Most of the situations I encounter RSA are in projects where I hope RSA is implemented correctly. I have a lot of Let's Encrypt certs that are still RSA and my main SSH keys are still RSA. All of these were generated quite some time ago. I understand the problem with projects that implement it incorrectly but I'd hope OpenSSH and certbot aren't those projects 😥

computergeek125@lemmy.world · 1 pts · 1y

For Certbot, I think it's even further up the chain - OpenSSL. And if you're installing it to Apache or Nginx, its probably just OpenSSL again.

peeteer@feddit.org · 2 pts · 1y

Azure DevOps only allows you to use RSA keys. This caused a major outage in May (they switched from V1 to V2) :).

blackstrat@lemmy.fwgx.uk · 13 pts · 1y

None of them...

ssh-keygen -t ecdsa -b 384

Then get it signed and use the certificate.

blackstrat@lemmy.fwgx.uk · 4 pts · 1y

SSH certificates are where its at.

dosuser123456@lemmy.sdf.org · 1 pts · 1y

i havent even configured my ssh

~ $ cat ~/.ssh/id_rsa
cat: /home/dos/.ssh/id_rsa: No such file or directory
~ $ cat ~/.ssh/id_ed25519
cat: /home/dos/.ssh/id_ed25519: No such file or directory

(i jut realized i gorgot rthis part)