Go to Main Menu

Go to contents

Network Discovery - Webtile

| Tool | Purpose | |------|---------| | TileStache (with debug) | Local tile server testing | | tilelive (Node.js) | Tile source enumeration | | OWASP Amass (custom datasource) | Discover tile subdomains | | gdal_translate | Convert discovered tiles to GeoTIFF for analysis | | mitmproxy + mitm2swagger | Convert tile API traffic to OpenAPI spec |

Complete Visibility. Total Control. Zero Blind Spots. Webtile Network Discovery

def tile_to_latlon(z, x, y): n = 2.0 ** z lon_deg = x / n * 360.0 - 180.0 lat_rad = math.atan(math.sinh(math.pi * (1 - 2 * y / n))) lat_deg = math.degrees(lat_rad) return (lat_deg, lon_deg) | Tool | Purpose | |------|---------| | TileStache