Go to file
Jonathan Fisher 3f6b78ed08 history rewrite, plus tls client cert wip 2020-11-16 14:02:56 +00:00
.idea history rewrite, plus tls client cert wip 2020-11-16 14:02:56 +00:00
app history rewrite, plus tls client cert wip 2020-11-16 14:02:56 +00:00
gradle/wrapper update dependencies 2020-11-09 02:23:53 +00:00
.gitignore ::: 2020-08-15 15:52:27 +01:00
LICENSE add license 2020-09-03 20:51:53 +01:00
README.md log server certs, add link to drews tofu notes 2020-11-10 14:48:24 +00:00
build.gradle update dependencies 2020-11-09 02:23:53 +00:00
gradle.properties ::: 2020-08-15 15:52:27 +01:00
gradlew ::: 2020-08-15 15:52:27 +01:00
gradlew.bat ::: 2020-08-15 15:52:27 +01:00
settings.gradle ::: 2020-08-15 15:52:27 +01:00

README.md

Ariane

▒▄▀▄▒█▀▄░█▒▄▀▄░█▄ █▒██▀
░█▀█░█▀▄░█░█▀█░█▒▀█░█▄▄

A Gemini protocol browser for Android based OS. Formerly called Två, and briefly Gem.

Releases

Issue tracker

todo.sr.ht/~oppen/ariane

Contact and Mailing Lists

Email direct to ariane@fastmail.se or join a mailing list

Mailing Lists:

TLS

From the Gemini specification:

Use of TLS for Gemini transactions is mandatory.
Use of the Server Name Indication (SNI) extension to TLS is also mandatory, to facilitate name-based virtual hosting.

Ariane uses TLS but does not implement TOFU at all:

Clients can validate TLS connections however they like (including not at all) but the strongly RECOMMENDED approach is to implement a lightweight "TOFU" certificate-pinning system which treats self-signed certificates as first- class citizens

See Drew's note on TOFU

Client TLS

Although rarely seen on the web, TLS permits clients to identify themselves to servers using certificates

From the spec:

  • Short-lived client certificates which are generated on demand and deleted immediately after use can be used as "session identifiers" to maintain server-side state for applications. In this role, client certificates act as a substitute for HTTP cookies, but unlike cookies they are generated voluntarily by the client, and once the client deletes a certificate and its matching key, the server cannot possibly "resurrect" the same value later (unlike so-called "super cookies").
  • Long-lived client certificates can reliably identify a user to a multi-user application without the need for passwords which may be brute-forced. Even a stolen database table mapping certificate hashes to user identities is not a security risk, as rainbow tables for certificates are not feasible.
  • Self-hosted, single-user applications can be easily and reliably secured in a manner familiar from OpenSSH: the user generates a self-signed certificate and adds its hash to a server-side list of permitted certificates, analogous to the .authorized_keys file for SSH).

Looking at Kristall a client should offer full cert management, including import and export. Ariane has NONE of this currently.

A key sentence in the spec:

Gemini requests will typically be made without a client certificate.

Client certs should only be required for protected content:

Gemini requests will typically be made without a client certificate. If a requested resource requires a client certificate and one is not included in a request, the server can respond with a status code of 60, 61 or 62 (see Appendix 1 below for a description of all status codes related to client certificates). A client certificate which is generated or loaded in response to such a status code has its scope bound to the same hostname as the request URL and to all paths below the path of the request URL path. E.g. if a request for gemini://example.com/foo returns status 60 and the user chooses to generate a new client certificate in response to this, that same certificate should be used for subsequent requests to gemini://example.com/foo, gemini://example.com/foo/bar/, gemini://example.com/foo/bar/baz, etc., until such time as the user decides to delete the certificate or to temporarily deactivate it. Interactive clients for human users are strongly recommended to make such actions easy and to generally give users full control over the use of client certificates.

From this it's clear general requests should NOT use a client cert (to protect user identity if nothing else), if a server requests a client cert we should offer various configurations:

  • Always use identity cert
  • Always use a fresh session cert
  • Prompt user

That's it as far as the spec is concered, the rest is down to the Android API

Ariane TLS

Not implemented yet.

Display a servers certs with: openssl s_client -showcerts -connect gus.guru:1965

Android API