Is it possible to use a RegEx to validate, or sanitize Base64 data? That's the simple question, but the factors that drive this question are what make it difficult.
I have a Base64 parser that can not fully RELY on the input data to follow the RFC specs. So, the issue I face is maybe b64 data that is not broke into 78 (I think it's 78, I'd have to double check, so don't ding me if the exact number is wrong) char lines, or may not have CRLF at the end of each line, it may only have CR, or LF...
So, I've had a hell of a time parsing Base64 formatted as follows. I will only display partial MIME headers for brevity...
Content-Transfer-Encoding: base64
VGhpcyBpcyBzaW1wbGUgQVNDSUkgQmFzZTY0IGZvciBTdGFja092ZXJmbG93IGV4
bWFwbGUu==
Ok, so parsing that is no problem. And in 99% of the cases, using any code to at least verify that each char in the buffer is a valid base64 char works too. But, this throws a wrench in the mix.
Content-Transfer-Encoding: base64
http://www.stackoverflow.com
VGhpcyBpcyBzaW1wbGUgQVNDSUkgQmFzZTY0IGZvciBTdGFja092ZXJmbG93IGV4
bWFwbGUu==
This a version of b64 encoding that I have seen in some viruses and other things that take advantage of some mail readers ability to parse mime at all costs, vs. ones that go STRICTLY BY THE BOOK (RFC).
My base64 decoder decodes the second example to the following data stream. And the original stream is all ASCII data!
86DB69FFFC30C2CB5A724A2F7AB7E5A307289951A1A5CC81A5CC81CDA5B5C1B19481054D0D
2524810985CD94D8D08199BDC8814DD1858DAD3DD995C999B1BDDC8195E1B585C1B194B8
Anyone have a good way to solve both problems at once? I'm not sure it's even possible, outside of doing two transforms with different rules applied, and comparing the results, and even so, which one do you trust?
