310
all 43 comments
sorted by: hot top controversial new old
[-] KairuByte@lemmy.dbzer0.com 56 points 10 months ago* (last edited 10 months ago)

Why would anyone ever use self signed certs? Buy a cheap ass domain, and use LetsEncrypt to get a free cert.

[-] Sallp@lemmy.world 29 points 10 months ago

If it is for internal only, self signed is a lot easier.

[-] KSPAtlas@sopuli.xyz 1 points 10 months ago

Also probably no sysadmin uses it, but the Gemini protocol requires the use of a self signed cert

[-] KairuByte@lemmy.dbzer0.com -3 points 10 months ago

Hard disagree. As long as you have any machine with internet access it’s trivial, even more so if you can use DNS challenge.

[-] SomeKindaName@lemmy.world 3 points 10 months ago* (last edited 10 months ago)

You're absolutely correct. For self hosting at home I use cloudflare for DNS challenges.

Caddy is also amazing at making things even simpler.

[-] nickwitha_k@lemmy.sdf.org -5 points 10 months ago

So is using "pass" as the password to all of your sensitive systems. Still not best, or even good practice.

[-] JWBananas@startrek.website 18 points 10 months ago

Are you conflating self-signed and untrusted?

Self-signed is fine if you have a trusted root deployed across your environment.

[-] nickwitha_k@lemmy.sdf.org 4 points 10 months ago

Correct. If using actual pki with a trusted root and private CA, you're just fine.

I took the statement to mean ad-hoc self-signed certs, signed by the server that they are deployed on. That works for EiT but defeats any MitM protection, etc.

[-] krellor@kbin.social 11 points 10 months ago* (last edited 10 months ago)

I use self signed certs for thinclient authentication. Generate self signed cert, load into AWS workspaces, sign device certs with root, and only machines that have the cert installed and pass the username password prompt will get through the AWS service broker. I can't see how using a CA signed cert helps me in any meaningful way. If I lose trust in the cert, I revoke it myself from the service.

[-] nickwitha_k@lemmy.sdf.org 1 points 10 months ago

Use of a CA (private CA would be my thought in this case) gives you greater ability to manage certs without needing to manually revoke and the ability to verify authenticity. You're already doing most of the work to run a private CA, TBH. Just, instead of signing from the machine, you add your private CA's intermediate cert to the trusted CAs on your hosts, and generate CSRs on your new hosts for your CA to sign.

Signing from the machine that uses a cert gives it greater authority and increases the "blast radius" if it gets compromised.

[-] krellor@kbin.social 2 points 10 months ago

I do have a private ca service running on an internal ec2 instance, but all the AWS workspaces broker checks is if the device cert being passed by the thinclient was signed by one of the two signing certs you've loaded into the service, so the private ca itself still doesn't manage revocation in this case.

I do appreciate the suggestion. My main goal in sharing this use case was to show folks that there are many places certificate are used that let's encrypt isn't geared up to solve. Other examples are things like signing Microsoft API requests, etc.

Anyway, have a great day!

[-] nickwitha_k@lemmy.sdf.org 1 points 10 months ago

Oh fun. Thanks for sharing! Have a great day, yourself!

[-] Shadow@lemmy.ca 6 points 10 months ago

Mtls across a large number of machines. I run my own CA and intermediates on hashicorp vault.

For end user services, yes LE.

[-] KairuByte@lemmy.dbzer0.com 5 points 10 months ago

At the point of running your own CA with infrastructure in place to support it, I wouldn’t really call that “self signing.”

I get that it technically is, since you’re not going through an external CA, but really it’s like calling a companies Datacenter “self hosted” because it’s on their own hardware. Technically the truth, but not what is generally meant. 😜

[-] Sandbag@lemmy.world 1 points 10 months ago
[-] Shadow@lemmy.ca 1 points 10 months ago

Let's encrypt

[-] nickwitha_k@lemmy.sdf.org 26 points 10 months ago

