this post was submitted on 15 Mar 2021
32 points (100.0% liked)
Privacy
33462 readers
493 users here now
A place to discuss privacy and freedom in the digital world.
Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.
In this community everyone is welcome to post links and discuss topics related to privacy.
Some Rules
- Posting a link to a website containing tracking isn't great, if contents of the website are behind a paywall maybe copy them into the post
- Don't promote proprietary software
- Try to keep things on topic
- If you have a question, please try searching for previous discussions, maybe it has already been answered
- Reposts are fine, but should have at least a couple of weeks in between so that the post can reach a new audience
- Be nice :)
Related communities
much thanks to @gary_host_laptop for the logo design :)
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Yes that's how DNS resolution works. Any DNS resolver can either query another resolver (most commercial internet routers will query your ISP's resolver), or resolve the domain name themselves by querying DNS servers from right to left in the domain name.
For example, querying lemmy.ml involves:
ml
DNS serversml
DNS servers forlemmy
lemmy
DNS servers for an IP address to connect toRecursive resolution is a feature of the DNS system which ensures distribution of power among actors, so a single bad actors, even when very high in the hierarchy, can't have too much negative impact further down the chain. For example, if root servers are compromised, they couldn't stop
lemmy.ml
from resolving: they could stop the whole ofml
from resolving (becauseml
is part of the zone they have authority for) but nothing more. This aspect of DNS limits temptation of censorship.Wouldn't it still be plaintext though? Someone upstream the network (namely your ISP) datamining your network traffic would still be able to tell which domains you're requesting, right?
Short answer, yes. But Authoritative DNS over TLS (ADoT) is being standardized for encrypting resolver-to-authority queries.
Does Unbound support this already?