Dark Mode
Capec-97 Detail
Cryptanalysis
Standard Communications Hardware Likelihood: Low Typical Severity: Very High
Parents: 192
Children: 463 608
Threats: T60 T98 T276 T395
Cryptanalysis is a process of finding weaknesses in cryptographic algorithms and using these weaknesses to decipher the ciphertext without knowing the secret key (instance deduction). Sometimes the weakness is not in the cryptographic algorithm itself, but rather in how it is applied that makes cryptanalysis successful. An attacker may have other goals as well, such as: Total Break (finding the secret key), Global Deduction (finding a functionally equivalent algorithm for encryption and decryption that does not require knowledge of the secret key), Information Deduction (gaining some information about plaintexts or ciphertexts that was not previously known) and Distinguishing Algorithm (the attacker has the ability to distinguish the output of the encryption (ciphertext) from a random permutation of bits).
Not present
| External ID | Source | Link | Description |
|---|---|---|---|
| CAPEC-97 | capec | https://capec.mitre.org/data/definitions/97.html | |
| CWE-327 | cwe | http://cwe.mitre.org/data/definitions/327.html | |
| CWE-1204 | cwe | http://cwe.mitre.org/data/definitions/1204.html | |
| CWE-1240 | cwe | http://cwe.mitre.org/data/definitions/1240.html | |
| CWE-1241 | cwe | http://cwe.mitre.org/data/definitions/1241.html | |
| CWE-1279 | cwe | http://cwe.mitre.org/data/definitions/1279.html | |
| OWASP Attacks | https://owasp.org/www-community/attacks/Cryptanalysis | Cryptanalysis | |
| REF-556 | reference_from_CAPEC | http://en.wikipedia.org/wiki/Cryptanalysis | Wikipedia, The Wikimedia Foundation, Inc |
Explore
-
An attacker discovers a weakness in the cryptographic algorithm or a weakness in how it was applied to a particular chunk of plaintext.
Exploit
-
An attacker leverages the discovered weakness to decrypt, partially decrypt or infer some information about the contents of the encrypted message. All of that is done without knowing the secret key.
- The target software utilizes some sort of cryptographic algorithm.
- An underlying weaknesses exists either in the cryptographic algorithm used or in the way that it was applied to a particular chunk of plaintext.
- The encryption algorithm is known to the attacker.
- An attacker has access to the ciphertext.
- Computing resource requirements will vary based on the complexity of a given cryptanalysis technique. Access to the encryption/decryption routines of the algorithm is also required.
| High |
|---|
| Cryptanalysis generally requires a very significant level of understanding of mathematics and computation. |
| Confidentiality |
|---|
| Read Data (In most cases, if cryptanalysis is successful at all, an adversary will not be able to decrypt the entire message, but instead will only be able to deduce some information about the plaintext. However, that may be sufficient for an adversary, depending on the context of the attack.) |
- A very easy to understand example is a cryptanalysis technique called frequency analysis that can be successfully applied to the very basic classic encryption algorithms that performed mono-alphabetic substitution replacing each letter in the plaintext with its predetermined mapping letter from the same alphabet. This was considered an improvement over a more basic technique that would simply shift all of the letters of the plaintext by some constant number of positions and replace the original letters with the new letter with the resultant alphabet position. While mono-alphabetic substitution ciphers are resilient to blind brute force, they can be broken easily with nothing more than a pen and paper. Frequency analysis uses the fact that natural language is not random and mono-alphabetic substitution does not hide the statistical properties of the natural language. So if the letter "E" in an English language occurs with a certain known frequency (about 12.7%), whatever "E" was substituted with to get to the ciphertext, will occur with the similar frequency. Having this frequency information allows the cryptanalyst to quickly determine the substitutions and decipher the ciphertext. Frequency analysis techniques are not applicable to modern ciphers as they are all resilient to it (unless this is a very bad case of a homegrown encryption algorithm). This example is inapplicable to modern cryptographic ciphers but is here to illustrate a rudimentary example of cryptanalysis.