A place to cache linked articles (think custom and personal wayback machine)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <!doctype html><!-- This is a valid HTML5 document. -->
  2. <!-- Screen readers, SEO, extensions and so on. -->
  3. <html lang="fr">
  4. <!-- Has to be within the first 1024 bytes, hence before the <title>
  5. See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset -->
  6. <meta charset="utf-8">
  7. <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 -->
  8. <!-- The viewport meta is quite crowded and we are responsible for that.
  9. See: https://codepen.io/tigt/post/meta-viewport-for-2015 -->
  10. <meta name="viewport" content="width=device-width,initial-scale=1">
  11. <!-- Required to make a valid HTML5 document. -->
  12. <title>Plaintext HTTP in a Modern World (archive) — David Larlet</title>
  13. <meta name="description" content="Publication mise en cache pour en conserver une trace.">
  14. <!-- That good ol' feed, subscribe :). -->
  15. <link rel="alternate" type="application/atom+xml" title="Feed" href="/david/log/">
  16. <!-- Generated from https://realfavicongenerator.net/ such a mess. -->
  17. <link rel="apple-touch-icon" sizes="180x180" href="/static/david/icons2/apple-touch-icon.png">
  18. <link rel="icon" type="image/png" sizes="32x32" href="/static/david/icons2/favicon-32x32.png">
  19. <link rel="icon" type="image/png" sizes="16x16" href="/static/david/icons2/favicon-16x16.png">
  20. <link rel="manifest" href="/static/david/icons2/site.webmanifest">
  21. <link rel="mask-icon" href="/static/david/icons2/safari-pinned-tab.svg" color="#07486c">
  22. <link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
  23. <meta name="msapplication-TileColor" content="#f0f0ea">
  24. <meta name="msapplication-config" content="/static/david/icons2/browserconfig.xml">
  25. <meta name="theme-color" content="#f0f0ea">
  26. <!-- Documented, feel free to shoot an email. -->
  27. <link rel="stylesheet" href="/static/david/css/style_2020-06-19.css">
  28. <!-- See https://www.zachleat.com/web/comprehensive-webfonts/ for the trade-off. -->
  29. <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_regular.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
  30. <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_bold.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
  31. <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_italic.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
  32. <link rel="preload" href="/static/david/css/fonts/triplicate_t3_regular.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
  33. <link rel="preload" href="/static/david/css/fonts/triplicate_t3_bold.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
  34. <link rel="preload" href="/static/david/css/fonts/triplicate_t3_italic.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
  35. <script>
  36. function toggleTheme(themeName) {
  37. document.documentElement.classList.toggle(
  38. 'forced-dark',
  39. themeName === 'dark'
  40. )
  41. document.documentElement.classList.toggle(
  42. 'forced-light',
  43. themeName === 'light'
  44. )
  45. }
  46. const selectedTheme = localStorage.getItem('theme')
  47. if (selectedTheme !== 'undefined') {
  48. toggleTheme(selectedTheme)
  49. }
  50. </script>
  51. <meta name="robots" content="noindex, nofollow">
  52. <meta content="origin-when-cross-origin" name="referrer">
  53. <!-- Canonical URL for SEO purposes -->
  54. <link rel="canonical" href="https://jcs.org/2021/01/06/plaintext">
  55. <body class="remarkdown h1-underline h2-underline h3-underline em-underscore hr-center ul-star pre-tick">
  56. <article>
  57. <header>
  58. <h1>Plaintext HTTP in a Modern World</h1>
  59. </header>
  60. <nav>
  61. <p class="center">
  62. <a href="/david/" title="Aller à l’accueil">🏠</a> •
  63. <a href="https://jcs.org/2021/01/06/plaintext" title="Lien vers le contenu original">Source originale</a>
  64. </p>
  65. </nav>
  66. <hr>
  67. <p>On the modern web, everything must be encrypted.
  68. Unencrypted websites are treated as relics of the past with browsers declaring
  69. them toxic waste not to be touched (or
  70. <a href="//blog.mozilla.org/security/2020/11/17/firefox-83-introduces-https-only-mode/">even looked at</a>)
  71. and search engines de-prioritizing their content.</p>
  72. <p>While this push for security is good for protecting modern communication, there
  73. is a whole web full of information and services that don’t <em>need</em> to be secured
  74. and those trying to access them from older vintage computers or even through
  75. modern embedded devices are increasingly being left behind.</p>
  76. <p class="alert">Note: This article is mostly directed at those serving personal websites, like
  77. this one, with no expectation of privacy or security by most readers of the
  78. content.
  79. If you are running a commercial website, collecting personal information from
  80. users, or transmitting sensitive data that users would expect to be done
  81. privately, disregard everything here and don’t bother offering your website over
  82. plaintext.</p>
  83. <h2 id="http-upgrading">HTTP Upgrading</h2>
  84. <p>Though it’s less common these days, users may still type in your website URL
  85. manually as opposed to clicking on a link that already includes the <code class="language-plaintext highlighter-rouge">https</code>
  86. scheme.
  87. (Imagine a user hearing your website mentioned on a podcast and they have to
  88. type it into their browser.)</p>
  89. <p>For a URL entered with an <code class="language-plaintext highlighter-rouge">http</code> scheme or, more commonly, no scheme specified,
  90. unless your domain is listed in the
  91. <a href="//www.chromium.org/hsts"><abbr title="Strict Transport Security">STS</abbr> preload list</a>
  92. of the user’s browser or they are using a plugin like
  93. <a href="//www.eff.org/https-everywhere">HTTPS Everywhere</a>, the browser will
  94. default to loading your website over plaintext HTTP.
  95. For this reason, even if your website is only served over HTTPS, it’s still
  96. necessary to configure your server to respond to plaintext HTTP requests with a
  97. 301 or 302 redirect to the HTTPS version of the URL.</p>
  98. <p>If your server is properly configured to send a <code class="language-plaintext highlighter-rouge">Strict-Transport-Security</code>
  99. header, once the user’s browser loads your website’s HTTPS version, the browser
  100. will cache that information for days or months and future attempts to load your
  101. site will default to the HTTPS scheme instead of HTTP even if the user manually
  102. types in an <code class="language-plaintext highlighter-rouge">http://</code> URL.</p>
  103. <h2 id="avoid-forced-upgrading-by-default">Avoid Forced Upgrading by Default</h2>
  104. <p>This forced redirection is a major cause of websites becoming inaccessible on
  105. vintage computers.
  106. Your server responds to the HTTP request with a 301 or 302 status and no
  107. content, and either a) the browser follows the redirection and tries to
  108. negotiate an SSL connection, but your server doesn’t offer legacy SSL versions
  109. or old ciphers so the negotiation fails, or b) the browser just doesn’t support
  110. SSL/TLS at all and fails to follow the redirection.</p>
  111. <p>A real-life example of this is that I recently purchased a Powerbook G4 and
  112. updated it to MacOS X 10.5.8 from 2009.
  113. It has a 1.5Ghz processor and 1.25Gb of RAM, and can connect to my modern WiFi
  114. network and use most of my USB peripherals.
  115. It includes a Mail client that can talk to my IMAP and SMTP servers, and a
  116. Safari web browser which can render fairly modern CSS layouts.
  117. However, it’s unable to view any content at all on Wikipedia simply because it
  118. can’t negotiate TLS 1.2 with the ciphers Wikipedia requires.
  119. Why is a decade-old computer too old to view encyclopedia articles?</p>
  120. <p>A solution to this problem is for websites to continue offering their full
  121. content over plaintext HTTP in addition to HTTPS.
  122. If you’re using Nginx, instead of creating two <code class="language-plaintext highlighter-rouge">server</code> blocks with the <code class="language-plaintext highlighter-rouge">listen
  123. *:80</code> version redirecting to the <code class="language-plaintext highlighter-rouge">listen *:443 ssl</code> version, use a single
  124. <code class="language-plaintext highlighter-rouge">server</code> block with multiple <code class="language-plaintext highlighter-rouge">listen</code> lines, like so:</p>
  125. <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>server {
  126. server_name jcs.org;
  127. listen *:80;
  128. listen *:443 ssl http2;
  129. ssl_certificate ...;
  130. ssl_certificate_key ...;
  131. ...
  132. ssl_protocols TLSv1.2;
  133. }
  134. </code></pre></div></div>
  135. <p>While it may seem counter to the point of this article, I recommend <strong>not</strong>
  136. serving legacy SSL/TLS ciphers like SSLv3 to try to help older browsers.
  137. These old protocols and ciphers are insecure and broken, and I feel it’s better
  138. to make it clear to the user they’re connecting to a website in cleartext than
  139. to offer a false sense of security by having the browser indicate a “secure
  140. connection” when it’s being done over an old, broken protocol.
  141. Also, while it may not be practical anymore, modern browsers might be
  142. <a href="//en.wikipedia.org/wiki/Downgrade_attack">tricked into negotiating</a>
  143. an old, broken cipher if your server still offers it.</p>
  144. <p>Even if you do offer legacy protocols and ciphers to older browsers, your TLS
  145. certificate might be signed by a certificate authority whose root certificate is
  146. not trusted by older browsers.</p>
  147. <h2 id="continue-upgrading-modern-browsers">Continue Upgrading Modern Browsers</h2>
  148. <p>Now that your entire website is being offered to legacy browsers over HTTP,
  149. modern browsers can still be directed to connect over HTTPS for added privacy by
  150. responding to the
  151. <a href="//developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Upgrade-Insecure-Requests"><code class="language-plaintext highlighter-rouge">Upgrade-Insecure-Requests</code></a>
  152. header.
  153. This header is only sent by modern browsers that support
  154. <a href="//developer.mozilla.org/en-US/docs/Web/HTTP/CSP">CSP</a>
  155. when making an HTTP request, so it’s a reasonable indicator that the client is
  156. sufficiently modern and robust that it will be able to negotiate a TLS 1.2
  157. connection if redirected to your site’s HTTPS version.</p>
  158. <p>For Nginx, this can be done inside a <code class="language-plaintext highlighter-rouge">server</code> block by defining a variable
  159. per-request that includes whether it was made over plaintext HTTP and whether it
  160. included an <code class="language-plaintext highlighter-rouge">Upgrade-Insecure-Requests: 1</code> header:</p>
  161. <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>server {
  162. ...
  163. set $need_http_upgrade "$https$http_upgrade_insecure_requests";
  164. location / {
  165. if ($need_http_upgrade = "1") {
  166. add_header Vary Upgrade-Insecure-Requests;
  167. return 301 https://$host$request_uri;
  168. }
  169. ...
  170. }
  171. }
  172. </code></pre></div></div>
  173. <p>This <code class="language-plaintext highlighter-rouge">location</code> block will respond for any request and, for those made over
  174. plaintext HTTP where <code class="language-plaintext highlighter-rouge">$https</code> will be blank and which included an
  175. <code class="language-plaintext highlighter-rouge">Upgrade-Insecure-Requests: 1</code> header, they will be offered a 301 redirection to
  176. the HTTPS version.
  177. The <code class="language-plaintext highlighter-rouge">Vary</code> header is sent so that any caching proxies in the middle won’t cache
  178. the redirect.</p>
  179. <h2 id="content-concessions">Content Concessions</h2>
  180. <p>With legacy browsers now able to access your site, you may want to make some
  181. changes to your HTML and CSS to allow your site to render with some degree of
  182. readability.
  183. I don’t recommend giving it the full IE6 treatment catering to the lowest common
  184. denominator, but at least make the main text of your site readable.</p>
  185. <p>Obviously avoid JavaScript unless it is used progressively, though many older
  186. browsers raise error dialogs at the mere presence of modern JavaScript that
  187. can’t be parsed even if it’s never executed.</p>
  188. <p>Modern CSS and complex layouts can also be a problem even for browsers just a
  189. few years old, so it’s probably best to use them sparingly.
  190. For any <code class="language-plaintext highlighter-rouge">&lt;a&gt;</code> or <code class="language-plaintext highlighter-rouge">&lt;img&gt;</code> tags that are local to your site, use relative links to
  191. avoid specifying a particular scheme.</p>
  192. <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>&lt;a href="/posts/blah"&gt;
  193. &lt;img src="/images/..."&gt;
  194. &lt;/a&gt;
  195. </code></pre></div></div>
  196. <p>If you have to specify an absolute URL to another site that is also available
  197. over both HTTP and HTTPS, you can specify it without a scheme or colon and the
  198. browser will use the same <code class="language-plaintext highlighter-rouge">http:</code> or <code class="language-plaintext highlighter-rouge">https:</code> that the document is being viewed
  199. over:</p>
  200. <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>&lt;a href="//other.example.com/"&gt;My other site&lt;/a&gt;
  201. </code></pre></div></div>
  202. <h2 id="a-rant-about-gemini">A Rant About Gemini</h2>
  203. <p>Tangentially related,
  204. <a href="//gemini.circumlunar.space/">Gemini</a>
  205. is a modern document transfer protocol that aims to fit between the ancient
  206. <a href="//en.wikipedia.org/wiki/Gopher_(protocol)">Gopher</a>
  207. protocol and the too-modern HTTP web.
  208. Its document markup language is based on
  209. <a href="//en.wikipedia.org/wiki/Markdown">Markdown</a>
  210. so it’s very lightweight and simple to parse without complex HTML/CSS parsers.</p>
  211. <p>It sounds like the perfect thing to bring modern content to vintage computers,
  212. except that its
  213. <a href="//gemini.circumlunar.space/docs/specification.html">protocol</a>
  214. requires all content to be transferred over TLS 1.2 or higher which makes it
  215. nearly impossible to access from a vintage computer or even a modern embedded
  216. system with limited CPU power.</p>
  217. <p>This requirement seems poorly thought out, especially considering the Gemini
  218. protocol doesn’t even support forms (other than a single text box on a search
  219. form) so there’s no chance of users submitting private data, and there’s no
  220. mechanism for client-server sessions so clients can’t be authenticated, meaning
  221. everything served pretty much has to be public anyway.</p>
  222. <p>Its protocol author argues that TLS is just a simple dependency no different
  223. than a TCP server module, so it should be trivial to implement in any client or
  224. server.
  225. But if your computer’s CPU is so slow that a modern TLS negotiation would take
  226. so long as to be unusable, or its
  227. <a href="http://tenfourfox.blogspot.com/2018/02/the-tls-apocalypse-reaches-power-macs.html">platform doesn’t have a TLS 1.2 library</a>
  228. available, that makes it difficult to write a client without depending on an
  229. <a href="//github.com/jcs/sockhole">external system</a>
  230. [<a href="https://oldvcr.blogspot.com/2020/11/fun-with-crypto-ancienne-tls-for.html">2</a>].</p>
  231. <p>In my opinion, the protocol should <em>recommend</em> that servers offer both plaintext
  232. and TLS encrypted versions and <em>recommend</em> that clients prefer TLS, but <em>may</em>
  233. use plaintext if needed.
  234. Clients for modern operating systems can continue enforcing a TLS requirement so
  235. their users aren’t feeling any less secure.</p>
  236. <p>Perhaps just sending actual Markdown text over plaintext HTTP to clients that
  237. ask for it can be the new, old web.</p>
  238. <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>Accept: text/markdown,text/plain;q=0.9,*/*;q=0.1
  239. </code></pre></div></div>
  240. <hr />
  241. <p><em>Please don’t contact me to “well ackchyually” me and explain
  242. <a href="/2011/08/17/a_man-in-the-middle_attack_in_the_wild">MITM attacks</a>
  243. and how your terrible ISP inserts ads into your unencrypted web pages and how
  244. you were able to make a Gemini client out of a whistle and some shoelaces.
  245. If you don’t want to make your website content available to stupid old
  246. computers, then don’t.</em></p>
  247. </article>
  248. <hr>
  249. <footer>
  250. <p>
  251. <a href="/david/" title="Aller à l’accueil">🏠</a> •
  252. <a href="/david/log/" title="Accès au flux RSS">🤖</a> •
  253. <a href="http://larlet.com" title="Go to my English profile" data-instant>🇨🇦</a> •
  254. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">📮</a> •
  255. <abbr title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340">🧚</abbr>
  256. </p>
  257. <template id="theme-selector">
  258. <form>
  259. <fieldset>
  260. <legend>Thème</legend>
  261. <label>
  262. <input type="radio" value="auto" name="chosen-color-scheme" checked> Auto
  263. </label>
  264. <label>
  265. <input type="radio" value="dark" name="chosen-color-scheme"> Foncé
  266. </label>
  267. <label>
  268. <input type="radio" value="light" name="chosen-color-scheme"> Clair
  269. </label>
  270. </fieldset>
  271. </form>
  272. </template>
  273. </footer>
  274. <script>
  275. function loadThemeForm(templateName) {
  276. const themeSelectorTemplate = document.querySelector(templateName)
  277. const form = themeSelectorTemplate.content.firstElementChild
  278. themeSelectorTemplate.replaceWith(form)
  279. form.addEventListener('change', (e) => {
  280. const chosenColorScheme = e.target.value
  281. localStorage.setItem('theme', chosenColorScheme)
  282. toggleTheme(chosenColorScheme)
  283. })
  284. const selectedTheme = localStorage.getItem('theme')
  285. if (selectedTheme && selectedTheme !== 'undefined') {
  286. form.querySelector(`[value="${selectedTheme}"]`).checked = true
  287. }
  288. }
  289. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  290. window.addEventListener('load', () => {
  291. let hasDarkRules = false
  292. for (const styleSheet of Array.from(document.styleSheets)) {
  293. let mediaRules = []
  294. for (const cssRule of styleSheet.cssRules) {
  295. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  296. continue
  297. }
  298. // WARNING: Safari does not have/supports `conditionText`.
  299. if (cssRule.conditionText) {
  300. if (cssRule.conditionText !== prefersColorSchemeDark) {
  301. continue
  302. }
  303. } else {
  304. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  305. continue
  306. }
  307. }
  308. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  309. }
  310. // WARNING: do not try to insert a Rule to a styleSheet you are
  311. // currently iterating on, otherwise the browser will be stuck
  312. // in a infinite loop…
  313. for (const mediaRule of mediaRules) {
  314. styleSheet.insertRule(mediaRule.cssText)
  315. hasDarkRules = true
  316. }
  317. }
  318. if (hasDarkRules) {
  319. loadThemeForm('#theme-selector')
  320. }
  321. })
  322. </script>
  323. </body>
  324. </html>