SKYWAVE 1: HIGH TOWER

Overview

“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.

Provided Access
SSH ssh skywave@skywave.deadface.io
User skywave
Pass d34df4c3
SQL exploration → range filter
-- 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;
Result

The query returns tower_id = 215 for an elevation near 220 ft.

Flag
flag{215}
> Back to DEADFACE > Explore Blogs