== Why is this an issue? The Advanced Encryption Standard (AES) encryption algorithm can be used with various modes. Some combinations are not secured: * Electronic Codebook (ECB) mode: Under a given key, any given plaintext block always gets encrypted to the same ciphertext block. Thus, it does not hide data patterns well. In some senses, it doesn't provide serious message confidentiality, and it is not recommended for use in cryptographic protocols at all. * Cipher Block Chaining (CBC) with PKCS#5 padding (or PKCS#7) is susceptible to padding oracle attacks. In both cases, Galois/Counter Mode (GCM) with no padding should be preferred. This rule raises an issue when a ``++Cipher++`` instance is created with either ECB or CBC/PKCS5Padding mode. === Noncompliant code example [source,java] ---- Cipher c1 = Cipher.getInstance("AES/ECB/NoPadding"); // Noncompliant Cipher c2 = Cipher.getInstance("AES/CBC/PKCS5Padding"); // Noncompliant ---- === Compliant solution [source,java] ---- Cipher c = Cipher.getInstance("AES/GCM/NoPadding"); ---- == Resources * OWASP - https://owasp.org/www-project-top-ten/2017/A6_2017-Security_Misconfiguration[Top 10 2017 Category A6 - Security Misconfiguration] * CWE - https://cwe.mitre.org/data/definitions/327[CWE-327 - Use of a Broken or Risky Cryptographic Algorithm] * https://wiki.sei.cmu.edu/confluence/x/hDdGBQ[CERT, MSC61-J.] - Do not use insecure or weak cryptographic algorithms * https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38a.pdf[Recommendation for Block Cipher Modes of Operation] * Derived from FindSecBugs rule https://find-sec-bugs.github.io/bugs.htm#ECB_MODE[ECB_MODE] * Derived from FindSecBugs rule https://find-sec-bugs.github.io/bugs.htm#PADDING_ORACLE[PADDING_ORACLE] ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) === Message Use Galois/Counter Mode (GCM/NoPadding) instead. === Highlighting Cipher.getInstance() call ''' == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]