Get a prompt and clear overview of your security configuration. Right now!
DHE (Diffie-Hellman Ephemeral)
Ephemeral Diffie-Hellman[405][406][407][408] is a variant of Diffie-Hellman[99][100][101][102][103] key exchange[133] protocol that has forward secrecy[127][128][129][130], and does protect past sessions against future compromises. If long-term secret keys or passwords are compromised, encrypted communications and sessions recorded in the past cannot be retrieved and decrypted. However, there is a protocol flaw called D(HE)at attack[581][582][583][584][585], a denial-of-service attack[586][587][588][589][590], which can be exploited effectively when large key sizes are enabled.
Always prefer cipher suites with PFS property over the non-PFS ones. Note that performance considerations implies preferring Ephemeral Elliptic-curve Diffie–Hellman[432][433] over Ephemeral Diffie-Hellman[405][406][407][408] and D(HE)at attack[581][582][583][584][585] implies using Diffie-Hellman ephemeral public key parameter[409][410][411]s with a size greater or equal than 2048 bits but less or equal than 4096 bits.
AES-128
Encryption algorithm Advanced Encryption Standard[302][303][304][305][306][307][308][309] is a block cipher[78][79][80][81] for which there is no known practical attack that would allow the attacker to recover the encrypted text without knowledge of the key when the algorithm is implemented correctly. However improper implementations may lead to a side-channel attack[69][70][71] as it has happened in case of OpenSSL[395][396] [310][311][312].
Prefer cipher suites with greater key size of AES (eg: perfer AES-256 over AES-128).
CCM-8
block cipher mode of operation[82][83][84][85][86] counter with CBC-MAC[32][33][34] is considered secure. It provides provides authenticated encryption[74] which simultaneously assure the confidentiality[91][92][93] and authenticity[75][76][77] of data.
If your application or requirements specifically call for the use of a message authentication code[135][136][137][138] that does not provide authenticated encryption[74] prefer block cipher mode of operation[82][83][84][85][86] (eg: counter with CBC-MAC[32][33][34], Galois/Counter Mode[46][47][48][49] or message authentication code[135][136][137][138] (eg: Poly1305[458][459]) that proved authenticated encryption over the ones which does not provide it.
128
The symmetric key[185][186][187] withkey size[184] more than 128 bits as it is should be according to National Institute of Standards and Technology[470][471] so it is not vulnerable to preimage attack[67] and it cannreliably prove that message came from the stated sender (its authenticity) and has not been changed, so connection is not open for a man-in-the-middle attack[61].
Remove the cipher suite from the list of cipher suites supported by your server.