public@themctf:~$

SIGNIFICANT

The signpost knows where it is at all times. It knows this because it knows where it isn't, by subtracting where it is, from where it isn't, or where it isn't, from where it is, whichever is greater. Consequently, the position where it is,

misc2025
views
-
writeup by
pavel?!
challenge by
Eth007
published
14 September 2025

SOLVE NOTES

Original on GitHub

Challenge

We are given an image significant.jpg. I embedded it here:

significant

It shows a signpost with arrows pointing to world cities with exact mile distances.
I need to find the coordinates of this signpost to three decimals.


Step 1 --- First thoughts

The sign had distances like:

  • Sydney 7432 mi
  • Paris 5570 mi
  • Ho Chi Minh 7830 mi
  • Bangkok 8707 mi

This looked like a sister cities signpost, a common landmark type in major cities.


Step 2 --- OSINT

Searching for “sister cities sign Sydney 7432 Paris 5570” led to a blog post on the San Francisco Municipal Transportation Agency site.
It confirmed that a Sister Cities sign was unveiled at Hallidie Plaza, right at the Powell Street cable car turnaround in San Francisco.

The distances in the blog matched exactly with the ones in the challenge image.


Step 3 --- Coordinates

Cross-checking Hallidie Plaza on maps gave:

  • Hallidie Plaza GPS: 37.784632, -122.407939
  • Rounded to 3 decimals: 37.785, -122.408

Step 4 --- Result

The final flag is:

ictf{37.785,-122.408}

Notes

This was a clean OSINT challenge and the distances served as a unique verifier.