vote up 1 vote down star

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?

flag

I guess that you have to define the task better. It is completely unclear what is your aim: be strict? parse 100% of the samples? ... – ADEpt Jan 23 at 23:55
I agree. A clearer question is required. – Mitch Wheat Jan 24 at 0:45
You first example should be 'VGhpcyBpcyBhIHNpbXBsZSBBU0NJSSBCYXNlNjQgZXhhbXBsZSBmb3IgU3RhY2tPdmVyZmxvdy4=' – J.F. Sebastian Jan 24 at 1:01
Why don't use a standard solution in your language? Why do you need hand-written parser based on regexs? – J.F. Sebastian Jan 24 at 1:05
@JF - Well, I don't. I have looked at other methods, and didn't have a lot o luck, so I thought I'd give RegEx a try. This is all C/C++, if it matters. And I already do the Pre-parsing of ANYTHING non-b64, toss it, and decode the rest. – LarryF Jan 24 at 1:59
show 1 more comment

2 Answers

vote up 3 vote down check

From the RFC 4648:

Base encoding of data is used in many situations to store or transfer data in environments that, perhaps for legacy reasons, are restricted to US-ASCII data.

So it depends on the purpose of usage of the encoded data if the data should be considered as dangerous.

But if you’re just looking for a regular expression to match Base64 encoded words, you can use the following:

^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$
link|flag
That doesn't deal with the 'white space' at line ends. I'm not sure whether program always put the newline at a 4-byte boundary - it would be reasonable, but then following the standard would be reasonable too, but people don't do it. – Jonathan Leffler Jan 24 at 1:09
The simplest solution would be to strip out all whitespace (which is ignored as per the RFC) before validation. – Ben Blank Jan 24 at 1:35
vote up 1 vote down

Neither a ":" nor a "." will show up in valid Base64, so I think you can unambiguously throw away the http://www.stackoverflow.com line. In Perl, say, something like

my $sanitized_str = join q{}, grep {!/[^A-Za-z0-9+\/=]/} split /\n/, $str;

say decode_base64($sanitized_str);

might be what you want. It produces

This is simple ASCII Base64 for StackOverflow exmaple.

link|flag
I can agree there, but all the OTHER letters in the URL do happen to be valid base64... So, where do you draw the line? Just at line breaks? (I have seen ones where there is just a couple random chars in the middle of the line. Can't toss the rest of the line just because of that, IMHO)... – LarryF Jan 24 at 2:05
@LarryF: unless there's integrity checking on the base-64 encoded data, you can't tell what to do with any base-64 block of data containing incorrect characters. Which is the best heuristic: ignore the incorrect characters (allowing any and all correct ones) or reject the lines, or reject the lot? – Jonathan Leffler Jan 24 at 4:08
(continued): the short answer is "it depends" - on where the data comes from and the sorts of mess you find in it. – Jonathan Leffler Jan 24 at 4:09
(resumed): I see from comments to the question that you want to accept anything that might be base-64. So simply map each and every character that's not in your base-64 alphabet (note that there are URL-safe and other such variant encodings) including the newlines and colons, and take what's left. – Jonathan Leffler Jan 24 at 4:11

Your Answer

Get an OpenID
or

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