Add All-In-One IP ranges

This commit is contained in:
Lord Alfred
2021-11-22 21:53:21 +03:00
parent 00badb2811
commit 9b75dbf609
6 changed files with 16 additions and 0 deletions

View File

@@ -18,6 +18,11 @@ jobs:
bash oracle/downloader.sh
bash digitalocean/downloader.sh
bash bing/downloader.sh
- name: Create All-In-One ranges
run: |
cat google/ipv4.txt amazon/ipv4.txt microsoft/ipv4.txt oracle/ipv4.txt digitalocean/ipv4.txt bing/ipv4.txt | sort -h > all/ipv4.txt
cat google/ipv6.txt amazon/ipv6.txt microsoft/ipv6.txt digitalocean/ipv6.txt | sort -h > all/ipv6.txt
- name: Set up Python 3.7
uses: actions/setup-python@v2
@@ -47,6 +52,7 @@ jobs:
python utils/merge.py --source=oracle/ipv4.txt | sort -h > oracle/ipv4_merged.txt
python utils/merge.py --source=digitalocean/ipv4.txt | sort -h > digitalocean/ipv4_merged.txt
python utils/merge.py --source=bing/ipv4.txt | sort -h > bing/ipv4_merged.txt
python utils/merge.py --source=all/ipv4.txt | sort -h > all/ipv4_merged.txt
# ipv6
python utils/merge.py --source=google/ipv6.txt | sort -h > google/ipv6_merged.txt
python utils/merge.py --source=amazon/ipv6.txt | sort -h > amazon/ipv6_merged.txt
@@ -54,6 +60,7 @@ jobs:
# oracle not provide ipv6
python utils/merge.py --source=digitalocean/ipv6.txt | sort -h > digitalocean/ipv6_merged.txt
# bing not provide ipv6
python utils/merge.py --source=all/ipv6.txt | sort -h > all/ipv6_merged.txt
- name: Commit files
env:

View File

@@ -52,6 +52,15 @@ All addresses are stored in `.txt` files with CIDRs, where each range is on a ne
- IPv6: https://raw.githubusercontent.com/lord-alfred/ipranges/main/digitalocean/ipv6.txt
- IPv6 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/digitalocean/ipv6_merged.txt
## All-In-One IPs
A list of IP addresses from all sources combined into one file.
- IPv4: https://raw.githubusercontent.com/lord-alfred/ipranges/main/all/ipv4.txt
- IPv4 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/all/ipv4_merged.txt
- IPv6: https://raw.githubusercontent.com/lord-alfred/ipranges/main/all/ipv6.txt
- IPv6 (merged): https://raw.githubusercontent.com/lord-alfred/ipranges/main/all/ipv6_merged.txt
## Friendly Repos
- Akamai: https://github.com/SecOps-Institute/Akamai-ASN-and-IPs-List

0
all/ipv4.txt Normal file
View File

0
all/ipv4_merged.txt Normal file
View File

0
all/ipv6.txt Normal file
View File

0
all/ipv6_merged.txt Normal file
View File