HTML over DNS: Serving Blog Content over DNS
jacobkiers.net
HTML over DNS: Serving Blog Content over DNS
1–10 of 77 posts
Re: HTML over DNS: Serving Blog Content over DNS
#2Re: HTML over DNS: Serving Blog Content over DNS
#3Re: HTML over DNS: Serving Blog Content over DNS
#4What's the point though? I can think maybe of reduced latency, but then you usually have the DNS already cached locally. And that takes me to a second point, won't you run into problems delivering content updates, given that clients will most likely cache DNS entries?
Re: HTML over DNS: Serving Blog Content over DNS
#5What's the point though? I can think maybe of reduced latency, but then you usually have the DNS already cached locally. And that takes me to a second point, won't you run into problems delivering content updates, given that clients will most likely cache DNS entries?
Re: HTML over DNS: Serving Blog Content over DNS
#6[0] https://unit42.paloaltonetworks.com/dns-tunneling-how-dns-ca...
[1] https://github.com/Jigsaw-Code/choir (disclosure: I co-develop hard-forks of two other related Jigsaw-Code projects)
Re: HTML over DNS: Serving Blog Content over DNS
#7 const dohServer = "https://cloudflare-dns.com/dns-query?ct=application/dns-json&type=TXT&name=";
const baseDomain = "hod.experiments.jacobkiers.net";
About 12 years ago I experimented with HTML over UDP DNS by modifying dnstxt from djbdns to output a MIME header. I could store tiny web pages, i.e., hyperlinks, in a zone file and serve them with tinydns. (This was before the size of DNS packets ballooned with adoption of EDNS.)Re: HTML over DNS: Serving Blog Content over DNS
#8What's the point though? I can think maybe of reduced latency, but then you usually have the DNS already cached locally. And that takes me to a second point, won't you run into problems delivering content updates, given that clients will most likely cache DNS entries?
Re: HTML over DNS: Serving Blog Content over DNS
#9What's the point though? I can think maybe of reduced latency, but then you usually have the DNS already cached locally. And that takes me to a second point, won't you run into problems delivering content updates, given that clients will most likely cache DNS entries?
Re: HTML over DNS: Serving Blog Content over DNS
#10I used DoH because to the best of my knowledge it's not possible to open raw sockets from the browser. Otherwise I'd have done that.
I don't think there's any practical use. And I did not intend it to have any.