I generate a forms auth ticket with some user data, encrypt and send it to my client all using the standard .net Api. Everything works except for one small problem. If i replace the 0 in the auth ticket with an alphabet between G and Z (caps), it still works - it decrypts fine and i get all my userdata and everything from the auth ticket. This is not supposed to happen right? Even a small change in the auth ticket should make the decryption not work right? Any other change would ensure that the ticket doesn't decrypt and will throw exception.

link|improve this question

1  
I guess the ticket is serialized as hex characters, if it reads a char that represents a valid hex char (0 - 9, A - F) it converts accordingly and add it to the decryption stream, if it finds anything else it converts to 0. – rene Dec 26 '11 at 13:10
Bang on!! Can you "answer" this so that i can mark it as answer? Thanks a ton!! – sash Dec 26 '11 at 13:55
feedback

1 Answer

up vote 2 down vote accepted

I guess the ticket is serialized as hex characters, if it reads a char that represents a valid hex char (0 - 9, A - F) it converts accordingly and add it to the decryption stream, if it finds anything else it converts to 0.

I'm not claiming that this now it actually works...

link|improve this answer
i checked - this is indeed how it works - thanks. – sash Dec 26 '11 at 17:10
Where did you check this? – enashnash Apr 19 at 15:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.