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>
This commit is contained in:
Joris Dedieu
2026-03-16 20:35:21 +01:00
committed by GitHub
parent 0a20d4036b
commit 2b4c3606d8
3 changed files with 36 additions and 0 deletions

View File

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

12
pingdom/downloader.sh Normal file
View File

@@ -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

10
statuscake/downloader.sh Normal file
View File

@@ -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