0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/DOCUMENTS/HASHING.md

230 lines
5.8 KiB
Markdown
Raw Permalink Normal View History

# PostfixAdmin Password Hash Support.
How are your passwords stored in the database.
They should not be stored in plain text.
Whatever format you choose will need to be supported by your IMAP server (and whatever provides SASL auth for Postfix)
If you can, use a format that includes a different salt per password (e.g. one of the crypt variants, like Blowfish (BLF-CRYPT) or Argon2I/Argon2ID).
Try and avoid formats that are unsalted hashes (md5, SHA1) as these offer minimal protection in the event of a data leak.
## Configuration
2021-01-26 10:35:42 +01:00
See config.inc.php (or config.local.php) and look for
```php
$CONF['encrypt'] = 'something';
```
## Supported Formats
This document is probably not complete.
It possibly provides better documentation than was present before. This may not say much.
Supported hash formats include :
* MD5-CRYPT (aka MD5),
* SHA1,
* SHA1-CRYPT,
* SSHA (4 char salted sha1),
* BLF-CRYPT (Blowfish),
* SHA512,
* SHA512-CRYPT,
* ARGON2I,
* ARGON2ID,
* SHA256,
* SHA256-CRYPT,
* PLAIN-MD5 (aka md5)
* CRYPT
2023-06-17 20:20:59 +02:00
Historically PostfixAdmin has supported all dovecot algorithms (methods) by using the 'doveadm' system binary. As of early 2023 (?), we attempted to use a native/PHP implementation for a number of these to remove issues caused by use of proc_open / dovecot file permissions etc (see e.g. #379).
It's recommended you use the algorithm/mechanism from your MTA, and configure PostfixAdmin with the same value prefixed by the MTA name -
2021-11-21 16:35:44 +01:00
For example, if dovecot has `default_pass_scheme = SHA256` use `$CONF['encrypt'] = 'SHA256'; ` in PostfixAdmin.
| Dovecot pass scheme | PostfixAdmin `$CONF['encrypt']` setting |
|---------------------|-----------------------------------------|
2021-11-21 16:35:44 +01:00
| SHA256 | SHA256 |
| SHA256-CRYPT.B64 | SHA256-CRYPT.B64 |
| SHA256-CRYPT | SHA256-CRYPT |
| SHA512-CRYPT | SHA512-CRYPT |
| ARGON2I | ARGON2I |
| ARGON2ID | ARGON2ID |
| Courier Example | PostfixAdmin |
|-----------------|--------------|
| md5 | courier:md5 |
| md5raw | courier:md5raw |
| sha1 | courier:sha1 |
| ssha | courier:ssha |
| sha256 | courier:sha256 |
### cleartext
No hashing. May be useful for debugging.
Insecure. Try to avoid. May be useful for legacy purposes.
### mysql_encrypt
Uses the MYSQL ENCRYPT() function (this uses 'crypt' underneath).
Can be secure.
Requires MySQL.
Should use a sha512 salt for new values.
### md5crypt
md5crypt = uses md5crypt() function - in a 'crypt' like format.
e.g.
`$1$c9809462$M0zeLuOvixH61C2csGN.U0`
You should not use this for new installations
(it probably does not offer a high level of security)
### md5
PHP's md5() function.
You should not use this (it does not offer a high level of security), but is probably better than cleartext.
### system
Uses PHP's crypt function.
Probably throws an E_NOTICE.
Example : `$1$tWgqTIuF$1HFciCXrhVpACGjBMxNr/0`
### authlib
See source code. Presumably useful for Courier based installations.
#### With `$CONF['authlib_default_flavor'] = 'md5raw`;`
might give something like :
`{md5raw}3858f62230ac3c915f300c664312c63f`
Based on md5, so avoid.
#### With `$CONF['authlib_default_flavor'] = 'crypt`;`
Uses PHP Crypt.
`{crypt}blfqitzeBpyAE`
Presumably weak.
#### With `$CONF['authlib_default_flavor'] = 'SHA';`
Uses sha1, base64 encoded. Unsalted. Avoid.
### dovecot:METHOD
May use dovecot binary to produce hash, if the format you request isn't in PFACrypt::DOVECOT_NATIVE
Using a format that PostfixAdmin doesn't support natively has the following pros/cons :
#### Pros
* Minimal dependency on PostfixAdmin / PHP code.
* Hash should definitely work with dovecot!
#### Cons
* file permissions and/or execution of doveadm by the web server may be problematic.
* requires: proc_open(...) - which might be blocked by e.g. safemode.
* doveadm may not be installed.
* possible issues with SELinux
* See https://github.com/postfixadmin/postfixadmin/issues/398 (file permissions)
#### Incomplete list of CRYPT-METHOD
* CRAM-MD5
* SHA
* SHA1
* SHA256
* SHA512
* CLEAR
* CLEARTEXT
* PLAIN
* PLAIN-TRUNC
If in doubt, try `dovecot:SHA512`
Dovecot generated passwords in your database should look a bit like :
`{SHA256}JMQi5oHxwb0IKGx6r10jpfCI3NsLIZgGs6nleSRPAMU=`
2023-06-17 20:20:59 +02:00
If you have problems, start by checking you can generate one on the command line using e.g
`doveadm pw -s SHA256`
### php_crypt
Potentially the most secure.
By default it will generate a SHA512 salt. Output in crypt format.
Other methods :
* BLOWFISH
* SHA512
* SHA256
* DES (avoid)
* MD5 (avoid)
e.g.
`$6$emcsNNrzGZSN64mI$A/bmacTGSp2UrdcPvaROrR2FPQS5KlnoU.a/0zmfpaubBO9o1ZcgyQIic4Qb59SMxA2H8YxgS1XILO1wZhjkZ0`
You can specify the salting method using a :METHOD in the specification.
e.g.
`$CONF['encrypt'] = 'php_crypt:SHA512';`
You can make the hashing more 'difficult' by specifying an additional parameter like :
`$CONF['encrypt'] = 'php_crypt:SHA512:5000';`
which should change the 'cost' (BLOWFISH) or rounds (SHA256, SHA512).
finally you can ask that the generated hash has a specific prefix (e.g. {SHA512} ) like :
`$CONF['encrypt'] = 'php_crypt:SHA512:5000:{SHA512-CRYPT}';`
### sha512.b64
See https://github.com/postfixadmin/postfixadmin/issues/58
No dovecot dependency; should support migration from md5crypt
Output is base64 encoded i.e. a hash like :
* `$6$emcsNNrzGZSN64mI$A/bmacTGSp2UrdcPvaROrR2FPQS5KlnoU.a/0zmfpaubBO9o1ZcgyQIic4Qb59SMxA2H8YxgS1XILO1wZhjkZ0`
is base64 encoded into :
* JDYkZW1jc05OcnpHWlNONjRtSSRBL2JtY...
and then formatted to become :
* {SHA512-CRYPT.B64}JDYkZW1jc05OcnpHWlNONjRtSSRBL2JtY....
This format should support older passwords with a {MD5-CRYPT} prefix, to allow you to migrate.