Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From the comments:</p> <p>There's a weird Unicode character being printed instead of a hyphen here in the filename: "... Waterproofing – Universal City, ...". It could be that somebody's mailserver is sensitive to non-ASCII characters and is encoding it to base64 as a result. Change it to a regular ASCII hyphen and it should be fine.</p> <hr> <p>How I found it:</p> <p>Firstly, here's the online base64 decoder I used: <a href="http://www.opinionatedgeek.com/dotnet/tools/base64decode/" rel="nofollow">http://www.opinionatedgeek.com/dotnet/tools/base64decode/</a></p> <p>Secondly, I started by concatenating all of the base64 strings from the header. It's split up into multiple segments: for the first header, there are 5 segments. The segments are the long parts between the question marks. Putting them all together, you get:</p> <pre><code>Y2lCQmJIQm9ZU0JKYm5OMWJHRjBhVzl1Pz0NCiA9P3V0Zi04P0I/SUNZ Z1YyRjBaWEp3Y205dlptbHVaeUF0SUVGc2NHaGhJRWx1YzNWc1lYUnBi MjRnSmlCWFlYUmw/PQ0KID0/dXRmLTg/Qj9jbkJ5YjI5bWFXNW5JT0tB a3lCVmJtbDJaWEp6WVd3Z1EybDBlU3dnS0RJd01USXRNRFF0TVRNcD89 DQogPT91dGYtOD9CP0xuQmtaZz09Pz0= </code></pre> <p>Putting this into the decoder gives:</p> <pre><code>ciBBbHBoYSBJbnN1bGF0aW9u?= =?utf-8?B?ICYgV2F0ZXJwcm9vZmluZyAtIEFscGhhIEluc3VsYXRpb24gJiBXYXRl?= =?utf-8?B?cnByb29maW5nIOKAkyBVbml2ZXJzYWwgQ2l0eSwgKDIwMTItMDQtMTMp?= =?utf-8?B?LnBkZg==?= </code></pre> <p>Another set of base64 segments. The first segment looks like it's cut off, so I assume that what went into the filename is actually part of it. So I prepend it with that and get:</p> <pre><code>Q29uc29saWRhdGVkIEludm9pY2VzIGZvciBBbHBoYSBJbnN1bGF0aW9u ICYgV2F0ZXJwcm9vZmluZyAtIEFscGhhIEluc3VsYXRpb24gJiBXYXRl cnByb29maW5nIOKAkyBVbml2ZXJzYWwgQ2l0eSwgKDIwMTItMDQtMTMp LnBkZg== </code></pre> <p>Putting <em>this</em> into the decoder will make it spit out a .bin file because of the non-ASCII character. The bin file contains the full filename of the PDF.</p> <p>Opening the bin file in a hex editor:</p> <pre><code>43 6F 6E 73 6F 6C 69 64 61 74 65 64 20 49 6E 76 Consolidated Inv 6F 69 63 65 73 20 66 6F 72 20 41 6C 70 68 61 20 oices for **** 49 6E 73 75 6C 61 74 69 6F 6E 20 26 20 57 61 74 ********** &amp; *** 65 72 70 72 6F 6F 66 69 6E 67 20 2D 20 41 6C 70 ********** - *** 68 61 20 49 6E 73 75 6C 61 74 69 6F 6E 20 26 20 ** ********** &amp; 57 61 74 65 72 70 72 6F 6F 66 69 6E 67 20 E2 80 ************* †93 20 55 6E 69 76 65 72 73 61 6C 20 43 69 74 79 “ ********* **** 2C 20 28 32 30 31 32 2D 30 34 2D 31 33 29 2E 70 , (2012-04-13).p 64 66 df </code></pre> <p>The em-dash sticks out like a sore thumb.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload