For this challenge, we were provided with a PDF file namedDocumentation Index
Fetch the complete documentation index at: https://docs.jaspervanzeir.be/llms.txt
Use this file to discover all available pages before exploring further.
postcard.pdf. I opened the PDF and found exactly what the name implied: an image of a postcard, complete with handwritten text and a postage stamp.

Enumeration & OSINT
Just to be absolutely sure, I read through the text a second time, and that’s when something caught my eye. I noticed that the wordtornado had a slightly different color compared to the rest of the ink. I scanned the rest of the card and noticed that the words fled and veto shared this exact same distinct color. They were the only three words colored this way. That was highly suspicious.

Pinpointing the Location & Converting Coordinates
I went to the What3Words website and entered the combination:///tornado.fled.veto.
The site instantly dropped a pin on an exact 3x3 meter square located on Moeskroenstraat in Menen, Belgium! I now had the physical location on the map, but the challenge specifically required MGRS (Military Grid Reference System) coordinates.

50.790063, 3.146345.

50.790063) and longitude (3.146345), hit convert, and voilà: the website generated the exact MGRS coordinate for the secret location!

31U ES 10315 26489
Tools Used
- Google Search: For OSINT to discover the What3Words geocoding concept.
-
What3Words (w3w): To translate the 3-word code (
///tornado.fled.veto) into a physical map location. - Google Maps: To extract the decimal GPS coordinates (Lat/Long) from the routing URL.
- LatLongData MGRS Converter: To successfully convert the decimal degrees into the Military Grid Reference System format.
Summary
- Key Steps: I noticed subtle color differences in three specific words on a postcard, identified this as a What3Words address, extracted the corresponding GPS coordinates via Google Maps, and successfully converted them into MGRS coordinates.
- What I Learned: This was a fantastic introduction to alternative geographic coordinate systems. While I was familiar with standard Latitude/Longitude, the existence of systems like What3Words (which encodes the entire globe into words) was completely new to me and is an amazing trick to keep in my OSINT toolkit.
- Crucial Mistakes/Takeaways: My initial, somewhat naive searches (Googling the three words together hoping to find an article) led nowhere. The main lesson here is to think more abstractly: instead of trying to figure out what the data means, I needed to figure out what system formats data in this specific way (three random words). Recognizing the format was the key to solving it.