logo

blog

My little blog can’t be this cute! git clone https://hacktivis.me/git/blog.git
commit: b30c89dd7bfc55beda48d99489010e533c1ae8d9
parent 64481b1b2cae283bd7bfa4c2c94640d96fa23546
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun,  1 Mar 2020 02:00:00 +0000

articles/HTTP3: New

Diffstat:

Aarticles/HTTP3.shtml15+++++++++++++++
Aarticles/HTTP3.xhtml13+++++++++++++
Mfeed.atom11+++++++++++
Mhome.shtml1+
4 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/articles/HTTP3.shtml b/articles/HTTP3.shtml @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="en"> + <head> +<!--#include file="/templates/head.shtml" --> + <meta property="og:type" content="article"/> + <meta property="og:title" content="HTTP3"/> + <title>HTTP3 — Cyber-home of lanodan</title> + </head> + <body> +<!--#include file="/templates/en/nav.shtml" --> +<!--#include file="/articles/HTTP3.xhtml"--> + <a href="/articles/HTTP3.xhtml">article only(plain XHTML)</a> +<!--#include file="/templates/en/footer.html" --> + </body> +</html> diff --git a/articles/HTTP3.xhtml b/articles/HTTP3.xhtml @@ -0,0 +1,13 @@ +<article xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-entry"> +<a href="/articles/HTTP3"><h1>HTTP3</h1></a> +<p>First thing first: Well done, this is the first article where I had to drop a letter from the title to keep the orthogonality between the title and the filename.</p> +<p>I went to the HTTP/3 talk at FOSDEM, it was quite interesting until I got reminded that the Web can't get it's shit right: QUIC basically has tracking of how good your connection/browser/… is, hello fingerprinting.</p> +<p>So none of my computers will have support for HTTP/3 or QUIC, I run gentoo and I have my own browser which reuses existant parts of the system, I wish other browsers would do the same but I have no hope there. +At worst I will have a reduced implementation of the protocol (for example no 0-RTT "Handshake") for compatibility if I get forced to use it. +But I don't see it coming other than maybe for less pain in Google ReeCaptcha (fuck your website if it's using it) as I still support HTTP/0.9 throught HTTP/1.1, and HTTP/2 is only enabled on my HTTP server just because nginx has support for it.</p> +<hr> +<p>If there is <em>one</em> thing to fix in your broken protocol it's the fact that <code>ETag</code> is also great at being a <a href="https://en.wikipedia.org/wiki/HTTP_ETag#Tracking_using_ETags">fucking tracker</a>, but <code>HTTP 304 Not Modified</code> is the same so congrats, we have caching with also having it being tracked. And of course the lawsuits went against KISSmetrics and Hulu instead of browser vendors or protocol designers, because if I had time for this shit (and any trust in the Justice) I probably would sue them, not the ones merely watching their logs.</p> +<p>The client should only do a <code>HEAD</code> to get new metadata and then do it's own side-effects. It's not tracking-proof but it would at least mean having to do tracking on multiple requests and with a risk of false-positives (<code>HEAD</code> and then sometimes <code>GET</code> being used by some software for link previews), while currently you can basically be 100% sure because it's part of the protocol.</p> +<p>The solution adopted by most frontend folks for cache managment was to put a hash into the filename, and it's quite a good way to do it in their case. It should only have been into headers rather than into the filename so it could be used by other folks and a hash/version in the filename would get more rare, thus having better caching.</p> +<p><a href="">Fediverse post for comments</a>, published on 2020-03-01T02:00:00Z, last updated on 2020-03-01T02:00:00Z</p> +</article> diff --git a/feed.atom b/feed.atom @@ -11,6 +11,17 @@ <!-- new.sh: new articles here --> <entry> + <title>HTTP3</title> + <link rel="alternate" type="text/html" href="/articles/HTTP3"/> + <id>https://hacktivis.me/articles/HTTP3</id> + <published>2020-03-01T02:00:00Z</published> + <updated>2020-03-01T02:00:00Z</updated> + <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> +<!--#include file="/articles/HTTP3.xhtml"--> + </div></content> + </entry> + + <entry> <title>201? Summary</title> <link rel="alternate" type="text/html" href="/articles/201%3F%20Summary"/> <id>https://hacktivis.me/articles/201%3F%20Summary</id> diff --git a/home.shtml b/home.shtml @@ -6,6 +6,7 @@ </head> <body> <!--#set var="transPageUrl" value='accueil' --><!--#set var="feedURL" value='/feed.atom'--><!--#include file="templates/en/nav.shtml" --> +<!--#include file="/articles/HTTP3.xhtml"--> <!--#include virtual="/articles/201%3F%20Summary.xhtml"--> <!--#include file="/articles/Bootstrapping signify for my assets.xhtml"--> <!--#include file="/articles/2019-09 Summary.xhtml"-->