From 2b4c3606d8ce3c5e8e2ff027cfb56ced2edc2f6f Mon Sep 17 00:00:00 2001 From: Joris Dedieu Date: Mon, 16 Mar 2026 20:35:21 +0100 Subject: [PATCH] Add pingdom and statuscake ips and downloaders (#29) * [main-] add pingdom and statuscake ips and downloaders * Improved consistency with the original style * Typo in README --------- Co-authored-by: Lord Alfred <2259979+lord-alfred@users.noreply.github.com> --- README.md | 14 ++++++++++++++ pingdom/downloader.sh | 12 ++++++++++++ statuscake/downloader.sh | 10 ++++++++++ 3 files changed, 36 insertions(+) create mode 100644 pingdom/downloader.sh create mode 100644 statuscake/downloader.sh diff --git a/README.md b/README.md index ca12cda5..16f08103 100644 --- a/README.md +++ b/README.md @@ -135,13 +135,27 @@ To allow GoogleBot, block all Google IP addresses and then allow the GoogleBot a - IPv4 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/perplexity/ipv4_merged.txt ### DuckDuckBot + - IPv4: https://raw.githubusercontent.com/lord-alfred/ipranges/main/duckduckbot/ipv4.txt - IPv4 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/duckduckbot/ipv4_merged.txt ### DuckAssistBot + - IPv4: https://raw.githubusercontent.com/lord-alfred/ipranges/main/duckassistbot/ipv4.txt - IPv4 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/duckassistbot/ipv4_merged.txt +### StatusCake + +- IPv4: https://raw.githubusercontent.com/lord-alfred/ipranges/main/statuscake/ipv4.txt +- IPv4 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/statuscake/ipv4_merged.txt + +### Pingdom + +- IPv4: https://raw.githubusercontent.com/lord-alfred/ipranges/main/pingdom/ipv4.txt +- IPv4 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/pingdom/ipv4_merged.txt +- IPv6: https://raw.githubusercontent.com/lord-alfred/ipranges/main/pingdom/ipv6.txt +- IPv6 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/pingdom/ipv6_merged.txt + ## All-In-One IPs A list of IP addresses from all sources combined into one file. diff --git a/pingdom/downloader.sh b/pingdom/downloader.sh new file mode 100644 index 00000000..e68a9309 --- /dev/null +++ b/pingdom/downloader.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -euo pipefail +set -x + +# get ranges from pingdom +curl -s https://my.pingdom.com/probes/ipv4 > /tmp/pingdom-ipv4.txt +curl -s https://my.pingdom.com/probes/ipv6 > /tmp/pingdom-ipv6.txt + +# sort & uniq +sort -V /tmp/pingdom-ipv4.txt | uniq > pingdom/ipv4.txt +sort -V /tmp/pingdom-ipv6.txt | uniq > pingdom/ipv6.txt diff --git a/statuscake/downloader.sh b/statuscake/downloader.sh new file mode 100644 index 00000000..94551358 --- /dev/null +++ b/statuscake/downloader.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +set -euo pipefail +set -x + +# get ranges from statuscake +curl -s "https://app.statuscake.com/Workfloor/Locations.php?format=txt" > /tmp/statuscake-ipv4.txt + +# sort & uniq +sort -V /tmp/statuscake-ipv4.txt | uniq > statuscake/ipv4.txt