mirror of
https://github.com/lord-alfred/ipranges.git
synced 2026-08-27 18:45:48 +00:00
21 lines
391 B
Bash
21 lines
391 B
Bash
#!/bin/bash
|
|
|
|
# https://www.bing.com/webmasters/help/verify-bingbot-2195837f
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
|
|
# get from public ranges
|
|
curl -s https://www.bing.com/toolbox/bingbot.json > /tmp/bing.json
|
|
|
|
|
|
# save ipv4
|
|
jq '.prefixes[] | [.ipv4Prefix][] | select(. != null)' -r /tmp/bing.json > /tmp/bing-ipv4.txt
|
|
|
|
# ipv6 not provided
|
|
|
|
|
|
# sort & uniq
|
|
sort -h /tmp/bing-ipv4.txt | uniq > bing/ipv4.txt
|