“SkyWave 1: High Tower” by syyntax asks for the tower_id of a tower
at roughly 220 ft elevation. Use basic SQL exploration and a simple range filter to find it.
SKYWAVE 1: HIGH TOWER
SSH
ssh skywave@skywave.deadface.io
User
skywave
Pass
d34df4c3
-- 1) Connect (per instructions)
ssh skywave@skywave.deadface.io
-- 2) Show tables
SHOW TABLES;
-- 3) Inspect the Towers table structure
DESCRIBE Towers;
-- 4) Filter for elevation around ~220 ft
SELECT tower_id
FROM Towers
WHERE elevation BETWEEN 219.5 AND 220.5;
The query returns tower_id = 215 for an elevation near 220 ft.
flag{215}