diff --git a/CHANGELOG.md b/CHANGELOG.md index 125e7ae8..9676f5c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## 3.dev +* Adjustment: option [auth] htpasswd_encryption change default from "md5" to "autodetect" + ## 3.2.3 * Add: support for Python 3.13 * Fix: Using icalendar's tzinfo on created datetime to fix issue with icalendar diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 644ad012..723c3705 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -122,12 +122,12 @@ The `users` file can be created and managed with [htpasswd](https://httpd.apache.org/docs/current/programs/htpasswd.html): ```bash -# Create a new htpasswd file with the user "user1" -$ htpasswd -c /path/to/users user1 +# Create a new htpasswd file with the user "user1" using SHA-512 as hash method +$ htpasswd -5 -c /path/to/users user1 New password: Re-type new password: # Add another user -$ htpasswd /path/to/users user2 +$ htpasswd -5 /path/to/users user2 New password: Re-type new password: ``` @@ -138,8 +138,7 @@ Authentication can be enabled with the following configuration: [auth] type = htpasswd htpasswd_filename = /path/to/users -# encryption method used in the htpasswd file -htpasswd_encryption = md5 +htpasswd_encryption = autodetect ``` ##### The simple but insecure way @@ -623,7 +622,7 @@ hosts = 0.0.0.0:5232, [::]:5232 [auth] type = htpasswd htpasswd_filename = ~/.config/radicale/users -htpasswd_encryption = md5 +htpasswd_encryption = autodetect [storage] filesystem_folder = ~/.var/lib/radicale/collections @@ -641,7 +640,7 @@ The same example configuration via command line arguments looks like: ```bash python3 -m radicale --server-hosts 0.0.0.0:5232,[::]:5232 \ --auth-type htpasswd --auth-htpasswd-filename ~/.config/radicale/users \ - --auth-htpasswd-encryption md5 + --auth-htpasswd-encryption autodetect ``` Add the argument `--config ""` to stop Radicale from loading the default @@ -775,7 +774,7 @@ Available methods: The installation of **bcrypt** is required for this. `md5` -: This uses an iterated MD5 digest of the password with a salt. +: This uses an iterated MD5 digest of the password with a salt (nowadays insecure). `sha256` : This uses an iterated SHA-256 digest of the password with a salt. @@ -786,7 +785,7 @@ Available methods: `autodetect` : This selects autodetection of method per entry. -Default: `md5` +Default: `autodetect` ##### delay diff --git a/config b/config index 8c75bf77..8cbc6f91 100644 --- a/config +++ b/config @@ -62,7 +62,7 @@ # Htpasswd encryption method # Value: plain | bcrypt | md5 | sha256 | sha512 | autodetect # bcrypt requires the installation of 'bcrypt' module. -#htpasswd_encryption = md5 +#htpasswd_encryption = autodetect # Incorrect authentication delay (seconds) #delay = 1 diff --git a/radicale/config.py b/radicale/config.py index d5797c13..ec1335db 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -180,7 +180,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ "help": "htpasswd filename", "type": filepath}), ("htpasswd_encryption", { - "value": "md5", + "value": "autodetect", "help": "htpasswd encryption method", "type": str}), ("realm", {