🔨 List all IP ranges from: Google (Cloud & GoogleBot), Bing (Bingbot), Amazon (AWS), Microsoft, Oracle (Cloud), GitHub, Facebook (Meta), OpenAI (GPTBot) and other with daily updates.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
559 B

#!/bin/bash
# https://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html
set -euo pipefail
set -x
# get from public ranges
curl -s https://ip-ranges.amazonaws.com/ip-ranges.json > /tmp/amazon.json
# save ipv4
jq '.prefixes[] | [.ip_prefix][] | select(. != null)' -r /tmp/amazon.json > /tmp/amazon-ipv4.txt
# save ipv6
jq '.ipv6_prefixes[] | [.ipv6_prefix][] | select(. != null)' -r /tmp/amazon.json > /tmp/amazon-ipv6.txt
# sort & uniq
sort -V /tmp/amazon-ipv4.txt | uniq > amazon/ipv4.txt
sort -V /tmp/amazon-ipv6.txt | uniq > amazon/ipv6.txt