Post

idekCTF 2025 - Misc - Z-easy

idekCTF 2025 - Misc - Z-easy

misc/Z - easy

23 solves out of 843 teams; second-blooded by OP_EN.

1. taxi

Searching for the phrase Vulcano Taxi Santi written on the taxi returns a tour service operating in Vulcano Porto, Italy.

Switching to Terrain view in Google Maps helps identify a narrow, winding mountain road in the southern part of the island.

GSV Photo Sphere location: 38.3768717, 14.987448.

2. bridge

Reverse image search of the bridge and the skyline (especially the tower) narrows down the area to Macau and the island of Taipa.

GSV Photo Sphere location: 22.1635853, 113.5495017.

3. site

Reverse image search lottery focused on what looks like an amusement park narrows down the area to Pamukkale, Turkey.

GSV Photo Sphere location: 37.9247485, 29.1159054.

4. sanic

Zooming in on the gantry in the distance reveals what looks like San Antonio West and Houston East on the signs.

Inspecting the section of Interstate 10 between San Antonio and Houston for T-interchanges narrows down the area to Seguin, Texas.

GSV Photo Sphere location: 29.6160679, -97.876556.

5. bus_stop

To narrow down the country:

  • Reverse image search for the green Light Goods Vehicle behind the bus stop returns a Polish FSC Lublin.
  • Carry out the usual GeoOSINT traffic signs verification.

To narrow down the region:

  • Searching for the phrase skip 603 600 600 painted on the skip returns results for a company operating in the Poznan area.
  • Reverse image search lottery focused on the bus shelter returns a bus shelter in Poznan.

Zooming in on the side of the bus shelter roof reveals bus line number 211 on a black background.

Searching for the phrase Poznan bus lines returns a website that gives an overview of the public transport in the city, as well as refers to Poznan’s public transport authority’s website. Network maps are available here.

A more tedious solution involves following the route in Google Maps.

An alternative approach involves constructing an overpass turbo query, limiting results to buildings with the number 51 in close proximity to places of worship in the city:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[out:json][timeout:60];

// Define the search area for Poznan
->.searchArea;

// 1. Find all buildings with addr:housenumber=51
(
  way["building"]["addr:housenumber"="51"](area.searchArea);
  node["building"]["addr:housenumber"="51"](area.searchArea);
  relation["building"]["addr:housenumber"="51"](area.searchArea);
)->.buildings51;

// 2. Find all places of worship, religious buildings, or crosses
(
  node["amenity"="place_of_worship"](area.searchArea);
  way["amenity"="place_of_worship"](area.searchArea);
  node["building"="religious"](area.searchArea);
  way["building"="religious"](area.searchArea);
  node["man_made"="cross"](area.searchArea);
  way["man_made"="cross"](area.searchArea);
)->.religious;

// 3. Find all bus stops
(
  node["highway"="bus_stop"](area.searchArea);
)->.busstops;

// 4. Filter bus stops that are within 100 meters of BOTH a building number 51 AND a religious feature
// First, those near buildings
node.busstops(around.buildings51:100)->.near_51;

// Then, those near religious features
node.near_51(around.religious:100)->.result;

// Output result
.result out body;
>;
out skel qt;

GSV Photo Sphere location: 52.3667423, 16.9446307.

6. no_entry

Entering what’s written on the white board into Google Translate detects the language used as Mizo, spoken in Mizoram, India.

Reverse image search focused on the opposite hills narrows down the area to Aizawl, India.

Looking again at the white board, the first word of the upper sentence, although not fully visible, seems identical to the first word of the lower sentence. Searching for Tlangnuam returns results for Tlangnuam View, which narrows down the area even further.

GSV Photo Sphere location: 23.7056862, 92.7155214.

7. parking

Reverse image search lottery, focused on the mast and the building, returns results for Rantum Loran-C transmitter in Sylt, Germany.

GSV Photo Sphere location: 54.8107632, 8.288909.

8. tour_bus

Zooming in on the bus reveals a few distinct features:

  • Red rims on a yellow bus lol
  • Headwear
  • Attire
  • Big guns
  • Facial features

which all scream: Russia! Far East!

While the tundra-like terrain in Russia, surrounded by mountains, is ubiquitous, its GSV coverage is not. After dropping the Pegman in random places for a while, I narrowed down the area to the Kamchatka Peninsula, confirmed by the long thin antenna of the GSV car and the road surface.

GSV Photo Sphere location: 53.9496019, 157.7387358.

9. dragon

Reverse image search focused on the pagoda narrows down the area to Penghu County, Taiwan.

This blogpost mentions the proximity of the pagoda to the Shuangxin Stone Weir.

GSV Photo Sphere location: 23.2187982, 119.4464139.

10. 2011

Not attempted. Well done if you’ve found it.

This post is licensed under CC BY 4.0 by the author.