Not pictured: Using a CA to properly administer certs because self-signed certs are not secure.

[-] slazer2au@lemmy.world 2 points 10 months ago

How are they not secure? You are still doing TLS to the service, maybe they have weak keys but it is still a form of secure connection.

[-] nickwitha_k@lemmy.sdf.org 0 points 10 months ago

Certs do more than encryption in transit. They are also used for protection against MitM and authentication. Self-signing removes the ability to verify a cert's authenticity.

[-] Daqu@feddit.de 1 points 10 months ago

That's bullshit. You are the one who issued the cert. You can add it to your list of trusted certificates. You just have to check that this is the right certificate.

Your man in the middle scare comes from users who ignore cert warnings and continue without checking anything.

[-] nickwitha_k@lemmy.sdf.org 0 points 10 months ago

That's bullshit.

Nope. That's the basics of PKI and scalable, secure, low-trust environments.

You are the one who issued the cert. You can add it to your list of trusted certificates. You just have to check that this is the right certificate.

You can indeed do these things. But, are you and your users going to verify every cert for every request and response? That's a lot of unnecessary cognitive load and tedium, both of which are known to compromise judgement. Are you going to automate it? Ok then how are you going to verify the authenticity of a given cert?

Your man in the middle scare comes from users who ignore cert warnings and continue without checking anything.

Humans are not rational actors. Does everyone read the entire EULA? Not even close.

The problem with your statement, and why it is fallacious, is that you are not accounting for humans besides yourself. I'd even argue that you should also take your human nature into account because we all make mistakes.

Robust security postures do not require everyone to act perfectly but accept and plan for the fact that we're fallible. That is why chains and webs of trust were created, so that humans and automated services can take an approach of deference towards a less mutable "expert" on whether a claim of authenticity is trustworthy - giving them the capability and responsibility of deciding this for themselves introduces unnecessary targets for exploits.

[-] Daqu@feddit.de 0 points 10 months ago

Your man in the middle argument is invalid, no matter how much you write. Just trust youur self signed certs and you users see no difference. That's even more secure than blindly trusting the idiots from verisign.

Don't act so smug.

[-] nickwitha_k@lemmy.sdf.org 1 points 10 months ago

Your man in the middle argument is invalid, no matter how much you write.

It really isn't and it's a significant part of why PKI exists in the first place. I've been doing this stuff professionally for over a decade and am very familiar with ISO27001, SOC2, and CIS standards, as well as generally just finding that a healthy dose of paranoia in computing keeps things more secure. Understanding how and why PKI works and is architected as it is is something that I recommend that everyone involved in technology explore.

Just trust youur self signed certs and you users see no difference.

This is problematic if a service needs to be redeployed, the cert expires, or becomes compromised, leaking its keys. In the former two scenarios, the new cert needs to be added on all of your end users' machines. If you have just a few users, sure, that's easy enough but, tedious and unnecessary. If it is a case of the latter, you now need to revoke the cert on all systems that have trusted it and deploy a new one. Again, tedious and prone to human error. Plus, you have to hope that you detect this quickly, otherwise a malicious host can harvest a lot of potentially-sensitive information, a situation easily prevented with a trusted CA.

That's even more secure than blindly trusting the idiots from verisign.

I'm not suggesting that a public CA is the best choice for everyone or every situation. For internal use, a well-managed private CA or LE is probably a better choice, purely from a cost perspective.

I'd also like to understand why you are so hostile towards Verisign and feel better qualified in cert management. Were you or someone close to you caught up in their 2010 breach?

Don't act so smug.

Not sure where this hostility is coming from. I am primarily explaining how these statements are not in line with intended use of security technologies and best practices. If you don't like currently accepted security best practices, that's absolutely your prerogative.

[-] Fal@yiffit.net -1 points 10 months ago

They're more secure than CA certs

[-] nickwitha_k@lemmy.sdf.org 2 points 10 months ago

