Reduce opportunities for a potential CPU exhaustion attack with `NO_RENEGOTIATION`

See https://en.wikipedia.org/wiki/Resource_exhaustion_attack
This commit is contained in:
youtous 2020-05-02 00:04:05 +02:00
parent 46c50f93ad
commit 16cd4f9d2d
No known key found for this signature in database
GPG Key ID: 592173AE8CD254A5
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ smtp_tls_security_level = may
smtp_tls_loglevel = 1
# Reduces CPU overhead with `NO_COMPRESSION`, SMTP not at risk of CRIME attack (see git blame for details)
tls_ssl_options = NO_COMPRESSION
# Reduce opportunities for a potential CPU exhaustion attack with `NO_RENEGOTIATION`
tls_ssl_options = NO_COMPRESSION, NO_RENEGOTIATION
tls_high_cipherlist = ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256
tls_preempt_cipherlist = yes