urlhaus-filter/utils/umbrella-top-1m.sh

13 lines
346 B
Bash
Raw Normal View History

#!/bin/sh
# Download the Cisco Umbrella 1 Million
# More info:
# https://s3-us-west-1.amazonaws.com/umbrella-static/index.html
# Download the list
2018-10-11 00:42:35 +00:00
wget -O- https://s3-us-west-1.amazonaws.com/umbrella-static/top-1m.csv.zip | \
2018-10-10 07:48:36 +00:00
# Decompress the zip and write output to stdout
zcat -dc | \
# Parse domains only
2018-10-10 06:44:49 +00:00
cut -f 2 -d ',' > ../src/top-1m.txt