Could validationKey and decryptionKey be found by brute force from encrypted cookie value? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T22:19:16Z http://stackoverflow.com/feeds/question/862141 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/862141/could-validationkey-and-decryptionkey-be-found-by-brute-force-from-encrypted-cook 0 Could validationKey and decryptionKey be found by brute force from encrypted cookie value? Darin Dimitrov 2009-05-14T08:14:40Z 2009-05-14T08:30:33Z <p>I am using the following code to generate an encrypted token:</p> <pre><code>var ticket = new System.Web.Security.FormsAuthenticationTicket( 2, "", DateTime.Now, DateTime.Now.AddMinutes(10), false, "user id here"); var cipherText = System.Web.Security.FormsAuthentication.Encrypt(ticket); </code></pre> <p>This code uses the key and algorithm specified in app/web.config :</p> <pre><code>&lt;system.web&gt; &lt;machineKey validationKey="SOME KEY" decryptionKey="SOME OTHER KEY" validation="SHA1" /&gt; &lt;/system.web&gt; </code></pre> <p>Now suppose I give the cipher text thus generated to a partner. Is he capable of brute forcing:</p> <ol> <li>The value that is stored in the cipher (the user id which does not represent sensitive information and it doesn't bother me much)</li> <li>The value of the validationKey and decryptionKey used to create the cipher (this would be catastrophic because he would be capable of generating tokens and impersonating any user)</li> </ol> <p>I suppose the answer to both questions is yes, but how realistic his chances are and do you think giving him the cipher would represent a security threat to my system? Thanks in advance for your responses.</p> http://stackoverflow.com/questions/862141/could-validationkey-and-decryptionkey-be-found-by-brute-force-from-encrypted-cook/862182#862182 4 Answer by Accipitridae for Could validationKey and decryptionKey be found by brute force from encrypted cookie value? Accipitridae 2009-05-14T08:25:32Z 2009-05-14T08:30:33Z <p>What you describe here is a known plaintext attack. The attacker learns both plaintexts and the corresponding ciphertexts and his goal is to find the keys. Modern ciphers are designed to be secure against this kind of attacks.</p> <p>In fact any modern cipher is designed to be secure against even stronger attacks such as chosen plaintext attacks and chosen cipher text attacks. Even if the attacker is allowed to choose plaintext and corresponding ciphertext or choose any number of ciphertexts and learn the decryption of it, then he/she should still not be able to learn the key.</p> <p>This makes designing a new cipher very hard. But fortunately, we already have good ciphers such as AES.</p> <p>I should also add that all the attacks above assume that the attacker knows all the details of the cipher that is used. The only thing he does not know is the key that is used. This is known as Kerkhoff's principle.</p>