mirror of
https://github.com/lord-alfred/ipranges.git
synced 2026-03-21 18:57:46 +00:00
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:
14
README.md
14
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.
|
||||
|
||||
12
pingdom/downloader.sh
Normal file
12
pingdom/downloader.sh
Normal 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
10
statuscake/downloader.sh
Normal 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
|
||||
Reference in New Issue
Block a user