mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
Merge pull request #2640 from Masaya-A/influxdb/strengthen
Disable weak cipher suites from influxdb
This commit is contained in:
@@ -550,6 +550,25 @@
|
|||||||
# "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",
|
# "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",
|
||||||
# "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
|
# "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
|
||||||
# ]
|
# ]
|
||||||
|
ciphers = [
|
||||||
|
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
|
||||||
|
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256",
|
||||||
|
"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
|
||||||
|
"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA",
|
||||||
|
"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
|
||||||
|
"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",
|
||||||
|
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA",
|
||||||
|
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256",
|
||||||
|
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
|
||||||
|
"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
|
||||||
|
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
|
||||||
|
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",
|
||||||
|
"TLS_RSA_WITH_AES_128_CBC_SHA",
|
||||||
|
"TLS_RSA_WITH_AES_128_CBC_SHA256",
|
||||||
|
"TLS_RSA_WITH_AES_128_GCM_SHA256",
|
||||||
|
"TLS_RSA_WITH_AES_256_CBC_SHA",
|
||||||
|
"TLS_RSA_WITH_AES_256_GCM_SHA384",
|
||||||
|
]
|
||||||
|
|
||||||
# Minimum version of the tls protocol that will be negotiated. If not specified, uses the
|
# Minimum version of the tls protocol that will be negotiated. If not specified, uses the
|
||||||
# default settings from Go's crypto/tls package.
|
# default settings from Go's crypto/tls package.
|
||||||
|
|||||||
Reference in New Issue
Block a user