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

21 lines
496 B

#!/bin/bash
# https://docs.oracle.com/en-us/iaas/Content/General/Concepts/addressranges.htm
# From: https://github.com/nccgroup/cloud_ip_ranges
set -euo pipefail
set -x
# get from public ranges
curl -s https://docs.oracle.com/en-us/iaas/tools/public_ip_ranges.json > /tmp/oracle.json
# save ipv4
jq '.regions[] | [.cidrs][] | .[].cidr | select(. != null)' -r /tmp/oracle.json > /tmp/oracle-ipv4.txt
# ipv6 not provided
# sort & uniq
sort -V /tmp/oracle-ipv4.txt | uniq > oracle/ipv4.txt