Could you explain your statement further?

[-] Fal@yiffit.net 4 points 10 months ago

Basically with self signed certs, you control the ENTIRE trust chain. When you use existing CAs, any bad actor in any of those CAs can generate certs that you would end up trusting. So it's less secure because you have to trust a lot more people.

[-] nickwitha_k@lemmy.sdf.org 5 points 10 months ago

And if you're not using a trusted CA, you are unable to protect against MitM and other forgery attacks, as well as needing to rely upon a mechanism like TOFU in order to avoid auth fatigue and other human error, which is not great.

[-] Fal@yiffit.net 7 points 10 months ago

you are unable to protect against MitM and other forgery attacks

Uhh, using a self signed cert doesn't mean you just accept any old cert... Not every cert is designed for serving content to a browser. You do SSL mutual auth between services using self signed certs

[-] nickwitha_k@lemmy.sdf.org -1 points 10 months ago

You do SSL mutual auth between services using self signed certs

If you do, you remove the ability to prove that a service is what it claims to be as this requires accepting its provided cert - that is, authenticate it. You have to trust somewhere, even in a "zero trust" environment. Using self-signed certs for services to communicate means that you have to either have manual involvement every time a service comes up or accept the authenticity of a self-signed cert automatically. Either would be a compromise in security over use of a private CA, not an improvement.

Again, that works if your only concern is data across the pipes being encrypted during transmission but, it removes nearly all of the other additional security provided by PKI and increases your threat surface. It can be acceptable in some cases, like dev envs or as temporary measures but, with the constant increase in malicious traffic and activity, we've got to aim for better.

[-] Fal@yiffit.net 2 points 10 months ago

Oh. I'm absolutely including a private CA as part of self signed cert. That's probably my misuse of the term

[-] nickwitha_k@lemmy.sdf.org 2 points 10 months ago

Oh! Then you are doing it right. That was basically my entire objection - having A chain of trust is necessary to effectively and securely use certs because you have a mechanism to validate, rather than trust the cert that is presented as authentic. :)

[-] signofzeta@lemmygrad.ml 13 points 10 months ago

As soon as everyone signs their zones with DNNSEC, we can implement DANE to use self-signed certificates safely, and all our problems will go away, world peace will be achieved, and food will taste better.

[-] c0mbatbag3l@lemmy.world 2 points 10 months ago

Will my cock grow a bit, too?

[-] signofzeta@lemmygrad.ml 3 points 10 months ago

Yes, and the RRSIG record will prove that it hasn’t been tampered with.

[-] Chobbes@lemmy.world 2 points 10 months ago

I still don't understand the resistance to DNSSEC. It's just the right solution to the problem (or something like it is). Most of the arguments I've seen against it are just "the governments and three letter agencies control the TLDs!!" which like... Sure. But even with the usual CA infrastructure all of the trust depends upon the TLDs anyway. Like... If you are a TLD and control the root DNS servers you can obviously redirect any domain to wherever you want and get a LetsEncrypt certificate for any domain under the TLD anyway? Maybe somebody would notice, but it's probably just as likely that somebody would notice them messing around with DNSSEC (and then there would even be cryptographic proof of foul play?)

[-] CubitOom@infosec.pub 11 points 10 months ago

cert-manager is the first thing I install on every kubernetes cluster I make

[-] azurefirefly@lemmy.basedcount.com 5 points 10 months ago

Syncthing .cert dir until it inevitably gets deleted due to a conflict

this post was submitted on 02 Oct 2023
310 points (93.8% liked)

Sysadmin

7445 readers
1 users here now

A community dedicated to the profession of IT Systems Administration

No generic Lemmy issue posts please! Posts about Lemmy belong in one of these communities:
!lemmy@lemmy.ml
!lemmyworld@lemmy.world
!lemmy_support@lemmy.ml
!support@lemmy.world

founded 1 year ago
MODERATORS