mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-06-08 07:33:52 +02:00
@@ -0,0 +1,20 @@
|
||||
# Go vendor dependencies
|
||||
backend/vendor/
|
||||
|
||||
# Embedded GeoIP data blobs
|
||||
backend/embedded/geoip/
|
||||
|
||||
# Node.js dependencies
|
||||
frontend/node_modules/
|
||||
|
||||
# Dev runtime artifacts
|
||||
backend/.dev/
|
||||
backend/.dev-air/
|
||||
frontend/.svelte-kit/
|
||||
|
||||
# Compiled binaries
|
||||
build/
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
.tmp/
|
||||
@@ -13,20 +13,20 @@ jobs:
|
||||
packages: write
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4.1.0
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
|
||||
|
||||
- name: Log in to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
@@ -45,7 +45,7 @@ jobs:
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-w /app \
|
||||
node:alpine \
|
||||
node@sha256:968df39aedcea65eeb078fb336ed7191baf48f972b4479711397108be0966920 `# node:22-alpine` \
|
||||
sh -c "npm ci && npm run build-production"
|
||||
|
||||
- name: Move frontend build to backend
|
||||
@@ -54,32 +54,37 @@ jobs:
|
||||
mkdir -p backend/frontend/build
|
||||
cp -r frontend/build/* backend/frontend/build/
|
||||
|
||||
- name: Cache Go build cache
|
||||
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
||||
with:
|
||||
path: /tmp/go-build-cache
|
||||
key: go-build-${{ runner.os }}-${{ hashFiles('backend/go.sum') }}
|
||||
restore-keys: go-build-${{ runner.os }}-
|
||||
|
||||
- name: Build binaries for multiple architectures
|
||||
run: |
|
||||
mkdir -p build/amd64 build/arm64
|
||||
mkdir -p build/amd64 build/arm64 /tmp/go-build-cache
|
||||
|
||||
# build amd64 binary
|
||||
# build amd64 binary — static musl so no glibc floor on target systems
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-v /tmp/go-build-cache:/root/.cache/go-build \
|
||||
-w /app/backend \
|
||||
-e CGO_ENABLED=1 \
|
||||
-e GOOS=linux \
|
||||
-e GOARCH=amd64 \
|
||||
golang:1.25.7 \
|
||||
go build -trimpath \
|
||||
-ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' \
|
||||
-tags production -o ../build/amd64/phishingclub main.go
|
||||
golang@sha256:c4ea15b4a7912716eb362a022e2b12317762eca387423760bc59c0f9ae69423c `# golang:1.25.10-alpine linux/amd64` \
|
||||
sh -c "apk add --no-cache gcc musl-dev && go build -trimpath \
|
||||
-ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }} -linkmode=external -extldflags=-static' \
|
||||
-tags production -o ../build/amd64/phishingclub main.go"
|
||||
|
||||
# build arm64 binary
|
||||
# build arm64 binary — run natively under QEMU (already set up above)
|
||||
sudo docker run --rm \
|
||||
--platform linux/arm64 \
|
||||
-v "$(pwd)":/app \
|
||||
-v /tmp/go-build-cache:/root/.cache/go-build \
|
||||
-w /app/backend \
|
||||
-e CGO_ENABLED=1 \
|
||||
-e GOOS=linux \
|
||||
-e GOARCH=arm64 \
|
||||
-e CC=aarch64-linux-gnu-gcc \
|
||||
golang:1.25.7 \
|
||||
bash -c "apt-get update && apt-get install -y gcc-aarch64-linux-gnu && go build -trimpath -ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' -tags production -o ../build/arm64/phishingclub main.go"
|
||||
golang@sha256:5331adf7f8a0803631d9dc28843e288874789c14b97a3d0b54ed13e59f9e0589 `# golang:1.25.10-alpine linux/arm64` \
|
||||
sh -c "apk add --no-cache gcc musl-dev && go build -trimpath \
|
||||
-ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }} -linkmode=external -extldflags=-static' \
|
||||
-tags production -o ../build/arm64/phishingclub main.go"
|
||||
|
||||
- name: Fix build directory permissions
|
||||
run: |
|
||||
@@ -135,7 +140,7 @@ jobs:
|
||||
phishingclub.sig
|
||||
|
||||
- name: Build and push multi-arch Docker image
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile.release
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
name: Test Build
|
||||
|
||||
on:
|
||||
#pull_request:
|
||||
# branches: [ main, develop ]
|
||||
push:
|
||||
branches: [test-build]
|
||||
|
||||
@@ -14,20 +12,20 @@ jobs:
|
||||
packages: write
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4.1.0
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
|
||||
|
||||
- name: Log in to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
@@ -45,7 +43,7 @@ jobs:
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-w /app \
|
||||
node:alpine \
|
||||
node@sha256:968df39aedcea65eeb078fb336ed7191baf48f972b4479711397108be0966920 `# node:22-alpine` \
|
||||
sh -c "npm ci && npm run build-production"
|
||||
|
||||
- name: Move frontend build to backend
|
||||
@@ -54,32 +52,37 @@ jobs:
|
||||
mkdir -p backend/frontend/build
|
||||
cp -r frontend/build/* backend/frontend/build/
|
||||
|
||||
- name: Cache Go build cache
|
||||
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
||||
with:
|
||||
path: /tmp/go-build-cache
|
||||
key: go-build-${{ runner.os }}-${{ hashFiles('backend/go.sum') }}
|
||||
restore-keys: go-build-${{ runner.os }}-
|
||||
|
||||
- name: Build binaries for multiple architectures
|
||||
run: |
|
||||
mkdir -p build/amd64 build/arm64
|
||||
mkdir -p build/amd64 build/arm64 /tmp/go-build-cache
|
||||
|
||||
# build amd64 binary
|
||||
# build amd64 binary — static musl so no glibc floor on target systems
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-v /tmp/go-build-cache:/root/.cache/go-build \
|
||||
-w /app/backend \
|
||||
-e CGO_ENABLED=1 \
|
||||
-e GOOS=linux \
|
||||
-e GOARCH=amd64 \
|
||||
golang:1.25.7 \
|
||||
go build -trimpath \
|
||||
-ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' \
|
||||
-tags production -o ../build/amd64/phishingclub main.go
|
||||
golang@sha256:c4ea15b4a7912716eb362a022e2b12317762eca387423760bc59c0f9ae69423c `# golang:1.25.10-alpine linux/amd64` \
|
||||
sh -c "apk add --no-cache gcc musl-dev && go build -trimpath \
|
||||
-ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }} -linkmode=external -extldflags=-static' \
|
||||
-tags production -o ../build/amd64/phishingclub main.go"
|
||||
|
||||
# build arm64 binary
|
||||
# build arm64 binary — run natively under QEMU (already set up above)
|
||||
sudo docker run --rm \
|
||||
--platform linux/arm64 \
|
||||
-v "$(pwd)":/app \
|
||||
-v /tmp/go-build-cache:/root/.cache/go-build \
|
||||
-w /app/backend \
|
||||
-e CGO_ENABLED=1 \
|
||||
-e GOOS=linux \
|
||||
-e GOARCH=arm64 \
|
||||
-e CC=aarch64-linux-gnu-gcc \
|
||||
golang:1.25.7 \
|
||||
bash -c "apt-get update && apt-get install -y gcc-aarch64-linux-gnu && go build -trimpath -ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }}' -tags production -o ../build/arm64/phishingclub main.go"
|
||||
golang@sha256:5331adf7f8a0803631d9dc28843e288874789c14b97a3d0b54ed13e59f9e0589 `# golang:1.25.10-alpine linux/arm64` \
|
||||
sh -c "apk add --no-cache gcc musl-dev && go build -trimpath \
|
||||
-ldflags='-X github.com/phishingclub/phishingclub/version.hash=ph${{ steps.get_version.outputs.HASH }} -X github.com/phishingclub/phishingclub/version.version=${{ steps.get_version.outputs.VERSION }} -linkmode=external -extldflags=-static' \
|
||||
-tags production -o ../build/arm64/phishingclub main.go"
|
||||
|
||||
- name: Fix build directory permissions
|
||||
run: |
|
||||
@@ -164,23 +167,23 @@ jobs:
|
||||
echo "✅ Legacy package created without signature"
|
||||
fi
|
||||
|
||||
- name: Build and push test multi-arch Docker image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile.release
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository }}:test-latest
|
||||
labels: |
|
||||
org.opencontainers.image.title=PhishingClub-Test ${{ steps.get_version.outputs.VERSION }}
|
||||
org.opencontainers.image.description=PhishingClub test build image (linux/amd64, linux/arm64). Not for production deployment.
|
||||
org.opencontainers.image.url=${{ github.server_url }}/${{ github.repository }}
|
||||
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
|
||||
org.opencontainers.image.version=${{ steps.get_version.outputs.VERSION }}
|
||||
org.opencontainers.image.created=${{ github.event.head_commit.timestamp }}
|
||||
org.opencontainers.image.revision=${{ github.sha }}
|
||||
# - name: Build and push test multi-arch Docker image
|
||||
# uses: docker/build-push-action@v5
|
||||
# with:
|
||||
# context: .
|
||||
# file: ./Dockerfile.release
|
||||
# push: true
|
||||
# platforms: linux/amd64,linux/arm64
|
||||
# tags: |
|
||||
# ghcr.io/${{ github.repository }}:test-latest
|
||||
# labels: |
|
||||
# org.opencontainers.image.title=PhishingClub-Test ${{ steps.get_version.outputs.VERSION }}
|
||||
# org.opencontainers.image.description=PhishingClub test build image (linux/amd64, linux/arm64). Not for production deployment.
|
||||
# org.opencontainers.image.url=${{ github.server_url }}/${{ github.repository }}
|
||||
# org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
|
||||
# org.opencontainers.image.version=${{ steps.get_version.outputs.VERSION }}
|
||||
# org.opencontainers.image.created=${{ github.event.head_commit.timestamp }}
|
||||
# org.opencontainers.image.revision=${{ github.sha }}
|
||||
|
||||
- name: Verify build artifacts
|
||||
run: |
|
||||
@@ -214,7 +217,7 @@ jobs:
|
||||
tar -tzf packages/phishingclub_${{ steps.get_version.outputs.VERSION }}_linux_arm64.tar.gz
|
||||
|
||||
- name: Upload build artifacts (for review)
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
||||
with:
|
||||
name: phishingclub-test-build-${{ steps.get_version.outputs.HASH }}
|
||||
path: |
|
||||
|
||||
+30
-4
@@ -1,9 +1,35 @@
|
||||
FROM debian:12-slim
|
||||
FROM debian:12-slim@sha256:b29f74a267526ae6ea104eed6c46133b0ca70ce812525df8cd5817698f0a624a
|
||||
|
||||
# install ca-certificates for https requests
|
||||
# install ca-certificates, tzdata, and Chromium runtime dependencies.
|
||||
# The Chromium binary is auto-downloaded by rod at first use; these shared
|
||||
# libraries must already be present or it will fail to start.
|
||||
RUN apt-get update && \
|
||||
apt-get install -y ca-certificates tzdata && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
tzdata \
|
||||
libglib2.0-0 \
|
||||
libnss3 \
|
||||
libnspr4 \
|
||||
libatk1.0-0 \
|
||||
libatk-bridge2.0-0 \
|
||||
libcups2 \
|
||||
libdrm2 \
|
||||
libxkbcommon0 \
|
||||
libxcomposite1 \
|
||||
libxdamage1 \
|
||||
libxfixes3 \
|
||||
libxrandr2 \
|
||||
libgbm1 \
|
||||
libasound2 \
|
||||
libpango-1.0-0 \
|
||||
libcairo2 \
|
||||
fonts-liberation \
|
||||
libx11-6 \
|
||||
libx11-xcb1 \
|
||||
libxcb1 \
|
||||
libxext6 \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# create non-root user
|
||||
RUN groupadd -g 1000 appuser && \
|
||||
|
||||
@@ -4,14 +4,11 @@
|
||||
[](https://discord.gg/Zssps7U8gX)
|
||||
[](https://www.gnu.org/licenses/agpl-3.0)
|
||||
|
||||
**Phishing Club** is a phishing simulation and man-in-the-middle framework designed for companies that perform phishing simulation internally or as part of their business, and for aidding red teams obtaining initial access.
|
||||
|
||||
It can be used both as a replacement for Gophish for phishers that are looking for more features and as an aid or alternative for offensive phishing tools like MITM frameworks.
|
||||
|
||||
**Phishing Club** is a phishing simulation and red team phishing framework.
|
||||
|
||||

|
||||
|
||||
## Quick start
|
||||
## Quick start (production)
|
||||
|
||||
⚡ For systemd-enabled distributions, installation is quick and easy
|
||||
|
||||
@@ -22,22 +19,23 @@ curl -fsSL https://raw.githubusercontent.com/phishingclub/phishingclub/main/inst
|
||||
|
||||
Remember to copy the admin URL and password
|
||||
|
||||
For a manual step by step guide or more in depth installation information - [click here](https://phishing.club/guide/management/#install)
|
||||
[Manual installation](https://phishing.club/guide/management/#install)
|
||||
|
||||
Prebuild images of the latest version are also available.
|
||||
|
||||
See [production docker compose example](https://github.com/phishingclub/phishingclub/blob/develop/docker-compose.production.yml) and [the latest images](https://github.com/phishingclub/phishingclub/pkgs/container/phishingclub)
|
||||
[GHCR Images](https://github.com/phishingclub/phishingclub/pkgs/container/phishingclub)
|
||||
|
||||
[production docker compose example](https://github.com/phishingclub/phishingclub/blob/develop/docker-compose.production.yml)
|
||||
|
||||
## Features
|
||||
|
||||
Phishing Club provides a lot of features for simulation and red teaming, here are some highlights.
|
||||
|
||||
- **Multi-stage phishing flows** - Put together multiple phishing pages
|
||||
- **Reverse proxy phishing** - Capture sessions to bypass weak MFA
|
||||
- **Domain proxying** - Configure domains to proxy and mirror content from target sites
|
||||
- **Flexible scheduling** - Time windows, business hours, or manual delivery
|
||||
- **Multiple domains** - Auto TLS, custom sites, asset management
|
||||
- **Multiple domains** - Auto TLS, custom sites and asset management
|
||||
- **Advanced delivery** - SMTP configs or custom API Sender with OAuth support
|
||||
- **Recipient tracking** - Groups, CSV import, repeat offender metrics
|
||||
- **Campaign reports** - PDF export with a customizable HTML template
|
||||
- **Analytics** - Timelines, dashboards, per-user event history
|
||||
- **Automation** - HMAC-signed webhooks, REST API, import/export
|
||||
- **Multi-tenancy** - Segregated client handling and statistics for service providers
|
||||
@@ -46,6 +44,8 @@ See [production docker compose example](https://github.com/phishingclub/phishing
|
||||
|
||||
## AiTM and Red Team Features
|
||||
|
||||
- **Reverse proxy phishing** - Capture sessions to bypass weak MFA
|
||||
- **Remote browser phishing** - Stream and interact with a victim's live browser session
|
||||
- **Full control** - Modify and capture requests and responses independently
|
||||
- **DOM rewriting** - Modify content using CSS/jQuery-like selectors or regex
|
||||
- **Path and param rewriting** - Rewrite URL paths and query parameters on the fly
|
||||
@@ -58,20 +58,23 @@ See [production docker compose example](https://github.com/phishingclub/phishing
|
||||
- **Response overwriting** - Shortcut proxying with custom responses
|
||||
- **Forward proxying** - Use HTTP and SOCKS5 proxies to ensure requests originate from the right location
|
||||
- **Visual Editor** - Use the visual editor to easily setup a proxy
|
||||
- **Import compromised oauth token** - Use compromised tokens to send more phishing via. oauth enabled endpoints
|
||||
- **Import compromised oauth token** - Use compromised tokens to send more phishing via OAuth enabled endpoints
|
||||
- **Device Code phishing** - Device code phishing is as simple as adding a single line to a email or landing page
|
||||
|
||||
### Blogs & Resources
|
||||
- [Phishing Club User Guide](https://phishing.club/guide/)
|
||||
- [Covert red team phishing with Phishing Club](http://phishing.club/blog/covert-red-team-phishing-with-phishing-club/)
|
||||
- [Phishing Simulation vs Red Team Phishing: Understanding Different Approaches](https://phishing.club/blog/phishing-simulation-vs-red-team-phishing/)
|
||||
- [Remote Browser Phishing with Phishing Club](https://phishing.club/blog/remote-browser-phishing/)
|
||||
|
||||
Wrote a blog post or write up about Phishing Club? Tell us about it and we might add it here. Reach out via. a github issue, discord or find our email :)
|
||||
|
||||
Wrote a blog post or write up about Phishing Club? Tell us about it and we might add it here. Reach out via a GitHub issue, discord or find our email :)
|
||||
|
||||
### Students & Learning
|
||||
|
||||
Phishing Club can be used by cybersecurity students or others who want try hands-on phishing. The development enviroment is an ideal place to get started. Spin up campaigns, test templates, and learn how phishing attacks work in a safe, contained environment. The enviroment comes with containers local SMTP/Mailbox and everything you need.
|
||||
Phishing Club can be used by cybersecurity students or others who want to try hands-on phishing. The development environment is an ideal place to get started. Spin up campaigns, test templates, and learn how phishing attacks work in a safe, contained environment. The environment comes with containers for local SMTP/Mailbox and everything you need.
|
||||
|
||||
To aid with the development of MITM proxys configurations there is also a `MITMProxy` container where you can view the traffic that flows towards the proxied site.
|
||||
To aid with the development of MITM proxy configurations there is also a `MITMProxy` container where you can view the traffic that flows towards the proxied site.
|
||||
|
||||
To get started, clone the repo, ensure you have make and docker installed and run `make up` and wait for the backend to be up and running. Copy the credentials and you are ready to go.
|
||||
|
||||
@@ -97,7 +100,7 @@ Speed up your template development with our template workbench tool:
|
||||
|
||||
- Docker and Docker Compose
|
||||
- Git
|
||||
- Make (optional, for convenience commands)
|
||||
- Make (recommended, the development workflow is built around make)
|
||||
|
||||
### Quick Start
|
||||
|
||||
@@ -110,12 +113,12 @@ cd phishingclub
|
||||
2. **Start the services:**
|
||||
```bash
|
||||
make up
|
||||
# or manually:
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
Wait for the backend to finish starting before continuing. Follow the startup with `make logs`.
|
||||
|
||||
3. **Access the platform:**
|
||||
- Administration: `http://localhost:8003`
|
||||
- Administration: `https://localhost:8003`
|
||||
- HTTP Phishing Server: `http://localhost:80`
|
||||
- HTTPS Phishing Server: `https://localhost:443`
|
||||
|
||||
@@ -127,13 +130,15 @@ The **username** and **password** are output in the terminal when you start the
|
||||
make backend-password
|
||||
```
|
||||
|
||||
`make backend-password` outputs the password from the latest setup, so you can use it instead of scrolling back through the logs.
|
||||
|
||||
5. **Setup and start phishing:**
|
||||
|
||||
Open `https://localhost:8003` and setup the admin account using the credentials from step 4.
|
||||
|
||||
Visit the [Phishing Club Guide](https://phishing.club/guide/introduction/) for more information.
|
||||
|
||||
## Services and Ports
|
||||
## Development Services and Ports
|
||||
|
||||
| Port | Service | Description |
|
||||
|------|---------|-------------|
|
||||
@@ -145,10 +150,12 @@ Visit the [Phishing Club Guide](https://phishing.club/guide/introduction/) for m
|
||||
| 8102 | Mail Server | Mailpit SMTP server with SpamAssassin integration |
|
||||
| 8103 | Container Logs | Dozzle log viewer |
|
||||
| 8104 | Container Stats | Docker container statistics |
|
||||
| 8105 | MITMProxy| MITMProxy web interface |
|
||||
| 8105 | MITMProxy | MITMProxy web interface |
|
||||
| 8106 | MITMProxy | MITMProxy external access |
|
||||
| 8107 | API Test Server | Test endpoint for the API Sender |
|
||||
| 8201 | ACME Server | Pebble ACME server for certificates |
|
||||
| 8202 | ACME Management | Pebble management interface |
|
||||
| 8203 | ACME Challenge | Pebble challenge test server |
|
||||
|
||||
|
||||
## Development Commands
|
||||
@@ -182,7 +189,9 @@ make backend-password
|
||||
|
||||
## Development Domains
|
||||
|
||||
For development we use `.test` for all domains. But this must also be handled on the host level. You must either modify the hosts file and add the domains you use or run a local DNS server and ensure all *.test domains resolves to 127.0.0.1.
|
||||
For development we use `.test` for all domains.
|
||||
|
||||
The Docker Compose stack includes a DNSMasq container that resolves `.test` domains on the internal Docker network, so the containers can reach each other. This does not cover your host. You must ALSO handle resolution on your own machine, either by adding the `.test` domains you use to your hosts file or by running a local DNS server that resolves all `*.test` domains to 127.0.0.1.
|
||||
|
||||
### Option 1: DNSMasq (Recommended)
|
||||
```bash
|
||||
@@ -242,26 +251,21 @@ This project is licensed under the GNU Affero General Public License v3.0 (AGPL-
|
||||
For organizations that want to:
|
||||
- Use Phishing Club in commercial products without AGPL restrictions
|
||||
- Offer Phishing Club as a service without source code disclosure
|
||||
- Modify or modify the codebase without source code disclosure
|
||||
- Modify the codebase without source code disclosure
|
||||
|
||||
**Contact us for commercial licensing**: [license@phishing.club](mailto:license@phishing.club)
|
||||
**Contact for commercial licensing**: [license@phishing.club](mailto:license@phishing.club)
|
||||
|
||||
## Roadmap
|
||||
|
||||
There is no offical roadmap at this moment.
|
||||
There is no official roadmap.
|
||||
|
||||
But you can vote with emojis on the `[feature]` requests [on Github](https://github.com/phishingclub/phishingclub) or add you own feature request.
|
||||
But you can vote with emojis on the `[feature]` requests [on Github](https://github.com/phishingclub/phishingclub/issues?q=is%3Aissue+label%3Afeature) or add your own feature request.
|
||||
|
||||
Feature request with a high number of votes will be prioritized, however it is no guaranteed they will be implemented. Ultimately what gets implemented, how and when highly depends on [me](https://github.com/ronniskansing) and what I think is right for the project.
|
||||
|
||||
## Contributing
|
||||
|
||||
We welcome contributions from the community! Please read our [Contributing Guidelines](CONTRIBUTING.md) for detailed information on:
|
||||
|
||||
- Development setup and workflow
|
||||
- Code standards and conventions
|
||||
- Submission requirements
|
||||
- License agreements
|
||||
We welcome contributions from the community! Please read our [Contributing Guidelines](CONTRIBUTING.md)
|
||||
|
||||
**Quick Start for Contributors:**
|
||||
1. Check existing issues and create a feature request if needed
|
||||
@@ -285,7 +289,6 @@ Need help? Join the [Phishing Club Discord](https://discord.gg/Zssps7U8gX)
|
||||
Community support is provided on a best-effort, volunteer basis. For dedicated assistance, paid support is available.
|
||||
|
||||
- **General Support**: Join our Discord community or open a GitHub issue
|
||||
- **Commercial Licensing**: Contact [license@phishing.club](mailto:license@phishing.club)
|
||||
- **Security Issues**: See our [Security Policy](SECURITY.md)
|
||||
|
||||
|
||||
|
||||
+59
@@ -1,5 +1,64 @@
|
||||
# Changelog
|
||||
|
||||
## [1.37.1] - 2026-06-07
|
||||
- Fix disable CSP giving issue when previews
|
||||
- Fix preview for report template
|
||||
|
||||
## [1.37.0] - 2026-06-06
|
||||
- Added generate campaign report
|
||||
- Added global and company level campaign report customization
|
||||
- Added calendar invite builder
|
||||
- Added calendar invite attachment handling
|
||||
- Added trusted IP header forwarding now works for phishing server
|
||||
- Added musl for statically linked binary - no libc dependency anymore
|
||||
- Added security headers to admin server
|
||||
- Bump dependencies
|
||||
- Update geo ips to latest
|
||||
- Improve UI of setting page
|
||||
- Improve UI of tools page
|
||||
- Improve UI on event timeline and campaign trendline
|
||||
- Fix remove TOTP from logs
|
||||
- Fix added missing audit logs for TOTP disable
|
||||
- Fix only the first found API key worked
|
||||
- Fix favicon fingerprinting
|
||||
- Fix validation when AiTM proxies reuse domains without errors
|
||||
- Fix bug in table layout were last column would get cut
|
||||
- Fix delete group modal warning was incorrect
|
||||
- Remote Browser: Add lifecycle events
|
||||
- Remote Browser: Added dependencies to image builds
|
||||
- Remote Browser: Add right click context menu with copy paste
|
||||
- Remote Browser: Fix click outside of element bug
|
||||
- Remote Browser: Add mouse movement and console trap patch
|
||||
|
||||
## [1.36.0] - 2026-05-24
|
||||
- Added experimental support for Remote Browser Phishing
|
||||
- Fixed incorrect constraint parsing for local time
|
||||
- Fixed a vulnerability where TOTP codes were briefly replayable
|
||||
- Fixed state tracking for SSO login
|
||||
|
||||
## [1.35.0] - 2026-04-23
|
||||
- Added support for custom certificates in proxy configuration
|
||||
- Added support for URL rewrite in visual proxy editor
|
||||
- Fix apply rewrite rules when redirecting to proxy pages
|
||||
- Fix recipient URL using start URL in proxy
|
||||
- Fix remove campaign webhooks and device codes on campaign deletion
|
||||
- Fix company email attachments not working
|
||||
- Fix create template did not include URL path
|
||||
|
||||
## [1.34.0] - 2026-04-02
|
||||
- Added dynamic groups
|
||||
- Added late scheduling to campaigns
|
||||
- Added option to auto prune orphans
|
||||
- Added option to clear generated device codes for campaign
|
||||
- Added proxy (socks5) for device code
|
||||
- Added optional request path and method on proxy rewrites
|
||||
- Added proxy rewrite header engine
|
||||
- Added support for proxy capturing as info event instead of submit event
|
||||
- Fix proxy replace not working on header responses
|
||||
- Fix email is not optional in campaign template
|
||||
- Fix proxy normalize empty path to /
|
||||
- Minor UI fixes / improvements
|
||||
|
||||
## [1.33.0] - 2026-03-21
|
||||
- Added Microsoft Device Code phishing
|
||||
- Fix pagination on dashboard events table
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM golang:1.23.11
|
||||
FROM golang:1.25.10
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module github.com/phishingclub/phishingclub/api-test-server
|
||||
|
||||
go 1.23.11
|
||||
go 1.25.10
|
||||
|
||||
+27
-3
@@ -1,5 +1,5 @@
|
||||
# development docker file
|
||||
FROM golang:1.25.7
|
||||
FROM golang:1.25.10@sha256:c138bff780910acf4254ab3a6f7ff0f64bbd841f27bd82bfa986fe122c109538
|
||||
|
||||
EXPOSE 8000 8001
|
||||
|
||||
@@ -10,6 +10,30 @@ WORKDIR /app
|
||||
RUN groupadd -g 1000 appuser && \
|
||||
useradd -r -u 1000 -g appuser appuser -d /home/appuser -m
|
||||
|
||||
# chromium runtime dependencies (required when remote_browser.enabled is true)
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
libglib2.0-0 \
|
||||
libnss3 \
|
||||
libatk1.0-0 \
|
||||
libatk-bridge2.0-0 \
|
||||
libcups2 \
|
||||
libdrm2 \
|
||||
libxkbcommon0 \
|
||||
libxcomposite1 \
|
||||
libxdamage1 \
|
||||
libxfixes3 \
|
||||
libxrandr2 \
|
||||
libgbm1 \
|
||||
libasound2 \
|
||||
libpango-1.0-0 \
|
||||
libcairo2 \
|
||||
fonts-liberation \
|
||||
libx11-6 \
|
||||
libx11-xcb1 \
|
||||
libxcb1 \
|
||||
libxext6 \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# install deps
|
||||
#RUN go install github.com/cosmtrek/air@latest \
|
||||
#RUN go install github.com/go-delve/delve/cmd/dlv@1.9.1
|
||||
@@ -21,7 +45,7 @@ RUN chown -R appuser:appuser /app
|
||||
|
||||
|
||||
USER appuser
|
||||
RUN go install github.com/cosmtrek/air@v1.40.4 && go install github.com/go-delve/delve/cmd/dlv@latest
|
||||
RUN go mod tidy
|
||||
RUN go install github.com/cosmtrek/air@v1.40.4 && go install github.com/go-delve/delve/cmd/dlv@v1.26.3
|
||||
RUN go mod download
|
||||
|
||||
CMD ["air", "-c", "/.dev-air/.air.docker.toml"]
|
||||
|
||||
@@ -11,6 +11,19 @@ The program must be executable
|
||||
The program must have rights to serve on privliged ports
|
||||
`sudo setcap CAP_NET_BIND_SERVICE=+eip /path/to/binary`
|
||||
|
||||
### Updating the systemd service unit (required for Remote Browser feature)
|
||||
|
||||
The Remote Browser feature spawns a Chrome process as a subprocess. To support this, the systemd unit was updated to remove `MemoryDenyWriteExecute` (incompatible with Chrome's V8 JIT) and `RestrictNamespaces` (required for Chrome's sandbox to work).
|
||||
|
||||
The in-app update replaces the binary but **does not** reload the service unit automatically. After updating from a version that did not have Remote Browser support, you must run:
|
||||
|
||||
```bash
|
||||
sudo systemctl daemon-reload
|
||||
sudo systemctl restart phishingclub
|
||||
```
|
||||
|
||||
Without this the old unit stays active and Chrome will crash when a remote browser session is started.
|
||||
|
||||
### Known Issues
|
||||
|
||||
#### Hot reloading not working / New files now working
|
||||
|
||||
@@ -61,7 +61,9 @@ func setupCertMagic(
|
||||
if conf.TLSAuto() && conf.TLSHost() == name {
|
||||
return nil
|
||||
}
|
||||
// check phishing host with managed TLS
|
||||
// allow on-demand ACME only for domains that use managed TLS (let's encrypt / acme).
|
||||
// own_managed_tls and self_signed_tls domains must never trigger ACME acquisition —
|
||||
// their certificates are provided manually or generated internally.
|
||||
res := db.
|
||||
Select("id").
|
||||
Where("name = ?", name).
|
||||
|
||||
@@ -170,6 +170,11 @@ const (
|
||||
ROUTE_V1_CAMPAIGN_STATS_DELETE = "/api/v1/campaign/stats/:id"
|
||||
ROUTE_V1_CAMPAIGN_UPLOAD_REPORTED = "/api/v1/campaign/:id/upload/reported"
|
||||
ROUTE_V1_CAMPAIGN_DEVICE_CODES = "/api/v1/campaign/:id/device-codes"
|
||||
ROUTE_V1_CAMPAIGN_REPORT = "/api/v1/campaign/:id/report"
|
||||
// report templates
|
||||
ROUTE_V1_REPORT_TEMPLATE = "/api/v1/report-template"
|
||||
ROUTE_V1_REPORT_TEMPLATE_ID = "/api/v1/report-template/:id"
|
||||
ROUTE_V1_REPORT_PDF_BROWSER_CACHE = "/api/v1/report-pdf/browser-cache"
|
||||
// campaign-recipient
|
||||
ROUTE_V1_CAMPAIGN_RECIPIENT_EMAIL = "/api/v1/campaign/recipient/:id/email"
|
||||
ROUTE_V1_CAMPAIGN_RECIPIENT_URL = "/api/v1/campaign/recipient/:id/url"
|
||||
@@ -220,16 +225,25 @@ const (
|
||||
ROUTE_V1_VERSION = "/api/v1/version"
|
||||
// import
|
||||
ROUTE_V1_IMPORT = "/api/v1/import"
|
||||
// remote browser
|
||||
ROUTE_V1_REMOTE_BROWSER = "/api/v1/remote-browser"
|
||||
ROUTE_V1_REMOTE_BROWSER_OVERVIEW = "/api/v1/remote-browser/overview"
|
||||
ROUTE_V1_REMOTE_BROWSER_ID = "/api/v1/remote-browser/:id"
|
||||
ROUTE_V1_REMOTE_BROWSER_ID_RUN = "/api/v1/remote-browser/:id/run"
|
||||
ROUTE_V1_REMOTE_BROWSER_LIVE = "/api/v1/remote-browser/live"
|
||||
ROUTE_V1_REMOTE_BROWSER_LIVE_CRID = "/api/v1/remote-browser/live/:crID"
|
||||
ROUTE_V1_REMOTE_BROWSER_LIVE_STREAM = "/api/v1/remote-browser/live/:crID/stream"
|
||||
)
|
||||
|
||||
// administrationServer is the administrationServer app
|
||||
type administrationServer struct {
|
||||
Server *http.Server
|
||||
router *gin.Engine
|
||||
logger *zap.SugaredLogger
|
||||
production bool
|
||||
embedBackendFS *embed.FS
|
||||
certMagicConfig *certmagic.Config
|
||||
Server *http.Server
|
||||
router *gin.Engine
|
||||
logger *zap.SugaredLogger
|
||||
production bool
|
||||
embedBackendFS *embed.FS
|
||||
certMagicConfig *certmagic.Config
|
||||
softSessionHandler gin.HandlerFunc
|
||||
}
|
||||
|
||||
// NewAdministrationServer creates a new administration app
|
||||
@@ -244,10 +258,11 @@ func NewAdministrationServer(
|
||||
router = setupRoutes(router, controllers, middlewares)
|
||||
|
||||
return &administrationServer{
|
||||
router: router,
|
||||
logger: logger,
|
||||
production: production,
|
||||
certMagicConfig: certMagicConfig,
|
||||
router: router,
|
||||
logger: logger,
|
||||
production: production,
|
||||
certMagicConfig: certMagicConfig,
|
||||
softSessionHandler: middlewares.SoftSessionHandler,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -486,6 +501,15 @@ func setupRoutes(
|
||||
POST(ROUTE_V1_CAMPAIGN_ANONYMIZE, middleware.SessionHandler, controllers.Campaign.AnonymizeByID).
|
||||
DELETE(ROUTE_V1_CAMPAIGN_DEVICE_CODES, middleware.SessionHandler, controllers.Campaign.DeleteDeviceCodesByCampaignID).
|
||||
DELETE(ROUTE_V1_CAMPAIGN_ID, middleware.SessionHandler, controllers.Campaign.DeleteByID).
|
||||
// campaign PDF report — ExtendedTimeout required for headless browser rendering
|
||||
GET(ROUTE_V1_CAMPAIGN_REPORT, middleware.ExtendedTimeout(3*time.Minute), middleware.SessionHandler, controllers.ReportTemplate.GeneratePDFByCampaignID).
|
||||
// report templates
|
||||
GET(ROUTE_V1_REPORT_TEMPLATE, middleware.SessionHandler, controllers.ReportTemplate.GetAll).
|
||||
POST(ROUTE_V1_REPORT_TEMPLATE, middleware.SessionHandler, controllers.ReportTemplate.Create).
|
||||
GET(ROUTE_V1_REPORT_TEMPLATE_ID, middleware.SessionHandler, controllers.ReportTemplate.GetByID).
|
||||
PATCH(ROUTE_V1_REPORT_TEMPLATE_ID, middleware.SessionHandler, controllers.ReportTemplate.UpdateByID).
|
||||
DELETE(ROUTE_V1_REPORT_TEMPLATE_ID, middleware.SessionHandler, controllers.ReportTemplate.DeleteByID).
|
||||
DELETE(ROUTE_V1_REPORT_PDF_BROWSER_CACHE, middleware.SessionHandler, controllers.ReportTemplate.WipeBrowserCache).
|
||||
// campaign-recipient
|
||||
GET(ROUTE_V1_CAMPAIGN_RECIPIENTS, middleware.SessionHandler, controllers.Campaign.GetRecipientsByCampaignID).
|
||||
GET(ROUTE_V1_CAMPAIGN_RECIPIENT_EMAIL, middleware.SessionHandler, controllers.Campaign.GetCampaignEmail).
|
||||
@@ -544,7 +568,18 @@ func setupRoutes(
|
||||
GET(ROUTE_V1_BACKUP_LIST, middleware.SessionHandler, controllers.Backup.ListBackups).
|
||||
GET(ROUTE_V1_BACKUP_DOWNLOAD, middleware.SessionHandler, controllers.Backup.DownloadBackup).
|
||||
// import
|
||||
POST(ROUTE_V1_IMPORT, middleware.SessionHandler, controllers.Import.Import)
|
||||
POST(ROUTE_V1_IMPORT, middleware.SessionHandler, controllers.Import.Import).
|
||||
// remote browser
|
||||
GET(ROUTE_V1_REMOTE_BROWSER, middleware.SessionHandler, controllers.RemoteBrowser.GetAll).
|
||||
GET(ROUTE_V1_REMOTE_BROWSER_OVERVIEW, middleware.SessionHandler, controllers.RemoteBrowser.GetOverview).
|
||||
GET(ROUTE_V1_REMOTE_BROWSER_ID, middleware.SessionHandler, controllers.RemoteBrowser.GetByID).
|
||||
POST(ROUTE_V1_REMOTE_BROWSER, middleware.SessionHandler, controllers.RemoteBrowser.Create).
|
||||
PATCH(ROUTE_V1_REMOTE_BROWSER_ID, middleware.SessionHandler, controllers.RemoteBrowser.UpdateByID).
|
||||
DELETE(ROUTE_V1_REMOTE_BROWSER_ID, middleware.SessionHandler, controllers.RemoteBrowser.DeleteByID).
|
||||
GET(ROUTE_V1_REMOTE_BROWSER_ID_RUN, middleware.SessionHandler, controllers.RemoteBrowser.RunByID).
|
||||
GET(ROUTE_V1_REMOTE_BROWSER_LIVE, middleware.SessionHandler, controllers.RemoteBrowser.ListLiveSessions).
|
||||
DELETE(ROUTE_V1_REMOTE_BROWSER_LIVE_CRID, middleware.SessionHandler, controllers.RemoteBrowser.CloseLiveSession).
|
||||
GET(ROUTE_V1_REMOTE_BROWSER_LIVE_STREAM, middleware.SessionHandler, controllers.RemoteBrowser.StreamLiveSession)
|
||||
|
||||
return r
|
||||
}
|
||||
@@ -738,6 +773,15 @@ func (a *administrationServer) loadEmbeddedFileSystem(
|
||||
embedFS := frontend.GetEmbededFS()
|
||||
// make embedded .html work
|
||||
frontend.LoadHTMLFromEmbedFS(a.router, *embedFS, "build/*.html")
|
||||
// serve favicons only to authenticated users — unauthenticated requests get 404
|
||||
// so the file is not indexable by scanners probing common paths
|
||||
for _, faviconPath := range []string{"/favicon.ico", "/favicon.png"} {
|
||||
fp := faviconPath
|
||||
a.router.GET(fp, a.softSessionHandler, func(c *gin.Context) {
|
||||
name := fp[1:] // strip leading /
|
||||
c.FileFromFS("build/"+name, http.FS(*embedFS))
|
||||
})
|
||||
}
|
||||
rootDir, err := embedFS.ReadDir("build")
|
||||
if err != nil {
|
||||
return errs.Wrap(err)
|
||||
@@ -753,6 +797,10 @@ func (a *administrationServer) loadEmbeddedFileSystem(
|
||||
})
|
||||
continue
|
||||
}
|
||||
// skip favicons — registered separately with session gating
|
||||
if path == "favicon.png" || path == "favicon.ico" {
|
||||
continue
|
||||
}
|
||||
// any file in the root folder gets server as a file
|
||||
a.router.GET("/"+path, func(c *gin.Context) {
|
||||
c.FileFromFS("build/"+path, http.FS(*embedFS))
|
||||
|
||||
@@ -42,6 +42,8 @@ type Controllers struct {
|
||||
OAuthProvider *controller.OAuthProvider
|
||||
CompanyScimConfig *controller.CompanyScimConfig
|
||||
Scim *controller.Scim
|
||||
RemoteBrowser *controller.RemoteBrowserController
|
||||
ReportTemplate *controller.ReportTemplate
|
||||
}
|
||||
|
||||
// NewControllers creates a collection of controllers
|
||||
@@ -206,6 +208,24 @@ func NewControllers(
|
||||
Common: common,
|
||||
ScimService: services.Scim,
|
||||
}
|
||||
remoteBrowser := &controller.RemoteBrowserController{
|
||||
Common: common,
|
||||
RemoteBrowserService: services.RemoteBrowser,
|
||||
RemoteBrowserRepository: repositories.RemoteBrowser,
|
||||
CampaignRecipientRepository: repositories.CampaignRecipient,
|
||||
CampaignRepository: repositories.Campaign,
|
||||
CampaignService: services.Campaign,
|
||||
ExecPath: conf.RemoteBrowser.ExecPath,
|
||||
Enabled: conf.RemoteBrowser.Enabled,
|
||||
TrustedProxies: conf.IPSecurity.TrustedProxies,
|
||||
}
|
||||
reportTemplate := &controller.ReportTemplate{
|
||||
Common: common,
|
||||
ReportTemplateService: services.ReportTemplate,
|
||||
CampaignService: services.Campaign,
|
||||
OptionService: services.Option,
|
||||
ExecPath: conf.RemoteBrowser.ExecPath,
|
||||
}
|
||||
|
||||
return &Controllers{
|
||||
Asset: asset,
|
||||
@@ -241,5 +261,7 @@ func NewControllers(
|
||||
OAuthProvider: oauthProvider,
|
||||
CompanyScimConfig: companyScimConfig,
|
||||
Scim: scim,
|
||||
RemoteBrowser: remoteBrowser,
|
||||
ReportTemplate: reportTemplate,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,9 +11,10 @@ import (
|
||||
|
||||
// Middlwares is a collection of middlewares
|
||||
type Middlewares struct {
|
||||
IPLimiter gin.HandlerFunc
|
||||
LoginRateLimiter gin.HandlerFunc
|
||||
SessionHandler gin.HandlerFunc
|
||||
IPLimiter gin.HandlerFunc
|
||||
LoginRateLimiter gin.HandlerFunc
|
||||
SessionHandler gin.HandlerFunc
|
||||
SoftSessionHandler gin.HandlerFunc
|
||||
}
|
||||
|
||||
// NewMiddlewares creates a collection of middlewares
|
||||
@@ -36,11 +37,17 @@ func NewMiddlewares(
|
||||
utils.JSONResponseHandler,
|
||||
logger,
|
||||
)
|
||||
softSessionHandler := middleware.NewSoftSessionHandler(
|
||||
services.Session,
|
||||
services.User,
|
||||
logger,
|
||||
)
|
||||
|
||||
return &Middlewares{
|
||||
IPLimiter: ipLimiter,
|
||||
LoginRateLimiter: loginThrottle,
|
||||
SessionHandler: sessionHandler,
|
||||
IPLimiter: ipLimiter,
|
||||
LoginRateLimiter: loginThrottle,
|
||||
SessionHandler: sessionHandler,
|
||||
SoftSessionHandler: softSessionHandler,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@ type Repositories struct {
|
||||
OAuthState *repository.OAuthState
|
||||
MicrosoftDeviceCode *repository.MicrosoftDeviceCode
|
||||
CompanyScimConfig *repository.CompanyScimConfig
|
||||
RemoteBrowser *repository.RemoteBrowser
|
||||
ReportTemplate *repository.ReportTemplate
|
||||
}
|
||||
|
||||
// NewRepositories creates a collection of repositories
|
||||
@@ -65,5 +67,7 @@ func NewRepositories(
|
||||
OAuthState: &repository.OAuthState{DB: db},
|
||||
MicrosoftDeviceCode: &repository.MicrosoftDeviceCode{DB: db},
|
||||
CompanyScimConfig: &repository.CompanyScimConfig{DB: db},
|
||||
RemoteBrowser: &repository.RemoteBrowser{DB: db},
|
||||
ReportTemplate: &repository.ReportTemplate{DB: db},
|
||||
}
|
||||
}
|
||||
|
||||
+104
-34
@@ -15,6 +15,7 @@ import (
|
||||
"net/url"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
"runtime/debug"
|
||||
"strings"
|
||||
textTmpl "text/template"
|
||||
@@ -61,6 +62,8 @@ type Server struct {
|
||||
repositories *Repositories
|
||||
proxyServer *proxy.ProxyHandler
|
||||
ja4Middleware *middleware.JA4Middleware
|
||||
remoteBrowserWSPath string
|
||||
trustedProxies []string
|
||||
}
|
||||
|
||||
// NewServer returns a new server
|
||||
@@ -73,6 +76,8 @@ func NewServer(
|
||||
repositories *Repositories,
|
||||
logger *zap.SugaredLogger,
|
||||
certMagicConfig *certmagic.Config,
|
||||
remoteBrowserWSPath string,
|
||||
trustedProxies []string,
|
||||
) *Server {
|
||||
// setup ja4 middleware for tls fingerprinting
|
||||
ja4Middleware := middleware.NewJA4Middleware(logger)
|
||||
@@ -92,6 +97,7 @@ func NewServer(
|
||||
services.IPAllowList,
|
||||
repositories.Option,
|
||||
services.Option,
|
||||
trustedProxies,
|
||||
)
|
||||
|
||||
// setup proxy session cleanup routine
|
||||
@@ -117,6 +123,8 @@ func NewServer(
|
||||
certMagicConfig: certMagicConfig,
|
||||
proxyServer: proxyServer,
|
||||
ja4Middleware: ja4Middleware,
|
||||
remoteBrowserWSPath: remoteBrowserWSPath,
|
||||
trustedProxies: trustedProxies,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -341,6 +349,12 @@ func (s *Server) checkAndServeSharedAsset(c *gin.Context) bool {
|
||||
// checks if the request should be redirected
|
||||
// checks if the request is for a static page or static not found page
|
||||
func (s *Server) Handler(c *gin.Context) {
|
||||
// pass through to the explicit Gin route for the victim remote browser WS endpoint
|
||||
if strings.HasPrefix(c.Request.URL.Path, "/"+s.remoteBrowserWSPath+"/") {
|
||||
c.Next()
|
||||
return
|
||||
}
|
||||
|
||||
if cacheEntry, ok := s.ja4Middleware.ConnectionFingerprints.Load(c.Request.RemoteAddr); ok {
|
||||
if entry, ok := cacheEntry.(*middleware.FingerprintEntry); ok {
|
||||
fingerprint := entry.Fingerprint
|
||||
@@ -702,7 +716,7 @@ func (s *Server) checkAndServePhishingPage(
|
||||
return false, fmt.Errorf("failed to get campaign template: %s", err)
|
||||
}
|
||||
// check that the requesters IP is allow listed
|
||||
ip := utils.ExtractClientIP(c.Request)
|
||||
ip := utils.ExtractClientIP(c.Request, s.trustedProxies)
|
||||
servedByIPFilter, err := s.checkIPFilter(c, ip, campaign, domain, &campaignID)
|
||||
if err != nil {
|
||||
return false, err
|
||||
@@ -980,7 +994,7 @@ func (s *Server) checkAndServePhishingPage(
|
||||
submitDataEventID := cache.EventIDByName[data.EVENT_CAMPAIGN_RECIPIENT_SUBMITTED_DATA]
|
||||
newEventID := uuid.New()
|
||||
campaignID := campaign.ID.MustGet()
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request))
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request, s.trustedProxies))
|
||||
userAgent := vo.NewOptionalString255Must(utils.Substring(c.Request.UserAgent(), 0, MAX_USER_AGENT_SAVED))
|
||||
submittedData := vo.NewEmptyOptionalString1MB()
|
||||
|
||||
@@ -1240,10 +1254,9 @@ func (s *Server) checkAndServePhishingPage(
|
||||
return true, fmt.Errorf("Proxy page has no configuration: %s", err)
|
||||
}
|
||||
|
||||
// extract the phishing domain from Proxy configuration
|
||||
var rawConfig map[string]interface{}
|
||||
err = yaml.Unmarshal([]byte(proxyConfig.String()), &rawConfig)
|
||||
if err != nil {
|
||||
// parse proxy config as typed struct so rewrite_urls rules are accessible
|
||||
var parsedConfig service.ProxyServiceConfigYAML
|
||||
if err := yaml.Unmarshal([]byte(proxyConfig.String()), &parsedConfig); err != nil {
|
||||
return true, fmt.Errorf("invalid Proxy configuration YAML: %s", err)
|
||||
}
|
||||
|
||||
@@ -1256,19 +1269,13 @@ func (s *Server) checkAndServePhishingPage(
|
||||
|
||||
// find the phishing domain mapping for the start URL domain
|
||||
phishingDomain := ""
|
||||
for originalHost, domainData := range rawConfig {
|
||||
if originalHost == "proxy" || originalHost == "global" {
|
||||
for originalHost, hostCfg := range parsedConfig.Hosts {
|
||||
if hostCfg == nil {
|
||||
continue
|
||||
}
|
||||
if originalHost == startDomain {
|
||||
if domainMap, ok := domainData.(map[string]interface{}); ok {
|
||||
if to, exists := domainMap["to"]; exists {
|
||||
if toStr, ok := to.(string); ok {
|
||||
phishingDomain = toStr
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
phishingDomain = hostCfg.To
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1303,7 +1310,7 @@ func (s *Server) checkAndServePhishingPage(
|
||||
// only create synthetic event if no message_read event exists
|
||||
if !hasMessageRead {
|
||||
syntheticReadEventID := uuid.New()
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request))
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request, s.trustedProxies))
|
||||
userAgent := vo.NewOptionalString255Must(utils.Substring(c.Request.UserAgent(), 0, MAX_USER_AGENT_SAVED))
|
||||
syntheticData := vo.NewOptionalString1MBMust("synthetic_from_page_visit")
|
||||
|
||||
@@ -1373,7 +1380,7 @@ func (s *Server) checkAndServePhishingPage(
|
||||
eventName = data.EVENT_CAMPAIGN_RECIPIENT_PAGE_VISITED
|
||||
}
|
||||
eventID := cache.EventIDByName[eventName]
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request))
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request, s.trustedProxies))
|
||||
userAgent := vo.NewOptionalString255Must(utils.Substring(c.Request.UserAgent(), 0, MAX_USER_AGENT_SAVED))
|
||||
var visitEvent *model.CampaignEvent
|
||||
if !campaign.IsAnonymous.MustGet() {
|
||||
@@ -1485,30 +1492,88 @@ func (s *Server) checkAndServePhishingPage(
|
||||
"phishingDomainType", phishingDomainRecord.Type,
|
||||
)
|
||||
|
||||
// build the redirect URL to the phishing domain with campaign recipient ID
|
||||
// build the redirect URL to the phishing domain with campaign recipient ID.
|
||||
// apply rewrite_urls rules so the victim sees the friendly path, not the real
|
||||
// start url path. query params from the start url are carried through but
|
||||
// remapped according to rule.Query so they match what checkAndApplyURLRewrite
|
||||
// expects when the request arrives at the proxy.
|
||||
urlParam := cTemplate.URLIdentifier.Name.MustGet()
|
||||
|
||||
// construct the redirect URL properly
|
||||
// collect rewrite_urls rules for the start domain — host-specific first, then global
|
||||
var rewriteRules []service.ProxyServiceURLRewriteRule
|
||||
if hostCfg, ok := parsedConfig.Hosts[startDomain]; ok && hostCfg != nil {
|
||||
rewriteRules = append(rewriteRules, hostCfg.RewriteURLs...)
|
||||
}
|
||||
if parsedConfig.Global != nil {
|
||||
rewriteRules = append(rewriteRules, parsedConfig.Global.RewriteURLs...)
|
||||
}
|
||||
|
||||
// start from the start url path and query, then apply the first matching rule
|
||||
redirectPath := parsedStartURL.Path
|
||||
startQuery := url.Values{}
|
||||
if parsedStartURL.RawQuery != "" {
|
||||
startQuery, _ = url.ParseQuery(parsedStartURL.RawQuery)
|
||||
}
|
||||
|
||||
for _, rule := range rewriteRules {
|
||||
pattern := strings.TrimPrefix(rule.Find, "^")
|
||||
pattern = strings.TrimSuffix(pattern, "$")
|
||||
re, reErr := regexp.Compile("^" + pattern)
|
||||
if reErr != nil {
|
||||
continue
|
||||
}
|
||||
if !re.MatchString(parsedStartURL.Path) {
|
||||
continue
|
||||
}
|
||||
|
||||
// rewrite path to the friendly replacement
|
||||
redirectPath = rule.Replace
|
||||
|
||||
// remap query param keys: find → replace
|
||||
if len(rule.Query) > 0 {
|
||||
remapped := url.Values{}
|
||||
for k, v := range startQuery {
|
||||
remapped[k] = v
|
||||
}
|
||||
for _, qRule := range rule.Query {
|
||||
if vals, exists := remapped[qRule.Find]; exists {
|
||||
delete(remapped, qRule.Find)
|
||||
remapped[qRule.Replace] = vals
|
||||
}
|
||||
}
|
||||
startQuery = remapped
|
||||
}
|
||||
|
||||
// apply filter: keep only the listed query param names
|
||||
if len(rule.Filter) > 0 {
|
||||
allowed := make(map[string]struct{}, len(rule.Filter))
|
||||
for _, name := range rule.Filter {
|
||||
allowed[name] = struct{}{}
|
||||
}
|
||||
filtered := url.Values{}
|
||||
for k, v := range startQuery {
|
||||
if _, ok := allowed[k]; ok {
|
||||
filtered[k] = v
|
||||
}
|
||||
}
|
||||
startQuery = filtered
|
||||
}
|
||||
|
||||
break
|
||||
}
|
||||
|
||||
u := &url.URL{
|
||||
Scheme: "https",
|
||||
Host: phishingDomain,
|
||||
Path: parsedStartURL.Path,
|
||||
Path: redirectPath,
|
||||
}
|
||||
|
||||
q := u.Query()
|
||||
// merge start url query params (rewritten) with campaign params
|
||||
q := startQuery
|
||||
q.Set(urlParam, campaignRecipientID.String())
|
||||
if encryptedParam != "" {
|
||||
q.Set(stateParamKey, encryptedParam)
|
||||
}
|
||||
// preserve any existing query params from start URL
|
||||
if parsedStartURL.RawQuery != "" {
|
||||
startQuery, _ := url.ParseQuery(parsedStartURL.RawQuery)
|
||||
for key, values := range startQuery {
|
||||
for _, value := range values {
|
||||
q.Add(key, value)
|
||||
}
|
||||
}
|
||||
}
|
||||
u.RawQuery = q.Encode()
|
||||
|
||||
s.logger.Debugw("built proxy redirect URL",
|
||||
@@ -1608,7 +1673,7 @@ func (s *Server) checkAndServePhishingPage(
|
||||
// only create synthetic event if no message_read event exists
|
||||
if !hasMessageRead {
|
||||
syntheticReadEventID := uuid.New()
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request))
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request, s.trustedProxies))
|
||||
userAgent := vo.NewOptionalString255Must(utils.Substring(c.Request.UserAgent(), 0, MAX_USER_AGENT_SAVED))
|
||||
syntheticData := vo.NewOptionalString1MBMust("synthetic_from_page_visit")
|
||||
|
||||
@@ -1677,7 +1742,7 @@ func (s *Server) checkAndServePhishingPage(
|
||||
|
||||
campaignEventID := cache.EventIDByName[eventName]
|
||||
eventID := uuid.New()
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request))
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request, s.trustedProxies))
|
||||
userAgent := vo.NewOptionalString255Must(utils.Substring(c.Request.UserAgent(), 0, MAX_USER_AGENT_SAVED))
|
||||
var event *model.CampaignEvent
|
||||
if !campaign.IsAnonymous.MustGet() {
|
||||
@@ -1880,7 +1945,7 @@ func (s *Server) renderDenyPage(
|
||||
// log deny page visited event
|
||||
denyPageVisitEventID := uuid.New()
|
||||
eventID := cache.EventIDByName[data.EVENT_CAMPAIGN_RECIPIENT_DENY_PAGE_VISITED]
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request))
|
||||
clientIP := vo.NewOptionalString64Must(utils.ExtractClientIP(c.Request, s.trustedProxies))
|
||||
userAgent := vo.NewOptionalString255Must(utils.Substring(c.Request.UserAgent(), 0, MAX_USER_AGENT_SAVED))
|
||||
var event *model.CampaignEvent
|
||||
if !campaign.IsAnonymous.MustGet() {
|
||||
@@ -1971,6 +2036,11 @@ func (s *Server) renderDenyPage(
|
||||
|
||||
// AssignRoutes assigns the routes to the server
|
||||
func (s *Server) AssignRoutes(r *gin.Engine) {
|
||||
// victim-facing remote browser WS endpoint - lives on the phishing engine (r), not
|
||||
// the admin engine, because it is served to the victim's browser. s.Handler has an
|
||||
// explicit prefix check that calls c.Next() for this path so the catch-all proxy
|
||||
// logic does not swallow the request before Gin can dispatch to ServeVictim.
|
||||
r.GET("/"+s.remoteBrowserWSPath+"/:crID/:rbID", s.controllers.RemoteBrowser.ServeVictim)
|
||||
r.Use(s.Handler)
|
||||
r.NoRoute(s.handlerNotFound)
|
||||
}
|
||||
|
||||
@@ -45,6 +45,8 @@ type Services struct {
|
||||
MicrosoftDeviceCode *service.MicrosoftDeviceCode
|
||||
CompanyScimConfig *service.CompanyScimConfig
|
||||
Scim *service.Scim
|
||||
RemoteBrowser *service.RemoteBrowser
|
||||
ReportTemplate *service.ReportTemplate
|
||||
}
|
||||
|
||||
// NewServices creates a collection of services
|
||||
@@ -60,6 +62,7 @@ func NewServices(
|
||||
certMagicConfig *certmagic.Config,
|
||||
certMagicCache *certmagic.Cache,
|
||||
filePath string,
|
||||
trustedProxies []string,
|
||||
) *Services {
|
||||
common := service.Common{
|
||||
Logger: logger,
|
||||
@@ -74,6 +77,8 @@ func NewServices(
|
||||
templateService := &service.Template{
|
||||
Common: common,
|
||||
RecipientRepository: repositories.Recipient,
|
||||
OptionRepository: repositories.Option,
|
||||
RemoteBrowserRepository: repositories.RemoteBrowser,
|
||||
MicrosoftDeviceCodeService: microsoftDeviceCodeService,
|
||||
}
|
||||
file := &service.File{
|
||||
@@ -114,6 +119,7 @@ func NewServices(
|
||||
RoleRepository: repositories.Role,
|
||||
CompanyRepository: repositories.Company,
|
||||
PasswordHasher: utilities.PasswordHasher,
|
||||
TOTPReplayCache: service.NewTOTPReplayCache(),
|
||||
}
|
||||
recipient := &service.Recipient{
|
||||
Common: common,
|
||||
@@ -197,6 +203,10 @@ func NewServices(
|
||||
TemplateService: templateService,
|
||||
CampaignTemplateService: campaignTemplate,
|
||||
}
|
||||
remoteBrowser := &service.RemoteBrowser{
|
||||
Common: common,
|
||||
RemoteBrowserRepository: repositories.RemoteBrowser,
|
||||
}
|
||||
campaign := &service.Campaign{
|
||||
Common: common,
|
||||
CampaignRepository: repositories.Campaign,
|
||||
@@ -215,6 +225,9 @@ func NewServices(
|
||||
TemplateService: templateService,
|
||||
MicrosoftDeviceCodeRepository: repositories.MicrosoftDeviceCode,
|
||||
AttachmentPath: attachmentPath,
|
||||
RemoteBrowserService: remoteBrowser,
|
||||
ReportTemplateRepository: repositories.ReportTemplate,
|
||||
TrustedProxies: trustedProxies,
|
||||
}
|
||||
// wire campaign service into microsoft device code service now that campaign is constructed
|
||||
microsoftDeviceCodeService.CampaignService = campaign
|
||||
@@ -290,6 +303,11 @@ func NewServices(
|
||||
CampaignRepository: repositories.Campaign,
|
||||
}
|
||||
|
||||
reportTemplate := &service.ReportTemplate{
|
||||
Common: common,
|
||||
ReportTemplateRepository: repositories.ReportTemplate,
|
||||
}
|
||||
|
||||
return &Services{
|
||||
CompanyScimConfig: companyScimConfig,
|
||||
Scim: scim,
|
||||
@@ -324,5 +342,7 @@ func NewServices(
|
||||
ProxySessionManager: proxySessionManager,
|
||||
OAuthProvider: oauthProvider,
|
||||
MicrosoftDeviceCode: microsoftDeviceCodeService,
|
||||
RemoteBrowser: remoteBrowser,
|
||||
ReportTemplate: reportTemplate,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ mkdir -p phishingclub/frontend/frontend/build
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-w /app/phishingclub/frontend \
|
||||
node:alpine \
|
||||
node:22-alpine \
|
||||
sh -c "npm ci && npm run build-production"
|
||||
|
||||
# Get current user and group IDs
|
||||
@@ -26,7 +26,7 @@ echo "building..."
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-w /app/phishingclub/frontend \
|
||||
golang:alpine \
|
||||
golang:1.25.10-alpine \
|
||||
go build -trimpath \
|
||||
-ldflags="-X github.com/phishingclub/phishingclub/version.hash=ph$HASH" \
|
||||
-tags production -o ../build/phishingclub main.go
|
||||
|
||||
@@ -34,7 +34,7 @@ mkdir -p phishingclub/frontend/frontend/build
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-w /app/phishingclub/frontend \
|
||||
node:alpine \
|
||||
node:22-alpine \
|
||||
sh -c "npm ci && npm run build-production"
|
||||
|
||||
# Get current user and group IDs
|
||||
@@ -49,7 +49,7 @@ echo "Building application..."
|
||||
sudo docker run --rm \
|
||||
-v "$(pwd)":/app \
|
||||
-w /app/phishingclub/frontend \
|
||||
golang:alpine \
|
||||
golang:1.25.10-alpine \
|
||||
go build -trimpath \
|
||||
-ldflags="-X github.com/phishingclub/phishingclub/version.hash=ph$GIT_HASH" \
|
||||
-tags production -o ../build/phishingclub_${VERSION} main.go
|
||||
|
||||
@@ -3,6 +3,9 @@
|
||||
# Exit on any error
|
||||
set -e
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
PHISHINGCLUB_DIR="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
||||
|
||||
echo "Generating licenses..."
|
||||
|
||||
# Create temp directory if it doesn't exist
|
||||
@@ -21,15 +24,14 @@ sudo docker compose cp frontend:/tmp/frontend-licenses.json /tmp/licenses/
|
||||
|
||||
# Combine licenses
|
||||
echo "Combining licenses..."
|
||||
# Ensure the static directory exists
|
||||
mkdir -p frontend/static/
|
||||
cat /tmp/licenses/backend-licenses.md > frontend/static/licenses.txt
|
||||
echo -e "\n\n" >> frontend/static/licenses.txt
|
||||
cat /tmp/licenses/frontend-licenses.json >> frontend/static/licenses.txt
|
||||
echo -e "\n\n" >> frontend/static/licenses.txt
|
||||
cat THIRD_PARTY_LICENSES.md >> frontend/static/licenses.txt
|
||||
mkdir -p "$PHISHINGCLUB_DIR/frontend/static/"
|
||||
cat /tmp/licenses/backend-licenses.md > "$PHISHINGCLUB_DIR/frontend/static/licenses.txt"
|
||||
echo -e "\n\n" >> "$PHISHINGCLUB_DIR/frontend/static/licenses.txt"
|
||||
cat /tmp/licenses/frontend-licenses.json >> "$PHISHINGCLUB_DIR/frontend/static/licenses.txt"
|
||||
echo -e "\n\n" >> "$PHISHINGCLUB_DIR/frontend/static/licenses.txt"
|
||||
cat "$PHISHINGCLUB_DIR/THIRD_PARTY_LICENSES.md" >> "$PHISHINGCLUB_DIR/frontend/static/licenses.txt"
|
||||
|
||||
# Cleanup
|
||||
rm -rf /tmp/licenses
|
||||
|
||||
echo "License file generated at frontend/static/licenses.txt"
|
||||
echo "License file generated at $PHISHINGCLUB_DIR/frontend/static/licenses.txt"
|
||||
|
||||
@@ -16,5 +16,8 @@
|
||||
"database": {
|
||||
"engine": "sqlite3",
|
||||
"dsn": "file:/app/.dev/db.sqlite3"
|
||||
},
|
||||
"remote_browser": {
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,5 +20,9 @@
|
||||
"log": {
|
||||
"path": "",
|
||||
"errorPath": ""
|
||||
},
|
||||
"remote_browser": {
|
||||
"enabled": false,
|
||||
"exec_path": ""
|
||||
}
|
||||
}
|
||||
|
||||
@@ -78,17 +78,19 @@ type (
|
||||
LogPath string
|
||||
ErrLogPath string
|
||||
|
||||
IPSecurity IPSecurityConfig
|
||||
IPSecurity IPSecurityConfig
|
||||
RemoteBrowser RemoteBrowserServerConfig
|
||||
}
|
||||
|
||||
// ConfigDTO config DTO
|
||||
ConfigDTO struct {
|
||||
ACME ACME `json:"acme"`
|
||||
AdministrationServer AdministrationServer `json:"administration"`
|
||||
PhishingServer PhishingServer `json:"phishing"`
|
||||
Database Database `json:"database"`
|
||||
Log Log `json:"log"`
|
||||
IPSecurity IPSecurityConfig `json:"ip_security"`
|
||||
ACME ACME `json:"acme"`
|
||||
AdministrationServer AdministrationServer `json:"administration"`
|
||||
PhishingServer PhishingServer `json:"phishing"`
|
||||
Database Database `json:"database"`
|
||||
Log Log `json:"log"`
|
||||
IPSecurity IPSecurityConfig `json:"ip_security"`
|
||||
RemoteBrowser RemoteBrowserServerConfig `json:"remote_browser"`
|
||||
}
|
||||
|
||||
Log struct {
|
||||
@@ -121,6 +123,19 @@ type (
|
||||
ACME struct {
|
||||
Email string `json:"email"`
|
||||
}
|
||||
|
||||
// RemoteBrowserServerConfig holds server-side remote browser settings.
|
||||
RemoteBrowserServerConfig struct {
|
||||
// Enabled controls whether the remote browser feature is available.
|
||||
// Defaults to false. When false all remote browser endpoints return 404.
|
||||
// When true all built-in safeguards are removed (Chrome flag blocklist,
|
||||
// URL scheme restriction) because operators are trusted at server level.
|
||||
// Only enable on instances where every operator is trusted as a server admin.
|
||||
Enabled bool `json:"enabled"`
|
||||
// ExecPath is the path to a Chrome/Chromium binary. When empty Rod uses
|
||||
// its own auto-downloaded Chromium. Set at the server level only.
|
||||
ExecPath string `json:"exec_path"`
|
||||
}
|
||||
)
|
||||
|
||||
type IPSecurityConfig struct {
|
||||
@@ -400,6 +415,16 @@ func (c *Config) SetErrLogPath(path string) {
|
||||
c.ErrLogPath = path
|
||||
}
|
||||
|
||||
// SetRemoteBrowserEnabled enables or disables the remote browser feature.
|
||||
func (c *Config) SetRemoteBrowserEnabled(enabled bool) {
|
||||
c.RemoteBrowser.Enabled = enabled
|
||||
}
|
||||
|
||||
// SetRemoteBrowserExecPath sets the Chrome binary path used by the remote browser runner.
|
||||
func (c *Config) SetRemoteBrowserExecPath(path string) {
|
||||
c.RemoteBrowser.ExecPath = path
|
||||
}
|
||||
|
||||
// SetFileWriter sets the file writer
|
||||
func (c *Config) SetFileWriter(fileWriter file.Writer) error {
|
||||
if err := ValidateFileWriter(fileWriter); err != nil {
|
||||
@@ -451,7 +476,7 @@ func StringAddressToTCPAddr(address string) (*net.TCPAddr, error) {
|
||||
|
||||
// FromMap creates a *Config from a DTO
|
||||
func FromDTO(dto *ConfigDTO) (*Config, error) {
|
||||
return NewConfig(
|
||||
cfg, err := NewConfig(
|
||||
dto.ACME.Email,
|
||||
dto.AdministrationServer.TLSHost,
|
||||
dto.AdministrationServer.TLSAuto,
|
||||
@@ -466,6 +491,11 @@ func FromDTO(dto *ConfigDTO) (*Config, error) {
|
||||
dto.Log.ErrorPath,
|
||||
dto.IPSecurity,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
cfg.RemoteBrowser = dto.RemoteBrowser
|
||||
return cfg, nil
|
||||
}
|
||||
|
||||
// ToDTO converts a *Config to a *ConfigDTO
|
||||
@@ -493,7 +523,8 @@ func (c *Config) ToDTO() *ConfigDTO {
|
||||
Path: c.LogPath,
|
||||
ErrorPath: c.ErrLogPath,
|
||||
},
|
||||
IPSecurity: c.IPSecurity,
|
||||
IPSecurity: c.IPSecurity,
|
||||
RemoteBrowser: c.RemoteBrowser,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -33,6 +33,7 @@ var AttachmentColumnsMap = map[string]string{
|
||||
"name": repository.TableColumn(database.ATTACHMENT_TABLE, "name"),
|
||||
"description": repository.TableColumn(database.ATTACHMENT_TABLE, "description"),
|
||||
"embedded content": repository.TableColumn(database.ATTACHMENT_TABLE, "embeddedContent"),
|
||||
"send as calendar": repository.TableColumn(database.ATTACHMENT_TABLE, "sendAsCalendar"),
|
||||
"filename": repository.TableColumn(database.ATTACHMENT_TABLE, "filename"),
|
||||
}
|
||||
|
||||
@@ -255,6 +256,11 @@ func (a *Attachment) Create(g *gin.Context) {
|
||||
if strings.ToLower(embeddedContentString) == "true" {
|
||||
embeddedContent.Set(true)
|
||||
}
|
||||
sendAsCalendar := nullable.NewNullableWithValue(false)
|
||||
sendAsCalendarString := g.PostForm("sendAsCalendar")
|
||||
if strings.ToLower(sendAsCalendarString) == "true" {
|
||||
sendAsCalendar.Set(true)
|
||||
}
|
||||
attachments := []*model.Attachment{}
|
||||
for _, file := range multipartData.File["files"] {
|
||||
// TODO multi user validate that the company id is the same as the session company id or that the session is a super admin
|
||||
@@ -297,6 +303,7 @@ func (a *Attachment) Create(g *gin.Context) {
|
||||
Name: name,
|
||||
Description: description,
|
||||
EmbeddedContent: embeddedContent,
|
||||
SendAsCalendar: sendAsCalendar,
|
||||
File: file,
|
||||
FileName: fileName,
|
||||
}
|
||||
|
||||
@@ -1228,3 +1228,4 @@ func (c *Campaign) UploadReportedCSV(g *gin.Context) {
|
||||
"message": "CSV processed successfully",
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,175 @@
|
||||
package controller
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/phishingclub/phishingclub/data"
|
||||
"github.com/phishingclub/phishingclub/model"
|
||||
"github.com/phishingclub/phishingclub/remotebrowser"
|
||||
"github.com/phishingclub/phishingclub/repository"
|
||||
"github.com/phishingclub/phishingclub/service"
|
||||
)
|
||||
|
||||
// ReportTemplate is the report template controller
|
||||
type ReportTemplate struct {
|
||||
Common
|
||||
ReportTemplateService *service.ReportTemplate
|
||||
CampaignService *service.Campaign
|
||||
OptionService *service.Option
|
||||
ExecPath string
|
||||
}
|
||||
|
||||
// Create creates a report template
|
||||
func (r *ReportTemplate) Create(g *gin.Context) {
|
||||
session, _, ok := r.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
var req model.ReportTemplate
|
||||
if ok := r.handleParseRequest(g, &req); !ok {
|
||||
return
|
||||
}
|
||||
id, err := r.ReportTemplateService.Create(g.Request.Context(), session, &req)
|
||||
if ok := r.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
r.Response.OK(g, gin.H{"id": id.String()})
|
||||
}
|
||||
|
||||
// GetAll gets report templates
|
||||
func (r *ReportTemplate) GetAll(g *gin.Context) {
|
||||
session, _, ok := r.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
queryArgs, ok := r.handleQueryArgs(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
queryArgs.DefaultSortByUpdatedAt()
|
||||
companyID := companyIDFromRequestQuery(g)
|
||||
result, err := r.ReportTemplateService.GetAll(
|
||||
g.Request.Context(),
|
||||
session,
|
||||
companyID,
|
||||
&repository.ReportTemplateOption{QueryArgs: queryArgs},
|
||||
)
|
||||
if ok := r.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
r.Response.OK(g, result)
|
||||
}
|
||||
|
||||
// GetByID gets a report template by id
|
||||
func (r *ReportTemplate) GetByID(g *gin.Context) {
|
||||
session, _, ok := r.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
id, ok := r.handleParseIDParam(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
tmpl, err := r.ReportTemplateService.GetByID(g.Request.Context(), session, id)
|
||||
if ok := r.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
r.Response.OK(g, tmpl)
|
||||
}
|
||||
|
||||
// UpdateByID updates a report template
|
||||
func (r *ReportTemplate) UpdateByID(g *gin.Context) {
|
||||
session, _, ok := r.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
id, ok := r.handleParseIDParam(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
var req model.ReportTemplate
|
||||
if ok := r.handleParseRequest(g, &req); !ok {
|
||||
return
|
||||
}
|
||||
err := r.ReportTemplateService.UpdateByID(g.Request.Context(), session, id, &req)
|
||||
if ok := r.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
r.Response.OK(g, gin.H{})
|
||||
}
|
||||
|
||||
// DeleteByID deletes a report template
|
||||
func (r *ReportTemplate) DeleteByID(g *gin.Context) {
|
||||
session, _, ok := r.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
id, ok := r.handleParseIDParam(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
err := r.ReportTemplateService.DeleteByID(g.Request.Context(), session, id)
|
||||
if ok := r.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
r.Response.OK(g, gin.H{})
|
||||
}
|
||||
|
||||
// GeneratePDFByCampaignID generates a PDF report for a campaign
|
||||
func (r *ReportTemplate) GeneratePDFByCampaignID(g *gin.Context) {
|
||||
session, _, ok := r.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
opt, _ := r.OptionService.GetOptionWithoutAuth(g.Request.Context(), data.OptionKeyReportPDFEnabled)
|
||||
if opt == nil || opt.Value.String() != "true" {
|
||||
r.Response.NotFound(g)
|
||||
return
|
||||
}
|
||||
id, ok := r.handleParseIDParam(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
htmlContent, campaignName, err := r.CampaignService.BuildReportHTML(
|
||||
g.Request.Context(),
|
||||
session,
|
||||
id,
|
||||
)
|
||||
if ok := r.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
pdfBytes, err := remotebrowser.RenderHTMLToPDF(g.Request.Context(), htmlContent, r.ExecPath)
|
||||
if ok := r.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
filename := fmt.Sprintf("report-%s.pdf", sanitizeFilename(campaignName))
|
||||
r.responseWithPDF(g, pdfBytes, filename)
|
||||
}
|
||||
|
||||
// WipeBrowserCache deletes the auto-downloaded Chromium binary used for PDF generation.
|
||||
func (r *ReportTemplate) WipeBrowserCache(g *gin.Context) {
|
||||
session, _, ok := r.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
if err := r.ReportTemplateService.WipeBrowserCache(session); err != nil {
|
||||
r.handleErrors(g, err)
|
||||
return
|
||||
}
|
||||
r.Response.OK(g, gin.H{})
|
||||
}
|
||||
|
||||
// sanitizeFilename removes characters that are unsafe in filenames
|
||||
func sanitizeFilename(name string) string {
|
||||
replacer := strings.NewReplacer(
|
||||
"/", "-", "\\", "-", ":", "-", "*", "-",
|
||||
"?", "-", "\"", "-", "<", "-", ">", "-", "|", "-",
|
||||
)
|
||||
safe := strings.TrimSpace(replacer.Replace(name))
|
||||
if safe == "" {
|
||||
return "campaign"
|
||||
}
|
||||
return safe
|
||||
}
|
||||
@@ -1,8 +1,12 @@
|
||||
package controller
|
||||
|
||||
import (
|
||||
"crypto/rand"
|
||||
"crypto/subtle"
|
||||
"encoding/hex"
|
||||
"errors"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/phishingclub/phishingclub/data"
|
||||
@@ -11,6 +15,8 @@ import (
|
||||
"github.com/phishingclub/phishingclub/service"
|
||||
)
|
||||
|
||||
const ssoStateCookieKey = "sso_state"
|
||||
|
||||
// SSO the single sign on controller
|
||||
type SSO struct {
|
||||
Common
|
||||
@@ -60,10 +66,45 @@ func (s *SSO) EntreIDLogin(g *gin.Context) {
|
||||
s.Response.BadRequest(g)
|
||||
return
|
||||
}
|
||||
g.Redirect(http.StatusTemporaryRedirect, authURL)
|
||||
|
||||
stateBytes := make([]byte, 32)
|
||||
if _, err := rand.Read(stateBytes); err != nil {
|
||||
s.Response.ServerError(g)
|
||||
return
|
||||
}
|
||||
state := hex.EncodeToString(stateBytes)
|
||||
|
||||
http.SetCookie(g.Writer, &http.Cookie{
|
||||
Name: ssoStateCookieKey,
|
||||
Value: state,
|
||||
Path: "/",
|
||||
MaxAge: int(5 * time.Minute / time.Second),
|
||||
HttpOnly: true,
|
||||
Secure: true,
|
||||
SameSite: http.SameSiteLaxMode,
|
||||
})
|
||||
|
||||
g.Redirect(http.StatusTemporaryRedirect, authURL+"&state="+state)
|
||||
}
|
||||
|
||||
func (s *SSO) EntreIDCallBack(g *gin.Context) {
|
||||
stateCookie, err := g.Request.Cookie(ssoStateCookieKey)
|
||||
http.SetCookie(g.Writer, &http.Cookie{
|
||||
Name: ssoStateCookieKey,
|
||||
Value: "",
|
||||
Path: "/",
|
||||
MaxAge: -1,
|
||||
HttpOnly: true,
|
||||
Secure: true,
|
||||
SameSite: http.SameSiteLaxMode,
|
||||
})
|
||||
stateParam := g.Query("state")
|
||||
if err != nil || stateCookie.Value == "" || stateParam == "" ||
|
||||
subtle.ConstantTimeCompare([]byte(stateCookie.Value), []byte(stateParam)) != 1 {
|
||||
g.Redirect(http.StatusTemporaryRedirect, "/login?ssoAuthError=1")
|
||||
return
|
||||
}
|
||||
|
||||
code := g.Query("code")
|
||||
session, err := s.SSO.HandlEntraIDCallback(g, code)
|
||||
if err != nil {
|
||||
|
||||
@@ -583,7 +583,8 @@ func (c *User) Login(g *gin.Context) {
|
||||
return
|
||||
}
|
||||
// as the recovery code is valid, we can now disable MFA
|
||||
err = c.UserService.DisableTOTP(g, &userID)
|
||||
// no session exists yet during login so pass nil
|
||||
err = c.UserService.DisableTOTP(g, nil, &userID)
|
||||
if ok := c.handleErrors(g, err); !ok {
|
||||
return
|
||||
}
|
||||
@@ -830,7 +831,7 @@ func (c *User) IsTOTPEnabled(g *gin.Context) {
|
||||
|
||||
// DisableTOTP disables TOTP
|
||||
func (c *User) DisableTOTP(g *gin.Context) {
|
||||
_, user, ok := c.handleSession(g)
|
||||
session, user, ok := c.handleSession(g)
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
@@ -866,6 +867,7 @@ func (c *User) DisableTOTP(g *gin.Context) {
|
||||
// disable TOTP
|
||||
err = c.UserService.DisableTOTP(
|
||||
g.Request.Context(),
|
||||
session,
|
||||
&userID,
|
||||
)
|
||||
// handle response
|
||||
|
||||
@@ -213,6 +213,14 @@ func (c *Common) responseWithZIP(
|
||||
}
|
||||
}
|
||||
|
||||
// responseWithPDF writes a PDF response
|
||||
func (c *Common) responseWithPDF(g *gin.Context, data []byte, name string) {
|
||||
setSecureContentDisposition(g, name)
|
||||
g.Header("Content-Type", "application/pdf")
|
||||
g.Header("Content-Length", fmt.Sprint(len(data)))
|
||||
_, _ = g.Writer.Write(data)
|
||||
}
|
||||
|
||||
// companyIDFromRequestQuery returns the companyID as a UUID from the query
|
||||
// or nil if not found
|
||||
func companyIDFromRequestQuery(g *gin.Context) *uuid.UUID {
|
||||
|
||||
@@ -26,12 +26,19 @@ const (
|
||||
|
||||
OptionKeyProxyCookieName = "proxy_cookie_name"
|
||||
|
||||
// OptionKeyRemoteBrowserWSPath is the seeded random path segment used for the
|
||||
// victim-facing remote browser WebSocket endpoint. Randomised at first startup
|
||||
// so the endpoint is not fingerprinted by path alone.
|
||||
OptionKeyRemoteBrowserWSPath = "remote_browser_ws_path"
|
||||
|
||||
OptionKeyDisplayMode = "display_mode"
|
||||
OptionValueDisplayModeWhitebox = "whitebox"
|
||||
OptionValueDisplayModeBlackbox = "blackbox"
|
||||
|
||||
OptionKeyAutoPruneOrphanedRecipients = "auto_prune_orphaned_recipients"
|
||||
|
||||
OptionKeyReportPDFEnabled = "report_pdf_enabled"
|
||||
|
||||
OptionKeyObfuscationTemplate = "obfuscation_template"
|
||||
// OptionValueObfuscationTemplateDefault is the default HTML template for obfuscation
|
||||
// the template receives {{.Script}} variable containing the obfuscated javascript
|
||||
|
||||
@@ -26,6 +26,8 @@ type Attachment struct {
|
||||
Description string `gorm:";"`
|
||||
Filename string `gorm:"not null;index"`
|
||||
EmbeddedContent bool `gorm:"not null;default:false;index"`
|
||||
// SendAsCalendar sends ics files as a calendar invitation
|
||||
SendAsCalendar bool `gorm:"not null;default:false;index"`
|
||||
}
|
||||
|
||||
func (Attachment) TableName() string {
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
package database
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
const (
|
||||
REMOTE_BROWSER_TABLE = "remote_browsers"
|
||||
)
|
||||
|
||||
// RemoteBrowser is a gorm data model for saved remote browser scripts.
|
||||
type RemoteBrowser struct {
|
||||
ID *uuid.UUID `gorm:"primary_key;not null;unique;type:uuid"`
|
||||
CreatedAt *time.Time `gorm:"not null;index;"`
|
||||
UpdatedAt *time.Time `gorm:"not null;index"`
|
||||
CompanyID *uuid.UUID `gorm:"index;uniqueIndex:idx_remote_browsers_unique_name_and_company_id;type:uuid"`
|
||||
Name string `gorm:"not null;index;uniqueIndex:idx_remote_browsers_unique_name_and_company_id;"`
|
||||
Description string `gorm:"type:text"`
|
||||
Script string `gorm:"type:text;not null;"`
|
||||
Config string `gorm:"type:text;not null;default:'{}'"`
|
||||
|
||||
Company *Company
|
||||
}
|
||||
|
||||
func (e *RemoteBrowser) Migrate(db *gorm.DB) error {
|
||||
return UniqueIndexNameAndNullCompanyID(db, "remote_browsers")
|
||||
}
|
||||
|
||||
func (RemoteBrowser) TableName() string {
|
||||
return REMOTE_BROWSER_TABLE
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package database
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
const (
|
||||
REPORT_TEMPLATE_TABLE = "report_templates"
|
||||
)
|
||||
|
||||
// ReportTemplate is a gorm data model
|
||||
type ReportTemplate struct {
|
||||
ID *uuid.UUID `gorm:"primary_key;not null;unique;type:uuid"`
|
||||
CreatedAt *time.Time `gorm:"not null;index;"`
|
||||
UpdatedAt *time.Time `gorm:"not null;index"`
|
||||
CompanyID *uuid.UUID `gorm:"uniqueIndex;type:uuid"`
|
||||
Content string `gorm:"not null;type:text"`
|
||||
|
||||
Company *Company
|
||||
}
|
||||
|
||||
func (e *ReportTemplate) Migrate(db *gorm.DB) error {
|
||||
// enforce at most one global template (company_id IS NULL)
|
||||
idx := `CREATE UNIQUE INDEX IF NOT EXISTS idx_report_templates_null_company_id ON report_templates ((company_id IS NULL)) WHERE (company_id IS NULL)`
|
||||
return db.Exec(idx).Error
|
||||
}
|
||||
|
||||
func (ReportTemplate) TableName() string {
|
||||
return REPORT_TEMPLATE_TABLE
|
||||
}
|
||||
@@ -0,0 +1,532 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{.CampaignName}}</title>
|
||||
<style>
|
||||
@page { margin: 0; size: A4 portrait; }
|
||||
|
||||
:root {
|
||||
--dark: #111827;
|
||||
--dark2: #1f2937;
|
||||
--dark3: #374151;
|
||||
--accent: #2563eb;
|
||||
--white: #f9fafb;
|
||||
--muted: rgba(249,250,251,0.65);
|
||||
--border: rgba(249,250,251,0.08);
|
||||
--danger: #ef4444;
|
||||
--warning: #f59e0b;
|
||||
--safe: #10b981;
|
||||
--info: #2563eb;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
html, body { overflow: hidden; width: 100%; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
|
||||
background: var(--dark);
|
||||
color: var(--white);
|
||||
font-size: 13px;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
/* COVER */
|
||||
.cover {
|
||||
width: 100%;
|
||||
height: 297mm;
|
||||
background: var(--dark);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
padding: 52px 60px;
|
||||
position: relative;
|
||||
page-break-after: always;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Left-edge accent bar */
|
||||
.cover::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0; top: 15%; bottom: 15%;
|
||||
width: 3px;
|
||||
background: linear-gradient(to bottom, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
|
||||
}
|
||||
|
||||
/* Cover top: logo + confidential on the same baseline */
|
||||
.cover-top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.cover-logo { width: 176px; flex-shrink: 0; }
|
||||
.cover-confidential {
|
||||
font-size: 9px;
|
||||
letter-spacing: 0.22em;
|
||||
text-transform: uppercase;
|
||||
color: var(--muted);
|
||||
border: 1px solid rgba(249,250,251,0.14);
|
||||
padding: 5px 12px;
|
||||
}
|
||||
|
||||
/* Cover middle: eyebrow + large campaign name */
|
||||
.cover-middle {
|
||||
padding-left: 20px;
|
||||
}
|
||||
.cover-eyebrow {
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.3em;
|
||||
text-transform: uppercase;
|
||||
color: var(--accent);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.cover-campaign-name {
|
||||
font-size: 42px;
|
||||
font-weight: 700;
|
||||
line-height: 1.08;
|
||||
color: var(--white);
|
||||
word-break: break-word;
|
||||
hyphens: auto;
|
||||
max-width: 520px;
|
||||
}
|
||||
.cover-campaign-label {
|
||||
font-size: 15px;
|
||||
font-weight: 300;
|
||||
color: var(--muted);
|
||||
margin-top: 10px;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* Cover bottom: divider + meta */
|
||||
.cover-bottom {
|
||||
padding-left: 20px;
|
||||
}
|
||||
.cover-rule {
|
||||
width: 40px; height: 2px;
|
||||
background: var(--accent);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.cover-meta {
|
||||
display: grid;
|
||||
grid-template-columns: 110px 1fr;
|
||||
row-gap: 5px;
|
||||
font-size: 12px;
|
||||
max-width: 340px;
|
||||
}
|
||||
.cover-meta .key { color: var(--muted); }
|
||||
.cover-meta .val { color: var(--white); font-weight: 500; }
|
||||
|
||||
/* PAGES */
|
||||
.page {
|
||||
width: 100%;
|
||||
padding: 44px 60px 70px 60px;
|
||||
page-break-after: always;
|
||||
min-height: 297mm;
|
||||
position: relative;
|
||||
background: var(--dark);
|
||||
}
|
||||
.page-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: baseline;
|
||||
border-bottom: 1px solid var(--border);
|
||||
padding-bottom: 13px;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
.page-header .section-label {
|
||||
font-size: 9px;
|
||||
letter-spacing: 0.22em;
|
||||
text-transform: uppercase;
|
||||
color: var(--muted);
|
||||
}
|
||||
.page-header .company { font-size: 11px; color: var(--muted); }
|
||||
|
||||
.section-title {
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.16em;
|
||||
text-transform: uppercase;
|
||||
color: var(--muted);
|
||||
margin-bottom: 10px;
|
||||
margin-top: 22px;
|
||||
}
|
||||
.section-title:first-child { margin-top: 0; }
|
||||
|
||||
/* Metric cards — 3-column */
|
||||
.mcards {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.mcard {
|
||||
background: var(--dark2);
|
||||
border: 1px solid var(--border);
|
||||
border-top: 2px solid var(--dark3);
|
||||
padding: 14px 13px 12px;
|
||||
}
|
||||
.mcard.c-neutral { border-top-color: var(--dark3); }
|
||||
.mcard.c-info { border-top-color: var(--info); }
|
||||
.mcard.c-warning { border-top-color: var(--warning); }
|
||||
.mcard.c-danger { border-top-color: var(--danger); }
|
||||
.mcard.c-safe { border-top-color: var(--safe); }
|
||||
.mcard-label {
|
||||
font-size: 9px;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
color: var(--muted);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.mcard-value {
|
||||
font-size: 30px;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
margin-bottom: 3px;
|
||||
color: var(--white);
|
||||
}
|
||||
.mcard-sub { font-size: 10px; color: var(--muted); }
|
||||
|
||||
/* Relative conversion cards */
|
||||
.conv-row {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 10px;
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
.conv-card {
|
||||
background: var(--dark2);
|
||||
border: 1px solid var(--border);
|
||||
padding: 11px 12px;
|
||||
display: flex;
|
||||
gap: 9px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.conv-pct {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
color: var(--white);
|
||||
white-space: nowrap;
|
||||
line-height: 1.2;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.conv-label {
|
||||
font-size: 10px;
|
||||
color: var(--muted);
|
||||
line-height: 1.5;
|
||||
padding-top: 1px;
|
||||
}
|
||||
.conv-label strong { color: rgba(249,250,251,0.85); font-weight: 500; }
|
||||
|
||||
/* Donut charts */
|
||||
.donuts-row {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
margin-bottom: 26px;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
.donut-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.donut-label {
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
.donut-count { font-size: 11px; color: var(--muted); text-align: center; }
|
||||
|
||||
/* General table */
|
||||
table { width: 100%; border-collapse: collapse; font-size: 12px; margin-bottom: 22px; }
|
||||
thead { display: table-header-group; }
|
||||
thead tr { border-bottom: 1px solid var(--accent); }
|
||||
th {
|
||||
font-size: 9px;
|
||||
letter-spacing: 0.11em;
|
||||
text-transform: uppercase;
|
||||
color: var(--muted);
|
||||
padding: 7px 9px;
|
||||
text-align: left;
|
||||
font-weight: 400;
|
||||
}
|
||||
td {
|
||||
padding: 7px 9px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
color: rgba(249,250,251,0.85);
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
tr { page-break-inside: avoid; }
|
||||
|
||||
/* Badges */
|
||||
.badge {
|
||||
display: inline-block;
|
||||
padding: 2px 7px;
|
||||
font-size: 9px;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.badge-danger { background: rgba(239,68,68,0.14); color: var(--danger); }
|
||||
.badge-warning { background: rgba(245,158,11,0.14); color: var(--warning); }
|
||||
.badge-safe { background: rgba(16,185,129,0.14); color: var(--safe); }
|
||||
.badge-info { background: rgba(37,99,235,0.14); color: var(--info); }
|
||||
.badge-muted { background: rgba(55,65,81,0.5); color: var(--muted); }
|
||||
|
||||
/* Page footer */
|
||||
.page-footer {
|
||||
position: absolute;
|
||||
bottom: 26px; left: 60px; right: 60px;
|
||||
padding-top: 9px;
|
||||
border-top: 1px solid var(--border);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 9px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
|
||||
.cover, .page { page-break-after: always; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- COVER -->
|
||||
<div class="cover">
|
||||
|
||||
<div class="cover-top">
|
||||
<svg class="cover-logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 205.63 17.27">
|
||||
<path fill="#f9fafb" d="m13.18,2.73v8.15l-2.63,2.63H3.46v3.66H0V.1h10.54l2.63,2.63ZM3.46,10.69h6.25V2.93H3.46v7.76Z"/>
|
||||
<path fill="#f9fafb" d="m15.22,17.18V.1h3.46v6.73h6.69V.1h3.46v17.08h-3.46v-7.22h-6.69v7.22h-3.46Z"/>
|
||||
<path fill="#f9fafb" d="m31.21,17.27v-2.78l2.42-.12V2.9l-2.42-.12V0l4.15.2,4.15-.2v2.78l-2.42.12v11.47l2.42.12v2.78l-4.15-.2-4.15.2Z"/>
|
||||
<path fill="#f9fafb" d="m42.06,17.18v-3.03h9.47v-3.95l-9.71-.8V2.63L44.36.1h10.39v3.03h-9.47v3.71l9.71.81v7l-2.54,2.54h-10.39Z"/>
|
||||
<path fill="#f9fafb" d="m57.48,17.18V.1h3.46v6.73h6.69V.1h3.46v17.08h-3.46v-7.22h-6.69v7.22h-3.46Z"/>
|
||||
<path fill="#f9fafb" d="m73.46,17.27v-2.78l2.42-.12V2.9l-2.42-.12V0l4.15.2,4.15-.2v2.78l-2.42.12v11.47l2.42.12v2.78l-4.15-.2-4.15.2Z"/>
|
||||
<path fill="#f9fafb" d="m84.13,17.18V.1h3.64l7.15,12.08V.1h3.27v17.08h-3.63l-7.15-12.08v12.08h-3.27Z"/>
|
||||
<path fill="#f9fafb" d="m100.67,14.54V2.73l2.64-2.63h9.76v3.03h-8.93v11.03h6.73v-4.34h-4.1v-2.81h7.22v10.17h-10.69l-2.64-2.63Z"/>
|
||||
<path fill="#f9fafb" d="m148.15,14.54V2.73l2.64-2.63h8.73v3.15h-7.81v10.78h8.05v3.15h-8.98l-2.64-2.63Z"/>
|
||||
<path fill="#f9fafb" d="m161.72,17.18V.1h3.46v14.15h5.76v-3.9h3.12v6.83h-12.35Z"/>
|
||||
<path fill="#f9fafb" d="m176.01,14.54V.1h3.46v13.96h6.39V.1h3.46v14.44l-2.63,2.63h-8.05l-2.64-2.63Z"/>
|
||||
<path fill="#f9fafb" d="m205.15,2.63v4.32l-1.34,1.15,1.83,1.56v4.98l-2.54,2.54h-11.22V.1h10.74l2.54,2.54Zm-9.81,4.46h6.29V2.93h-6.29v4.17Zm0,7.25h6.73v-4.71h-6.73v4.71Z"/>
|
||||
<path fill="#2563eb" d="m126.63,8.2l-4.5-2.6c-.58-.34-1.31.08-1.31.75v5.19c0,.67.73,1.09,1.31.75l4.5-2.6c.58-.34.58-1.17,0-1.51Z"/>
|
||||
<path fill="#2563eb" d="m140.97,7.67l-11.77-6.8c-.99-.57-2.23.14-2.23,1.28v3.81l3.18,1.84c.76.44.76,1.54,0,1.98l-3.18,1.84v4.13c0,1.14,1.24,1.86,2.23,1.28l11.77-6.8c.99-.57.99-2,0-2.57Z"/>
|
||||
</svg>
|
||||
<div class="cover-confidential">Confidential</div>
|
||||
</div>
|
||||
|
||||
<div class="cover-middle">
|
||||
<div class="cover-eyebrow">Phishing Simulation Report</div>
|
||||
<div class="cover-campaign-name">{{.CampaignName}}</div>
|
||||
<div class="cover-campaign-label">Campaign Results</div>
|
||||
</div>
|
||||
|
||||
<div class="cover-bottom">
|
||||
<div class="cover-rule"></div>
|
||||
<div class="cover-meta">
|
||||
{{if .CompanyName}}
|
||||
<span class="key">Company</span><span class="val">{{.CompanyName}}</span>
|
||||
{{end}}
|
||||
<span class="key">Date</span><span class="val">{{.ReportDate}}</span>
|
||||
{{if .CampaignStartDate}}
|
||||
<span class="key">Started</span><span class="val">{{.CampaignStartDate}}</span>
|
||||
{{end}}
|
||||
{{if .CampaignClosedAt}}
|
||||
<span class="key">Closed</span><span class="val">{{.CampaignClosedAt}}</span>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- PAGE 1: RESULTS -->
|
||||
<div class="page">
|
||||
<div class="page-header">
|
||||
<span class="section-label">Results</span>
|
||||
{{if .CompanyName}}<span class="company">{{.CompanyName}}</span>{{end}}
|
||||
</div>
|
||||
|
||||
<div class="section-title">Campaign results</div>
|
||||
<div class="mcards">
|
||||
<div class="mcard c-neutral">
|
||||
<div class="mcard-label">Recipients</div>
|
||||
<div class="mcard-value">{{.TotalTargets}}</div>
|
||||
<div class="mcard-sub">total targets</div>
|
||||
</div>
|
||||
<div class="mcard c-neutral">
|
||||
<div class="mcard-label">Emails Sent</div>
|
||||
<div class="mcard-value">{{.EmailsSent}}</div>
|
||||
<div class="mcard-sub">{{printf "%.0f" .SentRate}}% of recipients</div>
|
||||
</div>
|
||||
<div class="mcard c-info">
|
||||
<div class="mcard-label">Emails Read</div>
|
||||
<div class="mcard-value">{{.EmailsOpened}}</div>
|
||||
<div class="mcard-sub">{{printf "%.0f" .OpenRate}}% of recipients</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mcards">
|
||||
<div class="mcard c-warning">
|
||||
<div class="mcard-label">Website Visits</div>
|
||||
<div class="mcard-value">{{.ResultClicked}}</div>
|
||||
<div class="mcard-sub">{{.ResultClickedPercent}}% of recipients</div>
|
||||
</div>
|
||||
<div class="mcard c-danger">
|
||||
<div class="mcard-label">Data Submitted</div>
|
||||
<div class="mcard-value">{{.ResultSubmitted}}</div>
|
||||
<div class="mcard-sub">{{.ResultSubmittedPercent}}% of recipients</div>
|
||||
</div>
|
||||
<div class="mcard c-safe">
|
||||
<div class="mcard-label">Reported</div>
|
||||
<div class="mcard-value">{{.ResultReported}}</div>
|
||||
<div class="mcard-sub">{{.ResultReportedPercent}}% of recipients</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section-title">Outcome</div>
|
||||
<div class="donuts-row">
|
||||
|
||||
<div class="donut-item">
|
||||
<svg viewBox="0 0 140 140" width="136" height="136">
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="rgba(249,250,251,0.06)" stroke-width="14"/>
|
||||
{{if .OpenRate}}
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="#2563eb" stroke-width="14"
|
||||
stroke-linecap="round"
|
||||
stroke-dasharray="{{printf "%.2f" (mul .OpenRate 3.1416)}} 314.16"
|
||||
transform="rotate(-90 70 70)"/>
|
||||
{{end}}
|
||||
<text x="70" y="66" text-anchor="middle" font-size="20" font-weight="700" fill="#f9fafb">{{printf "%.0f" .OpenRate}}%</text>
|
||||
<text x="70" y="81" text-anchor="middle" font-size="9" fill="rgba(249,250,251,0.55)">of recipients</text>
|
||||
</svg>
|
||||
<div class="donut-label" style="color:#2563eb">Emails Read</div>
|
||||
<div class="donut-count">{{.EmailsOpened}} recipients</div>
|
||||
</div>
|
||||
|
||||
<div class="donut-item">
|
||||
<svg viewBox="0 0 140 140" width="136" height="136">
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="rgba(249,250,251,0.06)" stroke-width="14"/>
|
||||
{{if .ClickRate}}
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="#f59e0b" stroke-width="14"
|
||||
stroke-linecap="round"
|
||||
stroke-dasharray="{{printf "%.2f" (mul .ClickRate 3.1416)}} 314.16"
|
||||
transform="rotate(-90 70 70)"/>
|
||||
{{end}}
|
||||
<text x="70" y="66" text-anchor="middle" font-size="20" font-weight="700" fill="#f9fafb">{{.ResultClickedPercent}}%</text>
|
||||
<text x="70" y="81" text-anchor="middle" font-size="9" fill="rgba(249,250,251,0.55)">of recipients</text>
|
||||
</svg>
|
||||
<div class="donut-label" style="color:#f59e0b">Website Visits</div>
|
||||
<div class="donut-count">{{.ResultClicked}} recipients</div>
|
||||
</div>
|
||||
|
||||
<div class="donut-item">
|
||||
<svg viewBox="0 0 140 140" width="136" height="136">
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="rgba(249,250,251,0.06)" stroke-width="14"/>
|
||||
{{if .SubmitRate}}
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="#ef4444" stroke-width="14"
|
||||
stroke-linecap="round"
|
||||
stroke-dasharray="{{printf "%.2f" (mul .SubmitRate 3.1416)}} 314.16"
|
||||
transform="rotate(-90 70 70)"/>
|
||||
{{end}}
|
||||
<text x="70" y="66" text-anchor="middle" font-size="20" font-weight="700" fill="#f9fafb">{{.ResultSubmittedPercent}}%</text>
|
||||
<text x="70" y="81" text-anchor="middle" font-size="9" fill="rgba(249,250,251,0.55)">of recipients</text>
|
||||
</svg>
|
||||
<div class="donut-label" style="color:#ef4444">Data Submitted</div>
|
||||
<div class="donut-count">{{.ResultSubmitted}} recipients</div>
|
||||
</div>
|
||||
|
||||
<div class="donut-item">
|
||||
<svg viewBox="0 0 140 140" width="136" height="136">
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="rgba(249,250,251,0.06)" stroke-width="14"/>
|
||||
{{if .ReportRate}}
|
||||
<circle cx="70" cy="70" r="50" fill="none" stroke="#10b981" stroke-width="14"
|
||||
stroke-linecap="round"
|
||||
stroke-dasharray="{{printf "%.2f" (mul .ReportRate 3.1416)}} 314.16"
|
||||
transform="rotate(-90 70 70)"/>
|
||||
{{end}}
|
||||
<text x="70" y="66" text-anchor="middle" font-size="20" font-weight="700" fill="#f9fafb">{{.ResultReportedPercent}}%</text>
|
||||
<text x="70" y="81" text-anchor="middle" font-size="9" fill="rgba(249,250,251,0.55)">of recipients</text>
|
||||
</svg>
|
||||
<div class="donut-label" style="color:#10b981">Reported</div>
|
||||
<div class="donut-count">{{.ResultReported}} recipients</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="section-title">Conversion</div>
|
||||
<div class="conv-row">
|
||||
<div class="conv-card">
|
||||
<div class="conv-pct">{{.OpenedOfSent}}%</div>
|
||||
<div class="conv-label">of those who received<br><strong>read the email</strong></div>
|
||||
</div>
|
||||
<div class="conv-card">
|
||||
<div class="conv-pct">{{.ClickedOfOpened}}%</div>
|
||||
<div class="conv-label">of those who read<br><strong>visited the website</strong></div>
|
||||
</div>
|
||||
<div class="conv-card">
|
||||
<div class="conv-pct">{{.SubmittedOfClicked}}%</div>
|
||||
<div class="conv-label">of those who visited<br><strong>submitted data</strong></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-footer">
|
||||
<span>Phishing Simulation</span>
|
||||
<span>{{.CampaignName}}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{if .Recipients}}
|
||||
<!-- PAGE 2: INDIVIDUAL RESULTS -->
|
||||
<div class="page">
|
||||
<div class="page-header">
|
||||
<span class="section-label">Individual results</span>
|
||||
{{if .CompanyName}}<span class="company">{{.CompanyName}}</span>{{end}}
|
||||
</div>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Email</th>
|
||||
<th style="width:56px;text-align:center">Visited</th>
|
||||
<th style="width:68px;text-align:center">Submitted</th>
|
||||
<th style="width:62px;text-align:center">Reported</th>
|
||||
<th style="width:84px">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{range .Recipients}}
|
||||
<tr>
|
||||
<td>{{.FirstName}} {{.LastName}}</td>
|
||||
<td>{{.Email}}</td>
|
||||
<td style="text-align:center">{{if .ClickedLink}}<span style="color:#f59e0b;font-weight:600">Yes</span>{{else}}<span style="color:rgba(249,250,251,0.35)">-</span>{{end}}</td>
|
||||
<td style="text-align:center">{{if .SubmittedData}}<span style="color:#ef4444;font-weight:600">Yes</span>{{else}}<span style="color:rgba(249,250,251,0.35)">-</span>{{end}}</td>
|
||||
<td style="text-align:center">{{if .Reported}}<span style="color:#10b981;font-weight:600">Yes</span>{{else}}<span style="color:rgba(249,250,251,0.35)">-</span>{{end}}</td>
|
||||
<td>
|
||||
{{if .SubmittedData}}<span class="badge badge-danger">Submitted</span>
|
||||
{{else if .ClickedLink}}<span class="badge badge-warning">Visited</span>
|
||||
{{else if .Reported}}<span class="badge badge-safe">Reported</span>
|
||||
{{else}}<span class="badge badge-muted">No Action</span>{{end}}
|
||||
</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="page-footer">
|
||||
<span>Phishing Simulation</span>
|
||||
<span>{{.CampaignName}}</span>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -7,6 +7,9 @@ import (
|
||||
//go:embed tracking-pixel/sendgrid/open.gif
|
||||
var TrackingPixel []byte
|
||||
|
||||
//go:embed remotebrowser_inject.js
|
||||
var RemoteBrowserInjectJS string
|
||||
|
||||
// SigningKey1 is verifing the signed .sig file when updating
|
||||
//
|
||||
//go:embed signingkeys/public1.bin
|
||||
@@ -16,3 +19,6 @@ var SigningKey1 []byte
|
||||
//
|
||||
//go:embed signingkeys/public2.bin
|
||||
var SigningKey2 []byte
|
||||
|
||||
//go:embed default_report.html
|
||||
var DefaultReportHTML string
|
||||
|
||||
+102
-10
@@ -11,6 +11,7 @@
|
||||
"2.57.148.0/22",
|
||||
"2.57.240.0/22",
|
||||
"2.58.28.0/22",
|
||||
"2.58.60.0/22",
|
||||
"2.58.96.0/23",
|
||||
"2.58.99.0/24",
|
||||
"2.58.172.0/22",
|
||||
@@ -37,6 +38,7 @@
|
||||
"5.181.14.0/23",
|
||||
"5.181.124.0/22",
|
||||
"5.181.128.0/21",
|
||||
"5.181.161.0/24",
|
||||
"5.182.24.0/22",
|
||||
"5.182.108.0/22",
|
||||
"5.182.124.0/22",
|
||||
@@ -48,11 +50,18 @@
|
||||
"5.252.80.0/22",
|
||||
"5.252.160.0/22",
|
||||
"5.253.200.0/22",
|
||||
"9.137.0.0/16",
|
||||
"9.153.0.0/16",
|
||||
"9.171.0.0/16",
|
||||
"9.178.0.0/16",
|
||||
"9.199.0.0/16",
|
||||
"23.145.116.0/24",
|
||||
"31.14.10.0/24",
|
||||
"31.24.253.0/24",
|
||||
"31.29.64.0/19",
|
||||
"31.41.38.0/23",
|
||||
"31.56.0.0/14",
|
||||
"31.207.4.0/22",
|
||||
"31.215.0.0/16",
|
||||
"31.218.0.0/15",
|
||||
"37.1.192.0/19",
|
||||
@@ -135,7 +144,6 @@
|
||||
"45.133.168.0/21",
|
||||
"45.133.176.0/22",
|
||||
"45.133.216.0/22",
|
||||
"45.133.232.0/23",
|
||||
"45.133.235.0/24",
|
||||
"45.134.12.0/22",
|
||||
"45.134.24.0/21",
|
||||
@@ -161,6 +169,7 @@
|
||||
"45.137.152.0/21",
|
||||
"45.137.189.0/24",
|
||||
"45.137.190.0/23",
|
||||
"45.137.212.0/22",
|
||||
"45.138.0.0/22",
|
||||
"45.138.144.0/22",
|
||||
"45.139.0.0/22",
|
||||
@@ -224,9 +233,11 @@
|
||||
"45.152.224.0/22",
|
||||
"45.153.48.0/21",
|
||||
"45.153.68.0/22",
|
||||
"45.153.173.0/24",
|
||||
"45.153.224.0/21",
|
||||
"45.154.160.0/22",
|
||||
"45.155.60.0/22",
|
||||
"45.155.61.0/24",
|
||||
"45.155.62.0/23",
|
||||
"45.155.156.0/22",
|
||||
"45.156.148.0/22",
|
||||
"45.158.44.0/22",
|
||||
@@ -243,6 +254,7 @@
|
||||
"46.21.240.0/22",
|
||||
"46.29.39.0/24",
|
||||
"46.31.70.0/24",
|
||||
"46.102.106.0/24",
|
||||
"46.102.237.0/24",
|
||||
"46.149.72.0/21",
|
||||
"46.149.96.0/24",
|
||||
@@ -259,9 +271,11 @@
|
||||
"62.182.168.0/21",
|
||||
"62.192.152.0/24",
|
||||
"62.197.48.0/23",
|
||||
"64.255.25.0/24",
|
||||
"65.20.128.0/17",
|
||||
"66.116.128.0/17",
|
||||
"66.220.48.0/22",
|
||||
"72.35.240.0/21",
|
||||
"77.74.201.0/24",
|
||||
"77.81.65.0/24",
|
||||
"77.81.88.0/24",
|
||||
@@ -280,20 +294,25 @@
|
||||
"77.104.64.0/18",
|
||||
"77.105.136.0/21",
|
||||
"77.110.64.0/18",
|
||||
"77.221.132.0/23",
|
||||
"77.237.64.0/19",
|
||||
"77.238.224.0/19",
|
||||
"77.242.240.0/20",
|
||||
"77.243.82.0/23",
|
||||
"77.246.96.0/20",
|
||||
"78.17.0.0/16",
|
||||
"78.40.192.0/21",
|
||||
"79.98.120.0/21",
|
||||
"79.108.227.0/24",
|
||||
"79.110.227.0/24",
|
||||
"79.170.196.0/24",
|
||||
"79.171.117.0/24",
|
||||
"79.171.118.0/23",
|
||||
"80.64.16.0/20",
|
||||
"80.71.147.0/24",
|
||||
"80.71.153.0/24",
|
||||
"80.74.24.0/21",
|
||||
"80.76.32.0/22",
|
||||
"80.76.52.0/22",
|
||||
"80.76.60.0/22",
|
||||
"80.85.244.0/22",
|
||||
@@ -304,6 +323,7 @@
|
||||
"81.22.44.0/23",
|
||||
"81.25.68.0/22",
|
||||
"81.25.76.0/22",
|
||||
"81.85.92.0/22",
|
||||
"82.178.32.0/23",
|
||||
"82.178.158.0/23",
|
||||
"82.205.128.0/22",
|
||||
@@ -324,6 +344,8 @@
|
||||
"85.8.186.0/23",
|
||||
"85.115.64.0/19",
|
||||
"85.117.232.0/23",
|
||||
"85.137.88.0/21",
|
||||
"85.137.251.0/24",
|
||||
"85.202.84.0/22",
|
||||
"85.202.164.0/22",
|
||||
"85.204.18.0/24",
|
||||
@@ -340,6 +362,7 @@
|
||||
"86.107.50.0/23",
|
||||
"86.107.100.0/23",
|
||||
"86.107.168.0/24",
|
||||
"87.199.192.0/18",
|
||||
"87.200.0.0/15",
|
||||
"87.247.140.0/22",
|
||||
"87.247.156.0/22",
|
||||
@@ -389,7 +412,6 @@
|
||||
"89.150.34.0/23",
|
||||
"89.150.41.0/24",
|
||||
"89.150.59.0/24",
|
||||
"89.207.155.0/24",
|
||||
"90.156.144.0/22",
|
||||
"90.156.220.0/23",
|
||||
"91.72.0.0/14",
|
||||
@@ -411,8 +433,10 @@
|
||||
"91.201.112.0/22",
|
||||
"91.202.211.0/24",
|
||||
"91.206.92.0/23",
|
||||
"91.207.208.0/24",
|
||||
"91.207.236.0/24",
|
||||
"91.208.61.0/24",
|
||||
"91.208.122.0/24",
|
||||
"91.209.162.0/23",
|
||||
"91.209.228.0/24",
|
||||
"91.209.230.0/23",
|
||||
@@ -427,6 +451,7 @@
|
||||
"91.213.35.0/24",
|
||||
"91.213.50.0/24",
|
||||
"91.213.99.0/24",
|
||||
"91.213.211.0/26",
|
||||
"91.216.13.0/24",
|
||||
"91.216.59.0/24",
|
||||
"91.216.185.0/24",
|
||||
@@ -467,6 +492,7 @@
|
||||
"92.114.32.0/24",
|
||||
"92.114.54.0/24",
|
||||
"92.114.93.0/24",
|
||||
"92.118.8.0/22",
|
||||
"92.118.160.0/22",
|
||||
"92.119.32.0/22",
|
||||
"92.119.128.0/22",
|
||||
@@ -535,10 +561,12 @@
|
||||
"103.71.20.0/22",
|
||||
"103.73.34.0/23",
|
||||
"103.74.92.0/22",
|
||||
"103.82.102.0/23",
|
||||
"103.85.112.0/22",
|
||||
"103.88.240.0/22",
|
||||
"103.90.72.0/22",
|
||||
"103.110.39.0/24",
|
||||
"103.127.76.0/23",
|
||||
"103.137.248.0/22",
|
||||
"103.141.68.0/23",
|
||||
"103.145.20.0/23",
|
||||
@@ -546,11 +574,22 @@
|
||||
"103.224.22.0/23",
|
||||
"103.245.228.0/22",
|
||||
"103.249.132.0/22",
|
||||
"104.128.128.0/20",
|
||||
"104.143.192.0/19",
|
||||
"109.69.56.0/21",
|
||||
"109.71.159.0/24",
|
||||
"109.94.208.0/23",
|
||||
"109.94.210.0/24",
|
||||
"109.94.216.0/22",
|
||||
"109.106.0.0/22",
|
||||
"109.107.164.0/22",
|
||||
"109.107.172.0/22",
|
||||
"109.107.176.0/22",
|
||||
"109.107.184.0/22",
|
||||
"109.120.141.0/24",
|
||||
"109.120.142.0/24",
|
||||
"109.120.154.0/24",
|
||||
"109.120.158.0/24",
|
||||
"109.175.206.0/24",
|
||||
"109.175.249.0/24",
|
||||
"109.175.254.0/24",
|
||||
@@ -574,8 +613,18 @@
|
||||
"130.49.160.0/22",
|
||||
"130.185.120.0/21",
|
||||
"130.255.0.0/21",
|
||||
"131.222.0.0/17",
|
||||
"131.222.129.0/24",
|
||||
"131.222.194.0/24",
|
||||
"131.222.203.0/24",
|
||||
"131.222.204.0/22",
|
||||
"131.222.222.0/23",
|
||||
"132.243.16.0/20",
|
||||
"132.243.112.0/20",
|
||||
"134.0.216.0/21",
|
||||
"135.136.176.0/20",
|
||||
"138.128.224.0/22",
|
||||
"140.150.48.0/20",
|
||||
"140.225.192.0/19",
|
||||
"141.98.88.0/22",
|
||||
"141.105.160.0/21",
|
||||
@@ -587,10 +636,24 @@
|
||||
"148.222.120.0/22",
|
||||
"149.62.40.0/22",
|
||||
"149.255.192.0/18",
|
||||
"151.158.76.0/23",
|
||||
"151.240.0.0/13",
|
||||
"151.248.96.0/20",
|
||||
"151.253.0.0/16",
|
||||
"153.56.0.0/17",
|
||||
"153.56.131.0/24",
|
||||
"153.56.137.0/24",
|
||||
"153.56.143.0/24",
|
||||
"153.56.144.0/22",
|
||||
"153.56.148.0/23",
|
||||
"153.56.152.0/23",
|
||||
"153.56.168.0/21",
|
||||
"153.56.176.0/20",
|
||||
"153.56.208.0/20",
|
||||
"153.56.224.0/19",
|
||||
"153.75.80.0/20",
|
||||
"158.255.77.0/24",
|
||||
"164.37.44.0/23",
|
||||
"167.17.32.0/19",
|
||||
"167.17.176.0/20",
|
||||
"167.150.18.0/23",
|
||||
@@ -614,10 +677,10 @@
|
||||
"176.223.66.0/24",
|
||||
"176.223.188.0/24",
|
||||
"178.22.8.0/21",
|
||||
"178.22.24.0/24",
|
||||
"178.23.185.0/24",
|
||||
"178.23.186.0/23",
|
||||
"178.130.40.0/22",
|
||||
"178.210.163.0/24",
|
||||
"178.217.102.0/24",
|
||||
"178.250.248.0/21",
|
||||
"179.61.128.0/17",
|
||||
@@ -631,8 +694,10 @@
|
||||
"185.21.12.0/22",
|
||||
"185.21.140.0/22",
|
||||
"185.22.228.0/24",
|
||||
"185.24.72.0/22",
|
||||
"185.26.24.0/22",
|
||||
"185.27.116.0/22",
|
||||
"185.28.12.0/22",
|
||||
"185.31.188.0/22",
|
||||
"185.34.40.0/22",
|
||||
"185.34.101.0/24",
|
||||
@@ -653,6 +718,7 @@
|
||||
"185.54.16.0/22",
|
||||
"185.56.88.0/22",
|
||||
"185.64.5.0/24",
|
||||
"185.65.116.0/24",
|
||||
"185.66.16.0/22",
|
||||
"185.66.144.0/22",
|
||||
"185.68.20.0/22",
|
||||
@@ -679,6 +745,7 @@
|
||||
"185.106.122.0/23",
|
||||
"185.112.249.0/24",
|
||||
"185.113.250.0/24",
|
||||
"185.114.72.0/22",
|
||||
"185.117.72.0/23",
|
||||
"185.117.152.0/22",
|
||||
"185.117.228.0/22",
|
||||
@@ -743,10 +810,12 @@
|
||||
"185.183.97.0/24",
|
||||
"185.183.98.0/24",
|
||||
"185.184.20.0/22",
|
||||
"185.184.42.0/24",
|
||||
"185.184.52.0/24",
|
||||
"185.184.77.0/24",
|
||||
"185.184.78.0/24",
|
||||
"185.184.152.0/22",
|
||||
"185.186.52.0/24",
|
||||
"185.187.88.0/24",
|
||||
"185.187.196.0/23",
|
||||
"185.187.198.0/24",
|
||||
@@ -793,7 +862,8 @@
|
||||
"185.203.228.0/22",
|
||||
"185.204.168.0/22",
|
||||
"185.209.49.0/24",
|
||||
"185.210.136.0/22",
|
||||
"185.210.136.0/23",
|
||||
"185.210.138.0/24",
|
||||
"185.211.56.0/22",
|
||||
"185.212.119.0/24",
|
||||
"185.215.232.0/22",
|
||||
@@ -862,6 +932,7 @@
|
||||
"193.28.183.0/24",
|
||||
"193.31.40.0/22",
|
||||
"193.32.85.0/24",
|
||||
"193.32.114.0/23",
|
||||
"193.32.188.0/23",
|
||||
"193.33.48.0/24",
|
||||
"193.33.102.0/23",
|
||||
@@ -881,6 +952,7 @@
|
||||
"193.56.186.0/24",
|
||||
"193.58.104.0/22",
|
||||
"193.58.119.0/24",
|
||||
"193.93.170.0/24",
|
||||
"193.104.120.0/24",
|
||||
"193.107.49.0/24",
|
||||
"193.107.208.0/22",
|
||||
@@ -891,7 +963,7 @@
|
||||
"193.135.134.0/23",
|
||||
"193.142.253.0/24",
|
||||
"193.143.16.0/23",
|
||||
"193.148.60.0/23",
|
||||
"193.148.61.0/24",
|
||||
"193.148.63.0/24",
|
||||
"193.150.98.0/23",
|
||||
"193.150.170.0/23",
|
||||
@@ -906,13 +978,15 @@
|
||||
"193.178.174.0/24",
|
||||
"193.203.60.0/22",
|
||||
"193.203.105.0/24",
|
||||
"193.223.100.0/24",
|
||||
"193.228.139.0/24",
|
||||
"193.238.134.0/23",
|
||||
"193.239.160.0/23",
|
||||
"193.239.166.0/23",
|
||||
"193.242.180.0/24",
|
||||
"194.5.192.0/23",
|
||||
"194.5.206.0/23",
|
||||
"194.15.56.0/22",
|
||||
"194.28.112.0/22",
|
||||
"194.31.72.0/22",
|
||||
"194.32.96.0/22",
|
||||
"194.32.104.0/24",
|
||||
@@ -924,9 +998,11 @@
|
||||
"194.33.8.0/23",
|
||||
"194.34.244.0/22",
|
||||
"194.35.112.0/23",
|
||||
"194.35.124.0/22",
|
||||
"194.35.125.0/24",
|
||||
"194.35.126.0/23",
|
||||
"194.36.188.0/24",
|
||||
"194.36.190.0/23",
|
||||
"194.48.203.0/24",
|
||||
"194.50.0.0/23",
|
||||
"194.50.4.0/23",
|
||||
"194.50.223.0/24",
|
||||
@@ -979,6 +1055,7 @@
|
||||
"194.153.153.128/25",
|
||||
"194.156.0.0/23",
|
||||
"194.156.27.0/24",
|
||||
"194.156.28.0/22",
|
||||
"194.156.92.0/22",
|
||||
"194.156.96.0/22",
|
||||
"194.156.120.0/23",
|
||||
@@ -1007,6 +1084,7 @@
|
||||
"195.54.170.0/23",
|
||||
"195.54.174.0/23",
|
||||
"195.60.236.0/23",
|
||||
"195.63.128.0/18",
|
||||
"195.88.89.0/24",
|
||||
"195.95.219.0/24",
|
||||
"195.133.192.0/23",
|
||||
@@ -1015,6 +1093,8 @@
|
||||
"195.200.28.0/22",
|
||||
"195.200.64.0/24",
|
||||
"195.229.0.0/16",
|
||||
"195.244.14.0/23",
|
||||
"195.244.18.0/23",
|
||||
"195.245.102.0/23",
|
||||
"195.245.110.0/23",
|
||||
"195.246.110.0/23",
|
||||
@@ -1085,15 +1165,19 @@
|
||||
"2001:67c:29d8::/48",
|
||||
"2001:7f8:7a::/48",
|
||||
"2001:7f8:96::/48",
|
||||
"2001:7f8:178::/48",
|
||||
"2001:8f8::/29",
|
||||
"2001:df4:1980::/48",
|
||||
"2001:df6:a040::/48",
|
||||
"2001:33c0::/29",
|
||||
"2402:2320::/32",
|
||||
"2602:f568::/40",
|
||||
"2a00:d30::/32",
|
||||
"2a00:f28::/29",
|
||||
"2a00:1b00::/32",
|
||||
"2a00:68a0::/32",
|
||||
"2a00:8340::/29",
|
||||
"2a00:9aa0::/32",
|
||||
"2a00:bea0::/32",
|
||||
"2a00:d1a0::/32",
|
||||
"2a00:e460::/29",
|
||||
@@ -1112,15 +1196,18 @@
|
||||
"2a03:a120::/32",
|
||||
"2a03:a960::/29",
|
||||
"2a03:b180::/32",
|
||||
"2a03:e680::/29",
|
||||
"2a03:f7c0::/29",
|
||||
"2a03:fbc0::/29",
|
||||
"2a03:fd00::/32",
|
||||
"2a04:23c0::/29",
|
||||
"2a04:2ec0::/29",
|
||||
"2a04:3400::/29",
|
||||
"2a04:63c0::/29",
|
||||
"2a04:cb80::/29",
|
||||
"2a04:da00::/29",
|
||||
"2a04:dd00::/29",
|
||||
"2a04:e0c0::/29",
|
||||
"2a04:ee80::/29",
|
||||
"2a04:fe40::/29",
|
||||
"2a05:580::/29",
|
||||
@@ -1131,6 +1218,7 @@
|
||||
"2a05:b440::/29",
|
||||
"2a05:bd80::/29",
|
||||
"2a05:c500::/29",
|
||||
"2a05:ff80::/29",
|
||||
"2a06:c40::/29",
|
||||
"2a06:1ec0::/29",
|
||||
"2a06:2b80::/29",
|
||||
@@ -1277,6 +1365,7 @@
|
||||
"2a0a:77c0::/29",
|
||||
"2a0a:7a00::/29",
|
||||
"2a0a:7e00::/29",
|
||||
"2a0a:8180::/29",
|
||||
"2a0a:8600::/29",
|
||||
"2a0a:8e00::/29",
|
||||
"2a0a:9200::/29",
|
||||
@@ -1307,6 +1396,7 @@
|
||||
"2a0b:3300::/29",
|
||||
"2a0b:3700::/29",
|
||||
"2a0b:4180::/29",
|
||||
"2a0b:5440::/29",
|
||||
"2a0b:5780::/29",
|
||||
"2a0b:58c0::/29",
|
||||
"2a0b:8040::/29",
|
||||
@@ -1524,7 +1614,6 @@
|
||||
"2a0f:a600::/29",
|
||||
"2a0f:aa00::/29",
|
||||
"2a0f:ab80::/29",
|
||||
"2a0f:ae00::/29",
|
||||
"2a0f:b380::/29",
|
||||
"2a0f:b600::/29",
|
||||
"2a0f:b740::/29",
|
||||
@@ -1590,6 +1679,7 @@
|
||||
"2a11:9c80::/29",
|
||||
"2a11:a280::/29",
|
||||
"2a11:bb80::/29",
|
||||
"2a11:be00::/29",
|
||||
"2a11:bf00::/29",
|
||||
"2a11:c0c0::/29",
|
||||
"2a11:c180::/29",
|
||||
@@ -1619,6 +1709,7 @@
|
||||
"2a12:4d40::/29",
|
||||
"2a12:4dc0::/29",
|
||||
"2a12:4fc0::/29",
|
||||
"2a12:51c0::/32",
|
||||
"2a12:53c0::/29",
|
||||
"2a12:54c0::/29",
|
||||
"2a12:55c0::/29",
|
||||
@@ -1631,7 +1722,8 @@
|
||||
"2a12:e700::/29",
|
||||
"2a12:ed80::/29",
|
||||
"2a13:a80::/29",
|
||||
"2a13:3300::/29",
|
||||
"2a13:28c0::/29",
|
||||
"2a13:4480::/29",
|
||||
"2a13:4980::/29",
|
||||
"2a13:4b80::/29",
|
||||
"2a13:5200::/29",
|
||||
|
||||
@@ -90,7 +90,6 @@
|
||||
"103.235.176.0/22",
|
||||
"103.241.156.0/22",
|
||||
"103.242.50.0/23",
|
||||
"103.244.146.0/23",
|
||||
"103.247.198.0/24",
|
||||
"103.254.166.0/24",
|
||||
"103.255.204.0/23",
|
||||
@@ -98,8 +97,6 @@
|
||||
"116.204.160.0/22",
|
||||
"116.204.240.0/22",
|
||||
"116.206.188.0/22",
|
||||
"117.55.196.0/23",
|
||||
"117.55.198.0/24",
|
||||
"117.104.224.0/21",
|
||||
"119.59.80.0/21",
|
||||
"121.100.48.0/21",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"69.57.224.0/19",
|
||||
"76.76.160.0/19",
|
||||
"77.239.224.0/19",
|
||||
"83.243.64.0/21",
|
||||
"91.108.0.0/18",
|
||||
"91.212.88.0/24",
|
||||
"92.62.48.0/20",
|
||||
@@ -27,10 +28,12 @@
|
||||
"162.252.188.0/22",
|
||||
"170.39.108.0/22",
|
||||
"178.18.224.0/20",
|
||||
"185.26.72.0/22",
|
||||
"185.51.60.0/22",
|
||||
"185.182.12.0/22",
|
||||
"188.65.64.0/21",
|
||||
"192.64.120.0/22",
|
||||
"193.218.140.0/22",
|
||||
"199.16.56.0/22",
|
||||
"199.48.204.0/22",
|
||||
"199.189.112.0/22",
|
||||
|
||||
@@ -24,12 +24,14 @@
|
||||
"45.142.24.0/22",
|
||||
"46.19.224.0/21",
|
||||
"46.99.0.0/16",
|
||||
"46.183.20.0/24",
|
||||
"46.183.120.0/21",
|
||||
"46.252.32.0/20",
|
||||
"46.255.144.0/21",
|
||||
"62.101.160.0/21",
|
||||
"66.186.194.0/23",
|
||||
"66.186.198.0/23",
|
||||
"70.40.188.0/23",
|
||||
"77.83.120.0/22",
|
||||
"77.242.16.0/20",
|
||||
"77.247.88.0/21",
|
||||
@@ -49,16 +51,19 @@
|
||||
"82.198.32.0/22",
|
||||
"84.20.64.0/19",
|
||||
"84.22.32.0/19",
|
||||
"84.54.48.0/24",
|
||||
"85.209.248.0/22",
|
||||
"87.120.100.0/22",
|
||||
"87.121.60.0/23",
|
||||
"87.238.208.0/21",
|
||||
"88.214.16.0/22",
|
||||
"91.92.250.0/24",
|
||||
"91.102.124.0/24",
|
||||
"91.132.172.0/22",
|
||||
"91.187.96.0/19",
|
||||
"91.210.136.0/22",
|
||||
"91.212.96.0/24",
|
||||
"91.217.6.0/23",
|
||||
"91.217.72.0/23",
|
||||
"91.226.220.0/24",
|
||||
"91.230.254.0/23",
|
||||
"91.239.6.0/23",
|
||||
@@ -70,6 +75,7 @@
|
||||
"93.93.168.0/22",
|
||||
"93.115.6.0/24",
|
||||
"93.115.108.0/24",
|
||||
"93.123.113.0/24",
|
||||
"93.159.192.0/21",
|
||||
"93.187.110.0/24",
|
||||
"94.100.48.0/20",
|
||||
@@ -79,6 +85,7 @@
|
||||
"95.86.40.0/22",
|
||||
"95.86.56.0/22",
|
||||
"95.107.128.0/17",
|
||||
"95.143.103.0/24",
|
||||
"103.69.32.0/22",
|
||||
"103.93.40.0/22",
|
||||
"103.111.0.0/22",
|
||||
@@ -92,10 +99,10 @@
|
||||
"109.104.128.0/22",
|
||||
"109.104.132.0/23",
|
||||
"109.104.134.0/24",
|
||||
"109.104.138.0/23",
|
||||
"109.104.140.0/22",
|
||||
"109.104.140.0/23",
|
||||
"109.104.144.0/23",
|
||||
"109.104.156.0/22",
|
||||
"109.104.156.0/24",
|
||||
"109.104.158.0/23",
|
||||
"109.234.232.0/21",
|
||||
"109.236.32.0/20",
|
||||
"130.0.24.0/21",
|
||||
@@ -106,6 +113,7 @@
|
||||
"144.48.52.0/22",
|
||||
"146.0.16.0/21",
|
||||
"147.78.160.0/22",
|
||||
"151.123.186.0/23",
|
||||
"171.22.148.0/22",
|
||||
"178.132.216.0/21",
|
||||
"178.175.0.0/17",
|
||||
@@ -203,13 +211,14 @@
|
||||
"194.1.149.0/24",
|
||||
"194.35.248.0/22",
|
||||
"194.56.182.0/24",
|
||||
"194.113.80.0/23",
|
||||
"194.113.94.0/23",
|
||||
"194.117.55.64/26",
|
||||
"194.150.78.0/24",
|
||||
"194.156.252.0/22",
|
||||
"194.169.164.0/22",
|
||||
"195.8.107.0/24",
|
||||
"195.144.24.0/24",
|
||||
"195.146.16.0/20",
|
||||
"195.178.99.0/24",
|
||||
"195.200.234.0/24",
|
||||
"199.168.120.0/22",
|
||||
@@ -302,15 +311,16 @@
|
||||
"2a0f:a880::/29",
|
||||
"2a0f:ce40::/32",
|
||||
"2a10:b480::/29",
|
||||
"2a10:b800::/32",
|
||||
"2a10:d0c0::/29",
|
||||
"2a10:df40::/29",
|
||||
"2a10:f240::/29",
|
||||
"2a10:ff40::/29",
|
||||
"2a11:1580::/32",
|
||||
"2a11:e340::/29",
|
||||
"2a12:4040::/29",
|
||||
"2a12:7cc0::/29",
|
||||
"2a12:9e40::/29",
|
||||
"2a12:a3c0::/29",
|
||||
"2a12:e3c0::/29",
|
||||
"2a12:fc40::/29",
|
||||
"2a12:ffc0::/29",
|
||||
@@ -319,6 +329,7 @@
|
||||
"2a13:4180::/29",
|
||||
"2a13:9ec0::/29",
|
||||
"2a13:bc00::/29",
|
||||
"2a13:c8c0::/29",
|
||||
"2a13:d940::/29",
|
||||
"2a14:1800::/29",
|
||||
"2a14:3400::/29",
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
"31.47.192.0/21",
|
||||
"31.128.60.0/24",
|
||||
"31.132.72.0/21",
|
||||
"31.171.209.0/24",
|
||||
"37.26.168.0/21",
|
||||
"37.157.208.0/20",
|
||||
"37.186.64.0/18",
|
||||
@@ -70,7 +71,6 @@
|
||||
"91.205.196.0/22",
|
||||
"91.208.76.0/24",
|
||||
"91.209.38.0/24",
|
||||
"91.210.40.0/22",
|
||||
"91.212.71.0/24",
|
||||
"91.217.157.0/24",
|
||||
"91.218.4.0/22",
|
||||
@@ -84,6 +84,7 @@
|
||||
"91.237.150.0/24",
|
||||
"91.239.22.0/24",
|
||||
"91.239.85.0/24",
|
||||
"92.42.102.0/24",
|
||||
"92.43.136.0/21",
|
||||
"92.118.72.0/22",
|
||||
"92.246.132.0/22",
|
||||
@@ -94,18 +95,21 @@
|
||||
"93.187.160.0/21",
|
||||
"94.141.100.0/22",
|
||||
"94.142.250.0/24",
|
||||
"94.154.127.0/24",
|
||||
"95.140.192.0/20",
|
||||
"95.174.96.0/19",
|
||||
"109.68.120.0/21",
|
||||
"109.75.32.0/20",
|
||||
"130.193.27.0/24",
|
||||
"130.193.120.0/21",
|
||||
"132.243.176.0/20",
|
||||
"141.136.64.0/19",
|
||||
"146.19.140.0/24",
|
||||
"148.52.128.0/19",
|
||||
"176.32.192.0/21",
|
||||
"176.113.118.0/24",
|
||||
"176.120.24.0/21",
|
||||
"176.124.96.0/21",
|
||||
"178.72.176.0/20",
|
||||
"178.78.128.0/18",
|
||||
"178.160.192.0/18",
|
||||
"178.212.139.0/24",
|
||||
@@ -127,6 +131,7 @@
|
||||
"185.80.91.0/24",
|
||||
"185.86.192.0/22",
|
||||
"185.92.84.0/22",
|
||||
"185.113.8.0/24",
|
||||
"185.127.64.0/22",
|
||||
"185.136.32.0/22",
|
||||
"185.149.140.0/22",
|
||||
@@ -189,6 +194,7 @@
|
||||
"ipv6": [
|
||||
"2001:678:ca4::/48",
|
||||
"2001:67c:21c::/48",
|
||||
"2001:67c:924::/48",
|
||||
"2001:67c:2cdc::/48",
|
||||
"2001:7f8:94::/48",
|
||||
"2001:7f9:8::/48",
|
||||
@@ -225,7 +231,7 @@
|
||||
"2a0b:ff80::/29",
|
||||
"2a0c:2080::/29",
|
||||
"2a0c:6440::/29",
|
||||
"2a0c:6dc0::/29",
|
||||
"2a0c:c840::/29",
|
||||
"2a0d:b800::/29",
|
||||
"2a0d:cd00::/29",
|
||||
"2a0e:2d80::/29",
|
||||
@@ -237,6 +243,7 @@
|
||||
"2a12:5d40::/29",
|
||||
"2a13:1ec0::/32",
|
||||
"2a13:3a00::/29",
|
||||
"2a13:9740::/29",
|
||||
"2a14:200::/29",
|
||||
"2a14:ac0::/29",
|
||||
"2a14:4800::/29"
|
||||
|
||||
@@ -22,6 +22,13 @@
|
||||
"102.64.60.0/22",
|
||||
"102.130.64.0/21",
|
||||
"102.130.192.0/19",
|
||||
"102.202.244.0/22",
|
||||
"102.203.1.0/24",
|
||||
"102.203.128.0/22",
|
||||
"102.203.139.0/24",
|
||||
"102.203.164.0/22",
|
||||
"102.203.240.0/21",
|
||||
"102.203.248.0/22",
|
||||
"102.204.164.0/22",
|
||||
"102.204.192.0/22",
|
||||
"102.205.75.0/24",
|
||||
@@ -152,12 +159,15 @@
|
||||
"2001:43f8:1100::/48",
|
||||
"2a07:6040::/29",
|
||||
"2c0f:300::/32",
|
||||
"2c0f:520::/32",
|
||||
"2c0f:11c0::/32",
|
||||
"2c0f:1a00::/32",
|
||||
"2c0f:1c80::/32",
|
||||
"2c0f:2700::/32",
|
||||
"2c0f:2b80::/32",
|
||||
"2c0f:2bc0::/32",
|
||||
"2c0f:43a0::/32",
|
||||
"2c0f:4520::/32",
|
||||
"2c0f:5600::/32",
|
||||
"2c0f:6540::/32",
|
||||
"2c0f:73c0::/32",
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"code": "AQ",
|
||||
"name": "Antarctica",
|
||||
"ipv4": [
|
||||
"23.154.160.0/24",
|
||||
"131.143.220.0/23",
|
||||
"209.127.204.0/24"
|
||||
],
|
||||
"ipv6": [
|
||||
"2604:17c0::/32"
|
||||
]
|
||||
}
|
||||
@@ -170,7 +170,6 @@
|
||||
"45.179.60.0/24",
|
||||
"45.179.72.0/22",
|
||||
"45.179.92.0/22",
|
||||
"45.179.254.0/23",
|
||||
"45.180.60.0/22",
|
||||
"45.180.76.0/22",
|
||||
"45.180.176.0/23",
|
||||
@@ -344,6 +343,7 @@
|
||||
"45.236.232.0/22",
|
||||
"45.237.36.0/22",
|
||||
"45.237.52.0/22",
|
||||
"45.237.64.0/22",
|
||||
"45.237.176.0/22",
|
||||
"45.237.220.0/22",
|
||||
"45.238.8.0/21",
|
||||
@@ -774,7 +774,8 @@
|
||||
"179.0.136.0/21",
|
||||
"179.0.144.0/23",
|
||||
"179.0.147.0/24",
|
||||
"179.0.148.0/22",
|
||||
"179.0.148.0/23",
|
||||
"179.0.151.0/24",
|
||||
"179.0.180.0/22",
|
||||
"179.0.184.0/22",
|
||||
"179.0.193.0/24",
|
||||
@@ -980,8 +981,9 @@
|
||||
"186.96.192.0/21",
|
||||
"186.100.0.0/16",
|
||||
"186.108.0.0/14",
|
||||
"186.121.136.0/21",
|
||||
"186.121.144.0/20",
|
||||
"186.121.146.0/23",
|
||||
"186.121.154.0/23",
|
||||
"186.121.156.0/22",
|
||||
"186.121.168.0/21",
|
||||
"186.121.176.0/20",
|
||||
"186.122.0.0/15",
|
||||
@@ -1064,7 +1066,10 @@
|
||||
"190.14.156.0/22",
|
||||
"190.14.160.0/19",
|
||||
"190.15.80.0/20",
|
||||
"190.15.192.0/18",
|
||||
"190.15.192.0/19",
|
||||
"190.15.224.0/20",
|
||||
"190.15.240.0/21",
|
||||
"190.15.248.0/23",
|
||||
"190.16.0.0/14",
|
||||
"190.30.0.0/15",
|
||||
"190.48.0.0/14",
|
||||
@@ -1151,7 +1156,8 @@
|
||||
"190.112.176.0/20",
|
||||
"190.112.196.0/22",
|
||||
"190.112.216.0/22",
|
||||
"190.113.32.0/21",
|
||||
"190.113.32.0/24",
|
||||
"190.113.36.0/22",
|
||||
"190.113.48.0/22",
|
||||
"190.113.56.0/22",
|
||||
"190.113.128.0/18",
|
||||
@@ -1279,7 +1285,6 @@
|
||||
"200.0.200.0/24",
|
||||
"200.0.208.0/21",
|
||||
"200.0.224.0/19",
|
||||
"200.1.7.0/24",
|
||||
"200.1.32.0/19",
|
||||
"200.1.113.0/24",
|
||||
"200.1.116.0/23",
|
||||
@@ -1509,10 +1514,14 @@
|
||||
"200.122.0.0/17",
|
||||
"200.123.32.0/22",
|
||||
"200.123.38.0/23",
|
||||
"200.123.40.0/21",
|
||||
"200.123.40.0/23",
|
||||
"200.123.43.0/24",
|
||||
"200.123.45.0/24",
|
||||
"200.123.46.0/23",
|
||||
"200.123.48.0/21",
|
||||
"200.123.56.0/22",
|
||||
"200.123.60.0/23",
|
||||
"200.123.56.0/23",
|
||||
"200.123.58.0/24",
|
||||
"200.123.60.0/24",
|
||||
"200.123.63.0/24",
|
||||
"200.123.64.0/18",
|
||||
"200.123.128.0/18",
|
||||
@@ -1683,7 +1692,6 @@
|
||||
"2801:10:2000::/48",
|
||||
"2801:10:4000::/48",
|
||||
"2801:10:4800::/48",
|
||||
"2801:10:8000::/48",
|
||||
"2801:10:d000::/48",
|
||||
"2801:10:e000::/48",
|
||||
"2801:11::/48",
|
||||
@@ -1691,7 +1699,6 @@
|
||||
"2801:11:6000::/48",
|
||||
"2801:11:7000::/48",
|
||||
"2801:11:b000::/48",
|
||||
"2801:11:c000::/48",
|
||||
"2801:11:d000::/48",
|
||||
"2801:12:5000::/48",
|
||||
"2801:12:8000::/48",
|
||||
@@ -1854,6 +1861,7 @@
|
||||
"2803:11c0::/32",
|
||||
"2803:11e0::/32",
|
||||
"2803:1220::/32",
|
||||
"2803:1230::/32",
|
||||
"2803:1250::/32",
|
||||
"2803:1290::/32",
|
||||
"2803:12e0::/32",
|
||||
@@ -1921,6 +1929,7 @@
|
||||
"2803:23c0::/32",
|
||||
"2803:2400::/32",
|
||||
"2803:2420::/32",
|
||||
"2803:2430::/32",
|
||||
"2803:2440::/32",
|
||||
"2803:24e0::/32",
|
||||
"2803:2520::/32",
|
||||
@@ -1930,10 +1939,10 @@
|
||||
"2803:2700::/32",
|
||||
"2803:2740::/32",
|
||||
"2803:2780::/32",
|
||||
"2803:27a0::/32",
|
||||
"2803:27d0::/32",
|
||||
"2803:27e0::/32",
|
||||
"2803:2820::/32",
|
||||
"2803:2830::/32",
|
||||
"2803:2850::/32",
|
||||
"2803:28e0::/32",
|
||||
"2803:2980::/32",
|
||||
@@ -1953,6 +1962,7 @@
|
||||
"2803:2d20::/32",
|
||||
"2803:2d50::/32",
|
||||
"2803:2da0::/32",
|
||||
"2803:2e30::/32",
|
||||
"2803:2e80::/32",
|
||||
"2803:2f20::/32",
|
||||
"2803:2f50::/32",
|
||||
@@ -2014,10 +2024,11 @@
|
||||
"2803:40c0::/32",
|
||||
"2803:4100::/32",
|
||||
"2803:4110::/32",
|
||||
"2803:4130::/32",
|
||||
"2803:4140::/32",
|
||||
"2803:4160::/32",
|
||||
"2803:4190::/32",
|
||||
"2803:41e0::/32",
|
||||
"2803:4230::/32",
|
||||
"2803:4260::/32",
|
||||
"2803:4280::/32",
|
||||
"2803:4400::/32",
|
||||
@@ -2032,6 +2043,7 @@
|
||||
"2803:4760::/32",
|
||||
"2803:47a0::/32",
|
||||
"2803:4820::/32",
|
||||
"2803:4830::/32",
|
||||
"2803:4840::/32",
|
||||
"2803:4860::/32",
|
||||
"2803:4940::/32",
|
||||
@@ -2077,7 +2089,6 @@
|
||||
"2803:5400::/32",
|
||||
"2803:5410::/32",
|
||||
"2803:5440::/32",
|
||||
"2803:5460::/32",
|
||||
"2803:5480::/32",
|
||||
"2803:5490::/32",
|
||||
"2803:54d0::/32",
|
||||
@@ -2097,6 +2108,7 @@
|
||||
"2803:57d0::/32",
|
||||
"2803:57e0::/32",
|
||||
"2803:5820::/32",
|
||||
"2803:5830::/32",
|
||||
"2803:5860::/32",
|
||||
"2803:5880::/32",
|
||||
"2803:58c0::/32",
|
||||
@@ -2118,7 +2130,6 @@
|
||||
"2803:5ca0::/32",
|
||||
"2803:5ce0::/32",
|
||||
"2803:5d10::/32",
|
||||
"2803:5dc0::/32",
|
||||
"2803:5de0::/32",
|
||||
"2803:5e80::/32",
|
||||
"2803:5f10::/32",
|
||||
@@ -2139,6 +2150,7 @@
|
||||
"2803:61c0::/32",
|
||||
"2803:61e0::/32",
|
||||
"2803:6220::/32",
|
||||
"2803:6230::/32",
|
||||
"2803:6260::/32",
|
||||
"2803:62a0::/32",
|
||||
"2803:6380::/32",
|
||||
@@ -2186,6 +2198,7 @@
|
||||
"2803:6d40::/32",
|
||||
"2803:6da0::/32",
|
||||
"2803:6dc0::/32",
|
||||
"2803:6e30::/32",
|
||||
"2803:6e40::/32",
|
||||
"2803:6e60::/32",
|
||||
"2803:6ea0::/32",
|
||||
@@ -2203,6 +2216,7 @@
|
||||
"2803:7160::/32",
|
||||
"2803:71d0::/32",
|
||||
"2803:7220::/32",
|
||||
"2803:7230::/32",
|
||||
"2803:7240::/32",
|
||||
"2803:72a0::/32",
|
||||
"2803:72c0::/32",
|
||||
@@ -2225,6 +2239,7 @@
|
||||
"2803:75e0::/32",
|
||||
"2803:7600::/32",
|
||||
"2803:7620::/32",
|
||||
"2803:7630::/32",
|
||||
"2803:7660::/32",
|
||||
"2803:76c0::/32",
|
||||
"2803:76e0::/32",
|
||||
@@ -2245,6 +2260,7 @@
|
||||
"2803:7ac0::/32",
|
||||
"2803:7b20::/32",
|
||||
"2803:7b60::/32",
|
||||
"2803:7c30::/32",
|
||||
"2803:7c40::/32",
|
||||
"2803:7d00::/32",
|
||||
"2803:7d40::/32",
|
||||
@@ -2267,6 +2283,7 @@
|
||||
"2803:80c0::/32",
|
||||
"2803:8110::/32",
|
||||
"2803:8120::/32",
|
||||
"2803:8130::/32",
|
||||
"2803:81a0::/32",
|
||||
"2803:81d0::/32",
|
||||
"2803:81e0::/32",
|
||||
@@ -2278,6 +2295,7 @@
|
||||
"2803:83c0::/32",
|
||||
"2803:83e0::/32",
|
||||
"2803:8410::/32",
|
||||
"2803:8430::/32",
|
||||
"2803:8440::/32",
|
||||
"2803:8480::/32",
|
||||
"2803:84d0::/32",
|
||||
@@ -2359,6 +2377,7 @@
|
||||
"2803:97e0::/32",
|
||||
"2803:9800::/32",
|
||||
"2803:9820::/32",
|
||||
"2803:9830::/32",
|
||||
"2803:9850::/32",
|
||||
"2803:9860::/32",
|
||||
"2803:98c0::/32",
|
||||
@@ -2368,9 +2387,7 @@
|
||||
"2803:9a60::/32",
|
||||
"2803:9b40::/32",
|
||||
"2803:9b80::/32",
|
||||
"2803:9b90::/32",
|
||||
"2803:9be0::/32",
|
||||
"2803:9c00::/32",
|
||||
"2803:9c10::/32",
|
||||
"2803:9c40::/32",
|
||||
"2803:9c80::/32",
|
||||
@@ -2409,7 +2426,6 @@
|
||||
"2803:a600::/32",
|
||||
"2803:a620::/32",
|
||||
"2803:a680::/32",
|
||||
"2803:a6a0::/32",
|
||||
"2803:a780::/32",
|
||||
"2803:a790::/32",
|
||||
"2803:a7c0::/32",
|
||||
@@ -2446,6 +2462,7 @@
|
||||
"2803:b010::/32",
|
||||
"2803:b020::/32",
|
||||
"2803:b0a0::/32",
|
||||
"2803:b130::/32",
|
||||
"2803:b1d0::/32",
|
||||
"2803:b210::/32",
|
||||
"2803:b220::/32",
|
||||
@@ -2454,7 +2471,6 @@
|
||||
"2803:b2e0::/32",
|
||||
"2803:b360::/32",
|
||||
"2803:b380::/32",
|
||||
"2803:b410::/32",
|
||||
"2803:b450::/32",
|
||||
"2803:b4a0::/32",
|
||||
"2803:b520::/32",
|
||||
@@ -2522,6 +2538,7 @@
|
||||
"2803:c580::/32",
|
||||
"2803:c5e0::/32",
|
||||
"2803:c620::/32",
|
||||
"2803:c630::/32",
|
||||
"2803:c640::/32",
|
||||
"2803:c6a0::/32",
|
||||
"2803:c6c0::/32",
|
||||
@@ -2536,6 +2553,7 @@
|
||||
"2803:c990::/32",
|
||||
"2803:c9c0::/32",
|
||||
"2803:ca00::/32",
|
||||
"2803:ca30::/32",
|
||||
"2803:ca40::/32",
|
||||
"2803:cb60::/32",
|
||||
"2803:cb80::/32",
|
||||
@@ -2550,7 +2568,6 @@
|
||||
"2803:cd20::/32",
|
||||
"2803:cd40::/32",
|
||||
"2803:cdd0::/32",
|
||||
"2803:cde0::/32",
|
||||
"2803:ce40::/32",
|
||||
"2803:ce60::/32",
|
||||
"2803:ce80::/32",
|
||||
@@ -2612,6 +2629,7 @@
|
||||
"2803:df60::/32",
|
||||
"2803:df80::/32",
|
||||
"2803:e010::/32",
|
||||
"2803:e030::/32",
|
||||
"2803:e040::/32",
|
||||
"2803:e050::/32",
|
||||
"2803:e080::/32",
|
||||
@@ -2652,6 +2670,7 @@
|
||||
"2803:e9e0::/32",
|
||||
"2803:ea00::/32",
|
||||
"2803:ea20::/32",
|
||||
"2803:ea30::/32",
|
||||
"2803:ea40::/32",
|
||||
"2803:ea80::/32",
|
||||
"2803:eaa0::/32",
|
||||
@@ -2690,9 +2709,9 @@
|
||||
"2803:f300::/32",
|
||||
"2803:f380::/32",
|
||||
"2803:f3e0::/32",
|
||||
"2803:f430::/32",
|
||||
"2803:f460::/32",
|
||||
"2803:f4c0::/32",
|
||||
"2803:f4d0::/32",
|
||||
"2803:f580::/32",
|
||||
"2803:f660::/32",
|
||||
"2803:f680::/32",
|
||||
|
||||
@@ -66,6 +66,7 @@
|
||||
"45.12.96.0/22",
|
||||
"45.12.160.0/22",
|
||||
"45.12.232.0/22",
|
||||
"45.13.64.0/22",
|
||||
"45.13.244.0/22",
|
||||
"45.14.44.0/22",
|
||||
"45.15.36.0/22",
|
||||
@@ -197,6 +198,7 @@
|
||||
"63.247.208.0/20",
|
||||
"64.34.16.0/22",
|
||||
"64.239.60.0/23",
|
||||
"66.203.252.0/24",
|
||||
"77.72.160.0/21",
|
||||
"77.74.112.0/21",
|
||||
"77.75.16.0/20",
|
||||
@@ -222,6 +224,7 @@
|
||||
"78.142.64.0/18",
|
||||
"78.142.128.0/18",
|
||||
"78.152.64.0/19",
|
||||
"79.99.140.0/22",
|
||||
"79.143.48.0/20",
|
||||
"79.170.208.0/21",
|
||||
"79.174.20.0/22",
|
||||
@@ -238,6 +241,7 @@
|
||||
"80.108.0.0/15",
|
||||
"80.110.0.0/16",
|
||||
"80.120.0.0/14",
|
||||
"80.224.255.0/24",
|
||||
"80.240.224.0/20",
|
||||
"80.241.16.0/20",
|
||||
"80.243.160.0/20",
|
||||
@@ -298,6 +302,7 @@
|
||||
"84.38.112.0/20",
|
||||
"84.39.184.0/21",
|
||||
"84.112.0.0/14",
|
||||
"84.234.56.0/22",
|
||||
"84.242.8.0/21",
|
||||
"84.247.61.0/24",
|
||||
"85.13.0.0/18",
|
||||
@@ -305,6 +310,7 @@
|
||||
"85.90.128.0/19",
|
||||
"85.118.184.0/21",
|
||||
"85.124.0.0/14",
|
||||
"85.137.184.0/21",
|
||||
"85.158.224.0/21",
|
||||
"85.159.119.0/24",
|
||||
"85.193.128.0/20",
|
||||
@@ -390,7 +396,6 @@
|
||||
"91.198.45.0/24",
|
||||
"91.198.93.0/24",
|
||||
"91.198.128.0/24",
|
||||
"91.198.142.0/24",
|
||||
"91.198.148.0/24",
|
||||
"91.198.195.0/24",
|
||||
"91.198.240.0/24",
|
||||
@@ -439,6 +444,7 @@
|
||||
"91.213.54.0/24",
|
||||
"91.213.77.0/24",
|
||||
"91.213.132.0/24",
|
||||
"91.213.202.0/24",
|
||||
"91.213.204.0/24",
|
||||
"91.213.222.0/24",
|
||||
"91.213.234.0/24",
|
||||
@@ -453,7 +459,6 @@
|
||||
"91.217.54.0/23",
|
||||
"91.217.173.0/24",
|
||||
"91.217.225.0/24",
|
||||
"91.217.229.0/24",
|
||||
"91.219.68.0/22",
|
||||
"91.220.2.0/24",
|
||||
"91.220.89.0/24",
|
||||
@@ -509,7 +514,6 @@
|
||||
"91.239.231.0/24",
|
||||
"91.240.117.0/24",
|
||||
"91.242.247.0/24",
|
||||
"91.243.78.0/23",
|
||||
"91.244.70.0/23",
|
||||
"92.39.160.0/20",
|
||||
"92.42.16.0/22",
|
||||
@@ -557,7 +561,8 @@
|
||||
"94.140.12.0/23",
|
||||
"94.140.20.0/22",
|
||||
"94.140.26.0/23",
|
||||
"94.142.160.0/21",
|
||||
"94.142.160.0/22",
|
||||
"94.156.245.0/24",
|
||||
"94.177.8.0/23",
|
||||
"94.177.116.0/23",
|
||||
"94.198.136.0/21",
|
||||
@@ -600,6 +605,7 @@
|
||||
"130.0.64.0/21",
|
||||
"131.130.0.0/16",
|
||||
"134.255.210.0/23",
|
||||
"137.83.86.0/24",
|
||||
"137.208.0.0/16",
|
||||
"138.22.0.0/16",
|
||||
"138.232.0.0/16",
|
||||
@@ -622,6 +628,8 @@
|
||||
"144.65.0.0/16",
|
||||
"144.208.0.0/18",
|
||||
"144.208.128.0/17",
|
||||
"145.11.16.0/21",
|
||||
"145.11.40.0/21",
|
||||
"145.14.248.0/21",
|
||||
"145.40.32.0/19",
|
||||
"145.244.0.0/16",
|
||||
@@ -642,17 +650,21 @@
|
||||
"149.148.0.0/16",
|
||||
"149.154.96.0/21",
|
||||
"149.154.152.0/21",
|
||||
"150.251.128.0/24",
|
||||
"151.236.0.0/19",
|
||||
"152.53.0.0/16",
|
||||
"152.89.72.0/22",
|
||||
"152.89.220.0/22",
|
||||
"152.89.224.0/22",
|
||||
"153.56.192.0/21",
|
||||
"153.92.112.0/21",
|
||||
"155.73.0.0/16",
|
||||
"155.133.24.0/23",
|
||||
"156.58.0.0/16",
|
||||
"156.67.192.0/20",
|
||||
"157.97.68.0/22",
|
||||
"157.173.0.0/21",
|
||||
"157.173.16.0/20",
|
||||
"157.177.0.0/16",
|
||||
"157.247.0.0/16",
|
||||
"158.220.0.0/18",
|
||||
@@ -660,11 +672,9 @@
|
||||
"159.48.0.0/22",
|
||||
"159.255.147.0/24",
|
||||
"160.20.100.0/22",
|
||||
"160.52.0.0/16",
|
||||
"161.5.0.0/16",
|
||||
"161.108.210.0/24",
|
||||
"161.110.0.0/16",
|
||||
"162.25.0.0/16",
|
||||
"162.211.104.0/22",
|
||||
"162.213.160.0/22",
|
||||
"164.3.0.0/16",
|
||||
@@ -818,7 +828,7 @@
|
||||
"185.87.16.0/22",
|
||||
"185.87.237.0/24",
|
||||
"185.87.238.0/23",
|
||||
"185.88.200.0/23",
|
||||
"185.88.200.0/22",
|
||||
"185.89.48.0/22",
|
||||
"185.89.160.0/22",
|
||||
"185.90.20.0/22",
|
||||
@@ -839,7 +849,6 @@
|
||||
"185.98.68.0/22",
|
||||
"185.99.72.0/22",
|
||||
"185.100.96.0/22",
|
||||
"185.100.144.0/22",
|
||||
"185.100.240.0/22",
|
||||
"185.102.12.0/22",
|
||||
"185.102.228.0/22",
|
||||
@@ -923,6 +932,7 @@
|
||||
"185.154.40.0/22",
|
||||
"185.154.80.0/22",
|
||||
"185.154.232.0/22",
|
||||
"185.155.117.0/24",
|
||||
"185.155.124.0/22",
|
||||
"185.156.144.0/22",
|
||||
"185.157.123.0/24",
|
||||
@@ -1010,7 +1020,7 @@
|
||||
"185.209.204.0/22",
|
||||
"185.210.12.0/22",
|
||||
"185.210.148.0/22",
|
||||
"185.210.224.0/22",
|
||||
"185.210.224.0/23",
|
||||
"185.211.48.0/22",
|
||||
"185.211.216.0/22",
|
||||
"185.212.100.0/22",
|
||||
@@ -1074,6 +1084,7 @@
|
||||
"185.238.118.0/23",
|
||||
"185.238.139.0/24",
|
||||
"185.238.240.0/22",
|
||||
"185.239.175.0/24",
|
||||
"185.240.60.0/22",
|
||||
"185.240.216.0/22",
|
||||
"185.240.236.0/22",
|
||||
@@ -1113,6 +1124,7 @@
|
||||
"188.116.48.0/23",
|
||||
"188.117.192.0/18",
|
||||
"188.118.192.0/18",
|
||||
"188.137.152.0/21",
|
||||
"188.172.192.0/18",
|
||||
"188.190.0.0/19",
|
||||
"188.211.166.0/24",
|
||||
@@ -1120,6 +1132,7 @@
|
||||
"188.214.32.0/21",
|
||||
"188.241.124.0/23",
|
||||
"192.5.162.0/24",
|
||||
"192.26.237.0/24",
|
||||
"192.26.238.0/24",
|
||||
"192.35.206.0/24",
|
||||
"192.35.240.0/22",
|
||||
@@ -1228,7 +1241,6 @@
|
||||
"193.41.41.0/24",
|
||||
"193.41.94.0/24",
|
||||
"193.41.138.0/23",
|
||||
"193.41.201.0/24",
|
||||
"193.41.207.0/24",
|
||||
"193.41.228.0/24",
|
||||
"193.41.232.0/24",
|
||||
@@ -1285,7 +1297,6 @@
|
||||
"193.104.151.0/24",
|
||||
"193.104.232.0/24",
|
||||
"193.105.86.0/24",
|
||||
"193.105.153.0/24",
|
||||
"193.105.168.0/24",
|
||||
"193.105.181.0/24",
|
||||
"193.105.195.0/24",
|
||||
@@ -1433,7 +1444,7 @@
|
||||
"193.228.170.0/23",
|
||||
"193.228.184.0/24",
|
||||
"193.228.192.0/24",
|
||||
"193.228.200.0/22",
|
||||
"193.228.203.0/24",
|
||||
"193.228.207.0/24",
|
||||
"193.228.208.0/20",
|
||||
"193.228.227.0/24",
|
||||
@@ -1524,6 +1535,7 @@
|
||||
"194.59.178.0/24",
|
||||
"194.61.27.0/24",
|
||||
"194.61.36.0/22",
|
||||
"194.62.113.0/24",
|
||||
"194.62.237.0/24",
|
||||
"194.76.210.0/24",
|
||||
"194.76.239.0/24",
|
||||
@@ -1656,8 +1668,10 @@
|
||||
"195.54.172.0/23",
|
||||
"195.58.160.0/19",
|
||||
"195.60.66.0/23",
|
||||
"195.60.85.192/26",
|
||||
"195.60.162.0/23",
|
||||
"195.62.26.0/23",
|
||||
"195.62.31.0/24",
|
||||
"195.62.84.0/23",
|
||||
"195.64.0.0/19",
|
||||
"195.64.96.0/24",
|
||||
@@ -1702,6 +1716,7 @@
|
||||
"195.128.104.0/21",
|
||||
"195.128.150.0/23",
|
||||
"195.128.170.0/23",
|
||||
"195.128.231.0/24",
|
||||
"195.130.192.0/24",
|
||||
"195.130.198.0/24",
|
||||
"195.130.204.0/24",
|
||||
@@ -1751,8 +1766,6 @@
|
||||
"195.242.168.0/24",
|
||||
"195.242.175.0/24",
|
||||
"195.242.184.0/24",
|
||||
"195.244.14.0/23",
|
||||
"195.244.18.0/23",
|
||||
"195.245.92.0/23",
|
||||
"195.245.225.0/24",
|
||||
"195.248.32.0/19",
|
||||
@@ -1769,10 +1782,12 @@
|
||||
"203.34.137.0/24",
|
||||
"203.56.45.0/24",
|
||||
"203.98.67.0/24",
|
||||
"204.154.104.0/22",
|
||||
"205.147.200.0/23",
|
||||
"206.225.20.0/22",
|
||||
"207.244.212.0/24",
|
||||
"207.244.220.0/24",
|
||||
"208.88.67.0/24",
|
||||
"209.92.64.0/22",
|
||||
"212.9.128.0/19",
|
||||
"212.11.93.0/24",
|
||||
@@ -1798,6 +1813,7 @@
|
||||
"212.89.160.0/19",
|
||||
"212.95.0.0/19",
|
||||
"212.102.112.0/24",
|
||||
"212.104.133.0/24",
|
||||
"212.104.211.0/24",
|
||||
"212.108.32.0/19",
|
||||
"212.124.128.0/19",
|
||||
@@ -1869,7 +1885,6 @@
|
||||
"217.74.8.0/21",
|
||||
"217.75.176.0/20",
|
||||
"217.76.160.0/20",
|
||||
"217.113.96.0/20",
|
||||
"217.116.64.0/20",
|
||||
"217.116.176.0/20",
|
||||
"217.146.0.0/19",
|
||||
@@ -1916,11 +1931,16 @@
|
||||
"2001:678:c58::/48",
|
||||
"2001:678:d58::/48",
|
||||
"2001:678:dc0::/48",
|
||||
"2001:678:e00::/48",
|
||||
"2001:678:e90::/48",
|
||||
"2001:678:ea4::/48",
|
||||
"2001:678:1040::/48",
|
||||
"2001:678:10c8::/48",
|
||||
"2001:678:1124::/48",
|
||||
"2001:678:1150::/48",
|
||||
"2001:678:118c::/48",
|
||||
"2001:678:121c::/48",
|
||||
"2001:678:1248::/48",
|
||||
"2001:67c:4c::/48",
|
||||
"2001:67c:98::/48",
|
||||
"2001:67c:ac::/48",
|
||||
@@ -1958,7 +1978,6 @@
|
||||
"2001:67c:960::/48",
|
||||
"2001:67c:9e4::/48",
|
||||
"2001:67c:a58::/48",
|
||||
"2001:67c:b1c::/48",
|
||||
"2001:67c:c58::/48",
|
||||
"2001:67c:c98::/48",
|
||||
"2001:67c:ce0::/48",
|
||||
@@ -2003,12 +2022,10 @@
|
||||
"2001:67c:2078::/48",
|
||||
"2001:67c:2090::/48",
|
||||
"2001:67c:211c::/48",
|
||||
"2001:67c:212c::/48",
|
||||
"2001:67c:2180::/48",
|
||||
"2001:67c:21f8::/48",
|
||||
"2001:67c:2204::/48",
|
||||
"2001:67c:2208::/48",
|
||||
"2001:67c:2240::/48",
|
||||
"2001:67c:2248::/48",
|
||||
"2001:67c:2260::/48",
|
||||
"2001:67c:22a0::/48",
|
||||
@@ -2031,13 +2048,13 @@
|
||||
"2001:67c:2604::/48",
|
||||
"2001:67c:260c::/48",
|
||||
"2001:67c:2610::/48",
|
||||
"2001:67c:264c::/48",
|
||||
"2001:67c:2694::/48",
|
||||
"2001:67c:26e4::/48",
|
||||
"2001:67c:27f0::/48",
|
||||
"2001:67c:2820::/48",
|
||||
"2001:67c:28c0::/48",
|
||||
"2001:67c:28c8::/48",
|
||||
"2001:67c:2938::/48",
|
||||
"2001:67c:29cc::/48",
|
||||
"2001:67c:2a38::/48",
|
||||
"2001:67c:2aa4::/48",
|
||||
@@ -2064,6 +2081,7 @@
|
||||
"2001:7f8:71::/48",
|
||||
"2001:7f8:8d::/48",
|
||||
"2001:7f8:152::/48",
|
||||
"2001:7f8:170::/48",
|
||||
"2001:850::/29",
|
||||
"2001:858::/32",
|
||||
"2001:870::/29",
|
||||
@@ -2115,7 +2133,6 @@
|
||||
"2a00:8ce0::/32",
|
||||
"2a00:8e40::/29",
|
||||
"2a00:98c0::/29",
|
||||
"2a00:a1c0::/32",
|
||||
"2a00:a460::/32",
|
||||
"2a00:a6a0::/32",
|
||||
"2a00:afc0::/32",
|
||||
@@ -2209,6 +2226,7 @@
|
||||
"2a03:c680::/29",
|
||||
"2a03:da80::/32",
|
||||
"2a03:e600::/29",
|
||||
"2a03:ecc0::/29",
|
||||
"2a03:f080::/32",
|
||||
"2a03:fa00::/29",
|
||||
"2a03:fa40::/32",
|
||||
@@ -2262,6 +2280,7 @@
|
||||
"2a06:680::/29",
|
||||
"2a06:2f40::/29",
|
||||
"2a06:3980::/29",
|
||||
"2a06:3c40::/29",
|
||||
"2a06:3cc0::/29",
|
||||
"2a06:5680::/29",
|
||||
"2a06:5c40::/29",
|
||||
@@ -2328,6 +2347,7 @@
|
||||
"2a0a:cdc0::/32",
|
||||
"2a0a:cf80::/29",
|
||||
"2a0a:f500::/32",
|
||||
"2a0b:d80::/29",
|
||||
"2a0b:1900::/29",
|
||||
"2a0b:2600::/29",
|
||||
"2a0b:37c0::/29",
|
||||
@@ -2336,7 +2356,6 @@
|
||||
"2a0b:5500::/29",
|
||||
"2a0b:5700::/29",
|
||||
"2a0b:5a40::/29",
|
||||
"2a0b:5cc0::/29",
|
||||
"2a0b:6c40::/29",
|
||||
"2a0b:6f80::/32",
|
||||
"2a0b:7640::/29",
|
||||
@@ -2395,7 +2414,6 @@
|
||||
"2a0e:1800::/29",
|
||||
"2a0e:2a00::/29",
|
||||
"2a0e:37c0::/32",
|
||||
"2a0e:6a00::/29",
|
||||
"2a0e:8440::/29",
|
||||
"2a0e:8500::/29",
|
||||
"2a0e:a500::/29",
|
||||
@@ -2423,6 +2441,7 @@
|
||||
"2a10:1e00::/32",
|
||||
"2a10:2680::/29",
|
||||
"2a10:3f40::/29",
|
||||
"2a10:58c0::/29",
|
||||
"2a10:5e00::/32",
|
||||
"2a10:6b40::/29",
|
||||
"2a10:6c80::/29",
|
||||
@@ -2439,6 +2458,7 @@
|
||||
"2a10:bd40::/29",
|
||||
"2a10:d100::/32",
|
||||
"2a10:d540::/29",
|
||||
"2a10:db80::/29",
|
||||
"2a10:df80::/29",
|
||||
"2a10:e9c0::/29",
|
||||
"2a10:f8c0::/29",
|
||||
@@ -2447,8 +2467,10 @@
|
||||
"2a11:5d00::/29",
|
||||
"2a11:5ec0::/32",
|
||||
"2a11:af40::/29",
|
||||
"2a12:3980::/29",
|
||||
"2a12:4780::/32",
|
||||
"2a12:61c0::/29",
|
||||
"2a12:8b80::/32",
|
||||
"2a12:9640::/29",
|
||||
"2a12:af40::/29",
|
||||
"2a12:c140::/29",
|
||||
@@ -2457,6 +2479,7 @@
|
||||
"2a12:e500::/29",
|
||||
"2a12:ea80::/29",
|
||||
"2a12:f480::/29",
|
||||
"2a12:f840::/29",
|
||||
"2a13:100::/29",
|
||||
"2a13:980::/29",
|
||||
"2a13:1600::/29",
|
||||
|
||||
+114
-107
File diff suppressed because it is too large
Load Diff
@@ -2,9 +2,12 @@
|
||||
"code": "AX",
|
||||
"name": "Åland Islands",
|
||||
"ipv4": [
|
||||
"91.210.154.0/24",
|
||||
"185.84.30.0/23",
|
||||
"217.29.224.0/20"
|
||||
],
|
||||
"ipv6": [
|
||||
"2a04:e100::/29",
|
||||
"2a0d:79c0::/32"
|
||||
]
|
||||
}
|
||||
@@ -97,6 +97,7 @@
|
||||
"149.255.144.0/20",
|
||||
"158.181.32.0/20",
|
||||
"160.202.24.0/22",
|
||||
"164.40.238.0/24",
|
||||
"164.215.96.0/21",
|
||||
"167.150.216.0/24",
|
||||
"176.28.80.0/21",
|
||||
@@ -117,6 +118,7 @@
|
||||
"185.47.4.0/22",
|
||||
"185.52.128.0/22",
|
||||
"185.55.36.0/22",
|
||||
"185.65.119.0/24",
|
||||
"185.77.3.0/24",
|
||||
"185.77.248.0/24",
|
||||
"185.80.172.0/22",
|
||||
@@ -130,6 +132,7 @@
|
||||
"185.105.196.0/22",
|
||||
"185.112.192.0/22",
|
||||
"185.118.48.0/22",
|
||||
"185.127.40.0/24",
|
||||
"185.129.0.0/22",
|
||||
"185.129.92.0/22",
|
||||
"185.136.207.0/24",
|
||||
@@ -137,6 +140,7 @@
|
||||
"185.143.196.0/22",
|
||||
"185.146.112.0/22",
|
||||
"185.161.224.0/22",
|
||||
"185.163.131.0/24",
|
||||
"185.193.132.0/22",
|
||||
"185.220.180.0/22",
|
||||
"185.222.92.0/22",
|
||||
@@ -162,9 +166,11 @@
|
||||
"194.135.160.0/19",
|
||||
"194.164.222.0/24",
|
||||
"194.164.224.0/24",
|
||||
"194.213.119.0/24",
|
||||
"195.26.8.0/23",
|
||||
"195.28.6.0/23",
|
||||
"195.216.230.0/24",
|
||||
"204.77.7.0/24",
|
||||
"208.122.23.0/24",
|
||||
"212.47.128.0/19",
|
||||
"212.102.123.0/24",
|
||||
@@ -175,7 +181,9 @@
|
||||
"217.18.88.0/24",
|
||||
"217.25.16.0/20",
|
||||
"217.64.16.0/20",
|
||||
"217.168.176.0/20"
|
||||
"217.168.176.0/20",
|
||||
"217.179.72.0/23",
|
||||
"217.179.126.0/24"
|
||||
],
|
||||
"ipv6": [
|
||||
"2001:3400::/29",
|
||||
@@ -207,6 +215,7 @@
|
||||
"2a04:48c0::/29",
|
||||
"2a04:4b80::/29",
|
||||
"2a04:8380::/29",
|
||||
"2a04:9e40::/29",
|
||||
"2a04:c840::/29",
|
||||
"2a04:d380::/29",
|
||||
"2a05:8200::/29",
|
||||
@@ -215,6 +224,7 @@
|
||||
"2a05:9b40::/29",
|
||||
"2a05:e8c0::/29",
|
||||
"2a05:f200::/29",
|
||||
"2a06:2d40::/29",
|
||||
"2a06:91c0::/29",
|
||||
"2a07:4900::/29",
|
||||
"2a07:9500::/29",
|
||||
@@ -238,12 +248,12 @@
|
||||
"2a10:d880::/29",
|
||||
"2a12:8bc0::/29",
|
||||
"2a12:d1c0::/29",
|
||||
"2a12:f4c0::/29",
|
||||
"2a13:35c0::/29",
|
||||
"2a13:37c0::/29",
|
||||
"2a13:3f00::/32",
|
||||
"2a13:65c0::/29",
|
||||
"2a13:6f40::/29",
|
||||
"2a13:7100::/29",
|
||||
"2a13:72c0::/29",
|
||||
"2a13:8700::/29",
|
||||
"2a13:9c80::/29",
|
||||
|
||||
@@ -61,6 +61,7 @@
|
||||
"87.247.136.0/22",
|
||||
"87.250.96.0/19",
|
||||
"89.111.192.0/18",
|
||||
"89.124.12.0/22",
|
||||
"89.146.128.0/18",
|
||||
"91.191.0.0/18",
|
||||
"91.198.219.0/24",
|
||||
@@ -74,6 +75,8 @@
|
||||
"93.180.96.0/19",
|
||||
"93.180.144.0/21",
|
||||
"94.250.0.0/17",
|
||||
"95.133.140.0/22",
|
||||
"95.133.232.0/22",
|
||||
"95.156.128.0/18",
|
||||
"109.94.104.0/22",
|
||||
"109.105.192.0/20",
|
||||
@@ -144,9 +147,12 @@
|
||||
"194.99.16.0/22",
|
||||
"195.130.32.0/19",
|
||||
"195.222.32.0/19",
|
||||
"209.162.200.0/24",
|
||||
"212.39.96.0/19",
|
||||
"212.47.45.0/24",
|
||||
"212.125.144.0/20",
|
||||
"213.91.64.0/18",
|
||||
"213.155.24.0/22",
|
||||
"213.196.112.0/20",
|
||||
"217.9.20.0/22",
|
||||
"217.23.192.0/20",
|
||||
@@ -184,13 +190,11 @@
|
||||
"2a03:cc80::/29",
|
||||
"2a03:f180::/32",
|
||||
"2a03:fac0::/29",
|
||||
"2a04:ea00::/29",
|
||||
"2a04:f2c0::/29",
|
||||
"2a04:ff80::/29",
|
||||
"2a05:1f80::/29",
|
||||
"2a0a:ac0::/29",
|
||||
"2a0c:1600::/32",
|
||||
"2a0c:ee40::/29",
|
||||
"2a0e:5400::/29",
|
||||
"2a0e:6580::/32",
|
||||
"2a0e:8ac0::/29",
|
||||
|
||||
+164
-55
@@ -25,7 +25,6 @@
|
||||
"36.50.146.0/24",
|
||||
"36.50.179.0/24",
|
||||
"36.50.182.0/23",
|
||||
"36.50.198.0/23",
|
||||
"36.50.238.0/23",
|
||||
"36.50.240.0/23",
|
||||
"36.50.250.0/23",
|
||||
@@ -444,7 +443,7 @@
|
||||
"103.87.238.0/24",
|
||||
"103.87.244.0/22",
|
||||
"103.87.248.0/22",
|
||||
"103.88.24.0/22",
|
||||
"103.88.24.0/23",
|
||||
"103.88.136.0/23",
|
||||
"103.88.140.0/22",
|
||||
"103.89.24.0/22",
|
||||
@@ -463,7 +462,7 @@
|
||||
"103.92.160.0/23",
|
||||
"103.92.204.0/22",
|
||||
"103.92.208.0/24",
|
||||
"103.92.212.0/22",
|
||||
"103.92.212.0/23",
|
||||
"103.92.216.0/22",
|
||||
"103.92.234.0/24",
|
||||
"103.93.18.0/24",
|
||||
@@ -479,7 +478,8 @@
|
||||
"103.95.38.0/24",
|
||||
"103.95.96.0/22",
|
||||
"103.95.108.0/23",
|
||||
"103.95.208.0/22",
|
||||
"103.95.208.0/23",
|
||||
"103.95.211.0/24",
|
||||
"103.96.36.0/22",
|
||||
"103.96.68.0/22",
|
||||
"103.96.89.0/24",
|
||||
@@ -501,7 +501,6 @@
|
||||
"103.99.248.0/22",
|
||||
"103.100.92.0/22",
|
||||
"103.100.232.0/22",
|
||||
"103.100.244.0/24",
|
||||
"103.101.53.0/24",
|
||||
"103.101.54.0/23",
|
||||
"103.101.98.0/23",
|
||||
@@ -556,7 +555,7 @@
|
||||
"103.109.96.0/22",
|
||||
"103.109.105.0/24",
|
||||
"103.109.212.0/22",
|
||||
"103.109.236.0/22",
|
||||
"103.109.238.0/23",
|
||||
"103.110.5.0/24",
|
||||
"103.110.56.0/22",
|
||||
"103.110.78.0/23",
|
||||
@@ -756,7 +755,7 @@
|
||||
"103.134.84.0/24",
|
||||
"103.134.88.0/22",
|
||||
"103.134.124.0/22",
|
||||
"103.134.168.0/21",
|
||||
"103.134.172.0/22",
|
||||
"103.134.192.0/22",
|
||||
"103.134.202.0/23",
|
||||
"103.134.208.0/22",
|
||||
@@ -887,7 +886,6 @@
|
||||
"103.145.28.0/23",
|
||||
"103.145.44.0/23",
|
||||
"103.145.57.0/24",
|
||||
"103.145.64.0/23",
|
||||
"103.145.70.0/23",
|
||||
"103.145.74.0/24",
|
||||
"103.145.76.0/23",
|
||||
@@ -943,7 +941,6 @@
|
||||
"103.148.108.0/24",
|
||||
"103.148.114.0/23",
|
||||
"103.148.148.0/23",
|
||||
"103.148.172.0/23",
|
||||
"103.148.176.0/22",
|
||||
"103.148.210.0/23",
|
||||
"103.148.212.0/23",
|
||||
@@ -983,6 +980,7 @@
|
||||
"103.151.196.0/23",
|
||||
"103.151.212.0/23",
|
||||
"103.152.10.0/23",
|
||||
"103.152.18.0/23",
|
||||
"103.152.26.0/23",
|
||||
"103.152.102.0/23",
|
||||
"103.152.104.0/22",
|
||||
@@ -1033,7 +1031,6 @@
|
||||
"103.155.252.0/23",
|
||||
"103.156.52.0/23",
|
||||
"103.156.56.0/24",
|
||||
"103.156.66.0/23",
|
||||
"103.156.108.0/23",
|
||||
"103.156.124.0/22",
|
||||
"103.156.148.0/23",
|
||||
@@ -1064,7 +1061,7 @@
|
||||
"103.158.132.0/23",
|
||||
"103.158.158.0/23",
|
||||
"103.158.206.0/23",
|
||||
"103.158.210.0/23",
|
||||
"103.158.211.0/24",
|
||||
"103.158.248.0/23",
|
||||
"103.159.0.0/23",
|
||||
"103.159.2.0/24",
|
||||
@@ -1202,7 +1199,6 @@
|
||||
"103.172.190.0/24",
|
||||
"103.172.216.0/23",
|
||||
"103.173.2.0/23",
|
||||
"103.173.10.0/23",
|
||||
"103.173.30.0/23",
|
||||
"103.173.36.0/23",
|
||||
"103.173.52.0/23",
|
||||
@@ -1532,6 +1528,7 @@
|
||||
"103.237.76.0/22",
|
||||
"103.238.63.0/24",
|
||||
"103.238.114.0/23",
|
||||
"103.238.154.0/23",
|
||||
"103.238.216.0/23",
|
||||
"103.239.4.0/22",
|
||||
"103.239.14.0/23",
|
||||
@@ -1602,7 +1599,6 @@
|
||||
"113.192.42.0/23",
|
||||
"113.212.108.0/22",
|
||||
"114.31.0.0/19",
|
||||
"114.129.10.0/23",
|
||||
"114.129.12.0/22",
|
||||
"114.130.0.0/16",
|
||||
"114.134.88.0/21",
|
||||
@@ -1639,6 +1635,7 @@
|
||||
"118.179.192.0/19",
|
||||
"119.10.168.0/21",
|
||||
"119.15.154.0/23",
|
||||
"119.15.156.0/22",
|
||||
"119.18.144.0/21",
|
||||
"119.30.32.0/20",
|
||||
"119.40.80.0/20",
|
||||
@@ -1693,6 +1690,12 @@
|
||||
"138.252.124.0/23",
|
||||
"138.252.129.0/24",
|
||||
"138.252.144.0/23",
|
||||
"138.252.172.0/23",
|
||||
"138.252.177.0/24",
|
||||
"138.252.180.0/23",
|
||||
"138.252.184.0/22",
|
||||
"138.252.198.0/23",
|
||||
"138.252.238.0/23",
|
||||
"144.48.84.0/22",
|
||||
"144.48.96.0/22",
|
||||
"144.48.108.0/22",
|
||||
@@ -1700,11 +1703,50 @@
|
||||
"144.48.148.0/22",
|
||||
"144.48.160.0/22",
|
||||
"144.48.248.0/23",
|
||||
"144.79.0.0/22",
|
||||
"144.79.22.0/23",
|
||||
"144.79.38.0/23",
|
||||
"144.79.41.0/24",
|
||||
"144.79.86.0/23",
|
||||
"144.79.102.0/23",
|
||||
"144.79.104.0/24",
|
||||
"144.79.106.0/23",
|
||||
"144.79.108.0/23",
|
||||
"144.79.124.0/23",
|
||||
"144.79.132.0/23",
|
||||
"144.79.162.0/23",
|
||||
"144.79.182.0/23",
|
||||
"144.79.184.0/23",
|
||||
"144.79.210.0/23",
|
||||
"144.79.212.0/23",
|
||||
"144.79.216.0/22",
|
||||
"144.79.220.0/23",
|
||||
"144.79.224.0/23",
|
||||
"144.79.248.0/23",
|
||||
"146.196.48.0/22",
|
||||
"150.107.52.0/22",
|
||||
"150.129.16.0/23",
|
||||
"150.129.220.0/22",
|
||||
"150.242.104.0/22",
|
||||
"151.158.16.0/23",
|
||||
"151.158.30.0/23",
|
||||
"151.158.44.0/23",
|
||||
"151.158.48.0/22",
|
||||
"151.158.70.0/23",
|
||||
"151.158.86.0/23",
|
||||
"151.158.90.0/23",
|
||||
"151.158.100.0/23",
|
||||
"151.158.110.0/23",
|
||||
"151.158.112.0/23",
|
||||
"151.158.120.0/23",
|
||||
"151.158.124.0/23",
|
||||
"151.158.152.0/22",
|
||||
"151.158.158.0/23",
|
||||
"151.158.164.0/23",
|
||||
"151.158.172.0/23",
|
||||
"151.158.196.0/23",
|
||||
"151.158.210.0/23",
|
||||
"151.158.216.0/23",
|
||||
"155.35.34.0/23",
|
||||
"155.35.46.0/23",
|
||||
"157.10.28.0/23",
|
||||
@@ -1760,7 +1802,6 @@
|
||||
"160.30.176.0/22",
|
||||
"160.30.188.0/23",
|
||||
"160.30.238.0/23",
|
||||
"160.187.7.0/24",
|
||||
"160.187.25.0/24",
|
||||
"160.187.34.0/23",
|
||||
"160.187.56.0/23",
|
||||
@@ -1784,7 +1825,6 @@
|
||||
"160.191.148.0/22",
|
||||
"160.191.162.0/23",
|
||||
"160.191.188.0/23",
|
||||
"160.191.200.0/24",
|
||||
"160.191.210.0/23",
|
||||
"160.191.212.0/24",
|
||||
"160.202.144.0/22",
|
||||
@@ -1826,6 +1866,17 @@
|
||||
"161.248.241.0/24",
|
||||
"161.248.244.0/22",
|
||||
"161.248.248.0/23",
|
||||
"162.4.6.0/23",
|
||||
"162.4.22.0/23",
|
||||
"162.4.34.0/23",
|
||||
"162.4.48.0/23",
|
||||
"162.4.59.0/24",
|
||||
"162.4.60.0/23",
|
||||
"162.4.64.0/23",
|
||||
"162.4.88.0/23",
|
||||
"162.4.112.0/23",
|
||||
"162.4.178.0/23",
|
||||
"162.4.186.0/23",
|
||||
"162.12.212.0/22",
|
||||
"163.47.32.0/21",
|
||||
"163.47.80.0/21",
|
||||
@@ -1851,6 +1902,17 @@
|
||||
"163.61.216.0/23",
|
||||
"163.61.236.0/23",
|
||||
"163.61.240.0/23",
|
||||
"163.128.24.0/23",
|
||||
"163.128.78.0/23",
|
||||
"163.128.94.0/24",
|
||||
"163.128.108.0/23",
|
||||
"163.128.126.0/23",
|
||||
"163.128.140.0/23",
|
||||
"163.128.144.0/23",
|
||||
"163.128.150.0/23",
|
||||
"163.128.188.0/23",
|
||||
"163.128.210.0/23",
|
||||
"163.128.216.0/23",
|
||||
"163.223.20.0/23",
|
||||
"163.223.34.0/23",
|
||||
"163.223.38.0/23",
|
||||
@@ -1876,7 +1938,6 @@
|
||||
"165.99.74.0/23",
|
||||
"165.99.80.0/23",
|
||||
"165.99.90.0/23",
|
||||
"165.99.92.0/23",
|
||||
"165.99.164.0/23",
|
||||
"165.99.184.0/23",
|
||||
"165.99.196.0/23",
|
||||
@@ -1928,6 +1989,10 @@
|
||||
"192.144.80.0/22",
|
||||
"192.144.86.0/23",
|
||||
"192.144.88.0/22",
|
||||
"192.232.58.0/23",
|
||||
"192.232.60.0/22",
|
||||
"198.15.27.0/24",
|
||||
"198.56.24.0/23",
|
||||
"202.0.94.0/24",
|
||||
"202.1.28.0/23",
|
||||
"202.4.96.0/19",
|
||||
@@ -2047,7 +2112,7 @@
|
||||
"210.56.144.0/23",
|
||||
"210.79.180.0/22",
|
||||
"210.87.64.0/23",
|
||||
"210.87.68.0/22",
|
||||
"210.87.70.0/23",
|
||||
"220.152.112.0/22",
|
||||
"220.158.204.0/22",
|
||||
"220.247.128.0/22",
|
||||
@@ -2250,7 +2315,6 @@
|
||||
"2001:df1:31c0::/48",
|
||||
"2001:df1:3380::/48",
|
||||
"2001:df1:3400::/48",
|
||||
"2001:df1:3480::/48",
|
||||
"2001:df1:3680::/48",
|
||||
"2001:df1:3a40::/48",
|
||||
"2001:df1:3b00::/48",
|
||||
@@ -2263,7 +2327,6 @@
|
||||
"2001:df1:4a40::/48",
|
||||
"2001:df1:4a80::/48",
|
||||
"2001:df1:4bc0::/48",
|
||||
"2001:df1:4d80::/48",
|
||||
"2001:df1:4dc0::/48",
|
||||
"2001:df1:4e80::/48",
|
||||
"2001:df1:4f40::/48",
|
||||
@@ -2338,7 +2401,6 @@
|
||||
"2001:df1:c340::/48",
|
||||
"2001:df1:c8c0::/48",
|
||||
"2001:df1:c9c0::/48",
|
||||
"2001:df1:cb80::/48",
|
||||
"2001:df1:cc80::/48",
|
||||
"2001:df1:ce40::/48",
|
||||
"2001:df1:d0c0::/48",
|
||||
@@ -2413,7 +2475,6 @@
|
||||
"2001:df2:75c0::/48",
|
||||
"2001:df2:7dc0::/48",
|
||||
"2001:df2:7e80::/48",
|
||||
"2001:df2:8900::/48",
|
||||
"2001:df2:8a40::/48",
|
||||
"2001:df2:8b40::/48",
|
||||
"2001:df2:9140::/48",
|
||||
@@ -2459,7 +2520,6 @@
|
||||
"2001:df2:ec80::/48",
|
||||
"2001:df2:ed80::/48",
|
||||
"2001:df2:ee40::/48",
|
||||
"2001:df2:ee80::/48",
|
||||
"2001:df2:ef80::/48",
|
||||
"2001:df2:efc0::/48",
|
||||
"2001:df2:f780::/48",
|
||||
@@ -2501,7 +2561,6 @@
|
||||
"2001:df3:3ac0::/48",
|
||||
"2001:df3:3bc0::/48",
|
||||
"2001:df3:3d40::/48",
|
||||
"2001:df3:3dc0::/48",
|
||||
"2001:df3:3e40::/48",
|
||||
"2001:df3:4240::/48",
|
||||
"2001:df3:43c0::/48",
|
||||
@@ -2509,7 +2568,6 @@
|
||||
"2001:df3:47c0::/48",
|
||||
"2001:df3:4c80::/48",
|
||||
"2001:df3:4d40::/48",
|
||||
"2001:df3:4d80::/48",
|
||||
"2001:df3:4e80::/48",
|
||||
"2001:df3:5080::/48",
|
||||
"2001:df3:50c0::/48",
|
||||
@@ -2595,7 +2653,7 @@
|
||||
"2001:df4:980::/48",
|
||||
"2001:df4:a80::/48",
|
||||
"2001:df4:1380::/48",
|
||||
"2001:df4:13c0::/48",
|
||||
"2001:df4:13c0::/47",
|
||||
"2001:df4:1480::/48",
|
||||
"2001:df4:29c0::/48",
|
||||
"2001:df4:2b80::/48",
|
||||
@@ -2638,7 +2696,7 @@
|
||||
"2001:df4:82c0::/48",
|
||||
"2001:df4:8300::/48",
|
||||
"2001:df4:8340::/48",
|
||||
"2001:df4:8440::/48",
|
||||
"2001:df4:8440::/47",
|
||||
"2001:df4:87c0::/48",
|
||||
"2001:df4:8940::/48",
|
||||
"2001:df4:8a40::/48",
|
||||
@@ -2647,7 +2705,6 @@
|
||||
"2001:df4:8f80::/48",
|
||||
"2001:df4:9040::/48",
|
||||
"2001:df4:9080::/48",
|
||||
"2001:df4:90c0::/48",
|
||||
"2001:df4:9340::/48",
|
||||
"2001:df4:a040::/48",
|
||||
"2001:df4:a3c0::/48",
|
||||
@@ -2725,7 +2782,7 @@
|
||||
"2001:df5:4d40::/48",
|
||||
"2001:df5:4f40::/48",
|
||||
"2001:df5:4f80::/48",
|
||||
"2001:df5:5140::/48",
|
||||
"2001:df5:5140::/47",
|
||||
"2001:df5:5480::/48",
|
||||
"2001:df5:5840::/48",
|
||||
"2001:df5:5a80::/48",
|
||||
@@ -2837,46 +2894,105 @@
|
||||
"2001:df6:4440::/48",
|
||||
"2001:df6:4480::/48",
|
||||
"2001:df6:4580::/48",
|
||||
"2001:df6:49c0::/48",
|
||||
"2001:df6:4b40::/48",
|
||||
"2001:df6:4bc0::/48",
|
||||
"2001:df6:4c40::/48",
|
||||
"2001:df6:5480::/48",
|
||||
"2001:df6:5640::/48",
|
||||
"2001:df6:58c0::/48",
|
||||
"2001:df6:5940::/47",
|
||||
"2001:df6:5ac0::/48",
|
||||
"2001:df6:5b80::/48",
|
||||
"2001:df6:5c80::/48",
|
||||
"2001:df6:5f40::/48",
|
||||
"2001:df6:6480::/48",
|
||||
"2001:df6:6780::/48",
|
||||
"2001:df6:6840::/48",
|
||||
"2001:df6:6980::/48",
|
||||
"2001:df6:6d80::/48",
|
||||
"2001:df6:6e40::/48",
|
||||
"2001:df6:6ec0::/48",
|
||||
"2001:df6:71c0::/48",
|
||||
"2001:df6:7340::/48",
|
||||
"2001:df6:75c0::/48",
|
||||
"2001:df6:7640::/48",
|
||||
"2001:df6:76c0::/48",
|
||||
"2001:df6:7700::/48",
|
||||
"2001:df6:7880::/48",
|
||||
"2001:df6:7a40::/48",
|
||||
"2001:df6:7a80::/48",
|
||||
"2001:df6:7bc0::/48",
|
||||
"2001:df6:7c80::/48",
|
||||
"2001:df6:7e80::/48",
|
||||
"2001:df6:7fc0::/48",
|
||||
"2001:df6:8040::/48",
|
||||
"2001:df6:81c0::/48",
|
||||
"2001:df6:8240::/48",
|
||||
"2001:df6:8280::/48",
|
||||
"2001:df6:82c0::/48",
|
||||
"2001:df6:8500::/48",
|
||||
"2001:df6:8580::/48",
|
||||
"2001:df6:8840::/48",
|
||||
"2001:df6:89c0::/48",
|
||||
"2001:df6:8f40::/48",
|
||||
"2001:df6:8f80::/48",
|
||||
"2001:df6:9440::/48",
|
||||
"2001:df6:9480::/48",
|
||||
"2001:df6:96c0::/48",
|
||||
"2001:df6:9880::/48",
|
||||
"2001:df6:98c0::/48",
|
||||
"2001:df6:9900::/48",
|
||||
"2001:df6:9940::/48",
|
||||
"2001:df6:9d80::/48",
|
||||
"2001:df6:9ec0::/48",
|
||||
"2001:df6:a080::/48",
|
||||
"2001:df6:a280::/48",
|
||||
"2001:df6:a300::/48",
|
||||
"2001:df6:a4c0::/48",
|
||||
"2001:df6:a580::/48",
|
||||
"2001:df6:a940::/48",
|
||||
"2001:df6:b0c0::/48",
|
||||
"2001:df6:b140::/48",
|
||||
"2001:df6:b180::/48",
|
||||
"2001:df6:b280::/48",
|
||||
"2001:df6:b340::/48",
|
||||
"2001:df6:b540::/48",
|
||||
"2001:df6:b900::/48",
|
||||
"2001:df6:ba40::/48",
|
||||
"2001:df6:bd80::/48",
|
||||
"2001:df6:be40::/48",
|
||||
"2001:df6:bec0::/48",
|
||||
"2001:df6:c600::/48",
|
||||
"2001:df6:ca40::/48",
|
||||
"2001:df6:cd40::/48",
|
||||
"2001:df6:d180::/48",
|
||||
"2001:df6:d580::/48",
|
||||
"2001:df6:d600::/48",
|
||||
"2001:df6:d800::/48",
|
||||
"2001:df6:db40::/48",
|
||||
"2001:df6:ddc0::/48",
|
||||
"2001:df6:de00::/48",
|
||||
"2001:df6:de80::/48",
|
||||
"2001:df6:dfc0::/48",
|
||||
"2001:df6:e080::/48",
|
||||
"2001:df6:e540::/48",
|
||||
"2001:df6:e940::/48",
|
||||
"2001:df6:ea40::/48",
|
||||
"2001:df6:f380::/48",
|
||||
"2001:df6:f4c0::/48",
|
||||
"2001:df6:f680::/48",
|
||||
"2001:df6:f6c0::/48",
|
||||
"2001:df6:f840::/48",
|
||||
"2001:df6:f8c0::/48",
|
||||
"2001:df6:fa80::/48",
|
||||
"2001:df6:fc40::/48",
|
||||
"2001:df6:fdc0::/48",
|
||||
"2001:df6:fe80::/48",
|
||||
"2001:df7:2c0::/48",
|
||||
"2001:df7:4c0::/48",
|
||||
"2001:df7:540::/48",
|
||||
"2001:df7:10c0::/48",
|
||||
"2001:df7:1240::/48",
|
||||
"2001:df7:1b80::/48",
|
||||
"2001:df7:1c80::/48",
|
||||
"2001:df7:2080::/48",
|
||||
@@ -2950,7 +3066,6 @@
|
||||
"2400:3ae0::/32",
|
||||
"2400:3b60::/32",
|
||||
"2400:3dc0::/32",
|
||||
"2400:3e60::/32",
|
||||
"2400:4520::/32",
|
||||
"2400:47c0::/32",
|
||||
"2400:48a0::/32",
|
||||
@@ -3009,22 +3124,17 @@
|
||||
"2400:a2c0::/32",
|
||||
"2400:a3a0::/32",
|
||||
"2400:a460::/32",
|
||||
"2400:a540::/32",
|
||||
"2400:a720::/32",
|
||||
"2400:a740::/32",
|
||||
"2400:a760::/32",
|
||||
"2400:a7a0::/32",
|
||||
"2400:a7c0::/32",
|
||||
"2400:a7e0::/32",
|
||||
"2400:aac0::/32",
|
||||
"2400:aba0::/32",
|
||||
"2400:ac20::/32",
|
||||
"2400:ad40::/32",
|
||||
"2400:ae20::/32",
|
||||
"2400:af40::/32",
|
||||
"2400:afc0::/32",
|
||||
"2400:b040::/32",
|
||||
"2400:b140::/32",
|
||||
"2400:b240::/32",
|
||||
"2400:b340::/32",
|
||||
"2400:b360::/32",
|
||||
@@ -3049,7 +3159,6 @@
|
||||
"2400:ce80::/32",
|
||||
"2400:cf60::/32",
|
||||
"2400:d1a0::/32",
|
||||
"2400:d2a0::/32",
|
||||
"2400:d340::/32",
|
||||
"2400:d4c0::/32",
|
||||
"2400:d980::/32",
|
||||
@@ -3068,7 +3177,6 @@
|
||||
"2400:e9e0::/32",
|
||||
"2400:eb20::/32",
|
||||
"2400:eb80::/32",
|
||||
"2400:f260::/32",
|
||||
"2400:f2e0::/32",
|
||||
"2400:f6a0::/32",
|
||||
"2400:f8c0::/32",
|
||||
@@ -3092,6 +3200,7 @@
|
||||
"2401:1540::/32",
|
||||
"2401:1660::/32",
|
||||
"2401:1900::/31",
|
||||
"2401:1920::/32",
|
||||
"2401:1980::/32",
|
||||
"2401:1c20::/32",
|
||||
"2401:1d20::/32",
|
||||
@@ -3180,11 +3289,9 @@
|
||||
"2401:cde0::/32",
|
||||
"2401:cf20::/32",
|
||||
"2401:cf60::/32",
|
||||
"2401:cfa0::/32",
|
||||
"2401:d160::/32",
|
||||
"2401:d1e0::/32",
|
||||
"2401:d260::/32",
|
||||
"2401:d2e0::/32",
|
||||
"2401:d380::/32",
|
||||
"2401:dec0::/32",
|
||||
"2401:dee0::/32",
|
||||
@@ -3254,14 +3361,28 @@
|
||||
"2402:37a0::/32",
|
||||
"2402:3940::/32",
|
||||
"2402:3b80::/32",
|
||||
"2402:3e20::/32",
|
||||
"2402:3ea0::/32",
|
||||
"2402:42a0::/32",
|
||||
"2402:4320::/32",
|
||||
"2402:44e0::/32",
|
||||
"2402:46a0::/32",
|
||||
"2402:4720::/32",
|
||||
"2402:48c0::/32",
|
||||
"2402:4940::/32",
|
||||
"2402:49c0::/32",
|
||||
"2402:4b20::/32",
|
||||
"2402:4da0::/32",
|
||||
"2402:5380::/32",
|
||||
"2402:5440::/32",
|
||||
"2402:5460::/32",
|
||||
"2402:54c0::/32",
|
||||
"2402:55c0::/32",
|
||||
"2402:5720::/32",
|
||||
"2402:5840::/32",
|
||||
"2402:58e0::/32",
|
||||
"2402:5b20::/32",
|
||||
"2402:5ba0::/32",
|
||||
"2402:5e80::/32",
|
||||
"2402:5fc0::/32",
|
||||
"2402:6480::/32",
|
||||
@@ -3269,7 +3390,6 @@
|
||||
"2402:76c0::/32",
|
||||
"2402:77c0::/32",
|
||||
"2402:7e40::/32",
|
||||
"2402:8040::/32",
|
||||
"2402:8340::/32",
|
||||
"2402:8640::/32",
|
||||
"2402:88c0::/32",
|
||||
@@ -3297,7 +3417,6 @@
|
||||
"2402:c0c0::/32",
|
||||
"2402:c140::/32",
|
||||
"2402:c1c0::/32",
|
||||
"2402:c440::/32",
|
||||
"2402:c6c0::/32",
|
||||
"2402:c8c0::/32",
|
||||
"2402:ca40::/32",
|
||||
@@ -3307,7 +3426,6 @@
|
||||
"2402:e1c0::/32",
|
||||
"2402:e4c0::/32",
|
||||
"2402:e6c0::/32",
|
||||
"2402:e840::/32",
|
||||
"2402:ea40::/32",
|
||||
"2402:f040::/32",
|
||||
"2402:f1c0::/32",
|
||||
@@ -3317,10 +3435,10 @@
|
||||
"2402:fd40::/32",
|
||||
"2402:fec0::/32",
|
||||
"2403:140::/32",
|
||||
"2403:680::/32",
|
||||
"2403:10c0::/32",
|
||||
"2403:1940::/32",
|
||||
"2403:1e40::/32",
|
||||
"2403:21c0::/32",
|
||||
"2403:2c40::/32",
|
||||
"2403:2d40::/32",
|
||||
"2403:2e40::/32",
|
||||
@@ -3373,7 +3491,6 @@
|
||||
"2403:dd00::/32",
|
||||
"2403:dfc0::/32",
|
||||
"2403:e100::/32",
|
||||
"2403:e6c0::/32",
|
||||
"2403:e740::/32",
|
||||
"2403:eb00::/32",
|
||||
"2403:eb40::/32",
|
||||
@@ -3394,7 +3511,6 @@
|
||||
"2404:9c0::/32",
|
||||
"2404:b00::/32",
|
||||
"2404:d00::/32",
|
||||
"2404:dc0::/32",
|
||||
"2404:1140::/32",
|
||||
"2404:1380::/32",
|
||||
"2404:16c0::/32",
|
||||
@@ -3446,11 +3562,9 @@
|
||||
"2404:6280::/32",
|
||||
"2404:6440::/32",
|
||||
"2404:6480::/32",
|
||||
"2404:67c0::/32",
|
||||
"2404:6840::/32",
|
||||
"2404:6940::/32",
|
||||
"2404:69c0::/32",
|
||||
"2404:6ac0::/32",
|
||||
"2404:6bc0::/32",
|
||||
"2404:6fc0::/32",
|
||||
"2404:7500::/32",
|
||||
@@ -3460,7 +3574,6 @@
|
||||
"2404:7e40::/32",
|
||||
"2404:7ec0::/32",
|
||||
"2404:8340::/32",
|
||||
"2404:8440::/32",
|
||||
"2404:86c0::/32",
|
||||
"2404:88c0::/32",
|
||||
"2404:8940::/32",
|
||||
@@ -3535,21 +3648,21 @@
|
||||
"2405:d340::/32",
|
||||
"2405:d440::/32",
|
||||
"2405:db40::/32",
|
||||
"2405:dbc0::/32",
|
||||
"2405:de80::/32",
|
||||
"2405:e2c0::/32",
|
||||
"2405:e340::/32",
|
||||
"2405:e6c0::/32",
|
||||
"2405:eec0::/32",
|
||||
"2405:f200::/32",
|
||||
"2405:f280::/32",
|
||||
"2405:f2c0::/32",
|
||||
"2405:fb40::/32",
|
||||
"2406:2c0::/32",
|
||||
"2406:b00::/32",
|
||||
"2406:c80::/32",
|
||||
"2406:1140::/32",
|
||||
"2406:1400::/32",
|
||||
"2406:2500::/32",
|
||||
"2406:25c0::/32",
|
||||
"2406:36c0::/32",
|
||||
"2406:3740::/32",
|
||||
"2406:3f40::/32",
|
||||
@@ -3564,7 +3677,6 @@
|
||||
"2406:6fc0::/32",
|
||||
"2406:73c0::/32",
|
||||
"2406:7dc0::/32",
|
||||
"2406:7f40::/32",
|
||||
"2406:8ac0::/32",
|
||||
"2406:9b00::/32",
|
||||
"2406:9d40::/32",
|
||||
@@ -3637,9 +3749,7 @@
|
||||
"2407:b100::/32",
|
||||
"2407:b2c0::/32",
|
||||
"2407:cac0::/32",
|
||||
"2407:d380::/32",
|
||||
"2407:d700::/32",
|
||||
"2407:dd40::/32",
|
||||
"2407:e740::/32",
|
||||
"2407:e7c0::/32",
|
||||
"2407:ea40::/32",
|
||||
@@ -3653,7 +3763,6 @@
|
||||
"2407:fa40::/32",
|
||||
"2407:fe80::/32",
|
||||
"2407:fec0::/32",
|
||||
"2407:ff80::/32",
|
||||
"2a0c:ac00::/29"
|
||||
"2407:ff80::/32"
|
||||
]
|
||||
}
|
||||
@@ -26,6 +26,7 @@
|
||||
"37.44.240.0/22",
|
||||
"37.58.40.0/21",
|
||||
"37.62.0.0/16",
|
||||
"37.72.110.0/24",
|
||||
"37.72.160.0/21",
|
||||
"37.123.232.0/21",
|
||||
"37.143.0.0/21",
|
||||
@@ -126,8 +127,11 @@
|
||||
"80.91.144.0/20",
|
||||
"80.200.0.0/15",
|
||||
"80.236.128.0/17",
|
||||
"80.248.141.0/24",
|
||||
"80.248.142.0/23",
|
||||
"81.11.128.0/17",
|
||||
"81.82.0.0/15",
|
||||
"81.85.61.0/24",
|
||||
"81.92.112.0/20",
|
||||
"81.95.112.0/20",
|
||||
"81.164.0.0/15",
|
||||
@@ -173,7 +177,6 @@
|
||||
"86.107.120.0/21",
|
||||
"87.64.0.0/14",
|
||||
"87.236.33.0/24",
|
||||
"87.236.178.0/23",
|
||||
"87.237.8.0/21",
|
||||
"87.238.160.0/21",
|
||||
"87.238.224.0/21",
|
||||
@@ -206,6 +209,7 @@
|
||||
"91.199.15.0/24",
|
||||
"91.199.110.0/24",
|
||||
"91.202.32.0/22",
|
||||
"91.206.75.0/24",
|
||||
"91.206.84.0/23",
|
||||
"91.206.250.0/23",
|
||||
"91.208.12.0/24",
|
||||
@@ -217,6 +221,7 @@
|
||||
"91.209.133.0/24",
|
||||
"91.209.236.0/24",
|
||||
"91.212.185.0/24",
|
||||
"91.212.215.0/24",
|
||||
"91.216.10.0/24",
|
||||
"91.216.20.0/24",
|
||||
"91.216.41.0/24",
|
||||
@@ -241,6 +246,7 @@
|
||||
"91.234.145.0/24",
|
||||
"91.234.203.0/24",
|
||||
"91.234.230.0/23",
|
||||
"91.236.192.0/24",
|
||||
"91.236.244.0/23",
|
||||
"91.238.219.0/24",
|
||||
"91.238.237.0/24",
|
||||
@@ -278,6 +284,7 @@
|
||||
"94.198.160.0/21",
|
||||
"94.224.0.0/14",
|
||||
"95.36.80.0/20",
|
||||
"95.111.134.0/24",
|
||||
"95.128.96.0/21",
|
||||
"95.130.40.0/21",
|
||||
"95.171.160.0/19",
|
||||
@@ -315,7 +322,7 @@
|
||||
"143.169.0.0/16",
|
||||
"144.248.0.0/16",
|
||||
"145.60.0.0/16",
|
||||
"146.103.128.0/17",
|
||||
"146.103.192.0/18",
|
||||
"146.175.0.0/16",
|
||||
"146.185.48.0/21",
|
||||
"147.12.64.0/19",
|
||||
@@ -325,7 +332,14 @@
|
||||
"149.126.56.0/21",
|
||||
"149.134.0.0/16",
|
||||
"149.154.192.0/18",
|
||||
"150.251.0.0/16",
|
||||
"150.251.0.0/20",
|
||||
"150.251.32.0/19",
|
||||
"150.251.80.0/20",
|
||||
"150.251.96.0/20",
|
||||
"150.251.124.0/22",
|
||||
"150.251.176.0/20",
|
||||
"150.251.208.0/20",
|
||||
"152.55.156.0/22",
|
||||
"152.152.0.0/16",
|
||||
"153.89.0.0/16",
|
||||
"153.98.0.0/16",
|
||||
@@ -339,6 +353,7 @@
|
||||
"164.15.0.0/16",
|
||||
"164.35.0.0/16",
|
||||
"164.138.104.0/21",
|
||||
"167.150.90.0/23",
|
||||
"170.255.0.0/16",
|
||||
"171.25.217.0/24",
|
||||
"171.25.229.0/24",
|
||||
@@ -369,6 +384,7 @@
|
||||
"185.2.92.0/22",
|
||||
"185.3.160.0/22",
|
||||
"185.3.216.0/22",
|
||||
"185.4.132.0/22",
|
||||
"185.15.138.0/24",
|
||||
"185.16.240.0/22",
|
||||
"185.18.8.0/22",
|
||||
@@ -458,7 +474,6 @@
|
||||
"185.111.204.0/22",
|
||||
"185.114.48.0/22",
|
||||
"185.115.216.0/22",
|
||||
"185.116.72.0/22",
|
||||
"185.119.156.0/22",
|
||||
"185.120.164.0/22",
|
||||
"185.122.248.0/22",
|
||||
@@ -471,6 +486,7 @@
|
||||
"185.135.191.0/24",
|
||||
"185.136.208.0/22",
|
||||
"185.137.40.0/22",
|
||||
"185.138.40.0/22",
|
||||
"185.138.96.0/22",
|
||||
"185.139.44.0/22",
|
||||
"185.141.208.0/22",
|
||||
@@ -499,7 +515,6 @@
|
||||
"185.166.248.0/22",
|
||||
"185.167.48.0/22",
|
||||
"185.171.64.0/22",
|
||||
"185.171.168.0/22",
|
||||
"185.172.4.0/22",
|
||||
"185.174.4.0/22",
|
||||
"185.174.64.0/22",
|
||||
@@ -531,6 +546,7 @@
|
||||
"185.205.232.0/22",
|
||||
"185.206.122.0/24",
|
||||
"185.213.64.0/22",
|
||||
"185.213.121.0/24",
|
||||
"185.214.4.0/22",
|
||||
"185.217.63.0/24",
|
||||
"185.218.199.0/24",
|
||||
@@ -603,7 +619,6 @@
|
||||
"193.5.145.0/24",
|
||||
"193.5.149.0/24",
|
||||
"193.9.8.0/22",
|
||||
"193.23.115.0/24",
|
||||
"193.24.116.0/24",
|
||||
"193.25.198.0/24",
|
||||
"193.25.202.0/24",
|
||||
@@ -775,7 +790,6 @@
|
||||
"194.78.0.0/16",
|
||||
"194.107.123.0/24",
|
||||
"194.110.151.0/24",
|
||||
"194.113.116.0/24",
|
||||
"194.117.68.0/24",
|
||||
"194.119.224.0/19",
|
||||
"194.140.235.0/24",
|
||||
@@ -784,8 +798,6 @@
|
||||
"194.145.155.0/24",
|
||||
"194.146.23.0/24",
|
||||
"194.146.121.0/24",
|
||||
"194.147.40.0/22",
|
||||
"194.149.243.0/24",
|
||||
"194.150.224.0/23",
|
||||
"194.165.51.0/24",
|
||||
"194.176.106.0/24",
|
||||
@@ -834,6 +846,7 @@
|
||||
"195.200.24.0/23",
|
||||
"195.200.201.0/24",
|
||||
"195.207.0.0/16",
|
||||
"195.222.105.0/24",
|
||||
"195.225.100.0/22",
|
||||
"195.225.164.0/22",
|
||||
"195.225.220.0/22",
|
||||
@@ -862,6 +875,7 @@
|
||||
"212.71.0.0/19",
|
||||
"212.76.224.0/19",
|
||||
"212.79.64.0/19",
|
||||
"212.85.56.0/21",
|
||||
"212.87.96.0/19",
|
||||
"212.88.224.0/19",
|
||||
"212.100.160.0/19",
|
||||
@@ -893,6 +907,7 @@
|
||||
"213.251.64.0/18",
|
||||
"213.254.186.0/23",
|
||||
"217.15.224.0/20",
|
||||
"217.18.80.0/24",
|
||||
"217.18.89.0/24",
|
||||
"217.19.224.0/20",
|
||||
"217.21.176.0/20",
|
||||
@@ -930,6 +945,8 @@
|
||||
"2001:678:e8c::/48",
|
||||
"2001:678:f30::/48",
|
||||
"2001:678:101c::/48",
|
||||
"2001:678:1080::/48",
|
||||
"2001:678:1194::/48",
|
||||
"2001:67c:40::/48",
|
||||
"2001:67c:5c::/48",
|
||||
"2001:67c:9c::/48",
|
||||
@@ -937,6 +954,7 @@
|
||||
"2001:67c:1cc::/48",
|
||||
"2001:67c:304::/48",
|
||||
"2001:67c:314::/48",
|
||||
"2001:67c:4f8::/48",
|
||||
"2001:67c:4fc::/48",
|
||||
"2001:67c:688::/48",
|
||||
"2001:67c:884::/48",
|
||||
@@ -987,7 +1005,6 @@
|
||||
"2a00:1258::/32",
|
||||
"2a00:1458::/32",
|
||||
"2a00:1528::/32",
|
||||
"2a00:1868::/32",
|
||||
"2a00:1ad8::/32",
|
||||
"2a00:1c98::/32",
|
||||
"2a00:1cf8::/29",
|
||||
@@ -1032,7 +1049,6 @@
|
||||
"2a02:c8::/32",
|
||||
"2a02:2b8::/32",
|
||||
"2a02:310::/32",
|
||||
"2a02:4a0::/32",
|
||||
"2a02:578::/32",
|
||||
"2a02:6e0::/32",
|
||||
"2a02:d08::/29",
|
||||
@@ -1057,13 +1073,13 @@
|
||||
"2a02:7860::/29",
|
||||
"2a02:a000::/26",
|
||||
"2a02:af00::/29",
|
||||
"2a02:c500::/29",
|
||||
"2a03:1980::/29",
|
||||
"2a03:1a20::/32",
|
||||
"2a03:2200::/32",
|
||||
"2a03:2ae0::/32",
|
||||
"2a03:3600::/32",
|
||||
"2a03:5400::/32",
|
||||
"2a03:6860::/29",
|
||||
"2a03:6d80::/32",
|
||||
"2a03:6f60::/32",
|
||||
"2a03:7de0::/32",
|
||||
@@ -1175,7 +1191,6 @@
|
||||
"2a0c:7400::/29",
|
||||
"2a0c:9c40::/32",
|
||||
"2a0c:b640::/29",
|
||||
"2a0d:5040::/29",
|
||||
"2a0d:61c0::/29",
|
||||
"2a0d:6e40::/29",
|
||||
"2a0d:e640::/29",
|
||||
@@ -1220,6 +1235,7 @@
|
||||
"2a12:c240::/29",
|
||||
"2a12:c640::/29",
|
||||
"2a12:d140::/29",
|
||||
"2a12:fdc0::/29",
|
||||
"2a13:1c40::/29",
|
||||
"2a13:1fc0::/29",
|
||||
"2a13:40c0::/29",
|
||||
@@ -1235,7 +1251,6 @@
|
||||
"2a14:1900::/29",
|
||||
"2a14:2900::/32",
|
||||
"2a14:3f40::/32",
|
||||
"2a14:4400::/29",
|
||||
"2a14:6180::/29",
|
||||
"2a14:b980::/32"
|
||||
]
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"102.176.176.0/22",
|
||||
"102.178.0.0/15",
|
||||
"102.180.0.0/16",
|
||||
"102.202.132.0/22",
|
||||
"102.204.24.0/22",
|
||||
"102.204.125.0/24",
|
||||
"102.207.224.0/22",
|
||||
@@ -61,6 +62,7 @@
|
||||
"2001:43fd:3000::/48",
|
||||
"2001:43fd:4000::/48",
|
||||
"2001:43ff:5000::/48",
|
||||
"2c0f:ca0::/32",
|
||||
"2c0f:1a40::/32",
|
||||
"2c0f:1c40::/32",
|
||||
"2c0f:39c0::/32",
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
"5.181.80.0/22",
|
||||
"5.182.20.0/22",
|
||||
"5.183.228.0/22",
|
||||
"5.252.132.0/22",
|
||||
"5.253.56.0/22",
|
||||
"5.253.64.0/22",
|
||||
"31.10.5.0/24",
|
||||
@@ -27,7 +26,6 @@
|
||||
"31.13.196.0/22",
|
||||
"31.13.200.0/21",
|
||||
"31.13.208.0/23",
|
||||
"31.13.212.0/24",
|
||||
"31.13.215.0/24",
|
||||
"31.13.216.0/21",
|
||||
"31.13.224.0/20",
|
||||
@@ -74,7 +72,8 @@
|
||||
"45.81.243.0/24",
|
||||
"45.83.216.0/22",
|
||||
"45.83.248.0/22",
|
||||
"45.84.88.0/22",
|
||||
"45.84.88.0/24",
|
||||
"45.84.90.0/23",
|
||||
"45.84.172.0/22",
|
||||
"45.84.184.0/22",
|
||||
"45.84.192.0/22",
|
||||
@@ -85,7 +84,8 @@
|
||||
"45.88.90.0/23",
|
||||
"45.89.244.0/22",
|
||||
"45.90.88.0/22",
|
||||
"45.91.192.0/22",
|
||||
"45.91.192.0/23",
|
||||
"45.91.194.0/24",
|
||||
"45.95.0.0/22",
|
||||
"45.128.4.0/22",
|
||||
"45.128.88.0/22",
|
||||
@@ -109,7 +109,7 @@
|
||||
"45.149.240.0/24",
|
||||
"45.149.242.0/23",
|
||||
"45.151.89.0/24",
|
||||
"45.151.90.0/23",
|
||||
"45.151.91.0/24",
|
||||
"45.153.108.0/22",
|
||||
"45.154.76.0/22",
|
||||
"45.154.176.0/22",
|
||||
@@ -141,6 +141,7 @@
|
||||
"62.68.90.0/24",
|
||||
"62.73.64.0/18",
|
||||
"62.133.59.0/24",
|
||||
"62.171.228.0/22",
|
||||
"62.176.64.0/18",
|
||||
"62.182.112.0/21",
|
||||
"62.192.132.0/22",
|
||||
@@ -148,6 +149,7 @@
|
||||
"62.204.128.0/19",
|
||||
"62.221.128.0/19",
|
||||
"62.233.37.0/24",
|
||||
"64.30.158.0/24",
|
||||
"77.70.0.0/17",
|
||||
"77.71.0.0/17",
|
||||
"77.76.0.0/18",
|
||||
@@ -194,6 +196,7 @@
|
||||
"80.68.159.0/24",
|
||||
"80.72.64.0/19",
|
||||
"80.75.211.0/24",
|
||||
"80.75.215.0/24",
|
||||
"80.76.49.0/24",
|
||||
"80.76.50.0/23",
|
||||
"80.78.224.0/20",
|
||||
@@ -211,7 +214,7 @@
|
||||
"82.103.64.0/18",
|
||||
"82.112.168.0/21",
|
||||
"82.115.209.0/24",
|
||||
"82.115.210.0/23",
|
||||
"82.115.210.0/24",
|
||||
"82.118.224.0/19",
|
||||
"82.119.64.0/19",
|
||||
"82.137.64.0/18",
|
||||
@@ -230,7 +233,8 @@
|
||||
"83.148.64.0/18",
|
||||
"83.150.216.0/22",
|
||||
"83.171.204.0/22",
|
||||
"83.219.96.0/22",
|
||||
"83.219.96.0/23",
|
||||
"83.219.98.0/24",
|
||||
"83.222.160.0/19",
|
||||
"83.228.0.0/17",
|
||||
"84.21.172.0/22",
|
||||
@@ -240,7 +244,8 @@
|
||||
"84.38.250.0/24",
|
||||
"84.40.64.0/18",
|
||||
"84.43.128.0/17",
|
||||
"84.54.48.0/22",
|
||||
"84.54.49.0/24",
|
||||
"84.54.50.0/23",
|
||||
"84.54.128.0/18",
|
||||
"84.201.192.0/20",
|
||||
"84.201.224.0/20",
|
||||
@@ -250,7 +255,9 @@
|
||||
"84.238.144.0/20",
|
||||
"84.238.164.0/22",
|
||||
"84.238.168.0/21",
|
||||
"84.238.176.0/20",
|
||||
"84.238.178.0/23",
|
||||
"84.238.180.0/22",
|
||||
"84.238.184.0/21",
|
||||
"84.238.192.0/18",
|
||||
"84.242.128.0/18",
|
||||
"84.252.0.0/18",
|
||||
@@ -261,6 +268,8 @@
|
||||
"85.118.64.0/19",
|
||||
"85.118.192.0/21",
|
||||
"85.130.0.0/17",
|
||||
"85.136.112.0/22",
|
||||
"85.136.180.0/22",
|
||||
"85.158.108.0/22",
|
||||
"85.187.0.0/19",
|
||||
"85.187.32.0/20",
|
||||
@@ -282,7 +291,8 @@
|
||||
"85.217.130.0/23",
|
||||
"85.217.144.0/23",
|
||||
"85.217.148.0/24",
|
||||
"85.217.164.0/22",
|
||||
"85.217.164.0/23",
|
||||
"85.217.166.0/24",
|
||||
"85.217.168.0/23",
|
||||
"85.217.176.0/21",
|
||||
"85.217.188.0/23",
|
||||
@@ -356,7 +366,7 @@
|
||||
"87.121.52.0/24",
|
||||
"87.121.54.0/24",
|
||||
"87.121.58.0/24",
|
||||
"87.121.60.0/22",
|
||||
"87.121.62.0/23",
|
||||
"87.121.64.0/23",
|
||||
"87.121.69.0/24",
|
||||
"87.121.70.0/23",
|
||||
@@ -373,12 +383,15 @@
|
||||
"87.121.112.0/22",
|
||||
"87.121.118.0/23",
|
||||
"87.121.120.0/21",
|
||||
"87.121.128.0/21",
|
||||
"87.121.128.0/22",
|
||||
"87.121.132.0/23",
|
||||
"87.121.144.0/22",
|
||||
"87.121.150.0/23",
|
||||
"87.121.152.0/21",
|
||||
"87.121.160.0/21",
|
||||
"87.121.216.0/21",
|
||||
"87.121.216.0/22",
|
||||
"87.121.220.0/23",
|
||||
"87.121.223.0/24",
|
||||
"87.126.0.0/16",
|
||||
"87.227.128.0/17",
|
||||
"87.236.177.0/24",
|
||||
@@ -421,7 +434,7 @@
|
||||
"91.92.40.0/21",
|
||||
"91.92.48.0/20",
|
||||
"91.92.65.0/24",
|
||||
"91.92.66.0/23",
|
||||
"91.92.66.0/24",
|
||||
"91.92.68.0/23",
|
||||
"91.92.70.0/24",
|
||||
"91.92.72.0/21",
|
||||
@@ -435,12 +448,12 @@
|
||||
"91.92.162.0/23",
|
||||
"91.92.168.0/22",
|
||||
"91.92.194.0/23",
|
||||
"91.92.197.0/24",
|
||||
"91.92.198.0/23",
|
||||
"91.92.219.0/24",
|
||||
"91.92.232.0/22",
|
||||
"91.92.246.0/23",
|
||||
"91.92.248.0/21",
|
||||
"91.92.251.0/24",
|
||||
"91.92.252.0/22",
|
||||
"91.132.60.0/22",
|
||||
"91.139.128.0/17",
|
||||
"91.148.128.0/18",
|
||||
@@ -462,6 +475,7 @@
|
||||
"91.198.132.0/23",
|
||||
"91.198.181.0/24",
|
||||
"91.199.2.0/24",
|
||||
"91.199.124.0/24",
|
||||
"91.199.128.0/24",
|
||||
"91.199.150.0/24",
|
||||
"91.199.237.0/24",
|
||||
@@ -499,6 +513,7 @@
|
||||
"91.216.253.0/24",
|
||||
"91.217.148.0/24",
|
||||
"91.217.205.0/24",
|
||||
"91.217.241.0/24",
|
||||
"91.218.80.0/22",
|
||||
"91.220.8.0/24",
|
||||
"91.220.189.0/24",
|
||||
@@ -553,7 +568,8 @@
|
||||
"93.123.12.0/23",
|
||||
"93.123.16.0/24",
|
||||
"93.123.18.0/23",
|
||||
"93.123.20.0/22",
|
||||
"93.123.21.0/24",
|
||||
"93.123.22.0/23",
|
||||
"93.123.24.0/24",
|
||||
"93.123.26.0/23",
|
||||
"93.123.28.0/22",
|
||||
@@ -565,7 +581,6 @@
|
||||
"93.123.46.0/24",
|
||||
"93.123.48.0/20",
|
||||
"93.123.64.0/22",
|
||||
"93.123.74.0/23",
|
||||
"93.123.76.0/22",
|
||||
"93.123.80.0/23",
|
||||
"93.123.84.0/24",
|
||||
@@ -576,7 +591,8 @@
|
||||
"93.123.104.0/22",
|
||||
"93.123.109.0/24",
|
||||
"93.123.110.0/24",
|
||||
"93.123.112.0/22",
|
||||
"93.123.112.0/24",
|
||||
"93.123.114.0/23",
|
||||
"93.123.116.0/24",
|
||||
"93.123.118.0/24",
|
||||
"93.123.120.0/21",
|
||||
@@ -613,14 +629,16 @@
|
||||
"94.72.136.0/21",
|
||||
"94.72.144.0/20",
|
||||
"94.101.192.0/20",
|
||||
"94.103.124.0/23",
|
||||
"94.103.124.0/24",
|
||||
"94.103.127.0/24",
|
||||
"94.125.100.0/22",
|
||||
"94.126.224.0/22",
|
||||
"94.131.16.0/22",
|
||||
"94.131.48.0/22",
|
||||
"94.139.192.0/19",
|
||||
"94.142.255.0/24",
|
||||
"94.154.160.0/22",
|
||||
"94.154.172.0/23",
|
||||
"94.154.172.0/24",
|
||||
"94.155.0.0/16",
|
||||
"94.156.0.0/21",
|
||||
"94.156.8.0/22",
|
||||
@@ -657,7 +675,8 @@
|
||||
"94.156.162.0/23",
|
||||
"94.156.164.0/22",
|
||||
"94.156.170.0/23",
|
||||
"94.156.172.0/22",
|
||||
"94.156.172.0/23",
|
||||
"94.156.174.0/24",
|
||||
"94.156.177.0/24",
|
||||
"94.156.178.0/23",
|
||||
"94.156.180.0/23",
|
||||
@@ -670,11 +689,10 @@
|
||||
"94.156.226.0/24",
|
||||
"94.156.232.0/23",
|
||||
"94.156.236.0/23",
|
||||
"94.156.238.0/24",
|
||||
"94.156.244.0/24",
|
||||
"94.156.249.0/24",
|
||||
"94.156.250.0/23",
|
||||
"94.156.252.0/23",
|
||||
"94.156.252.0/24",
|
||||
"94.158.24.0/22",
|
||||
"94.190.128.0/20",
|
||||
"94.190.160.0/19",
|
||||
@@ -686,6 +704,8 @@
|
||||
"95.87.0.0/18",
|
||||
"95.87.192.0/18",
|
||||
"95.111.0.0/17",
|
||||
"95.128.196.0/23",
|
||||
"95.128.198.0/24",
|
||||
"95.140.208.0/20",
|
||||
"95.141.253.0/24",
|
||||
"95.158.128.0/18",
|
||||
@@ -720,7 +740,7 @@
|
||||
"128.140.176.0/20",
|
||||
"130.185.192.0/18",
|
||||
"130.204.0.0/16",
|
||||
"141.98.1.0/24",
|
||||
"138.226.220.0/22",
|
||||
"141.98.4.0/22",
|
||||
"145.255.192.0/19",
|
||||
"147.78.76.0/22",
|
||||
@@ -812,8 +832,10 @@
|
||||
"185.56.84.0/22",
|
||||
"185.58.20.0/22",
|
||||
"185.60.64.0/22",
|
||||
"185.60.220.0/24",
|
||||
"185.62.0.0/24",
|
||||
"185.64.20.0/22",
|
||||
"185.65.117.0/24",
|
||||
"185.68.44.0/22",
|
||||
"185.72.56.0/22",
|
||||
"185.73.56.0/22",
|
||||
@@ -834,6 +856,7 @@
|
||||
"185.96.164.0/22",
|
||||
"185.96.252.0/22",
|
||||
"185.97.72.0/22",
|
||||
"185.98.132.0/24",
|
||||
"185.104.192.0/22",
|
||||
"185.108.140.0/22",
|
||||
"185.108.188.0/22",
|
||||
@@ -873,7 +896,6 @@
|
||||
"185.163.140.0/22",
|
||||
"185.163.244.0/22",
|
||||
"185.164.240.0/22",
|
||||
"185.165.24.0/22",
|
||||
"185.165.96.0/22",
|
||||
"185.165.220.0/22",
|
||||
"185.167.77.0/24",
|
||||
@@ -903,6 +925,7 @@
|
||||
"185.200.156.0/22",
|
||||
"185.201.36.0/22",
|
||||
"185.201.80.0/22",
|
||||
"185.201.170.0/24",
|
||||
"185.204.52.0/22",
|
||||
"185.204.164.0/22",
|
||||
"185.205.208.0/24",
|
||||
@@ -943,6 +966,7 @@
|
||||
"185.229.136.0/22",
|
||||
"185.229.252.0/22",
|
||||
"185.230.4.0/22",
|
||||
"185.230.44.0/22",
|
||||
"185.230.244.0/24",
|
||||
"185.230.247.0/24",
|
||||
"185.232.128.0/22",
|
||||
@@ -1062,7 +1086,6 @@
|
||||
"193.110.132.0/24",
|
||||
"193.110.159.0/24",
|
||||
"193.110.216.0/21",
|
||||
"193.111.89.0/24",
|
||||
"193.111.194.0/23",
|
||||
"193.111.208.0/24",
|
||||
"193.111.210.0/24",
|
||||
@@ -1070,7 +1093,7 @@
|
||||
"193.142.0.0/24",
|
||||
"193.148.48.0/22",
|
||||
"193.148.56.0/22",
|
||||
"193.148.252.0/23",
|
||||
"193.148.252.0/24",
|
||||
"193.149.28.0/22",
|
||||
"193.150.67.0/24",
|
||||
"193.151.20.0/22",
|
||||
@@ -1102,7 +1125,8 @@
|
||||
"193.201.240.0/22",
|
||||
"193.202.108.0/24",
|
||||
"193.203.198.0/23",
|
||||
"193.222.96.0/22",
|
||||
"193.222.96.0/23",
|
||||
"193.222.99.0/24",
|
||||
"193.228.152.0/24",
|
||||
"193.228.172.0/23",
|
||||
"193.228.182.0/23",
|
||||
@@ -1121,8 +1145,9 @@
|
||||
"194.24.189.0/24",
|
||||
"194.26.139.0/24",
|
||||
"194.31.204.0/23",
|
||||
"194.31.222.0/23",
|
||||
"194.31.223.0/24",
|
||||
"194.32.210.0/24",
|
||||
"194.33.28.0/24",
|
||||
"194.34.12.0/24",
|
||||
"194.38.36.0/22",
|
||||
"194.40.250.0/23",
|
||||
@@ -1140,7 +1165,7 @@
|
||||
"194.55.184.0/23",
|
||||
"194.55.186.0/24",
|
||||
"194.55.224.0/22",
|
||||
"194.59.28.0/22",
|
||||
"194.59.30.0/23",
|
||||
"194.61.32.0/22",
|
||||
"194.63.136.0/22",
|
||||
"194.69.200.0/22",
|
||||
@@ -1244,6 +1269,9 @@
|
||||
"195.245.112.0/23",
|
||||
"195.246.240.0/23",
|
||||
"195.250.60.0/24",
|
||||
"198.60.193.0/24",
|
||||
"204.137.13.0/24",
|
||||
"212.2.32.0/21",
|
||||
"212.5.32.0/19",
|
||||
"212.5.128.0/19",
|
||||
"212.21.128.0/19",
|
||||
@@ -1263,12 +1291,11 @@
|
||||
"212.73.134.0/24",
|
||||
"212.73.136.0/21",
|
||||
"212.73.144.0/22",
|
||||
"212.73.149.0/24",
|
||||
"212.73.151.0/24",
|
||||
"212.73.155.0/24",
|
||||
"212.73.156.0/22",
|
||||
"212.75.0.0/19",
|
||||
"212.87.204.0/23",
|
||||
"212.87.205.0/24",
|
||||
"212.87.207.0/24",
|
||||
"212.87.220.0/22",
|
||||
"212.91.160.0/19",
|
||||
@@ -1277,20 +1304,23 @@
|
||||
"212.102.107.0/24",
|
||||
"212.102.113.0/24",
|
||||
"212.104.96.0/19",
|
||||
"212.115.40.0/22",
|
||||
"212.115.40.0/24",
|
||||
"212.115.42.0/23",
|
||||
"212.116.128.0/19",
|
||||
"212.122.160.0/19",
|
||||
"212.233.128.0/17",
|
||||
"213.16.32.0/19",
|
||||
"213.91.128.0/17",
|
||||
"213.130.64.0/21",
|
||||
"213.130.64.0/22",
|
||||
"213.130.70.0/23",
|
||||
"213.130.72.0/23",
|
||||
"213.130.75.0/24",
|
||||
"213.130.76.0/22",
|
||||
"213.130.80.0/20",
|
||||
"213.130.92.0/22",
|
||||
"213.134.2.0/24",
|
||||
"213.145.96.0/19",
|
||||
"213.149.128.0/19",
|
||||
"213.155.30.0/23",
|
||||
"213.167.0.0/19",
|
||||
"213.169.32.0/19",
|
||||
"213.191.160.0/19",
|
||||
@@ -1489,6 +1519,7 @@
|
||||
"2a0b:8a00::/29",
|
||||
"2a0b:8a40::/29",
|
||||
"2a0b:8dc0::/29",
|
||||
"2a0b:b180::/29",
|
||||
"2a0b:b4c0::/29",
|
||||
"2a0b:cc00::/32",
|
||||
"2a0b:ce40::/32",
|
||||
@@ -1507,7 +1538,6 @@
|
||||
"2a0c:7cc0::/29",
|
||||
"2a0c:a1c0::/29",
|
||||
"2a0c:a800::/29",
|
||||
"2a0c:b300::/29",
|
||||
"2a0c:b480::/29",
|
||||
"2a0c:c680::/29",
|
||||
"2a0c:e980::/29",
|
||||
@@ -1553,6 +1583,7 @@
|
||||
"2a11:8a00::/29",
|
||||
"2a11:9d40::/29",
|
||||
"2a11:c8c0::/29",
|
||||
"2a11:eb00::/29",
|
||||
"2a12:21c0::/29",
|
||||
"2a12:4700::/29",
|
||||
"2a12:59c0::/29",
|
||||
|
||||
@@ -52,10 +52,8 @@
|
||||
"185.165.176.0/22",
|
||||
"185.236.132.0/22",
|
||||
"188.116.192.0/18",
|
||||
"188.137.128.0/19",
|
||||
"188.137.160.0/20",
|
||||
"188.137.184.0/21",
|
||||
"188.137.224.0/20",
|
||||
"188.137.128.0/20",
|
||||
"188.137.144.0/21",
|
||||
"193.25.204.0/24",
|
||||
"193.188.12.0/23",
|
||||
"193.188.96.0/19",
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
"196.2.8.0/21",
|
||||
"196.13.223.0/24",
|
||||
"196.49.3.0/24",
|
||||
"196.223.3.0/24",
|
||||
"196.223.36.0/24",
|
||||
"197.157.192.0/22"
|
||||
],
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
"45.221.224.0/19",
|
||||
"81.91.224.0/20",
|
||||
"102.38.128.0/19",
|
||||
"102.202.108.0/22",
|
||||
"102.203.12.0/22",
|
||||
"102.207.72.0/22",
|
||||
"102.207.112.0/22",
|
||||
"102.209.80.0/22",
|
||||
|
||||
@@ -55,6 +55,7 @@
|
||||
"2001:4910::/32",
|
||||
"2604:140::/32",
|
||||
"2605:e80::/32",
|
||||
"2605:5b80::/32",
|
||||
"2606:480::/32",
|
||||
"2606:b80::/32",
|
||||
"2606:1ec0::/32",
|
||||
|
||||
@@ -137,6 +137,7 @@
|
||||
"2803:be0::/32",
|
||||
"2803:1180::/32",
|
||||
"2803:1920::/32",
|
||||
"2803:2030::/32",
|
||||
"2803:2110::/32",
|
||||
"2803:2690::/32",
|
||||
"2803:2880::/32",
|
||||
@@ -155,6 +156,8 @@
|
||||
"2803:8de0::/32",
|
||||
"2803:8ec0::/32",
|
||||
"2803:9400::/32",
|
||||
"2803:9a30::/32",
|
||||
"2803:a230::/32",
|
||||
"2803:acd0::/32",
|
||||
"2803:c6e0::/32",
|
||||
"2803:dc90::/32",
|
||||
|
||||
+220
-154
File diff suppressed because it is too large
Load Diff
@@ -36,6 +36,8 @@
|
||||
"157.10.144.0/22",
|
||||
"160.30.184.0/23",
|
||||
"160.191.60.0/23",
|
||||
"163.128.96.0/24",
|
||||
"163.128.114.0/24",
|
||||
"163.223.203.0/24",
|
||||
"163.227.12.0/23",
|
||||
"163.227.18.0/23",
|
||||
@@ -58,6 +60,7 @@
|
||||
"2001:df5:d880::/47",
|
||||
"2001:df5:e700::/48",
|
||||
"2001:df6:3ec0::/48",
|
||||
"2001:df6:d9c0::/48",
|
||||
"2400:1440::/32",
|
||||
"2400:4e60::/32",
|
||||
"2400:50c0::/32",
|
||||
|
||||
@@ -22,6 +22,8 @@
|
||||
"102.134.160.0/20",
|
||||
"102.141.112.0/21",
|
||||
"102.165.128.0/19",
|
||||
"102.202.190.0/23",
|
||||
"102.204.97.0/24",
|
||||
"102.204.208.0/22",
|
||||
"102.205.8.0/23",
|
||||
"102.205.122.0/24",
|
||||
@@ -59,6 +61,8 @@
|
||||
"ipv6": [
|
||||
"2001:43f8:2a0::/48",
|
||||
"2001:43f8:17c0::/48",
|
||||
"2001:43fd:8800::/48",
|
||||
"2001:43ff:6800::/48",
|
||||
"2c0f:1340::/32",
|
||||
"2c0f:1840::/32",
|
||||
"2c0f:30c0::/32",
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"code": "BY",
|
||||
"name": "Belarus",
|
||||
"ipv4": [
|
||||
"5.44.44.0/24",
|
||||
"5.100.192.0/19",
|
||||
"31.24.88.0/21",
|
||||
"31.130.200.0/21",
|
||||
@@ -10,6 +11,7 @@
|
||||
"37.45.0.0/16",
|
||||
"37.212.0.0/14",
|
||||
"45.128.205.0/24",
|
||||
"45.129.186.0/24",
|
||||
"46.16.35.0/24",
|
||||
"46.28.96.0/21",
|
||||
"46.53.128.0/17",
|
||||
@@ -31,6 +33,7 @@
|
||||
"82.209.192.0/18",
|
||||
"83.137.197.0/24",
|
||||
"86.57.128.0/17",
|
||||
"87.232.64.0/21",
|
||||
"87.252.224.0/19",
|
||||
"91.90.222.0/23",
|
||||
"91.149.128.0/18",
|
||||
@@ -39,7 +42,7 @@
|
||||
"93.84.0.0/15",
|
||||
"93.125.0.0/17",
|
||||
"93.177.124.0/24",
|
||||
"93.189.224.0/22",
|
||||
"93.189.224.0/23",
|
||||
"93.191.96.0/21",
|
||||
"95.128.64.0/21",
|
||||
"95.130.80.0/21",
|
||||
@@ -110,6 +113,7 @@
|
||||
"2001:67c:2268::/48",
|
||||
"2001:7f8:5a::/48",
|
||||
"2001:7f8:8b::/48",
|
||||
"2001:7f9:10::/48",
|
||||
"2a00:1760::/29",
|
||||
"2a00:6440::/32",
|
||||
"2a00:c820::/29",
|
||||
|
||||
@@ -8,8 +8,8 @@
|
||||
"45.67.176.0/22",
|
||||
"45.70.228.0/22",
|
||||
"45.70.240.0/22",
|
||||
"45.87.220.0/22",
|
||||
"45.136.44.0/22",
|
||||
"45.143.220.0/22",
|
||||
"45.145.76.0/22",
|
||||
"45.151.24.0/22",
|
||||
"45.180.120.0/22",
|
||||
@@ -18,9 +18,6 @@
|
||||
"45.234.88.0/22",
|
||||
"46.102.152.0/24",
|
||||
"46.102.252.0/23",
|
||||
"77.81.120.0/23",
|
||||
"77.247.108.0/23",
|
||||
"77.247.110.0/24",
|
||||
"82.115.15.0/24",
|
||||
"83.150.236.0/22",
|
||||
"85.204.74.0/24",
|
||||
@@ -75,6 +72,7 @@
|
||||
"141.98.92.0/22",
|
||||
"148.224.24.0/22",
|
||||
"152.89.8.0/22",
|
||||
"153.55.176.0/20",
|
||||
"160.238.136.0/22",
|
||||
"167.249.200.0/22",
|
||||
"168.90.244.0/22",
|
||||
@@ -93,9 +91,6 @@
|
||||
"179.63.216.0/21",
|
||||
"181.177.64.0/18",
|
||||
"181.233.124.0/22",
|
||||
"185.53.88.0/23",
|
||||
"185.53.90.0/24",
|
||||
"185.66.140.0/22",
|
||||
"185.77.128.0/22",
|
||||
"185.130.44.0/22",
|
||||
"185.131.222.0/23",
|
||||
@@ -126,7 +121,6 @@
|
||||
"193.203.37.0/24",
|
||||
"193.203.38.0/24",
|
||||
"194.38.28.0/22",
|
||||
"194.145.208.0/23",
|
||||
"195.80.32.0/22",
|
||||
"199.231.235.0/24",
|
||||
"200.10.194.0/24",
|
||||
@@ -162,16 +156,12 @@
|
||||
"2803:d520::/32",
|
||||
"2803:d5c0::/32",
|
||||
"2803:e510::/32",
|
||||
"2a04:2280::/29",
|
||||
"2a05:840::/30",
|
||||
"2a05:2ac0::/29",
|
||||
"2a05:6200::/29",
|
||||
"2a05:64c0::/29",
|
||||
"2a07:180::/32",
|
||||
"2a07:e00::/29",
|
||||
"2a07:a0c0::/29",
|
||||
"2a07:e000::/29",
|
||||
"2a0a:11c0::/29",
|
||||
"2a0d:7a00::/29",
|
||||
"2a0d:a740::/29",
|
||||
"2a10:de00::/29"
|
||||
"2a07:a0c0::/29"
|
||||
]
|
||||
}
|
||||
+170
-64
File diff suppressed because it is too large
Load Diff
@@ -24,6 +24,8 @@
|
||||
"102.68.152.0/22",
|
||||
"102.69.180.0/22",
|
||||
"102.135.176.0/21",
|
||||
"102.202.248.0/22",
|
||||
"102.203.4.0/22",
|
||||
"102.204.126.0/24",
|
||||
"102.205.123.0/24",
|
||||
"102.205.208.0/22",
|
||||
@@ -88,6 +90,7 @@
|
||||
"2001:43f8:3c0::/47",
|
||||
"2001:43f8:1460::/48",
|
||||
"2001:43ff:6000::/48",
|
||||
"2c0f:8a0::/32",
|
||||
"2c0f:e00::/28",
|
||||
"2c0f:fc0::/32",
|
||||
"2c0f:19c0::/32",
|
||||
|
||||
@@ -29,16 +29,19 @@
|
||||
"5.153.240.0/21",
|
||||
"5.154.170.0/24",
|
||||
"5.154.186.0/24",
|
||||
"5.159.193.0/24",
|
||||
"5.159.194.0/24",
|
||||
"5.172.128.0/20",
|
||||
"5.180.116.0/22",
|
||||
"5.180.132.0/22",
|
||||
"5.181.13.0/24",
|
||||
"5.182.61.0/24",
|
||||
"5.182.62.0/24",
|
||||
"5.182.248.0/22",
|
||||
"5.183.0.0/21",
|
||||
"5.187.36.0/23",
|
||||
"5.187.56.0/21",
|
||||
"5.226.144.0/21",
|
||||
"5.249.168.0/21",
|
||||
"5.252.136.0/22",
|
||||
"5.253.208.0/22",
|
||||
"5.255.56.0/24",
|
||||
@@ -86,6 +89,7 @@
|
||||
"45.10.176.0/22",
|
||||
"45.11.128.0/22",
|
||||
"45.11.220.0/22",
|
||||
"45.11.248.0/22",
|
||||
"45.12.68.0/22",
|
||||
"45.12.120.0/22",
|
||||
"45.12.252.0/24",
|
||||
@@ -135,7 +139,7 @@
|
||||
"45.141.96.0/22",
|
||||
"45.142.224.0/22",
|
||||
"45.143.124.0/22",
|
||||
"45.143.156.0/22",
|
||||
"45.143.156.0/23",
|
||||
"45.143.212.0/22",
|
||||
"45.144.20.0/22",
|
||||
"45.146.194.0/23",
|
||||
@@ -145,6 +149,7 @@
|
||||
"45.148.116.0/22",
|
||||
"45.148.236.0/22",
|
||||
"45.149.236.0/22",
|
||||
"45.150.248.0/22",
|
||||
"45.151.84.0/23",
|
||||
"45.151.212.0/22",
|
||||
"45.153.89.0/24",
|
||||
@@ -246,6 +251,7 @@
|
||||
"64.110.32.0/20",
|
||||
"65.18.128.0/18",
|
||||
"68.70.192.0/20",
|
||||
"72.251.208.0/20",
|
||||
"74.118.124.0/22",
|
||||
"77.32.224.0/20",
|
||||
"77.56.0.0/14",
|
||||
@@ -285,6 +291,7 @@
|
||||
"79.141.80.0/20",
|
||||
"79.142.128.0/20",
|
||||
"80.67.144.0/20",
|
||||
"80.73.252.0/24",
|
||||
"80.74.128.0/19",
|
||||
"80.75.112.0/20",
|
||||
"80.75.192.0/20",
|
||||
@@ -313,6 +320,8 @@
|
||||
"81.23.64.0/20",
|
||||
"81.27.86.0/24",
|
||||
"81.62.0.0/15",
|
||||
"81.85.56.0/24",
|
||||
"81.85.88.0/22",
|
||||
"81.88.176.0/20",
|
||||
"81.90.184.0/22",
|
||||
"81.92.96.0/20",
|
||||
@@ -352,7 +361,8 @@
|
||||
"84.16.64.0/19",
|
||||
"84.20.32.0/19",
|
||||
"84.55.192.0/18",
|
||||
"84.72.0.0/14",
|
||||
"84.72.0.0/15",
|
||||
"84.74.0.0/16",
|
||||
"84.226.0.0/15",
|
||||
"84.234.16.0/20",
|
||||
"84.241.64.0/18",
|
||||
@@ -387,6 +397,7 @@
|
||||
"87.102.128.0/17",
|
||||
"87.117.70.0/23",
|
||||
"87.117.120.0/21",
|
||||
"87.236.178.0/23",
|
||||
"87.236.200.0/21",
|
||||
"87.237.168.0/21",
|
||||
"87.238.136.0/21",
|
||||
@@ -515,7 +526,6 @@
|
||||
"91.209.169.0/24",
|
||||
"91.209.170.0/24",
|
||||
"91.209.204.0/24",
|
||||
"91.210.70.0/24",
|
||||
"91.211.1.0/24",
|
||||
"91.212.29.0/24",
|
||||
"91.212.43.0/24",
|
||||
@@ -539,11 +549,9 @@
|
||||
"91.213.159.0/24",
|
||||
"91.213.171.0/24",
|
||||
"91.213.194.0/24",
|
||||
"91.213.202.0/24",
|
||||
"91.213.227.0/24",
|
||||
"91.214.168.0/22",
|
||||
"91.214.188.0/22",
|
||||
"91.216.36.0/24",
|
||||
"91.216.40.0/24",
|
||||
"91.216.83.0/24",
|
||||
"91.216.84.0/23",
|
||||
@@ -585,6 +593,7 @@
|
||||
"91.229.102.0/23",
|
||||
"91.229.140.0/24",
|
||||
"91.230.140.0/23",
|
||||
"91.230.216.0/24",
|
||||
"91.230.249.0/24",
|
||||
"91.231.204.0/24",
|
||||
"91.231.232.0/24",
|
||||
@@ -600,7 +609,6 @@
|
||||
"91.238.144.0/24",
|
||||
"91.238.226.0/24",
|
||||
"91.239.52.0/24",
|
||||
"91.239.75.0/24",
|
||||
"91.240.18.0/23",
|
||||
"91.245.160.0/20",
|
||||
"91.245.218.0/24",
|
||||
@@ -674,8 +682,11 @@
|
||||
"94.231.80.0/20",
|
||||
"94.244.192.0/18",
|
||||
"94.247.216.0/21",
|
||||
"95.36.96.0/21",
|
||||
"95.128.32.0/21",
|
||||
"95.128.80.0/21",
|
||||
"95.128.157.0/24",
|
||||
"95.128.199.0/24",
|
||||
"95.130.200.0/21",
|
||||
"95.143.48.0/20",
|
||||
"95.152.64.0/18",
|
||||
@@ -688,6 +699,7 @@
|
||||
"103.55.232.0/22",
|
||||
"103.180.192.0/23",
|
||||
"103.189.238.0/23",
|
||||
"104.128.16.0/20",
|
||||
"109.61.104.0/21",
|
||||
"109.69.152.0/21",
|
||||
"109.70.112.0/21",
|
||||
@@ -731,7 +743,9 @@
|
||||
"131.102.0.0/16",
|
||||
"131.117.0.0/17",
|
||||
"131.152.0.0/16",
|
||||
"131.222.200.0/24",
|
||||
"134.21.0.0/16",
|
||||
"134.82.64.0/20",
|
||||
"134.90.216.0/21",
|
||||
"136.144.20.0/23",
|
||||
"136.144.36.0/22",
|
||||
@@ -740,7 +754,8 @@
|
||||
"137.62.0.0/16",
|
||||
"137.138.0.0/16",
|
||||
"137.156.0.0/16",
|
||||
"138.81.0.0/16",
|
||||
"138.81.0.0/17",
|
||||
"138.81.128.0/18",
|
||||
"138.124.0.0/17",
|
||||
"138.124.154.0/23",
|
||||
"138.124.176.0/24",
|
||||
@@ -762,7 +777,6 @@
|
||||
"139.28.96.0/22",
|
||||
"139.149.0.0/16",
|
||||
"139.178.0.0/18",
|
||||
"141.171.0.0/16",
|
||||
"141.195.80.0/20",
|
||||
"141.249.0.0/16",
|
||||
"143.180.0.0/16",
|
||||
@@ -821,6 +835,8 @@
|
||||
"152.88.0.0/16",
|
||||
"152.89.80.0/22",
|
||||
"152.96.0.0/16",
|
||||
"153.51.64.0/18",
|
||||
"153.75.48.0/20",
|
||||
"153.92.41.0/24",
|
||||
"153.92.47.0/24",
|
||||
"153.108.0.0/15",
|
||||
@@ -870,11 +886,27 @@
|
||||
"160.62.0.0/15",
|
||||
"160.85.0.0/16",
|
||||
"160.98.0.0/16",
|
||||
"160.213.0.0/16",
|
||||
"160.213.0.0/19",
|
||||
"160.213.40.0/21",
|
||||
"160.213.48.0/22",
|
||||
"160.213.64.0/20",
|
||||
"160.213.80.0/22",
|
||||
"160.213.88.0/22",
|
||||
"160.213.102.0/23",
|
||||
"160.213.104.0/23",
|
||||
"160.213.108.0/22",
|
||||
"160.213.112.0/21",
|
||||
"160.213.148.0/22",
|
||||
"160.213.152.0/22",
|
||||
"160.213.172.0/22",
|
||||
"160.213.176.0/21",
|
||||
"160.213.192.0/20",
|
||||
"160.213.208.0/21",
|
||||
"160.219.0.0/16",
|
||||
"161.20.0.0/16",
|
||||
"161.62.0.0/16",
|
||||
"161.78.0.0/16",
|
||||
"161.104.192.0/19",
|
||||
"162.12.200.0/22",
|
||||
"162.21.0.0/16",
|
||||
"162.23.0.0/16",
|
||||
@@ -920,7 +952,7 @@
|
||||
"178.22.104.0/21",
|
||||
"178.23.168.0/21",
|
||||
"178.38.0.0/15",
|
||||
"178.82.0.0/15",
|
||||
"178.82.0.0/16",
|
||||
"178.157.84.0/22",
|
||||
"178.174.0.0/18",
|
||||
"178.174.64.0/19",
|
||||
@@ -932,10 +964,12 @@
|
||||
"178.237.80.0/20",
|
||||
"178.238.0.0/22",
|
||||
"178.238.160.0/20",
|
||||
"178.239.38.0/24",
|
||||
"178.250.24.0/21",
|
||||
"178.250.56.0/21",
|
||||
"178.250.128.0/21",
|
||||
"178.251.124.0/22",
|
||||
"179.237.64.0/18",
|
||||
"185.0.30.0/23",
|
||||
"185.0.40.0/26",
|
||||
"185.1.59.0/24",
|
||||
@@ -950,11 +984,13 @@
|
||||
"185.2.200.0/22",
|
||||
"185.5.32.0/22",
|
||||
"185.5.56.0/22",
|
||||
"185.5.131.0/24",
|
||||
"185.6.168.0/22",
|
||||
"185.7.213.0/24",
|
||||
"185.8.208.0/22",
|
||||
"185.10.52.0/22",
|
||||
"185.10.224.0/22",
|
||||
"185.10.242.0/24",
|
||||
"185.11.56.0/22",
|
||||
"185.11.168.0/22",
|
||||
"185.12.4.0/22",
|
||||
@@ -1042,7 +1078,6 @@
|
||||
"185.58.128.0/22",
|
||||
"185.59.52.0/22",
|
||||
"185.60.52.0/22",
|
||||
"185.60.180.0/22",
|
||||
"185.62.80.0/22",
|
||||
"185.62.104.0/22",
|
||||
"185.62.168.0/22",
|
||||
@@ -1153,6 +1188,7 @@
|
||||
"185.96.76.0/22",
|
||||
"185.97.100.0/22",
|
||||
"185.97.136.0/22",
|
||||
"185.98.24.0/24",
|
||||
"185.98.28.0/22",
|
||||
"185.98.72.0/22",
|
||||
"185.98.120.0/22",
|
||||
@@ -1177,7 +1213,6 @@
|
||||
"185.110.72.0/22",
|
||||
"185.110.88.0/22",
|
||||
"185.110.100.0/22",
|
||||
"185.110.152.0/22",
|
||||
"185.110.184.0/22",
|
||||
"185.110.196.0/22",
|
||||
"185.110.220.0/22",
|
||||
@@ -1207,6 +1242,7 @@
|
||||
"185.125.196.0/22",
|
||||
"185.125.212.0/22",
|
||||
"185.126.220.0/22",
|
||||
"185.127.43.0/24",
|
||||
"185.127.112.0/22",
|
||||
"185.127.172.0/22",
|
||||
"185.127.204.0/22",
|
||||
@@ -1249,6 +1285,7 @@
|
||||
"185.150.52.0/22",
|
||||
"185.151.160.0/21",
|
||||
"185.152.16.0/22",
|
||||
"185.152.168.0/22",
|
||||
"185.152.224.0/22",
|
||||
"185.153.104.0/22",
|
||||
"185.154.36.0/22",
|
||||
@@ -1276,8 +1313,8 @@
|
||||
"185.164.152.0/22",
|
||||
"185.165.128.0/22",
|
||||
"185.165.208.0/22",
|
||||
"185.166.0.0/22",
|
||||
"185.166.80.0/22",
|
||||
"185.166.93.0/24",
|
||||
"185.166.96.0/22",
|
||||
"185.166.192.0/22",
|
||||
"185.167.4.0/22",
|
||||
@@ -1303,6 +1340,7 @@
|
||||
"185.173.128.0/24",
|
||||
"185.174.140.0/22",
|
||||
"185.174.216.0/22",
|
||||
"185.176.134.0/24",
|
||||
"185.176.224.0/22",
|
||||
"185.176.236.0/22",
|
||||
"185.177.60.0/22",
|
||||
@@ -1324,7 +1362,6 @@
|
||||
"185.187.120.0/22",
|
||||
"185.187.228.0/22",
|
||||
"185.188.15.0/24",
|
||||
"185.188.18.0/24",
|
||||
"185.188.44.0/22",
|
||||
"185.188.52.0/22",
|
||||
"185.188.152.0/22",
|
||||
@@ -1436,6 +1473,7 @@
|
||||
"185.235.156.0/22",
|
||||
"185.235.188.0/22",
|
||||
"185.237.24.0/22",
|
||||
"185.237.93.0/24",
|
||||
"185.237.108.0/22",
|
||||
"185.237.112.0/21",
|
||||
"185.237.120.0/22",
|
||||
@@ -1470,6 +1508,7 @@
|
||||
"185.251.56.0/22",
|
||||
"185.252.240.0/22",
|
||||
"185.253.111.0/24",
|
||||
"185.253.131.0/24",
|
||||
"185.253.192.0/22",
|
||||
"185.253.204.0/22",
|
||||
"185.254.76.0/22",
|
||||
@@ -1485,6 +1524,7 @@
|
||||
"188.92.224.0/21",
|
||||
"188.94.176.0/21",
|
||||
"188.94.189.0/24",
|
||||
"188.137.160.0/20",
|
||||
"188.154.0.0/15",
|
||||
"188.184.0.0/15",
|
||||
"188.190.108.0/22",
|
||||
@@ -1641,8 +1681,6 @@
|
||||
"193.5.248.0/23",
|
||||
"193.5.252.0/23",
|
||||
"193.5.254.0/24",
|
||||
"193.8.9.0/24",
|
||||
"193.8.10.0/23",
|
||||
"193.8.16.0/20",
|
||||
"193.8.40.0/22",
|
||||
"193.8.44.0/24",
|
||||
@@ -1658,8 +1696,7 @@
|
||||
"193.8.136.0/23",
|
||||
"193.8.140.0/23",
|
||||
"193.8.142.0/24",
|
||||
"193.8.144.0/20",
|
||||
"193.8.160.0/22",
|
||||
"193.8.144.0/22",
|
||||
"193.8.165.0/24",
|
||||
"193.8.166.0/24",
|
||||
"193.8.170.0/24",
|
||||
@@ -1896,6 +1933,7 @@
|
||||
"193.164.24.0/22",
|
||||
"193.164.145.0/24",
|
||||
"193.164.244.0/23",
|
||||
"193.168.165.0/24",
|
||||
"193.168.212.0/22",
|
||||
"193.169.2.0/23",
|
||||
"193.169.82.0/23",
|
||||
@@ -1904,7 +1942,6 @@
|
||||
"193.169.186.0/23",
|
||||
"193.178.156.0/23",
|
||||
"193.188.8.0/22",
|
||||
"193.188.134.112/29",
|
||||
"193.188.224.0/20",
|
||||
"193.188.240.0/21",
|
||||
"193.192.224.0/19",
|
||||
@@ -1912,6 +1949,7 @@
|
||||
"193.194.138.0/23",
|
||||
"193.200.5.0/24",
|
||||
"193.200.79.0/24",
|
||||
"193.200.115.0/24",
|
||||
"193.200.144.0/24",
|
||||
"193.200.157.0/24",
|
||||
"193.200.181.0/24",
|
||||
@@ -1920,6 +1958,7 @@
|
||||
"193.200.196.0/24",
|
||||
"193.200.220.0/24",
|
||||
"193.200.223.0/24",
|
||||
"193.201.22.0/24",
|
||||
"193.201.33.0/24",
|
||||
"193.201.122.0/23",
|
||||
"193.201.150.192/26",
|
||||
@@ -2083,6 +2122,7 @@
|
||||
"194.5.228.0/22",
|
||||
"194.6.160.0/19",
|
||||
"194.6.247.0/24",
|
||||
"194.8.15.0/24",
|
||||
"194.8.78.0/23",
|
||||
"194.9.12.0/23",
|
||||
"194.9.34.0/23",
|
||||
@@ -2115,7 +2155,6 @@
|
||||
"194.11.218.0/23",
|
||||
"194.11.221.0/24",
|
||||
"194.11.222.0/23",
|
||||
"194.11.228.0/23",
|
||||
"194.11.232.0/23",
|
||||
"194.11.236.0/23",
|
||||
"194.11.238.0/24",
|
||||
@@ -2178,7 +2217,6 @@
|
||||
"194.56.0.0/18",
|
||||
"194.56.64.0/21",
|
||||
"194.56.96.0/19",
|
||||
"194.56.128.0/20",
|
||||
"194.56.152.0/21",
|
||||
"194.56.160.0/21",
|
||||
"194.56.174.0/23",
|
||||
@@ -2225,6 +2263,7 @@
|
||||
"194.116.180.0/23",
|
||||
"194.116.196.0/23",
|
||||
"194.116.210.0/23",
|
||||
"194.116.254.0/23",
|
||||
"194.117.50.64/26",
|
||||
"194.117.78.0/24",
|
||||
"194.117.90.0/24",
|
||||
@@ -2238,7 +2277,6 @@
|
||||
"194.124.148.0/22",
|
||||
"194.124.152.0/22",
|
||||
"194.124.156.0/23",
|
||||
"194.124.160.0/21",
|
||||
"194.124.176.0/21",
|
||||
"194.124.184.0/22",
|
||||
"194.124.201.0/24",
|
||||
@@ -2260,7 +2298,7 @@
|
||||
"194.126.177.0/24",
|
||||
"194.126.200.0/23",
|
||||
"194.126.218.0/24",
|
||||
"194.140.194.0/23",
|
||||
"194.140.194.0/24",
|
||||
"194.145.157.0/24",
|
||||
"194.146.16.0/22",
|
||||
"194.146.20.0/23",
|
||||
@@ -2317,6 +2355,7 @@
|
||||
"194.163.64.0/22",
|
||||
"194.164.218.0/24",
|
||||
"194.165.44.0/24",
|
||||
"194.169.158.0/24",
|
||||
"194.169.199.0/24",
|
||||
"194.169.219.0/24",
|
||||
"194.176.104.0/24",
|
||||
@@ -2327,7 +2366,6 @@
|
||||
"194.182.160.0/19",
|
||||
"194.187.88.0/22",
|
||||
"194.191.0.0/16",
|
||||
"194.204.64.0/19",
|
||||
"194.209.0.0/16",
|
||||
"194.213.7.0/24",
|
||||
"194.230.0.0/16",
|
||||
@@ -2368,6 +2406,7 @@
|
||||
"195.48.0.0/16",
|
||||
"195.49.0.0/17",
|
||||
"195.60.80.192/27",
|
||||
"195.60.91.128/26",
|
||||
"195.60.93.128/26",
|
||||
"195.60.192.0/22",
|
||||
"195.62.86.0/23",
|
||||
@@ -2522,8 +2561,9 @@
|
||||
"212.41.64.0/18",
|
||||
"212.41.192.0/19",
|
||||
"212.42.128.0/19",
|
||||
"212.43.128.0/19",
|
||||
"212.43.128.0/20",
|
||||
"212.45.192.0/19",
|
||||
"212.47.53.0/24",
|
||||
"212.47.160.0/19",
|
||||
"212.51.128.0/19",
|
||||
"212.55.192.0/19",
|
||||
@@ -2574,6 +2614,8 @@
|
||||
"213.167.224.0/22",
|
||||
"213.170.212.0/22",
|
||||
"213.173.40.0/21",
|
||||
"213.177.189.0/24",
|
||||
"213.177.190.0/24",
|
||||
"213.180.160.0/19",
|
||||
"213.184.88.0/22",
|
||||
"213.188.32.0/19",
|
||||
@@ -2621,13 +2663,15 @@
|
||||
"217.162.0.0/16",
|
||||
"217.168.32.0/19",
|
||||
"217.169.128.0/19",
|
||||
"217.179.56.0/22",
|
||||
"217.180.57.0/24",
|
||||
"217.192.0.0/15",
|
||||
"217.194.48.0/20",
|
||||
"217.196.176.0/20",
|
||||
"217.197.101.0/24",
|
||||
"217.197.128.0/21",
|
||||
"217.197.208.0/20"
|
||||
"217.197.208.0/20",
|
||||
"220.42.0.0/15"
|
||||
],
|
||||
"ipv6": [
|
||||
"2001:618::/32",
|
||||
@@ -2662,6 +2706,7 @@
|
||||
"2001:678:d78::/48",
|
||||
"2001:678:d98::/48",
|
||||
"2001:678:d9c::/48",
|
||||
"2001:678:e04::/48",
|
||||
"2001:678:e44::/48",
|
||||
"2001:678:e48::/48",
|
||||
"2001:678:ec0::/48",
|
||||
@@ -2669,6 +2714,7 @@
|
||||
"2001:678:f9c::/48",
|
||||
"2001:678:fbc::/48",
|
||||
"2001:67c:8::/48",
|
||||
"2001:67c:88::/48",
|
||||
"2001:67c:94::/48",
|
||||
"2001:67c:c0::/48",
|
||||
"2001:67c:c8::/48",
|
||||
@@ -2713,12 +2759,6 @@
|
||||
"2001:67c:920::/48",
|
||||
"2001:67c:938::/48",
|
||||
"2001:67c:990::/48",
|
||||
"2001:67c:99c::/48",
|
||||
"2001:67c:9a0::/48",
|
||||
"2001:67c:9a4::/48",
|
||||
"2001:67c:9a8::/48",
|
||||
"2001:67c:9ac::/48",
|
||||
"2001:67c:9b0::/48",
|
||||
"2001:67c:a7c::/48",
|
||||
"2001:67c:ac0::/48",
|
||||
"2001:67c:bf4::/48",
|
||||
@@ -2750,7 +2790,6 @@
|
||||
"2001:67c:15dc::/48",
|
||||
"2001:67c:16dc::/48",
|
||||
"2001:67c:16e0::/48",
|
||||
"2001:67c:1730::/48",
|
||||
"2001:67c:1780::/48",
|
||||
"2001:67c:17a4::/48",
|
||||
"2001:67c:17b0::/48",
|
||||
@@ -2761,6 +2800,7 @@
|
||||
"2001:67c:19e0::/48",
|
||||
"2001:67c:19fc::/48",
|
||||
"2001:67c:1bd0::/48",
|
||||
"2001:67c:2030::/48",
|
||||
"2001:67c:2068::/48",
|
||||
"2001:67c:20ac::/48",
|
||||
"2001:67c:20f8::/48",
|
||||
@@ -2768,6 +2808,7 @@
|
||||
"2001:67c:2220::/48",
|
||||
"2001:67c:2230::/48",
|
||||
"2001:67c:2238::/48",
|
||||
"2001:67c:22dc::/48",
|
||||
"2001:67c:22e8::/48",
|
||||
"2001:67c:2350::/48",
|
||||
"2001:67c:2488::/48",
|
||||
@@ -2781,7 +2822,6 @@
|
||||
"2001:67c:2984::/48",
|
||||
"2001:67c:29a8::/48",
|
||||
"2001:67c:2a5c::/48",
|
||||
"2001:67c:2b2c::/48",
|
||||
"2001:67c:2b54::/48",
|
||||
"2001:67c:2be0::/48",
|
||||
"2001:67c:2c08::/48",
|
||||
@@ -2823,6 +2863,7 @@
|
||||
"2001:7f8:14a::/48",
|
||||
"2001:7f8:15c::/48",
|
||||
"2001:7f8:16c::/48",
|
||||
"2001:7f8:172::/48",
|
||||
"2001:8a8::/29",
|
||||
"2001:8e0::/29",
|
||||
"2001:918::/29",
|
||||
@@ -2860,7 +2901,7 @@
|
||||
"2a00:10c0::/32",
|
||||
"2a00:1128::/32",
|
||||
"2a00:17c8::/29",
|
||||
"2a00:17e0::/32",
|
||||
"2a00:17e0::/29",
|
||||
"2a00:1840::/32",
|
||||
"2a00:41c0::/29",
|
||||
"2a00:4740::/32",
|
||||
@@ -2887,7 +2928,6 @@
|
||||
"2a00:b0a0::/29",
|
||||
"2a00:b420::/32",
|
||||
"2a00:bae0::/32",
|
||||
"2a00:bd00::/32",
|
||||
"2a00:bd80::/32",
|
||||
"2a00:bf60::/32",
|
||||
"2a00:c1e0::/29",
|
||||
@@ -2965,7 +3005,6 @@
|
||||
"2a01:b540::/29",
|
||||
"2a01:b7c0::/29",
|
||||
"2a01:b920::/32",
|
||||
"2a01:ba40::/32",
|
||||
"2a01:bd00::/32",
|
||||
"2a01:bd20::/32",
|
||||
"2a01:bf00::/32",
|
||||
@@ -2976,7 +3015,6 @@
|
||||
"2a02:110::/32",
|
||||
"2a02:168::/30",
|
||||
"2a02:200::/29",
|
||||
"2a02:210::/32",
|
||||
"2a02:2a8::/29",
|
||||
"2a02:368::/29",
|
||||
"2a02:370::/32",
|
||||
@@ -3018,7 +3056,6 @@
|
||||
"2a02:6260::/32",
|
||||
"2a02:6500::/29",
|
||||
"2a02:6740::/32",
|
||||
"2a02:7420::/32",
|
||||
"2a02:7b80::/32",
|
||||
"2a02:7dc0::/32",
|
||||
"2a02:7e60::/32",
|
||||
@@ -3065,7 +3102,6 @@
|
||||
"2a03:72a0::/32",
|
||||
"2a03:7520::/32",
|
||||
"2a03:75a0::/32",
|
||||
"2a03:8540::/32",
|
||||
"2a03:8620::/32",
|
||||
"2a03:8780::/32",
|
||||
"2a03:8b20::/32",
|
||||
@@ -3074,6 +3110,7 @@
|
||||
"2a03:9660::/32",
|
||||
"2a03:97a0::/32",
|
||||
"2a03:a360::/32",
|
||||
"2a03:abc0::/29",
|
||||
"2a03:b240::/29",
|
||||
"2a03:b680::/29",
|
||||
"2a03:b940::/32",
|
||||
@@ -3126,6 +3163,7 @@
|
||||
"2a05:4740::/29",
|
||||
"2a05:4880::/29",
|
||||
"2a05:51c0::/29",
|
||||
"2a05:53c0::/29",
|
||||
"2a05:5d00::/29",
|
||||
"2a05:61c0::/29",
|
||||
"2a05:6a00::/29",
|
||||
@@ -3158,11 +3196,11 @@
|
||||
"2a06:1a40::/29",
|
||||
"2a06:1b00::/29",
|
||||
"2a06:1d80::/29",
|
||||
"2a06:24c0::/29",
|
||||
"2a06:26c0::/29",
|
||||
"2a06:3f40::/29",
|
||||
"2a06:5100::/29",
|
||||
"2a06:56c0::/29",
|
||||
"2a06:5880::/29",
|
||||
"2a06:6400::/29",
|
||||
"2a06:6540::/29",
|
||||
"2a06:6700::/29",
|
||||
@@ -3245,7 +3283,6 @@
|
||||
"2a0a:5dc0::/29",
|
||||
"2a0a:5ec0::/29",
|
||||
"2a0a:6400::/29",
|
||||
"2a0a:6980::/32",
|
||||
"2a0a:69c0::/29",
|
||||
"2a0a:6ac0::/32",
|
||||
"2a0a:6bc0::/29",
|
||||
@@ -3263,6 +3300,7 @@
|
||||
"2a0a:de00::/32",
|
||||
"2a0a:df80::/29",
|
||||
"2a0a:e5c0::/29",
|
||||
"2a0a:e7c0::/32",
|
||||
"2a0a:fb00::/32",
|
||||
"2a0b:80::/29",
|
||||
"2a0b:1200::/29",
|
||||
@@ -3370,10 +3408,12 @@
|
||||
"2a0e:2b80::/32",
|
||||
"2a0e:3080::/29",
|
||||
"2a0e:3bc0::/29",
|
||||
"2a0e:46c0::/29",
|
||||
"2a0e:5040::/29",
|
||||
"2a0e:63c0::/29",
|
||||
"2a0e:6b00::/29",
|
||||
"2a0e:7d40::/29",
|
||||
"2a0e:8f00::/29",
|
||||
"2a0e:97c0::/29",
|
||||
"2a0e:9e00::/29",
|
||||
"2a0e:a400::/29",
|
||||
@@ -3396,9 +3436,9 @@
|
||||
"2a0f:5bc0::/29",
|
||||
"2a0f:6c40::/29",
|
||||
"2a0f:6cc0::/29",
|
||||
"2a0f:7940::/29",
|
||||
"2a0f:7a00::/29",
|
||||
"2a0f:7e00::/29",
|
||||
"2a0f:8140::/29",
|
||||
"2a0f:9180::/29",
|
||||
"2a0f:98c0::/29",
|
||||
"2a0f:9900::/29",
|
||||
@@ -3451,6 +3491,7 @@
|
||||
"2a11:2780::/29",
|
||||
"2a11:7980::/32",
|
||||
"2a11:8b80::/29",
|
||||
"2a11:a340::/32",
|
||||
"2a11:cac0::/29",
|
||||
"2a11:ce40::/29",
|
||||
"2a11:e0c0::/29",
|
||||
@@ -3459,6 +3500,8 @@
|
||||
"2a12:1fc0::/29",
|
||||
"2a12:44c0::/29",
|
||||
"2a12:5a40::/29",
|
||||
"2a12:5ec0::/32",
|
||||
"2a12:62c0::/29",
|
||||
"2a12:87c0::/29",
|
||||
"2a12:9a40::/29",
|
||||
"2a12:af80::/29",
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
"102.135.184.0/22",
|
||||
"102.135.191.0/24",
|
||||
"102.136.0.0/14",
|
||||
"102.203.40.0/22",
|
||||
"102.205.12.0/22",
|
||||
"102.205.72.0/23",
|
||||
"102.206.120.0/22",
|
||||
@@ -236,7 +237,7 @@
|
||||
],
|
||||
"ipv6": [
|
||||
"2001:42d8::/32",
|
||||
"2001:43f8:940::/48",
|
||||
"2001:43f8:940::/47",
|
||||
"2001:43f8:b20::/48",
|
||||
"2001:43f8:b70::/48",
|
||||
"2001:43f8:14a0::/48",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"45.65.240.0/22",
|
||||
"45.68.16.0/22",
|
||||
"45.68.44.0/22",
|
||||
"45.68.114.0/23",
|
||||
"45.68.124.0/22",
|
||||
"45.71.8.0/22",
|
||||
"45.71.44.0/22",
|
||||
"45.160.4.0/22",
|
||||
@@ -232,6 +234,7 @@
|
||||
"170.247.204.0/22",
|
||||
"170.247.216.0/22",
|
||||
"177.12.88.0/22",
|
||||
"177.36.28.0/22",
|
||||
"177.128.112.0/22",
|
||||
"177.221.140.0/23",
|
||||
"179.0.2.0/23",
|
||||
@@ -326,7 +329,8 @@
|
||||
"190.83.124.0/22",
|
||||
"190.89.40.0/22",
|
||||
"190.91.0.0/16",
|
||||
"190.93.224.0/20",
|
||||
"190.93.228.0/22",
|
||||
"190.93.232.0/21",
|
||||
"190.95.0.0/17",
|
||||
"190.96.0.0/18",
|
||||
"190.96.64.0/19",
|
||||
@@ -587,6 +591,8 @@
|
||||
"200.115.184.0/24",
|
||||
"200.119.224.0/19",
|
||||
"200.120.0.0/16",
|
||||
"200.123.42.0/24",
|
||||
"200.123.44.0/24",
|
||||
"200.124.32.0/19",
|
||||
"200.126.32.0/20",
|
||||
"200.126.49.0/24",
|
||||
@@ -674,6 +680,7 @@
|
||||
"2801:14:7000::/48",
|
||||
"2801:14:9000::/48",
|
||||
"2801:15:7800::/48",
|
||||
"2801:15:8400::/48",
|
||||
"2801:15:d000::/48",
|
||||
"2801:15:f000::/48",
|
||||
"2801:15:f800::/48",
|
||||
@@ -684,6 +691,7 @@
|
||||
"2801:19:2000::/48",
|
||||
"2801:1a:1000::/48",
|
||||
"2801:1a:8000::/48",
|
||||
"2801:1a:8400::/48",
|
||||
"2801:1b:1000::/48",
|
||||
"2801:1b:4000::/48",
|
||||
"2801:1b:6000::/48",
|
||||
@@ -700,6 +708,7 @@
|
||||
"2801:161::/44",
|
||||
"2801:198::/32",
|
||||
"2803:50::/32",
|
||||
"2803:130::/32",
|
||||
"2803:150::/32",
|
||||
"2803:380::/32",
|
||||
"2803:410::/32",
|
||||
@@ -726,6 +735,7 @@
|
||||
"2803:1340::/32",
|
||||
"2803:17c0::/32",
|
||||
"2803:1bd0::/32",
|
||||
"2803:1c30::/32",
|
||||
"2803:1ca0::/32",
|
||||
"2803:2120::/32",
|
||||
"2803:2210::/32",
|
||||
@@ -778,6 +788,7 @@
|
||||
"2803:43c0::/32",
|
||||
"2803:43e0::/32",
|
||||
"2803:4410::/32",
|
||||
"2803:4430::/32",
|
||||
"2803:4640::/32",
|
||||
"2803:46a0::/32",
|
||||
"2803:4720::/32",
|
||||
@@ -792,6 +803,7 @@
|
||||
"2803:4f90::/32",
|
||||
"2803:5010::/32",
|
||||
"2803:5200::/32",
|
||||
"2803:5430::/32",
|
||||
"2803:54a0::/32",
|
||||
"2803:55d0::/32",
|
||||
"2803:56c0::/32",
|
||||
@@ -868,6 +880,8 @@
|
||||
"2803:a9e0::/32",
|
||||
"2803:aa00::/32",
|
||||
"2803:ab40::/32",
|
||||
"2803:afd0::/32",
|
||||
"2803:b030::/32",
|
||||
"2803:b110::/32",
|
||||
"2803:b180::/32",
|
||||
"2803:b1c0::/32",
|
||||
@@ -915,6 +929,7 @@
|
||||
"2803:dbe0::/32",
|
||||
"2803:dc60::/32",
|
||||
"2803:dca0::/32",
|
||||
"2803:dfd0::/32",
|
||||
"2803:dfe0::/32",
|
||||
"2803:e180::/32",
|
||||
"2803:e260::/32",
|
||||
@@ -936,6 +951,7 @@
|
||||
"2803:ed80::/32",
|
||||
"2803:ef80::/32",
|
||||
"2803:ef90::/32",
|
||||
"2803:f230::/32",
|
||||
"2803:f390::/32",
|
||||
"2803:f3a0::/32",
|
||||
"2803:f3d0::/32",
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
"41.223.28.0/22",
|
||||
"102.132.16.0/20",
|
||||
"102.135.189.0/24",
|
||||
"102.203.180.0/22",
|
||||
"102.204.240.0/22",
|
||||
"102.208.54.0/23",
|
||||
"102.208.81.0/24",
|
||||
@@ -71,6 +72,7 @@
|
||||
"2001:43fe:c000::/48",
|
||||
"2001:43ff:8000::/44",
|
||||
"2001:43ff:b000::/48",
|
||||
"2c0f:a20::/32",
|
||||
"2c0f:3100::/32",
|
||||
"2c0f:3640::/32",
|
||||
"2c0f:3d40::/32",
|
||||
|
||||
@@ -237,7 +237,8 @@
|
||||
"42.244.0.0/14",
|
||||
"42.248.0.0/13",
|
||||
"43.136.0.0/13",
|
||||
"43.144.0.0/13",
|
||||
"43.144.0.0/15",
|
||||
"43.148.0.0/14",
|
||||
"43.176.0.0/12",
|
||||
"43.192.0.0/14",
|
||||
"43.196.0.0/15",
|
||||
@@ -470,7 +471,6 @@
|
||||
"43.251.4.0/22",
|
||||
"43.251.8.0/22",
|
||||
"43.251.36.0/22",
|
||||
"43.251.100.0/22",
|
||||
"43.251.116.0/22",
|
||||
"43.251.192.0/22",
|
||||
"43.251.232.0/21",
|
||||
@@ -665,7 +665,6 @@
|
||||
"45.127.156.0/22",
|
||||
"45.127.216.0/22",
|
||||
"45.149.16.0/22",
|
||||
"45.152.24.0/22",
|
||||
"45.248.8.0/22",
|
||||
"45.248.80.0/21",
|
||||
"45.248.88.0/22",
|
||||
@@ -750,7 +749,11 @@
|
||||
"45.254.236.0/22",
|
||||
"45.254.240.0/22",
|
||||
"45.254.248.0/22",
|
||||
"45.255.0.0/17",
|
||||
"45.255.0.0/18",
|
||||
"45.255.64.0/19",
|
||||
"45.255.96.0/20",
|
||||
"45.255.112.0/21",
|
||||
"45.255.120.0/22",
|
||||
"45.255.136.0/21",
|
||||
"45.255.144.0/20",
|
||||
"45.255.160.0/19",
|
||||
@@ -1026,11 +1029,9 @@
|
||||
"103.12.232.0/22",
|
||||
"103.13.12.0/22",
|
||||
"103.13.124.0/22",
|
||||
"103.13.144.0/22",
|
||||
"103.13.196.0/22",
|
||||
"103.13.244.0/22",
|
||||
"103.14.84.0/22",
|
||||
"103.14.100.0/22",
|
||||
"103.14.132.0/22",
|
||||
"103.14.136.0/22",
|
||||
"103.14.156.0/22",
|
||||
@@ -1441,7 +1442,6 @@
|
||||
"103.64.192.0/18",
|
||||
"103.65.0.0/20",
|
||||
"103.65.16.0/22",
|
||||
"103.65.36.0/22",
|
||||
"103.65.48.0/20",
|
||||
"103.65.64.0/19",
|
||||
"103.65.100.0/22",
|
||||
@@ -1456,7 +1456,6 @@
|
||||
"103.66.92.0/22",
|
||||
"103.66.108.0/22",
|
||||
"103.66.200.0/22",
|
||||
"103.66.216.0/22",
|
||||
"103.66.240.0/20",
|
||||
"103.67.0.0/21",
|
||||
"103.67.8.0/22",
|
||||
@@ -1592,7 +1591,6 @@
|
||||
"103.81.184.0/22",
|
||||
"103.81.200.0/22",
|
||||
"103.81.232.0/22",
|
||||
"103.82.52.0/22",
|
||||
"103.82.60.0/22",
|
||||
"103.82.68.0/22",
|
||||
"103.82.84.0/22",
|
||||
@@ -2075,7 +2073,6 @@
|
||||
"103.142.172.0/23",
|
||||
"103.142.180.0/23",
|
||||
"103.142.186.0/23",
|
||||
"103.142.190.0/23",
|
||||
"103.142.220.0/23",
|
||||
"103.142.234.0/23",
|
||||
"103.142.238.0/23",
|
||||
@@ -2098,7 +2095,6 @@
|
||||
"103.145.38.0/23",
|
||||
"103.145.42.0/23",
|
||||
"103.145.60.0/23",
|
||||
"103.145.86.0/23",
|
||||
"103.145.92.0/22",
|
||||
"103.145.98.0/23",
|
||||
"103.145.188.0/22",
|
||||
@@ -2107,7 +2103,6 @@
|
||||
"103.146.124.0/22",
|
||||
"103.146.138.0/23",
|
||||
"103.146.236.0/23",
|
||||
"103.146.252.0/23",
|
||||
"103.147.12.0/23",
|
||||
"103.147.124.0/23",
|
||||
"103.147.198.0/23",
|
||||
@@ -2116,7 +2111,6 @@
|
||||
"103.149.6.0/23",
|
||||
"103.149.17.0/24",
|
||||
"103.149.44.0/23",
|
||||
"103.149.110.0/23",
|
||||
"103.149.132.0/23",
|
||||
"103.149.144.0/23",
|
||||
"103.149.181.0/24",
|
||||
@@ -2148,7 +2142,6 @@
|
||||
"103.151.158.0/23",
|
||||
"103.151.216.0/23",
|
||||
"103.151.228.0/23",
|
||||
"103.152.24.0/23",
|
||||
"103.152.28.0/22",
|
||||
"103.152.56.0/23",
|
||||
"103.152.76.0/23",
|
||||
@@ -2157,7 +2150,6 @@
|
||||
"103.152.152.0/23",
|
||||
"103.152.168.0/22",
|
||||
"103.152.186.0/23",
|
||||
"103.152.190.0/23",
|
||||
"103.152.192.0/23",
|
||||
"103.152.200.0/23",
|
||||
"103.152.208.0/23",
|
||||
@@ -2169,7 +2161,6 @@
|
||||
"103.153.100.0/23",
|
||||
"103.153.114.0/23",
|
||||
"103.153.122.0/23",
|
||||
"103.153.128.0/23",
|
||||
"103.153.132.0/23",
|
||||
"103.153.138.0/23",
|
||||
"103.153.146.0/23",
|
||||
@@ -2182,9 +2173,7 @@
|
||||
"103.154.162.0/23",
|
||||
"103.154.164.0/23",
|
||||
"103.154.168.0/23",
|
||||
"103.154.242.0/23",
|
||||
"103.155.14.0/23",
|
||||
"103.155.16.0/23",
|
||||
"103.155.34.0/23",
|
||||
"103.155.48.0/23",
|
||||
"103.155.76.0/23",
|
||||
@@ -2201,7 +2190,6 @@
|
||||
"103.156.186.0/23",
|
||||
"103.156.228.0/23",
|
||||
"103.157.30.0/23",
|
||||
"103.157.138.0/23",
|
||||
"103.157.174.0/23",
|
||||
"103.157.212.0/23",
|
||||
"103.157.234.0/23",
|
||||
@@ -2213,7 +2201,6 @@
|
||||
"103.158.190.0/23",
|
||||
"103.158.200.0/23",
|
||||
"103.158.224.0/23",
|
||||
"103.159.80.0/23",
|
||||
"103.159.122.0/23",
|
||||
"103.159.124.0/23",
|
||||
"103.159.134.0/23",
|
||||
@@ -2224,7 +2211,6 @@
|
||||
"103.160.254.0/23",
|
||||
"103.161.14.0/23",
|
||||
"103.161.102.0/23",
|
||||
"103.161.138.0/23",
|
||||
"103.161.208.0/23",
|
||||
"103.161.220.0/23",
|
||||
"103.161.254.0/23",
|
||||
@@ -2640,7 +2626,6 @@
|
||||
"103.230.44.0/22",
|
||||
"103.230.96.0/22",
|
||||
"103.230.110.0/23",
|
||||
"103.230.128.0/23",
|
||||
"103.230.196.0/22",
|
||||
"103.230.200.0/21",
|
||||
"103.230.212.0/22",
|
||||
@@ -2736,7 +2721,6 @@
|
||||
"103.240.200.0/22",
|
||||
"103.240.244.0/22",
|
||||
"103.241.12.0/22",
|
||||
"103.241.72.0/22",
|
||||
"103.241.92.0/22",
|
||||
"103.241.96.0/22",
|
||||
"103.241.160.0/22",
|
||||
@@ -2845,7 +2829,6 @@
|
||||
"103.254.188.0/22",
|
||||
"103.254.196.0/24",
|
||||
"103.254.220.0/22",
|
||||
"103.255.56.0/22",
|
||||
"103.255.68.0/22",
|
||||
"103.255.88.0/21",
|
||||
"103.255.136.0/21",
|
||||
@@ -2854,6 +2837,7 @@
|
||||
"103.255.208.0/23",
|
||||
"103.255.212.0/22",
|
||||
"103.255.228.0/22",
|
||||
"104.167.17.0/24",
|
||||
"106.0.0.0/24",
|
||||
"106.0.2.0/23",
|
||||
"106.0.4.0/22",
|
||||
@@ -3099,7 +3083,6 @@
|
||||
"116.192.0.0/16",
|
||||
"116.193.16.0/20",
|
||||
"116.193.32.0/19",
|
||||
"116.193.164.0/22",
|
||||
"116.193.176.0/21",
|
||||
"116.194.0.0/15",
|
||||
"116.196.0.0/16",
|
||||
@@ -3166,7 +3149,14 @@
|
||||
"117.121.192.0/21",
|
||||
"117.122.128.0/17",
|
||||
"117.124.0.0/14",
|
||||
"117.128.0.0/10",
|
||||
"117.128.0.0/14",
|
||||
"117.132.0.0/15",
|
||||
"117.134.0.0/17",
|
||||
"117.134.128.0/18",
|
||||
"117.135.0.0/16",
|
||||
"117.136.0.0/13",
|
||||
"117.144.0.0/12",
|
||||
"117.160.0.0/11",
|
||||
"118.24.0.0/15",
|
||||
"118.26.0.0/19",
|
||||
"118.26.32.0/22",
|
||||
@@ -3572,7 +3562,6 @@
|
||||
"140.249.0.0/16",
|
||||
"140.250.0.0/16",
|
||||
"140.255.0.0/16",
|
||||
"142.70.0.0/16",
|
||||
"142.86.0.0/16",
|
||||
"143.64.0.0/16",
|
||||
"144.0.0.0/16",
|
||||
@@ -3588,6 +3577,15 @@
|
||||
"144.48.220.0/22",
|
||||
"144.48.252.0/22",
|
||||
"144.52.0.0/16",
|
||||
"144.79.4.0/23",
|
||||
"144.79.10.0/23",
|
||||
"144.79.28.0/23",
|
||||
"144.79.42.0/23",
|
||||
"144.79.54.0/23",
|
||||
"144.79.70.0/23",
|
||||
"144.79.84.0/23",
|
||||
"144.79.118.0/23",
|
||||
"144.79.148.0/23",
|
||||
"144.123.0.0/16",
|
||||
"144.255.0.0/16",
|
||||
"146.56.192.0/18",
|
||||
@@ -3633,6 +3631,11 @@
|
||||
"150.242.248.0/22",
|
||||
"150.248.0.0/16",
|
||||
"150.255.0.0/16",
|
||||
"151.158.14.0/23",
|
||||
"151.158.72.0/23",
|
||||
"151.158.78.0/23",
|
||||
"151.158.80.0/23",
|
||||
"151.158.122.0/23",
|
||||
"152.104.128.0/17",
|
||||
"152.136.0.0/16",
|
||||
"153.0.0.0/16",
|
||||
@@ -3730,7 +3733,6 @@
|
||||
"160.250.90.0/23",
|
||||
"160.250.102.0/23",
|
||||
"160.250.104.0/23",
|
||||
"160.250.140.0/24",
|
||||
"160.250.160.0/23",
|
||||
"160.250.170.0/23",
|
||||
"160.250.214.0/23",
|
||||
@@ -3745,6 +3747,9 @@
|
||||
"161.248.108.0/22",
|
||||
"161.248.112.0/23",
|
||||
"161.248.136.0/23",
|
||||
"162.4.54.0/23",
|
||||
"162.4.136.0/23",
|
||||
"162.4.168.0/23",
|
||||
"162.14.0.0/16",
|
||||
"162.105.0.0/16",
|
||||
"163.0.0.0/16",
|
||||
@@ -3767,6 +3772,10 @@
|
||||
"163.61.202.0/23",
|
||||
"163.61.214.0/23",
|
||||
"163.125.0.0/16",
|
||||
"163.128.30.0/23",
|
||||
"163.128.152.0/23",
|
||||
"163.128.236.0/23",
|
||||
"163.128.254.0/23",
|
||||
"163.142.0.0/16",
|
||||
"163.177.0.0/16",
|
||||
"163.179.0.0/16",
|
||||
@@ -3946,6 +3955,8 @@
|
||||
"192.140.208.0/21",
|
||||
"192.144.128.0/17",
|
||||
"192.197.113.0/24",
|
||||
"192.232.34.0/23",
|
||||
"192.232.44.0/22",
|
||||
"193.112.0.0/16",
|
||||
"193.119.0.0/19",
|
||||
"194.127.229.0/24",
|
||||
@@ -5496,6 +5507,8 @@
|
||||
"2001:250::/30",
|
||||
"2001:254::/31",
|
||||
"2001:256::/32",
|
||||
"2001:678:53c::/48",
|
||||
"2001:678:970::/48",
|
||||
"2001:67c:a1c::/48",
|
||||
"2001:67c:aec::/48",
|
||||
"2001:67c:c28::/48",
|
||||
@@ -5516,7 +5529,6 @@
|
||||
"2001:df0:9c0::/48",
|
||||
"2001:df0:1bc0::/48",
|
||||
"2001:df0:25c0::/48",
|
||||
"2001:df0:26c0::/48",
|
||||
"2001:df0:2e00::/48",
|
||||
"2001:df0:2e80::/48",
|
||||
"2001:df0:59c0::/48",
|
||||
@@ -5551,8 +5563,6 @@
|
||||
"2001:df3:a680::/48",
|
||||
"2001:df3:c680::/48",
|
||||
"2001:df3:d0c0::/48",
|
||||
"2001:df3:d880::/48",
|
||||
"2001:df3:ed80::/48",
|
||||
"2001:df3:ef80::/48",
|
||||
"2001:df4:d80::/48",
|
||||
"2001:df4:1880::/48",
|
||||
@@ -5562,13 +5572,10 @@
|
||||
"2001:df4:4b80::/48",
|
||||
"2001:df4:4d80::/48",
|
||||
"2001:df4:a1c0::/48",
|
||||
"2001:df4:a680::/48",
|
||||
"2001:df4:a980::/48",
|
||||
"2001:df4:c180::/48",
|
||||
"2001:df4:c580::/48",
|
||||
"2001:df4:e140::/46",
|
||||
"2001:df5:1440::/48",
|
||||
"2001:df5:2080::/48",
|
||||
"2001:df5:2fc0::/48",
|
||||
"2001:df5:44c0::/48",
|
||||
"2001:df5:4740::/48",
|
||||
@@ -5897,7 +5904,6 @@
|
||||
"2401:e00::/32",
|
||||
"2401:1000::/32",
|
||||
"2401:1160::/32",
|
||||
"2401:11a0::/32",
|
||||
"2401:11c0::/32",
|
||||
"2401:1200::/32",
|
||||
"2401:12c0::/32",
|
||||
@@ -6210,10 +6216,14 @@
|
||||
"2402:39c0::/32",
|
||||
"2402:3a40::/32",
|
||||
"2402:3ac0::/32",
|
||||
"2402:3ba0::/32",
|
||||
"2402:3c00::/32",
|
||||
"2402:3d20::/32",
|
||||
"2402:3de0::/32",
|
||||
"2402:3e00::/32",
|
||||
"2402:3ec0::/32",
|
||||
"2402:3f80::/32",
|
||||
"2402:4060::/32",
|
||||
"2402:4140::/32",
|
||||
"2402:42c0::/32",
|
||||
"2402:4340::/32",
|
||||
@@ -6221,21 +6231,27 @@
|
||||
"2402:4440::/32",
|
||||
"2402:4500::/32",
|
||||
"2402:4540::/32",
|
||||
"2402:4820::/32",
|
||||
"2402:4a00::/32",
|
||||
"2402:4a40::/32",
|
||||
"2402:4a80::/32",
|
||||
"2402:4ac0::/32",
|
||||
"2402:4b80::/32",
|
||||
"2402:4bc0::/32",
|
||||
"2402:4be0::/32",
|
||||
"2402:4c40::/32",
|
||||
"2402:4d60::/32",
|
||||
"2402:4d80::/32",
|
||||
"2402:4e00::/32",
|
||||
"2402:4ec0::/32",
|
||||
"2402:4f80::/32",
|
||||
"2402:50a0::/32",
|
||||
"2402:5180::/32",
|
||||
"2402:52c0::/32",
|
||||
"2402:51a0::/32",
|
||||
"2402:5340::/32",
|
||||
"2402:5820::/32",
|
||||
"2402:5880::/32",
|
||||
"2402:5920::/32",
|
||||
"2402:5940::/32",
|
||||
"2402:59c0::/32",
|
||||
"2402:5a40::/32",
|
||||
@@ -6245,6 +6261,7 @@
|
||||
"2402:5e00::/32",
|
||||
"2402:5e40::/32",
|
||||
"2402:5ec0::/32",
|
||||
"2402:5f20::/32",
|
||||
"2402:5f40::/32",
|
||||
"2402:6280::/32",
|
||||
"2402:62c0::/32",
|
||||
@@ -6543,7 +6560,6 @@
|
||||
"2403:7580::/32",
|
||||
"2403:76c0::/32",
|
||||
"2403:7700::/32",
|
||||
"2403:7840::/32",
|
||||
"2403:78c0::/32",
|
||||
"2403:7a80::/32",
|
||||
"2403:7b00::/32",
|
||||
@@ -6777,7 +6793,6 @@
|
||||
"2404:8700::/32",
|
||||
"2404:8880::/32",
|
||||
"2404:8a80::/32",
|
||||
"2404:8b00::/32",
|
||||
"2404:8dc0::/32",
|
||||
"2404:9340::/32",
|
||||
"2404:9b80::/32",
|
||||
@@ -7016,7 +7031,6 @@
|
||||
"2405:9bc0::/32",
|
||||
"2405:9e00::/32",
|
||||
"2405:a240::/32",
|
||||
"2405:a3c0::/32",
|
||||
"2405:a500::/32",
|
||||
"2405:a680::/32",
|
||||
"2405:a900::/32",
|
||||
@@ -7060,14 +7074,12 @@
|
||||
"2405:e040::/32",
|
||||
"2405:e1c0::/32",
|
||||
"2405:e600::/32",
|
||||
"2405:ed40::/32",
|
||||
"2405:ef40::/30",
|
||||
"2405:f340::/32",
|
||||
"2405:f580::/32",
|
||||
"2405:f6c0::/32",
|
||||
"2405:f940::/32",
|
||||
"2405:fdc0::/32",
|
||||
"2405:ff80::/32",
|
||||
"2406:40::/32",
|
||||
"2406:80::/32",
|
||||
"2406:c0::/32",
|
||||
@@ -7121,7 +7133,6 @@
|
||||
"2406:3300::/32",
|
||||
"2406:3340::/32",
|
||||
"2406:3380::/32",
|
||||
"2406:3440::/32",
|
||||
"2406:3480::/32",
|
||||
"2406:34c0::/32",
|
||||
"2406:3580::/32",
|
||||
@@ -7433,7 +7444,6 @@
|
||||
"2407:cc80::/32",
|
||||
"2407:cd80::/32",
|
||||
"2407:ce80::/32",
|
||||
"2407:cf00::/32",
|
||||
"2407:cf80::/32",
|
||||
"2407:d480::/32",
|
||||
"2407:d580::/32",
|
||||
@@ -7515,6 +7525,7 @@
|
||||
"2602:f70d::/36",
|
||||
"2a03:f900::/29",
|
||||
"2a0a:2840::/29",
|
||||
"2a0a:d680::/29",
|
||||
"2a0e:7580::/29",
|
||||
"2a13:1800::/29",
|
||||
"2a13:8b40::/29"
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
"ipv4": [
|
||||
"24.152.56.0/24",
|
||||
"24.152.58.0/23",
|
||||
"37.10.70.0/24",
|
||||
"37.10.108.0/24",
|
||||
"45.5.160.0/21",
|
||||
"45.5.172.0/22",
|
||||
"45.5.180.0/22",
|
||||
@@ -71,8 +73,6 @@
|
||||
"45.181.188.0/22",
|
||||
"45.181.204.0/22",
|
||||
"45.182.41.0/24",
|
||||
"45.182.190.0/23",
|
||||
"45.183.40.0/24",
|
||||
"45.183.196.0/22",
|
||||
"45.183.247.0/24",
|
||||
"45.185.31.0/24",
|
||||
@@ -89,7 +89,6 @@
|
||||
"45.226.112.0/22",
|
||||
"45.226.186.0/23",
|
||||
"45.227.5.0/24",
|
||||
"45.227.88.0/22",
|
||||
"45.228.66.0/24",
|
||||
"45.229.72.0/23",
|
||||
"45.229.192.0/23",
|
||||
@@ -257,7 +256,11 @@
|
||||
"181.234.0.0/15",
|
||||
"181.236.0.0/15",
|
||||
"181.240.0.0/12",
|
||||
"185.28.216.0/22",
|
||||
"185.42.20.0/22",
|
||||
"185.74.16.0/22",
|
||||
"185.91.192.0/22",
|
||||
"185.104.164.0/22",
|
||||
"185.122.240.0/22",
|
||||
"185.197.128.0/22",
|
||||
"186.0.0.0/17",
|
||||
@@ -274,6 +277,9 @@
|
||||
"186.103.0.0/17",
|
||||
"186.112.0.0/13",
|
||||
"186.121.0.0/17",
|
||||
"186.121.136.0/21",
|
||||
"186.121.144.0/23",
|
||||
"186.121.152.0/23",
|
||||
"186.144.0.0/14",
|
||||
"186.148.160.0/19",
|
||||
"186.154.0.0/15",
|
||||
@@ -552,7 +558,6 @@
|
||||
"2801:0:370::/48",
|
||||
"2801:0:390::/48",
|
||||
"2801:0:3b0::/48",
|
||||
"2801:0:3c0::/48",
|
||||
"2801:0:480::/48",
|
||||
"2801:0:4c0::/48",
|
||||
"2801:10:800::/48",
|
||||
@@ -561,20 +566,19 @@
|
||||
"2801:10:5800::/48",
|
||||
"2801:10:7000::/48",
|
||||
"2801:10:7800::/48",
|
||||
"2801:10:8400::/48",
|
||||
"2801:10:b800::/48",
|
||||
"2801:10:c000::/48",
|
||||
"2801:10:c800::/48",
|
||||
"2801:10:d800::/48",
|
||||
"2801:10:e800::/48",
|
||||
"2801:10:f000::/48",
|
||||
"2801:10:f800::/48",
|
||||
"2801:11:400::/48",
|
||||
"2801:11:800::/48",
|
||||
"2801:11:4000::/48",
|
||||
"2801:11:4800::/48",
|
||||
"2801:11:5000::/48",
|
||||
"2801:11:5800::/48",
|
||||
"2801:11:6800::/48",
|
||||
"2801:11:8000::/48",
|
||||
"2801:11:8800::/48",
|
||||
"2801:11:9000::/48",
|
||||
@@ -590,6 +594,7 @@
|
||||
"2801:12:5800::/48",
|
||||
"2801:12:6800::/48",
|
||||
"2801:12:7000::/48",
|
||||
"2801:12:8400::/48",
|
||||
"2801:12:8800::/48",
|
||||
"2801:12:9800::/48",
|
||||
"2801:12:b800::/48",
|
||||
@@ -597,6 +602,7 @@
|
||||
"2801:12:d800::/48",
|
||||
"2801:12:f000::/48",
|
||||
"2801:12:f800::/48",
|
||||
"2801:13:400::/48",
|
||||
"2801:13:2800::/48",
|
||||
"2801:13:5800::/48",
|
||||
"2801:13:6800::/48",
|
||||
@@ -625,6 +631,7 @@
|
||||
"2801:14:e800::/48",
|
||||
"2801:14:f000::/48",
|
||||
"2801:14:f800::/48",
|
||||
"2801:15:400::/48",
|
||||
"2801:15:1800::/44",
|
||||
"2801:15:3000::/48",
|
||||
"2801:15:3800::/48",
|
||||
@@ -646,11 +653,13 @@
|
||||
"2801:16:3800::/48",
|
||||
"2801:16:5000::/44",
|
||||
"2801:16:6800::/48",
|
||||
"2801:16:8400::/48",
|
||||
"2801:16:a800::/48",
|
||||
"2801:16:c800::/48",
|
||||
"2801:16:d800::/48",
|
||||
"2801:16:f000::/48",
|
||||
"2801:16:f800::/48",
|
||||
"2801:17:400::/48",
|
||||
"2801:17:1800::/48",
|
||||
"2801:17:2800::/48",
|
||||
"2801:17:4000::/48",
|
||||
@@ -671,6 +680,7 @@
|
||||
"2801:18:5000::/48",
|
||||
"2801:18:6800::/48",
|
||||
"2801:18:7800::/48",
|
||||
"2801:18:8400::/48",
|
||||
"2801:18:9000::/44",
|
||||
"2801:18:e800::/48",
|
||||
"2801:18:f800::/48",
|
||||
@@ -682,6 +692,7 @@
|
||||
"2801:19:4800::/48",
|
||||
"2801:19:5000::/48",
|
||||
"2801:19:6800::/48",
|
||||
"2801:19:8400::/48",
|
||||
"2801:19:9800::/48",
|
||||
"2801:19:a800::/48",
|
||||
"2801:19:c800::/48",
|
||||
@@ -732,6 +743,7 @@
|
||||
"2801:1c:d800::/48",
|
||||
"2801:1c:e000::/48",
|
||||
"2801:1c:f800::/48",
|
||||
"2801:1d:400::/48",
|
||||
"2801:1d:800::/48",
|
||||
"2801:1d:1800::/48",
|
||||
"2801:1d:2800::/48",
|
||||
@@ -752,14 +764,15 @@
|
||||
"2801:1e:800::/48",
|
||||
"2801:1e:3000::/48",
|
||||
"2801:1e:3800::/48",
|
||||
"2801:1e:5800::/48",
|
||||
"2801:1e:6800::/48",
|
||||
"2801:1e:8400::/48",
|
||||
"2801:1e:b800::/48",
|
||||
"2801:1e:c800::/48",
|
||||
"2801:1e:d000::/48",
|
||||
"2801:1e:d800::/48",
|
||||
"2801:1e:e800::/48",
|
||||
"2801:1e:f800::/48",
|
||||
"2801:1f:400::/48",
|
||||
"2801:1f:2800::/48",
|
||||
"2801:1f:3800::/48",
|
||||
"2801:1f:5000::/48",
|
||||
@@ -784,7 +797,6 @@
|
||||
"2801:110::/35",
|
||||
"2801:111::/44",
|
||||
"2801:112::/40",
|
||||
"2801:114::/44",
|
||||
"2801:115::/44",
|
||||
"2801:116::/40",
|
||||
"2801:119::/44",
|
||||
@@ -913,7 +925,9 @@
|
||||
"2803:310::/32",
|
||||
"2803:3d0::/32",
|
||||
"2803:3e0::/32",
|
||||
"2803:430::/32",
|
||||
"2803:790::/32",
|
||||
"2803:830::/32",
|
||||
"2803:960::/32",
|
||||
"2803:990::/32",
|
||||
"2803:a50::/32",
|
||||
@@ -930,13 +944,16 @@
|
||||
"2803:1240::/32",
|
||||
"2803:12d0::/32",
|
||||
"2803:1390::/32",
|
||||
"2803:1430::/32",
|
||||
"2803:1580::/32",
|
||||
"2803:15c0::/32",
|
||||
"2803:1630::/32",
|
||||
"2803:1710::/32",
|
||||
"2803:1780::/32",
|
||||
"2803:1790::/32",
|
||||
"2803:17a0::/32",
|
||||
"2803:1800::/32",
|
||||
"2803:1830::/32",
|
||||
"2803:1840::/32",
|
||||
"2803:1860::/32",
|
||||
"2803:1990::/32",
|
||||
@@ -944,8 +961,9 @@
|
||||
"2803:1a00::/32",
|
||||
"2803:1a50::/32",
|
||||
"2803:1a90::/32",
|
||||
"2803:1c90::/32",
|
||||
"2803:1d10::/32",
|
||||
"2803:1e30::/32",
|
||||
"2803:1fd0::/32",
|
||||
"2803:2060::/32",
|
||||
"2803:2090::/32",
|
||||
"2803:2180::/32",
|
||||
@@ -964,11 +982,13 @@
|
||||
"2803:2b50::/32",
|
||||
"2803:2ce0::/32",
|
||||
"2803:2f90::/32",
|
||||
"2803:3130::/32",
|
||||
"2803:3190::/32",
|
||||
"2803:31a0::/32",
|
||||
"2803:3250::/32",
|
||||
"2803:33e0::/32",
|
||||
"2803:3450::/32",
|
||||
"2803:3630::/32",
|
||||
"2803:36d0::/32",
|
||||
"2803:37d0::/32",
|
||||
"2803:3960::/32",
|
||||
@@ -987,15 +1007,17 @@
|
||||
"2803:4340::/32",
|
||||
"2803:44d0::/32",
|
||||
"2803:4620::/32",
|
||||
"2803:4630::/32",
|
||||
"2803:4650::/32",
|
||||
"2803:4790::/32",
|
||||
"2803:4890::/32",
|
||||
"2803:4a50::/32",
|
||||
"2803:4a90::/32",
|
||||
"2803:4d20::/32",
|
||||
"2803:4d90::/32",
|
||||
"2803:4de0::/32",
|
||||
"2803:4e30::/32",
|
||||
"2803:5050::/32",
|
||||
"2803:5230::/32",
|
||||
"2803:5250::/32",
|
||||
"2803:53e0::/32",
|
||||
"2803:5450::/32",
|
||||
@@ -1004,11 +1026,14 @@
|
||||
"2803:5960::/32",
|
||||
"2803:5ae0::/32",
|
||||
"2803:5be0::/32",
|
||||
"2803:5c30::/32",
|
||||
"2803:5d20::/32",
|
||||
"2803:5ea0::/32",
|
||||
"2803:5ee0::/32",
|
||||
"2803:5fa0::/32",
|
||||
"2803:5fd0::/32",
|
||||
"2803:6090::/32",
|
||||
"2803:6130::/32",
|
||||
"2803:6150::/32",
|
||||
"2803:6290::/32",
|
||||
"2803:63d0::/32",
|
||||
@@ -1020,27 +1045,31 @@
|
||||
"2803:6960::/32",
|
||||
"2803:6a60::/32",
|
||||
"2803:6bd0::/32",
|
||||
"2803:6c30::/32",
|
||||
"2803:6c90::/32",
|
||||
"2803:6d10::/32",
|
||||
"2803:6ed0::/32",
|
||||
"2803:6f80::/32",
|
||||
"2803:6fa0::/32",
|
||||
"2803:7030::/32",
|
||||
"2803:7050::/32",
|
||||
"2803:7150::/32",
|
||||
"2803:7250::/32",
|
||||
"2803:7290::/32",
|
||||
"2803:7390::/32",
|
||||
"2803:7430::/32",
|
||||
"2803:74d0::/32",
|
||||
"2803:74e0::/32",
|
||||
"2803:7640::/32",
|
||||
"2803:77d0::/32",
|
||||
"2803:7820::/32",
|
||||
"2803:7a30::/32",
|
||||
"2803:7ba0::/32",
|
||||
"2803:7c60::/32",
|
||||
"2803:7cd0::/32",
|
||||
"2803:7e50::/32",
|
||||
"2803:7e60::/32",
|
||||
"2803:7f10::/32",
|
||||
"2803:7f50::/32",
|
||||
"2803:8290::/32",
|
||||
"2803:8340::/32",
|
||||
"2803:8400::/32",
|
||||
@@ -1050,22 +1079,25 @@
|
||||
"2803:8550::/32",
|
||||
"2803:8580::/32",
|
||||
"2803:85e0::/32",
|
||||
"2803:8630::/32",
|
||||
"2803:87a0::/32",
|
||||
"2803:8980::/32",
|
||||
"2803:8b00::/32",
|
||||
"2803:8b80::/32",
|
||||
"2803:8bd0::/32",
|
||||
"2803:8c30::/32",
|
||||
"2803:8ca0::/32",
|
||||
"2803:8cd0::/32",
|
||||
"2803:8d90::/32",
|
||||
"2803:8e30::/32",
|
||||
"2803:8e50::/32",
|
||||
"2803:9060::/32",
|
||||
"2803:9110::/32",
|
||||
"2803:9190::/32",
|
||||
"2803:9250::/32",
|
||||
"2803:9260::/32",
|
||||
"2803:9310::/32",
|
||||
"2803:9410::/32",
|
||||
"2803:9430::/32",
|
||||
"2803:9460::/32",
|
||||
"2803:94e0::/32",
|
||||
"2803:97d0::/32",
|
||||
@@ -1076,7 +1108,9 @@
|
||||
"2803:9ed0::/32",
|
||||
"2803:9f10::/32",
|
||||
"2803:9f90::/32",
|
||||
"2803:9fd0::/32",
|
||||
"2803:a060::/32",
|
||||
"2803:a130::/32",
|
||||
"2803:a140::/32",
|
||||
"2803:a190::/32",
|
||||
"2803:a390::/32",
|
||||
@@ -1088,8 +1122,10 @@
|
||||
"2803:a760::/32",
|
||||
"2803:a7d0::/32",
|
||||
"2803:a910::/32",
|
||||
"2803:aa30::/32",
|
||||
"2803:aba0::/32",
|
||||
"2803:ac80::/32",
|
||||
"2803:ae30::/32",
|
||||
"2803:ae90::/32",
|
||||
"2803:aea0::/32",
|
||||
"2803:af90::/32",
|
||||
@@ -1103,10 +1139,10 @@
|
||||
"2803:b4d0::/32",
|
||||
"2803:b590::/32",
|
||||
"2803:b5a0::/32",
|
||||
"2803:b7d0::/32",
|
||||
"2803:b7e0::/32",
|
||||
"2803:b850::/32",
|
||||
"2803:b9c0::/32",
|
||||
"2803:ba50::/32",
|
||||
"2803:ba90::/32",
|
||||
"2803:bbd0::/32",
|
||||
"2803:bbe0::/32",
|
||||
@@ -1117,7 +1153,9 @@
|
||||
"2803:bdd0::/32",
|
||||
"2803:bf50::/32",
|
||||
"2803:bfa0::/32",
|
||||
"2803:c030::/32",
|
||||
"2803:c050::/32",
|
||||
"2803:c130::/32",
|
||||
"2803:c390::/32",
|
||||
"2803:c3e0::/32",
|
||||
"2803:c410::/32",
|
||||
@@ -1131,9 +1169,11 @@
|
||||
"2803:cb00::/32",
|
||||
"2803:cb10::/32",
|
||||
"2803:cc00::/32",
|
||||
"2803:cc30::/32",
|
||||
"2803:cc50::/32",
|
||||
"2803:cd90::/32",
|
||||
"2803:cda0::/32",
|
||||
"2803:cfd0::/32",
|
||||
"2803:d090::/32",
|
||||
"2803:d2d0::/32",
|
||||
"2803:d350::/32",
|
||||
@@ -1151,14 +1191,15 @@
|
||||
"2803:df50::/32",
|
||||
"2803:e000::/32",
|
||||
"2803:e060::/32",
|
||||
"2803:e130::/32",
|
||||
"2803:e150::/32",
|
||||
"2803:e2c0::/32",
|
||||
"2803:e350::/32",
|
||||
"2803:e3d0::/32",
|
||||
"2803:e450::/32",
|
||||
"2803:e560::/32",
|
||||
"2803:e580::/32",
|
||||
"2803:e5e0::/30",
|
||||
"2803:e630::/32",
|
||||
"2803:e840::/32",
|
||||
"2803:e9d0::/32",
|
||||
"2803:ea10::/32",
|
||||
@@ -1166,6 +1207,7 @@
|
||||
"2803:ec50::/32",
|
||||
"2803:ee60::/32",
|
||||
"2803:ef20::/32",
|
||||
"2803:efd0::/32",
|
||||
"2803:f360::/32",
|
||||
"2803:f450::/32",
|
||||
"2803:f480::/32",
|
||||
@@ -1173,6 +1215,7 @@
|
||||
"2803:f610::/32",
|
||||
"2803:f650::/32",
|
||||
"2803:f750::/32",
|
||||
"2803:f7d0::/32",
|
||||
"2803:f7e0::/32",
|
||||
"2803:f850::/32",
|
||||
"2803:f860::/32",
|
||||
@@ -1180,8 +1223,10 @@
|
||||
"2803:f8d0::/32",
|
||||
"2803:f950::/32",
|
||||
"2803:f9d0::/32",
|
||||
"2803:fa30::/32",
|
||||
"2803:fa50::/32",
|
||||
"2803:fbd0::/32",
|
||||
"2803:fc30::/32",
|
||||
"2803:fc50::/32",
|
||||
"2803:fcd0::/32",
|
||||
"2803:fd00::/32",
|
||||
@@ -1190,6 +1235,7 @@
|
||||
"2803:ff10::/32",
|
||||
"2803:ff20::/32",
|
||||
"2803:ff80::/32",
|
||||
"2803:ffd0::/32",
|
||||
"2803:ffe0::/32"
|
||||
]
|
||||
}
|
||||
@@ -34,6 +34,8 @@
|
||||
"138.122.24.0/22",
|
||||
"138.122.244.0/22",
|
||||
"138.185.248.0/22",
|
||||
"138.226.212.0/23",
|
||||
"139.100.96.0/23",
|
||||
"143.0.160.0/22",
|
||||
"143.137.148.0/22",
|
||||
"143.202.160.0/22",
|
||||
@@ -221,6 +223,7 @@
|
||||
"2803:3200::/32",
|
||||
"2803:3600::/32",
|
||||
"2803:3710::/32",
|
||||
"2803:3a30::/32",
|
||||
"2803:4580::/32",
|
||||
"2803:4910::/32",
|
||||
"2803:4920::/32",
|
||||
@@ -276,6 +279,7 @@
|
||||
"2803:f800::/32",
|
||||
"2803:f8e0::/32",
|
||||
"2803:fb40::/32",
|
||||
"2803:fe40::/32"
|
||||
"2803:fe40::/32",
|
||||
"2a05:c0::/32"
|
||||
]
|
||||
}
|
||||
@@ -20,7 +20,11 @@
|
||||
"186.148.216.0/21",
|
||||
"186.190.232.0/22",
|
||||
"186.190.240.0/20",
|
||||
"190.2.128.0/18",
|
||||
"190.2.128.0/19",
|
||||
"190.2.160.0/20",
|
||||
"190.2.176.0/21",
|
||||
"190.2.188.0/23",
|
||||
"190.2.191.0/24",
|
||||
"190.4.128.0/18",
|
||||
"190.13.120.0/21",
|
||||
"190.88.0.0/16",
|
||||
@@ -31,6 +35,7 @@
|
||||
"190.123.20.0/22",
|
||||
"190.185.0.0/18",
|
||||
"193.23.16.0/22",
|
||||
"194.169.132.0/22",
|
||||
"196.3.16.0/20",
|
||||
"200.0.20.0/23",
|
||||
"200.6.56.0/21",
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
"45.12.112.0/22",
|
||||
"45.12.128.0/20",
|
||||
"45.12.144.0/21",
|
||||
"45.13.26.0/24",
|
||||
"45.13.132.0/22",
|
||||
"45.13.220.0/22",
|
||||
"45.13.252.0/22",
|
||||
@@ -108,7 +107,6 @@
|
||||
"46.28.176.0/21",
|
||||
"46.198.0.0/17",
|
||||
"46.199.0.0/16",
|
||||
"46.235.15.0/24",
|
||||
"46.243.228.0/22",
|
||||
"46.247.96.0/21",
|
||||
"46.251.96.0/19",
|
||||
@@ -142,6 +140,7 @@
|
||||
"80.244.16.0/20",
|
||||
"81.4.128.0/18",
|
||||
"81.21.32.0/20",
|
||||
"81.85.59.0/24",
|
||||
"82.102.32.0/19",
|
||||
"82.102.64.0/18",
|
||||
"82.114.32.0/19",
|
||||
@@ -150,6 +149,10 @@
|
||||
"84.238.132.0/23",
|
||||
"84.246.111.0/24",
|
||||
"85.132.224.0/19",
|
||||
"85.136.210.0/23",
|
||||
"85.137.18.0/23",
|
||||
"85.137.20.0/22",
|
||||
"85.137.168.0/21",
|
||||
"85.208.96.0/22",
|
||||
"85.208.104.0/21",
|
||||
"85.208.112.0/21",
|
||||
@@ -170,6 +173,7 @@
|
||||
"89.38.128.0/22",
|
||||
"89.38.135.0/24",
|
||||
"89.43.33.0/24",
|
||||
"89.126.232.0/21",
|
||||
"89.232.172.0/22",
|
||||
"89.248.71.0/24",
|
||||
"91.92.108.0/24",
|
||||
@@ -185,10 +189,12 @@
|
||||
"91.199.54.0/24",
|
||||
"91.200.63.0/24",
|
||||
"91.202.244.0/22",
|
||||
"91.207.209.0/24",
|
||||
"91.208.6.0/24",
|
||||
"91.210.124.0/24",
|
||||
"91.211.147.0/24",
|
||||
"91.212.145.0/24",
|
||||
"91.213.140.0/24",
|
||||
"91.214.126.0/24",
|
||||
"91.214.236.0/22",
|
||||
"91.217.246.0/24",
|
||||
@@ -235,7 +241,6 @@
|
||||
"95.214.248.0/22",
|
||||
"103.27.156.0/22",
|
||||
"103.31.76.0/22",
|
||||
"103.35.178.0/23",
|
||||
"103.54.88.0/22",
|
||||
"103.110.64.0/22",
|
||||
"103.110.124.0/23",
|
||||
@@ -252,6 +257,7 @@
|
||||
"128.0.208.0/20",
|
||||
"128.0.224.0/19",
|
||||
"130.250.197.0/24",
|
||||
"132.243.192.0/18",
|
||||
"139.28.232.0/22",
|
||||
"139.138.192.0/19",
|
||||
"141.98.132.0/22",
|
||||
@@ -270,11 +276,11 @@
|
||||
"156.67.64.0/20",
|
||||
"156.67.208.0/20",
|
||||
"159.255.40.0/21",
|
||||
"161.108.120.0/24",
|
||||
"162.255.144.0/22",
|
||||
"164.138.96.0/22",
|
||||
"164.215.0.0/19",
|
||||
"167.150.21.0/24",
|
||||
"168.222.192.0/20",
|
||||
"171.22.108.0/22",
|
||||
"171.22.112.0/20",
|
||||
"171.22.128.0/21",
|
||||
@@ -298,7 +304,7 @@
|
||||
"185.1.132.0/24",
|
||||
"185.2.96.0/22",
|
||||
"185.5.40.0/22",
|
||||
"185.5.72.0/22",
|
||||
"185.5.72.0/23",
|
||||
"185.7.156.0/22",
|
||||
"185.8.180.0/22",
|
||||
"185.20.212.0/22",
|
||||
@@ -309,10 +315,8 @@
|
||||
"185.52.88.0/22",
|
||||
"185.61.240.0/22",
|
||||
"185.68.128.0/22",
|
||||
"185.71.216.0/22",
|
||||
"185.77.96.0/23",
|
||||
"185.78.128.0/22",
|
||||
"185.81.32.0/22",
|
||||
"185.86.92.0/22",
|
||||
"185.96.163.0/24",
|
||||
"185.97.160.0/22",
|
||||
@@ -337,6 +341,7 @@
|
||||
"185.149.88.0/22",
|
||||
"185.153.180.0/22",
|
||||
"185.156.108.0/22",
|
||||
"185.159.87.0/24",
|
||||
"185.160.204.0/24",
|
||||
"185.161.69.0/24",
|
||||
"185.161.70.0/23",
|
||||
@@ -366,12 +371,12 @@
|
||||
"185.205.210.0/24",
|
||||
"185.206.144.0/22",
|
||||
"185.207.160.0/22",
|
||||
"185.210.229.0/24",
|
||||
"185.216.4.0/22",
|
||||
"185.229.248.0/24",
|
||||
"185.230.112.0/22",
|
||||
"185.234.52.0/24",
|
||||
"185.235.252.0/22",
|
||||
"185.237.228.0/22",
|
||||
"185.240.140.0/22",
|
||||
"185.243.214.0/23",
|
||||
"185.249.152.0/22",
|
||||
@@ -445,6 +450,7 @@
|
||||
"194.59.220.0/23",
|
||||
"194.59.244.0/23",
|
||||
"194.61.116.0/22",
|
||||
"194.62.117.0/24",
|
||||
"194.63.145.0/24",
|
||||
"194.64.144.0/22",
|
||||
"194.76.136.0/22",
|
||||
@@ -515,7 +521,6 @@
|
||||
"213.5.129.0/24",
|
||||
"213.7.0.0/16",
|
||||
"213.59.112.0/20",
|
||||
"213.109.193.0/24",
|
||||
"213.109.198.0/24",
|
||||
"213.109.205.0/24",
|
||||
"213.133.80.0/20",
|
||||
@@ -533,6 +538,7 @@
|
||||
"217.65.75.0/24",
|
||||
"217.72.12.0/22",
|
||||
"217.175.208.0/20",
|
||||
"217.177.48.0/21",
|
||||
"217.197.104.0/24"
|
||||
],
|
||||
"ipv6": [
|
||||
@@ -540,7 +546,6 @@
|
||||
"2001:678:e08::/48",
|
||||
"2001:67c:310::/48",
|
||||
"2001:67c:17d8::/48",
|
||||
"2001:df1:8140::/48",
|
||||
"2001:df4:fe40::/48",
|
||||
"2001:1a18::/29",
|
||||
"2401:fce0::/32",
|
||||
@@ -565,15 +570,14 @@
|
||||
"2a03:1740::/32",
|
||||
"2a03:3b20::/32",
|
||||
"2a03:a7a0::/32",
|
||||
"2a03:db40::/29",
|
||||
"2a04:1480::/29",
|
||||
"2a04:3480::/32",
|
||||
"2a04:5f80::/29",
|
||||
"2a04:e880::/29",
|
||||
"2a04:f140::/29",
|
||||
"2a04:f6c0::/29",
|
||||
"2a05:7880::/32",
|
||||
"2a05:8280::/29",
|
||||
"2a05:8500::/29",
|
||||
"2a05:b7c0::/29",
|
||||
"2a05:f300::/29",
|
||||
"2a06:2a00::/29",
|
||||
@@ -656,6 +660,7 @@
|
||||
"2a0a:d040::/29",
|
||||
"2a0a:d600::/29",
|
||||
"2a0a:dd80::/29",
|
||||
"2a0a:e980::/29",
|
||||
"2a0b:8c0::/29",
|
||||
"2a0b:12c0::/29",
|
||||
"2a0b:1500::/29",
|
||||
@@ -693,7 +698,9 @@
|
||||
"2a0d:7d80::/29",
|
||||
"2a0d:8180::/29",
|
||||
"2a0d:8700::/29",
|
||||
"2a0d:9a40::/32",
|
||||
"2a0d:9e80::/29",
|
||||
"2a0d:9f80::/29",
|
||||
"2a0d:c3c0::/29",
|
||||
"2a0d:c500::/29",
|
||||
"2a0d:d000::/29",
|
||||
|
||||
@@ -129,7 +129,6 @@
|
||||
"45.146.108.0/22",
|
||||
"45.147.164.0/22",
|
||||
"45.148.80.0/22",
|
||||
"45.150.36.0/22",
|
||||
"45.153.160.0/22",
|
||||
"45.153.192.0/22",
|
||||
"45.155.12.0/22",
|
||||
@@ -137,7 +136,6 @@
|
||||
"45.156.112.0/22",
|
||||
"45.158.88.0/22",
|
||||
"45.158.224.0/22",
|
||||
"45.159.109.0/24",
|
||||
"45.159.110.0/23",
|
||||
"45.159.116.0/22",
|
||||
"46.8.0.0/16",
|
||||
@@ -274,6 +272,7 @@
|
||||
"80.92.240.0/20",
|
||||
"80.95.96.0/19",
|
||||
"80.95.240.0/20",
|
||||
"80.173.200.0/22",
|
||||
"80.188.0.0/16",
|
||||
"80.243.96.0/20",
|
||||
"80.243.236.0/22",
|
||||
@@ -347,12 +346,14 @@
|
||||
"85.119.88.0/21",
|
||||
"85.132.128.0/18",
|
||||
"85.135.0.0/17",
|
||||
"85.158.184.0/21",
|
||||
"85.160.0.0/14",
|
||||
"85.184.16.0/20",
|
||||
"85.193.0.0/18",
|
||||
"85.207.0.0/16",
|
||||
"85.209.28.0/22",
|
||||
"85.209.124.0/22",
|
||||
"85.217.167.0/24",
|
||||
"85.239.64.0/19",
|
||||
"85.239.224.0/22",
|
||||
"85.239.228.0/23",
|
||||
@@ -365,6 +366,7 @@
|
||||
"86.61.128.0/17",
|
||||
"86.63.192.0/19",
|
||||
"86.111.213.0/24",
|
||||
"87.232.96.0/19",
|
||||
"87.236.192.0/21",
|
||||
"87.249.140.0/22",
|
||||
"87.249.144.0/20",
|
||||
@@ -397,6 +399,7 @@
|
||||
"89.190.64.0/19",
|
||||
"89.190.128.0/22",
|
||||
"89.203.128.0/17",
|
||||
"89.207.155.0/24",
|
||||
"89.221.208.0/20",
|
||||
"89.233.128.0/18",
|
||||
"89.235.0.0/18",
|
||||
@@ -411,7 +414,6 @@
|
||||
"90.178.0.0/15",
|
||||
"90.180.0.0/14",
|
||||
"91.103.160.0/21",
|
||||
"91.106.240.0/20",
|
||||
"91.108.185.0/24",
|
||||
"91.109.32.0/21",
|
||||
"91.132.204.0/22",
|
||||
@@ -512,6 +514,7 @@
|
||||
"91.240.46.0/24",
|
||||
"91.241.8.0/22",
|
||||
"91.241.23.0/24",
|
||||
"91.241.77.0/24",
|
||||
"91.241.168.0/21",
|
||||
"91.245.0.0/19",
|
||||
"92.38.0.0/17",
|
||||
@@ -577,6 +580,7 @@
|
||||
"95.129.96.0/21",
|
||||
"95.129.240.0/21",
|
||||
"95.140.240.0/20",
|
||||
"95.143.109.0/24",
|
||||
"95.143.128.0/20",
|
||||
"95.168.192.0/19",
|
||||
"95.173.64.0/19",
|
||||
@@ -634,6 +638,7 @@
|
||||
"139.28.116.0/22",
|
||||
"141.98.211.0/24",
|
||||
"141.170.128.0/18",
|
||||
"146.19.122.0/24",
|
||||
"146.19.173.0/24",
|
||||
"146.102.0.0/16",
|
||||
"146.120.0.0/16",
|
||||
@@ -652,6 +657,7 @@
|
||||
"151.249.128.0/17",
|
||||
"152.89.168.0/23",
|
||||
"152.114.200.0/23",
|
||||
"153.76.160.0/19",
|
||||
"156.137.0.0/16",
|
||||
"158.194.0.0/16",
|
||||
"158.196.0.0/16",
|
||||
@@ -659,6 +665,7 @@
|
||||
"159.253.232.0/21",
|
||||
"160.216.0.0/15",
|
||||
"160.218.0.0/16",
|
||||
"163.245.224.0/19",
|
||||
"164.138.201.0/24",
|
||||
"164.215.112.0/20",
|
||||
"165.72.0.0/16",
|
||||
@@ -677,6 +684,7 @@
|
||||
"176.97.8.0/21",
|
||||
"176.97.196.0/24",
|
||||
"176.97.201.0/24",
|
||||
"176.97.215.0/24",
|
||||
"176.97.240.0/21",
|
||||
"176.98.96.0/20",
|
||||
"176.98.244.0/22",
|
||||
@@ -1137,6 +1145,7 @@
|
||||
"188.240.1.0/24",
|
||||
"188.244.48.0/20",
|
||||
"188.246.96.0/19",
|
||||
"192.34.200.0/21",
|
||||
"192.91.186.0/24",
|
||||
"192.108.126.0/24",
|
||||
"192.108.128.0/23",
|
||||
@@ -1149,7 +1158,6 @@
|
||||
"192.124.216.0/24",
|
||||
"192.144.44.0/22",
|
||||
"192.144.52.0/22",
|
||||
"192.144.56.0/22",
|
||||
"192.145.104.0/22",
|
||||
"192.146.204.0/24",
|
||||
"192.162.96.0/22",
|
||||
@@ -1254,16 +1262,13 @@
|
||||
"193.124.44.0/22",
|
||||
"193.124.50.0/24",
|
||||
"193.124.55.0/24",
|
||||
"193.124.56.0/22",
|
||||
"193.124.60.0/24",
|
||||
"193.124.64.0/22",
|
||||
"193.124.88.0/21",
|
||||
"193.124.112.0/22",
|
||||
"193.124.117.0/24",
|
||||
"193.124.118.0/23",
|
||||
"193.124.121.0/24",
|
||||
"193.124.124.0/23",
|
||||
"193.124.128.0/22",
|
||||
"193.124.133.0/24",
|
||||
"193.124.158.0/23",
|
||||
"193.124.200.0/21",
|
||||
@@ -1289,6 +1294,7 @@
|
||||
"193.165.0.0/16",
|
||||
"193.168.244.0/22",
|
||||
"193.169.182.0/23",
|
||||
"193.169.212.0/24",
|
||||
"193.176.32.0/24",
|
||||
"193.179.0.0/16",
|
||||
"193.187.168.0/22",
|
||||
@@ -1357,6 +1363,7 @@
|
||||
"194.59.240.0/22",
|
||||
"194.61.10.0/23",
|
||||
"194.61.48.0/22",
|
||||
"194.62.116.0/24",
|
||||
"194.63.152.0/22",
|
||||
"194.69.166.0/24",
|
||||
"194.76.247.0/24",
|
||||
@@ -1414,6 +1421,7 @@
|
||||
"195.47.252.0/24",
|
||||
"195.58.32.0/19",
|
||||
"195.60.89.0/25",
|
||||
"195.63.192.0/18",
|
||||
"195.70.128.0/19",
|
||||
"195.74.76.0/24",
|
||||
"195.78.122.0/23",
|
||||
@@ -1470,6 +1478,7 @@
|
||||
"212.46.44.0/24",
|
||||
"212.46.62.0/24",
|
||||
"212.47.0.0/19",
|
||||
"212.52.7.0/24",
|
||||
"212.65.192.0/18",
|
||||
"212.67.64.0/19",
|
||||
"212.69.128.0/22",
|
||||
@@ -1539,6 +1548,7 @@
|
||||
"217.168.208.0/20",
|
||||
"217.169.176.0/20",
|
||||
"217.170.96.0/20",
|
||||
"217.179.228.0/22",
|
||||
"217.194.160.0/20",
|
||||
"217.195.160.0/20",
|
||||
"217.196.112.0/20",
|
||||
@@ -1576,6 +1586,7 @@
|
||||
"2001:678:1064::/48",
|
||||
"2001:678:10e0::/48",
|
||||
"2001:678:112c::/48",
|
||||
"2001:678:11e0::/48",
|
||||
"2001:67c:48::/48",
|
||||
"2001:67c:68::/48",
|
||||
"2001:67c:26c::/48",
|
||||
@@ -1749,7 +1760,6 @@
|
||||
"2a01:6400::/29",
|
||||
"2a01:69a0::/32",
|
||||
"2a01:6a80::/32",
|
||||
"2a01:6b40::/32",
|
||||
"2a01:7ba0::/32",
|
||||
"2a01:7ce0::/32",
|
||||
"2a01:7d20::/32",
|
||||
@@ -1772,7 +1782,6 @@
|
||||
"2a01:bda0::/32",
|
||||
"2a02:38::/29",
|
||||
"2a02:128::/29",
|
||||
"2a02:1d0::/32",
|
||||
"2a02:1f0::/32",
|
||||
"2a02:350::/29",
|
||||
"2a02:3c0::/29",
|
||||
@@ -1906,6 +1915,7 @@
|
||||
"2a04:bf80::/29",
|
||||
"2a04:c3c0::/29",
|
||||
"2a04:c740::/29",
|
||||
"2a04:e1c0::/31",
|
||||
"2a04:e7c0::/29",
|
||||
"2a04:f310::/31",
|
||||
"2a04:f940::/29",
|
||||
@@ -2124,13 +2134,14 @@
|
||||
"2a0d:2600::/29",
|
||||
"2a0d:3140::/29",
|
||||
"2a0d:4b00::/29",
|
||||
"2a0d:4d00::/29",
|
||||
"2a0d:7640::/29",
|
||||
"2a0d:8680::/29",
|
||||
"2a0d:8f40::/29",
|
||||
"2a0d:b0c0::/29",
|
||||
"2a0d:b880::/29",
|
||||
"2a0d:c000::/29",
|
||||
"2a0d:cf00::/29",
|
||||
"2a0d:db40::/29",
|
||||
"2a0d:f780::/29",
|
||||
"2a0e:840::/29",
|
||||
"2a0e:25c0::/29",
|
||||
@@ -2149,7 +2160,6 @@
|
||||
"2a0e:89c0::/29",
|
||||
"2a0e:8d40::/29",
|
||||
"2a0e:9480::/29",
|
||||
"2a0e:9c80::/29",
|
||||
"2a0e:acc0::/29",
|
||||
"2a0e:b640::/29",
|
||||
"2a0e:b6c0::/29",
|
||||
@@ -2157,8 +2167,8 @@
|
||||
"2a0e:bec0::/29",
|
||||
"2a0e:e580::/29",
|
||||
"2a0e:eb80::/29",
|
||||
"2a0f:1b80::/32",
|
||||
"2a0f:2a80::/29",
|
||||
"2a0f:3300::/29",
|
||||
"2a0f:5880::/29",
|
||||
"2a0f:6b80::/29",
|
||||
"2a0f:8740::/29",
|
||||
@@ -2186,16 +2196,19 @@
|
||||
"2a10:8140::/29",
|
||||
"2a10:8d80::/29",
|
||||
"2a10:9880::/29",
|
||||
"2a10:9f40::/29",
|
||||
"2a10:bbc0::/32",
|
||||
"2a10:c540::/29",
|
||||
"2a10:d180::/29",
|
||||
"2a10:d4c0::/29",
|
||||
"2a10:d840::/29",
|
||||
"2a11:db80::/29",
|
||||
"2a11:dd40::/32",
|
||||
"2a12:180::/29",
|
||||
"2a12:840::/29",
|
||||
"2a12:b40::/29",
|
||||
"2a12:5c00::/29",
|
||||
"2a12:9580::/29",
|
||||
"2a12:a180::/29",
|
||||
"2a12:b7c0::/29",
|
||||
"2a12:c080::/29",
|
||||
"2a12:d640::/29",
|
||||
@@ -2205,6 +2218,7 @@
|
||||
"2a13:1180::/29",
|
||||
"2a13:2ac0::/29",
|
||||
"2a13:3180::/29",
|
||||
"2a13:3300::/29",
|
||||
"2a13:50c0::/29",
|
||||
"2a13:5280::/29",
|
||||
"2a13:9c40::/29",
|
||||
|
||||
+234
-91
File diff suppressed because it is too large
Load Diff
@@ -4,6 +4,7 @@
|
||||
"ipv4": [
|
||||
"41.189.224.0/19",
|
||||
"91.209.83.0/24",
|
||||
"102.202.232.0/22",
|
||||
"102.205.104.0/23",
|
||||
"102.214.90.0/24",
|
||||
"196.49.10.0/24",
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
"31.3.72.0/21",
|
||||
"31.25.16.0/21",
|
||||
"31.31.80.0/21",
|
||||
"31.99.200.0/21",
|
||||
"31.131.188.0/23",
|
||||
"31.185.64.0/19",
|
||||
"31.193.232.0/21",
|
||||
@@ -77,6 +78,7 @@
|
||||
"62.12.32.0/20",
|
||||
"62.12.48.0/21",
|
||||
"62.44.32.0/19",
|
||||
"62.44.128.0/18",
|
||||
"62.61.128.0/19",
|
||||
"62.66.0.0/16",
|
||||
"62.69.152.0/21",
|
||||
@@ -90,9 +92,11 @@
|
||||
"62.164.200.0/21",
|
||||
"62.182.248.0/21",
|
||||
"62.192.160.0/22",
|
||||
"62.198.0.0/15",
|
||||
"62.242.0.0/15",
|
||||
"64.224.12.0/22",
|
||||
"66.97.192.0/19",
|
||||
"74.122.238.0/24",
|
||||
"77.33.0.0/16",
|
||||
"77.66.0.0/17",
|
||||
"77.68.128.0/17",
|
||||
@@ -100,6 +104,7 @@
|
||||
"77.75.80.0/21",
|
||||
"77.75.160.0/21",
|
||||
"77.83.76.0/22",
|
||||
"77.95.218.0/24",
|
||||
"77.111.240.0/22",
|
||||
"77.212.0.0/14",
|
||||
"77.221.224.0/19",
|
||||
@@ -139,9 +144,11 @@
|
||||
"80.196.0.0/14",
|
||||
"80.208.0.0/17",
|
||||
"80.209.0.0/17",
|
||||
"80.210.64.0/19",
|
||||
"80.210.64.0/20",
|
||||
"80.243.112.0/20",
|
||||
"80.245.100.0/22",
|
||||
"80.248.136.0/24",
|
||||
"80.248.138.0/23",
|
||||
"81.7.128.0/18",
|
||||
"81.19.224.0/19",
|
||||
"81.23.128.0/20",
|
||||
@@ -182,7 +189,6 @@
|
||||
"85.184.128.0/18",
|
||||
"85.191.0.0/16",
|
||||
"85.194.233.0/24",
|
||||
"85.194.254.0/23",
|
||||
"85.202.16.0/20",
|
||||
"85.202.64.0/20",
|
||||
"85.203.128.0/17",
|
||||
@@ -193,6 +199,7 @@
|
||||
"85.209.116.0/22",
|
||||
"85.218.128.0/17",
|
||||
"85.233.224.0/19",
|
||||
"85.235.224.0/19",
|
||||
"85.236.64.0/18",
|
||||
"86.48.32.0/21",
|
||||
"86.48.40.0/22",
|
||||
@@ -212,11 +219,12 @@
|
||||
"86.106.96.0/24",
|
||||
"86.111.215.0/24",
|
||||
"87.48.0.0/13",
|
||||
"87.56.0.0/18",
|
||||
"87.56.32.0/19",
|
||||
"87.56.128.0/17",
|
||||
"87.57.0.0/16",
|
||||
"87.58.0.0/18",
|
||||
"87.58.128.0/17",
|
||||
"87.58.128.0/18",
|
||||
"87.58.224.0/19",
|
||||
"87.59.0.0/16",
|
||||
"87.60.0.0/14",
|
||||
"87.72.0.0/15",
|
||||
@@ -240,6 +248,7 @@
|
||||
"89.188.72.0/21",
|
||||
"89.188.80.0/20",
|
||||
"89.221.160.0/20",
|
||||
"89.233.0.0/18",
|
||||
"89.239.192.0/18",
|
||||
"89.249.0.0/20",
|
||||
"90.184.0.0/15",
|
||||
@@ -338,7 +347,6 @@
|
||||
"91.236.16.0/24",
|
||||
"91.236.28.0/24",
|
||||
"91.236.123.0/24",
|
||||
"91.236.186.0/24",
|
||||
"91.236.210.0/23",
|
||||
"91.238.206.0/24",
|
||||
"91.238.212.0/24",
|
||||
@@ -363,14 +371,18 @@
|
||||
"93.90.0.0/20",
|
||||
"93.90.112.0/20",
|
||||
"93.157.204.0/24",
|
||||
"93.160.0.0/13",
|
||||
"93.160.0.0/14",
|
||||
"93.164.0.0/17",
|
||||
"93.164.160.0/19",
|
||||
"93.164.192.0/18",
|
||||
"93.165.0.0/16",
|
||||
"93.166.0.0/15",
|
||||
"93.175.252.0/22",
|
||||
"93.176.64.0/18",
|
||||
"93.178.128.0/18",
|
||||
"93.180.80.0/21",
|
||||
"93.184.192.0/20",
|
||||
"93.187.69.0/24",
|
||||
"93.190.127.0/24",
|
||||
"93.191.152.0/21",
|
||||
"94.18.0.0/16",
|
||||
"94.101.208.0/20",
|
||||
@@ -406,7 +418,8 @@
|
||||
"109.238.48.0/20",
|
||||
"128.0.8.0/21",
|
||||
"128.0.72.0/21",
|
||||
"128.76.0.0/16",
|
||||
"128.76.0.0/18",
|
||||
"128.76.128.0/17",
|
||||
"128.77.128.0/17",
|
||||
"129.142.0.0/16",
|
||||
"130.185.128.0/20",
|
||||
@@ -418,11 +431,13 @@
|
||||
"138.124.178.0/24",
|
||||
"139.45.0.0/17",
|
||||
"141.98.12.0/22",
|
||||
"145.11.32.0/21",
|
||||
"145.255.56.0/21",
|
||||
"146.19.99.0/24",
|
||||
"147.29.0.0/16",
|
||||
"147.78.28.0/22",
|
||||
"147.78.72.0/22",
|
||||
"150.251.224.0/21",
|
||||
"152.73.0.0/16",
|
||||
"152.95.0.0/16",
|
||||
"152.115.0.0/16",
|
||||
@@ -432,13 +447,20 @@
|
||||
"158.255.79.0/24",
|
||||
"159.20.0.0/21",
|
||||
"159.253.88.0/21",
|
||||
"162.4.190.0/24",
|
||||
"164.37.56.0/22",
|
||||
"170.118.224.0/20",
|
||||
"171.20.0.0/16",
|
||||
"171.25.228.0/24",
|
||||
"176.20.0.0/17",
|
||||
"176.20.192.0/18",
|
||||
"176.20.224.0/19",
|
||||
"176.21.0.0/16",
|
||||
"176.22.0.0/15",
|
||||
"176.22.0.0/17",
|
||||
"176.22.160.0/19",
|
||||
"176.22.192.0/18",
|
||||
"176.23.0.0/17",
|
||||
"176.23.160.0/19",
|
||||
"176.23.192.0/18",
|
||||
"176.62.200.0/21",
|
||||
"176.67.184.0/21",
|
||||
"176.222.232.0/21",
|
||||
@@ -460,11 +482,11 @@
|
||||
"185.4.216.0/22",
|
||||
"185.5.164.0/22",
|
||||
"185.9.4.0/22",
|
||||
"185.9.24.0/22",
|
||||
"185.9.140.0/22",
|
||||
"185.10.8.0/22",
|
||||
"185.10.212.0/22",
|
||||
"185.10.220.0/22",
|
||||
"185.10.241.0/24",
|
||||
"185.15.72.0/22",
|
||||
"185.15.124.0/22",
|
||||
"185.16.16.0/22",
|
||||
@@ -479,7 +501,6 @@
|
||||
"185.20.204.0/22",
|
||||
"185.20.240.0/22",
|
||||
"185.21.40.0/22",
|
||||
"185.21.129.0/24",
|
||||
"185.21.232.0/22",
|
||||
"185.22.72.0/22",
|
||||
"185.23.216.0/22",
|
||||
@@ -513,6 +534,7 @@
|
||||
"185.50.192.0/22",
|
||||
"185.51.76.0/22",
|
||||
"185.55.196.0/22",
|
||||
"185.56.56.0/22",
|
||||
"185.56.100.0/22",
|
||||
"185.56.140.0/22",
|
||||
"185.56.164.0/22",
|
||||
@@ -532,6 +554,7 @@
|
||||
"185.73.72.0/22",
|
||||
"185.73.196.0/22",
|
||||
"185.74.48.0/22",
|
||||
"185.75.22.0/23",
|
||||
"185.81.36.0/22",
|
||||
"185.81.116.0/22",
|
||||
"185.82.228.0/22",
|
||||
@@ -559,6 +582,7 @@
|
||||
"185.101.152.0/22",
|
||||
"185.103.120.0/22",
|
||||
"185.105.180.0/22",
|
||||
"185.106.119.0/24",
|
||||
"185.107.12.0/22",
|
||||
"185.107.168.0/22",
|
||||
"185.107.176.0/22",
|
||||
@@ -598,7 +622,6 @@
|
||||
"185.128.100.0/22",
|
||||
"185.128.228.0/22",
|
||||
"185.129.60.0/22",
|
||||
"185.130.88.0/24",
|
||||
"185.130.96.0/22",
|
||||
"185.130.160.0/22",
|
||||
"185.130.188.0/22",
|
||||
@@ -644,10 +667,12 @@
|
||||
"185.161.77.0/24",
|
||||
"185.162.104.0/22",
|
||||
"185.162.136.0/22",
|
||||
"185.163.130.0/24",
|
||||
"185.163.184.0/21",
|
||||
"185.163.196.0/22",
|
||||
"185.164.12.0/22",
|
||||
"185.165.72.0/22",
|
||||
"185.166.95.0/24",
|
||||
"185.166.120.0/22",
|
||||
"185.167.164.0/22",
|
||||
"185.168.180.0/22",
|
||||
@@ -712,6 +737,7 @@
|
||||
"185.221.36.0/22",
|
||||
"185.221.100.0/22",
|
||||
"185.221.244.0/22",
|
||||
"185.223.12.0/22",
|
||||
"185.223.24.0/22",
|
||||
"185.224.16.0/22",
|
||||
"185.228.68.0/22",
|
||||
@@ -958,6 +984,7 @@
|
||||
"193.169.154.0/23",
|
||||
"193.178.175.0/24",
|
||||
"193.186.35.0/24",
|
||||
"193.186.211.0/24",
|
||||
"193.187.160.0/21",
|
||||
"193.189.90.0/23",
|
||||
"193.189.92.0/23",
|
||||
@@ -992,7 +1019,6 @@
|
||||
"194.0.155.0/24",
|
||||
"194.0.161.0/24",
|
||||
"194.0.236.0/24",
|
||||
"194.1.219.0/24",
|
||||
"194.8.242.0/23",
|
||||
"194.8.244.0/23",
|
||||
"194.9.86.0/23",
|
||||
@@ -1001,6 +1027,8 @@
|
||||
"194.11.64.0/20",
|
||||
"194.11.80.0/23",
|
||||
"194.11.82.0/24",
|
||||
"194.19.128.0/18",
|
||||
"194.19.192.0/19",
|
||||
"194.28.24.0/22",
|
||||
"194.28.248.0/21",
|
||||
"194.29.207.0/24",
|
||||
@@ -1068,6 +1096,7 @@
|
||||
"194.247.58.0/24",
|
||||
"194.247.61.0/24",
|
||||
"194.247.188.0/23",
|
||||
"194.255.0.0/16",
|
||||
"195.5.100.0/23",
|
||||
"195.5.160.0/24",
|
||||
"195.7.20.0/22",
|
||||
@@ -1088,6 +1117,8 @@
|
||||
"195.49.232.0/22",
|
||||
"195.50.32.0/19",
|
||||
"195.54.64.0/19",
|
||||
"195.58.128.0/21",
|
||||
"195.58.144.0/21",
|
||||
"195.60.90.128/25",
|
||||
"195.60.160.0/23",
|
||||
"195.66.109.0/24",
|
||||
@@ -1148,6 +1179,7 @@
|
||||
"195.97.128.0/18",
|
||||
"195.110.16.0/23",
|
||||
"195.128.174.0/23",
|
||||
"195.130.193.0/24",
|
||||
"195.135.216.0/22",
|
||||
"195.137.178.0/24",
|
||||
"195.137.183.0/24",
|
||||
@@ -1161,6 +1193,7 @@
|
||||
"195.182.39.0/24",
|
||||
"195.182.216.0/23",
|
||||
"195.184.32.0/19",
|
||||
"195.184.96.0/19",
|
||||
"195.189.130.0/23",
|
||||
"195.189.232.0/23",
|
||||
"195.190.18.0/24",
|
||||
@@ -1181,15 +1214,14 @@
|
||||
"195.226.199.0/24",
|
||||
"195.231.128.0/17",
|
||||
"195.234.155.0/24",
|
||||
"195.234.160.0/24",
|
||||
"195.242.120.0/23",
|
||||
"195.242.130.0/23",
|
||||
"195.242.160.0/24",
|
||||
"195.242.192.0/22",
|
||||
"195.245.193.0/24",
|
||||
"195.245.210.0/24",
|
||||
"195.246.198.0/24",
|
||||
"195.249.0.0/16",
|
||||
"195.253.216.0/21",
|
||||
"195.254.168.0/23",
|
||||
"198.13.232.0/22",
|
||||
"209.131.112.0/22",
|
||||
@@ -1204,6 +1236,7 @@
|
||||
"212.88.64.0/19",
|
||||
"212.93.32.0/19",
|
||||
"212.97.128.0/19",
|
||||
"212.97.192.0/18",
|
||||
"212.98.64.0/18",
|
||||
"212.99.224.0/19",
|
||||
"212.112.128.0/19",
|
||||
@@ -1221,6 +1254,8 @@
|
||||
"213.132.0.0/19",
|
||||
"213.140.64.0/19",
|
||||
"213.142.140.0/23",
|
||||
"213.150.32.0/19",
|
||||
"213.173.224.0/19",
|
||||
"213.174.64.0/19",
|
||||
"213.179.80.0/20",
|
||||
"213.232.72.0/22",
|
||||
@@ -1238,6 +1273,7 @@
|
||||
"217.61.250.0/23",
|
||||
"217.63.96.0/19",
|
||||
"217.71.0.0/20",
|
||||
"217.74.128.0/19",
|
||||
"217.74.208.0/20",
|
||||
"217.116.208.0/20",
|
||||
"217.116.224.0/19",
|
||||
@@ -1254,6 +1290,7 @@
|
||||
"2001:678:51c::/48",
|
||||
"2001:678:67c::/48",
|
||||
"2001:678:72c::/48",
|
||||
"2001:678:824::/48",
|
||||
"2001:678:960::/48",
|
||||
"2001:678:9ec::/48",
|
||||
"2001:678:aec::/48",
|
||||
@@ -1261,6 +1298,10 @@
|
||||
"2001:678:dc4::/48",
|
||||
"2001:678:dc8::/48",
|
||||
"2001:678:10cc::/48",
|
||||
"2001:678:11bc::/48",
|
||||
"2001:678:1268::/48",
|
||||
"2001:678:126c::/48",
|
||||
"2001:678:1270::/48",
|
||||
"2001:67c:b8::/48",
|
||||
"2001:67c:bc::/48",
|
||||
"2001:67c:158::/48",
|
||||
@@ -1281,11 +1322,11 @@
|
||||
"2001:67c:9c0::/48",
|
||||
"2001:67c:b48::/48",
|
||||
"2001:67c:bec::/48",
|
||||
"2001:67c:c70::/48",
|
||||
"2001:67c:d1c::/48",
|
||||
"2001:67c:1034::/48",
|
||||
"2001:67c:1068::/48",
|
||||
"2001:67c:11c0::/48",
|
||||
"2001:67c:127c::/48",
|
||||
"2001:67c:12f8::/48",
|
||||
"2001:67c:1310::/48",
|
||||
"2001:67c:16a0::/48",
|
||||
@@ -1324,19 +1365,19 @@
|
||||
"2001:7f8:149::/48",
|
||||
"2001:878::/29",
|
||||
"2001:948::/29",
|
||||
"2001:b50::/32",
|
||||
"2001:df4:3480::/48",
|
||||
"2001:1448::/32",
|
||||
"2001:14d0::/29",
|
||||
"2001:1580::/32",
|
||||
"2001:15f8::/32",
|
||||
"2001:2010::/28",
|
||||
"2001:4db0::/32",
|
||||
"2a00:c80::/32",
|
||||
"2a00:df0::/32",
|
||||
"2a00:ef0::/32",
|
||||
"2a00:1040::/32",
|
||||
"2a00:1568::/32",
|
||||
"2a00:19f8::/32",
|
||||
"2a00:19f8::/29",
|
||||
"2a00:1b18::/29",
|
||||
"2a00:1b70::/29",
|
||||
"2a00:1cf0::/29",
|
||||
@@ -1365,11 +1406,11 @@
|
||||
"2a00:ca40::/32",
|
||||
"2a00:cf80::/32",
|
||||
"2a00:d920::/32",
|
||||
"2a00:e3a0::/32",
|
||||
"2a00:e7c0::/32",
|
||||
"2a00:eec0::/32",
|
||||
"2a00:fbe0::/29",
|
||||
"2a00:fd00::/29",
|
||||
"2a01:3a0::/29",
|
||||
"2a01:4f0::/32",
|
||||
"2a01:558::/32",
|
||||
"2a01:630::/32",
|
||||
@@ -1387,13 +1428,13 @@
|
||||
"2a01:7a80::/29",
|
||||
"2a01:7cc0::/32",
|
||||
"2a01:7dc0::/32",
|
||||
"2a01:8120::/32",
|
||||
"2a01:8300::/32",
|
||||
"2a01:8ec0::/29",
|
||||
"2a01:a660::/32",
|
||||
"2a01:afa0::/32",
|
||||
"2a01:e8c0::/29",
|
||||
"2a01:ea40::/29",
|
||||
"2a01:ef80::/32",
|
||||
"2a01:f080::/29",
|
||||
"2a02:108::/29",
|
||||
"2a02:188::/29",
|
||||
@@ -1443,7 +1484,6 @@
|
||||
"2a03:3080::/32",
|
||||
"2a03:3b80::/32",
|
||||
"2a03:3fa0::/32",
|
||||
"2a03:46c0::/32",
|
||||
"2a03:4940::/32",
|
||||
"2a03:4be0::/29",
|
||||
"2a03:53c0::/32",
|
||||
@@ -1472,12 +1512,12 @@
|
||||
"2a04:5940::/29",
|
||||
"2a04:6b00::/29",
|
||||
"2a04:6d00::/29",
|
||||
"2a04:7b80::/29",
|
||||
"2a04:8b40::/29",
|
||||
"2a04:96c0::/29",
|
||||
"2a04:a800::/29",
|
||||
"2a04:a880::/29",
|
||||
"2a04:c2c0::/29",
|
||||
"2a04:dac0::/29",
|
||||
"2a04:e200::/29",
|
||||
"2a04:e3c0::/29",
|
||||
"2a04:fe00::/29",
|
||||
@@ -1492,6 +1532,7 @@
|
||||
"2a05:a600::/29",
|
||||
"2a05:a900::/29",
|
||||
"2a05:e000::/29",
|
||||
"2a05:f3c0::/29",
|
||||
"2a05:f6c0::/29",
|
||||
"2a05:f700::/29",
|
||||
"2a06:b00::/29",
|
||||
@@ -1526,6 +1567,7 @@
|
||||
"2a07:91c0::/29",
|
||||
"2a07:a680::/29",
|
||||
"2a07:ae40::/29",
|
||||
"2a09:300::/29",
|
||||
"2a09:2bc0::/32",
|
||||
"2a09:3e80::/29",
|
||||
"2a09:5500::/29",
|
||||
@@ -1604,6 +1646,7 @@
|
||||
"2a0e:fb80::/29",
|
||||
"2a0f:940::/29",
|
||||
"2a0f:b40::/29",
|
||||
"2a0f:1dc0::/29",
|
||||
"2a0f:2280::/29",
|
||||
"2a0f:2640::/29",
|
||||
"2a0f:dc80::/29",
|
||||
@@ -1633,6 +1676,7 @@
|
||||
"2a12:6840::/29",
|
||||
"2a12:8900::/29",
|
||||
"2a12:a780::/32",
|
||||
"2a12:cd40::/29",
|
||||
"2a13:40::/32",
|
||||
"2a13:2540::/29",
|
||||
"2a13:4340::/29",
|
||||
@@ -1648,7 +1692,6 @@
|
||||
"2a13:e740::/29",
|
||||
"2a13:ec80::/29",
|
||||
"2a13:f540::/29",
|
||||
"2a14:a00::/29",
|
||||
"2a14:1c80::/29",
|
||||
"2a14:4640::/29",
|
||||
"2a14:50c0::/29",
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"104.245.204.0/22",
|
||||
"162.213.168.0/22",
|
||||
"162.253.100.0/22",
|
||||
"192.243.48.0/20",
|
||||
"193.169.160.0/23",
|
||||
"198.101.28.0/22",
|
||||
"199.127.196.0/22",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"45.65.244.0/22",
|
||||
"45.68.40.0/22",
|
||||
"45.68.60.0/23",
|
||||
"45.68.106.0/23",
|
||||
"45.68.108.0/22",
|
||||
"45.164.12.0/22",
|
||||
"45.164.172.0/22",
|
||||
@@ -139,8 +140,7 @@
|
||||
"201.131.107.0/24",
|
||||
"201.221.126.0/24",
|
||||
"201.229.128.0/17",
|
||||
"204.126.128.0/23",
|
||||
"205.233.76.0/22"
|
||||
"204.126.128.0/23"
|
||||
],
|
||||
"ipv6": [
|
||||
"2001:1308::/32",
|
||||
@@ -161,12 +161,15 @@
|
||||
"2801:184::/44",
|
||||
"2801:1f5::/40",
|
||||
"2803:d0::/32",
|
||||
"2803:230::/32",
|
||||
"2803:550::/32",
|
||||
"2803:6e0::/32",
|
||||
"2803:760::/32",
|
||||
"2803:7a0::/32",
|
||||
"2803:8a0::/32",
|
||||
"2803:9c0::/32",
|
||||
"2803:c30::/32",
|
||||
"2803:e30::/32",
|
||||
"2803:e50::/32",
|
||||
"2803:e90::/32",
|
||||
"2803:ed0::/32",
|
||||
@@ -207,6 +210,7 @@
|
||||
"2803:3cd0::/32",
|
||||
"2803:3e10::/32",
|
||||
"2803:3f50::/32",
|
||||
"2803:4030::/32",
|
||||
"2803:4210::/32",
|
||||
"2803:4250::/32",
|
||||
"2803:4320::/32",
|
||||
@@ -234,6 +238,7 @@
|
||||
"2803:6590::/32",
|
||||
"2803:6650::/32",
|
||||
"2803:66d0::/32",
|
||||
"2803:6830::/32",
|
||||
"2803:6850::/32",
|
||||
"2803:69d0::/32",
|
||||
"2803:6ad0::/32",
|
||||
@@ -242,6 +247,7 @@
|
||||
"2803:6de0::/32",
|
||||
"2803:6f10::/32",
|
||||
"2803:6f50::/32",
|
||||
"2803:6fd0::/32",
|
||||
"2803:7350::/32",
|
||||
"2803:7590::/32",
|
||||
"2803:7610::/32",
|
||||
@@ -258,6 +264,7 @@
|
||||
"2803:7d10::/32",
|
||||
"2803:7d90::/32",
|
||||
"2803:7ed0::/32",
|
||||
"2803:7fd0::/32",
|
||||
"2803:8090::/32",
|
||||
"2803:8490::/32",
|
||||
"2803:8710::/32",
|
||||
@@ -268,6 +275,7 @@
|
||||
"2803:8d20::/32",
|
||||
"2803:8ed0::/32",
|
||||
"2803:9040::/32",
|
||||
"2803:9130::/32",
|
||||
"2803:9150::/32",
|
||||
"2803:9640::/32",
|
||||
"2803:9a90::/32",
|
||||
@@ -280,7 +288,6 @@
|
||||
"2803:a610::/32",
|
||||
"2803:a640::/32",
|
||||
"2803:a650::/32",
|
||||
"2803:a750::/32",
|
||||
"2803:a950::/32",
|
||||
"2803:aad0::/32",
|
||||
"2803:ab00::/32",
|
||||
@@ -289,13 +296,17 @@
|
||||
"2803:ad50::/32",
|
||||
"2803:ae50::/32",
|
||||
"2803:b090::/32",
|
||||
"2803:b230::/32",
|
||||
"2803:b290::/32",
|
||||
"2803:b3d0::/32",
|
||||
"2803:ba10::/32",
|
||||
"2803:be30::/32",
|
||||
"2803:bfd0::/32",
|
||||
"2803:c010::/32",
|
||||
"2803:c250::/32",
|
||||
"2803:c260::/32",
|
||||
"2803:c3d0::/32",
|
||||
"2803:c430::/32",
|
||||
"2803:c750::/32",
|
||||
"2803:c7e0::/32",
|
||||
"2803:c810::/32",
|
||||
@@ -311,6 +322,7 @@
|
||||
"2803:d910::/32",
|
||||
"2803:d990::/32",
|
||||
"2803:da10::/32",
|
||||
"2803:da30::/32",
|
||||
"2803:db50::/32",
|
||||
"2803:dcd0::/32",
|
||||
"2803:dd10::/32",
|
||||
@@ -322,6 +334,7 @@
|
||||
"2803:e820::/32",
|
||||
"2803:e950::/32",
|
||||
"2803:ebd0::/32",
|
||||
"2803:ec30::/32",
|
||||
"2803:f1a0::/32",
|
||||
"2803:f280::/32",
|
||||
"2803:f2e0::/32",
|
||||
@@ -335,6 +348,7 @@
|
||||
"2803:fad0::/32",
|
||||
"2803:fd20::/32",
|
||||
"2803:fe10::/32",
|
||||
"2803:fe30::/32",
|
||||
"2803:fe50::/32"
|
||||
]
|
||||
}
|
||||
@@ -11,6 +11,7 @@
|
||||
"80.246.0.0/20",
|
||||
"80.249.64.0/20",
|
||||
"102.204.112.0/22",
|
||||
"102.206.40.0/22",
|
||||
"102.207.216.0/22",
|
||||
"102.213.56.0/22",
|
||||
"102.218.188.0/22",
|
||||
@@ -38,6 +39,7 @@
|
||||
],
|
||||
"ipv6": [
|
||||
"2001:4340::/32",
|
||||
"2c0f:41a0::/32",
|
||||
"2c0f:e8b0::/32",
|
||||
"2c0f:ea88::/32",
|
||||
"2c0f:f000::/32",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"45.6.224.0/22",
|
||||
"45.65.203.0/24",
|
||||
"45.68.96.0/22",
|
||||
"45.68.120.0/22",
|
||||
"45.70.12.0/22",
|
||||
"45.70.56.0/22",
|
||||
"45.70.196.0/22",
|
||||
@@ -46,6 +47,7 @@
|
||||
"45.184.224.0/22",
|
||||
"45.185.160.0/22",
|
||||
"45.186.4.0/22",
|
||||
"45.186.126.0/23",
|
||||
"45.186.140.0/23",
|
||||
"45.187.0.0/22",
|
||||
"45.188.56.0/23",
|
||||
@@ -54,6 +56,7 @@
|
||||
"45.188.232.0/22",
|
||||
"45.189.56.0/22",
|
||||
"45.189.112.0/22",
|
||||
"45.190.87.0/24",
|
||||
"45.224.20.0/22",
|
||||
"45.224.96.0/22",
|
||||
"45.224.116.0/22",
|
||||
@@ -67,6 +70,7 @@
|
||||
"45.228.172.0/22",
|
||||
"45.228.180.0/22",
|
||||
"45.229.4.0/22",
|
||||
"45.229.16.0/22",
|
||||
"45.229.48.0/22",
|
||||
"45.229.87.0/24",
|
||||
"45.230.240.0/22",
|
||||
@@ -97,6 +101,7 @@
|
||||
"138.122.108.0/22",
|
||||
"138.185.136.0/22",
|
||||
"143.255.248.0/22",
|
||||
"148.227.163.0/24",
|
||||
"148.227.173.0/24",
|
||||
"157.100.0.0/16",
|
||||
"160.20.164.0/22",
|
||||
@@ -160,6 +165,7 @@
|
||||
"186.66.0.0/16",
|
||||
"186.68.0.0/14",
|
||||
"186.101.0.0/16",
|
||||
"186.121.148.0/22",
|
||||
"186.121.160.0/23",
|
||||
"186.121.164.0/22",
|
||||
"186.178.0.0/16",
|
||||
@@ -197,6 +203,7 @@
|
||||
"190.110.48.0/20",
|
||||
"190.110.192.0/19",
|
||||
"190.111.64.0/19",
|
||||
"190.113.63.0/24",
|
||||
"190.120.64.0/19",
|
||||
"190.123.32.0/21",
|
||||
"190.123.48.0/20",
|
||||
@@ -273,6 +280,7 @@
|
||||
"200.63.192.0/18",
|
||||
"200.69.160.0/19",
|
||||
"200.73.200.0/21",
|
||||
"200.76.112.0/22",
|
||||
"200.77.188.0/22",
|
||||
"200.85.80.0/21",
|
||||
"200.93.192.0/19",
|
||||
@@ -335,6 +343,7 @@
|
||||
"2801:10:6800::/48",
|
||||
"2801:10:a800::/48",
|
||||
"2801:11:2800::/48",
|
||||
"2801:11:8400::/48",
|
||||
"2801:11:9800::/48",
|
||||
"2801:13:4800::/48",
|
||||
"2801:13:7000::/48",
|
||||
@@ -355,6 +364,8 @@
|
||||
"2801:1e:5000::/48",
|
||||
"2801:1e:8800::/48",
|
||||
"2801:1f:4800::/48",
|
||||
"2801:19d::/44",
|
||||
"2803:30::/32",
|
||||
"2803:110::/32",
|
||||
"2803:450::/32",
|
||||
"2803:480::/32",
|
||||
@@ -369,6 +380,7 @@
|
||||
"2803:fc0::/32",
|
||||
"2803:1050::/32",
|
||||
"2803:10e0::/32",
|
||||
"2803:1130::/32",
|
||||
"2803:1160::/32",
|
||||
"2803:11d0::/32",
|
||||
"2803:1360::/32",
|
||||
@@ -422,6 +434,8 @@
|
||||
"2803:4ca0::/32",
|
||||
"2803:4e60::/32",
|
||||
"2803:4fa0::/32",
|
||||
"2803:4fd0::/32",
|
||||
"2803:5130::/32",
|
||||
"2803:51a0::/32",
|
||||
"2803:5320::/32",
|
||||
"2803:56a0::/32",
|
||||
@@ -441,6 +455,7 @@
|
||||
"2803:6490::/32",
|
||||
"2803:6520::/32",
|
||||
"2803:6620::/32",
|
||||
"2803:6630::/32",
|
||||
"2803:6710::/32",
|
||||
"2803:67c0::/32",
|
||||
"2803:6a00::/32",
|
||||
@@ -468,8 +483,7 @@
|
||||
"2803:8950::/32",
|
||||
"2803:8c20::/32",
|
||||
"2803:8c50::/32",
|
||||
"2803:8e90::/32",
|
||||
"2803:9290::/32",
|
||||
"2803:9030::/32",
|
||||
"2803:92a0::/32",
|
||||
"2803:92d0::/32",
|
||||
"2803:9490::/32",
|
||||
@@ -506,6 +520,7 @@
|
||||
"2803:b420::/32",
|
||||
"2803:b4c0::/32",
|
||||
"2803:b510::/32",
|
||||
"2803:b630::/32",
|
||||
"2803:b790::/32",
|
||||
"2803:b820::/32",
|
||||
"2803:bbc0::/32",
|
||||
@@ -533,6 +548,7 @@
|
||||
"2803:cc20::/32",
|
||||
"2803:cc90::/32",
|
||||
"2803:ce10::/32",
|
||||
"2803:ce30::/32",
|
||||
"2803:cf50::/32",
|
||||
"2803:cf90::/32",
|
||||
"2803:d150::/32",
|
||||
@@ -548,11 +564,13 @@
|
||||
"2803:dea0::/32",
|
||||
"2803:e0e0::/32",
|
||||
"2803:e220::/32",
|
||||
"2803:e230::/32",
|
||||
"2803:e250::/32",
|
||||
"2803:e360::/32",
|
||||
"2803:e3e0::/32",
|
||||
"2803:e590::/32",
|
||||
"2803:e620::/32",
|
||||
"2803:e830::/32",
|
||||
"2803:ec20::/32",
|
||||
"2803:ec40::/32",
|
||||
"2803:efc0::/32",
|
||||
|
||||
@@ -10,9 +10,9 @@
|
||||
"5.45.112.0/20",
|
||||
"5.101.112.0/20",
|
||||
"5.101.176.0/20",
|
||||
"5.145.176.0/23",
|
||||
"5.154.181.0/24",
|
||||
"5.188.16.0/21",
|
||||
"5.188.24.0/22",
|
||||
"5.253.63.0/24",
|
||||
"5.253.176.0/22",
|
||||
"31.24.56.0/21",
|
||||
@@ -21,12 +21,14 @@
|
||||
"37.72.111.0/24",
|
||||
"37.143.64.0/21",
|
||||
"37.157.64.0/18",
|
||||
"45.66.248.0/23",
|
||||
"45.67.128.0/22",
|
||||
"45.80.108.0/24",
|
||||
"45.80.110.0/24",
|
||||
"45.83.52.0/22",
|
||||
"45.83.72.0/22",
|
||||
"45.83.192.0/22",
|
||||
"45.85.120.0/22",
|
||||
"45.86.228.0/22",
|
||||
"45.88.59.0/24",
|
||||
"45.92.100.0/22",
|
||||
@@ -40,16 +42,16 @@
|
||||
"45.131.164.0/22",
|
||||
"45.132.64.0/22",
|
||||
"45.132.188.0/22",
|
||||
"45.139.40.0/22",
|
||||
"45.139.107.0/24",
|
||||
"45.140.48.0/22",
|
||||
"45.142.100.0/22",
|
||||
"45.143.166.0/23",
|
||||
"45.143.220.0/22",
|
||||
"45.144.4.0/22",
|
||||
"45.145.171.0/24",
|
||||
"45.146.76.0/22",
|
||||
"45.146.116.0/22",
|
||||
"45.147.93.0/24",
|
||||
"45.150.108.0/23",
|
||||
"45.151.4.0/22",
|
||||
"45.156.32.0/22",
|
||||
"45.157.192.0/22",
|
||||
@@ -69,14 +71,14 @@
|
||||
"62.65.192.0/18",
|
||||
"62.106.66.0/24",
|
||||
"62.192.154.0/24",
|
||||
"62.204.35.0/24",
|
||||
"77.72.85.0/24",
|
||||
"77.83.85.0/24",
|
||||
"77.83.86.0/23",
|
||||
"77.240.240.0/22",
|
||||
"77.247.111.0/24",
|
||||
"77.247.108.0/22",
|
||||
"78.24.48.0/21",
|
||||
"78.24.192.0/21",
|
||||
"78.40.223.0/24",
|
||||
"78.110.32.0/20",
|
||||
"79.133.180.0/24",
|
||||
"80.66.240.0/20",
|
||||
@@ -98,6 +100,7 @@
|
||||
"85.89.32.0/19",
|
||||
"85.92.119.0/24",
|
||||
"85.115.204.0/22",
|
||||
"85.137.164.0/22",
|
||||
"85.153.0.0/17",
|
||||
"85.194.200.0/22",
|
||||
"85.196.192.0/18",
|
||||
@@ -115,6 +118,7 @@
|
||||
"89.221.64.0/20",
|
||||
"89.235.192.0/18",
|
||||
"90.190.0.0/15",
|
||||
"91.102.122.0/24",
|
||||
"91.146.64.0/19",
|
||||
"91.184.248.0/22",
|
||||
"91.193.252.0/22",
|
||||
@@ -143,9 +147,11 @@
|
||||
"91.235.234.0/24",
|
||||
"91.236.38.0/23",
|
||||
"91.236.44.0/24",
|
||||
"91.236.186.0/24",
|
||||
"91.236.201.0/24",
|
||||
"91.236.222.0/24",
|
||||
"91.240.175.0/24",
|
||||
"91.242.228.0/24",
|
||||
"91.242.241.0/24",
|
||||
"92.61.70.0/23",
|
||||
"92.62.96.0/20",
|
||||
@@ -158,6 +164,7 @@
|
||||
"94.232.240.0/22",
|
||||
"94.246.192.0/18",
|
||||
"95.129.192.0/21",
|
||||
"95.143.111.0/24",
|
||||
"95.215.132.0/22",
|
||||
"103.88.42.0/24",
|
||||
"103.140.186.0/23",
|
||||
@@ -167,16 +174,23 @@
|
||||
"109.172.8.0/23",
|
||||
"109.205.189.0/24",
|
||||
"109.235.240.0/21",
|
||||
"109.238.94.0/23",
|
||||
"111.88.74.0/24",
|
||||
"117.18.118.0/24",
|
||||
"117.55.202.0/23",
|
||||
"130.49.155.0/24",
|
||||
"132.243.64.0/20",
|
||||
"141.105.128.0/20",
|
||||
"145.14.16.0/20",
|
||||
"145.14.32.0/20",
|
||||
"146.19.131.0/24",
|
||||
"146.19.143.0/24",
|
||||
"146.19.185.0/24",
|
||||
"146.19.194.0/24",
|
||||
"146.19.254.0/24",
|
||||
"146.255.176.0/21",
|
||||
"147.28.0.0/20",
|
||||
"152.55.216.0/21",
|
||||
"155.212.242.0/23",
|
||||
"159.253.16.0/21",
|
||||
"160.22.180.0/23",
|
||||
@@ -191,6 +205,7 @@
|
||||
"176.119.141.0/24",
|
||||
"176.124.32.0/23",
|
||||
"176.124.247.0/24",
|
||||
"178.17.247.0/24",
|
||||
"178.21.240.0/21",
|
||||
"178.23.112.0/21",
|
||||
"178.212.137.0/24",
|
||||
@@ -223,7 +238,7 @@
|
||||
"185.45.140.0/22",
|
||||
"185.46.20.0/22",
|
||||
"185.50.96.0/22",
|
||||
"185.53.91.0/24",
|
||||
"185.53.88.0/22",
|
||||
"185.55.48.0/22",
|
||||
"185.59.32.0/22",
|
||||
"185.68.208.0/22",
|
||||
@@ -242,7 +257,6 @@
|
||||
"185.97.148.0/22",
|
||||
"185.97.248.0/22",
|
||||
"185.103.203.0/24",
|
||||
"185.104.191.0/24",
|
||||
"185.113.252.0/22",
|
||||
"185.114.176.0/22",
|
||||
"185.116.88.0/22",
|
||||
@@ -275,7 +289,6 @@
|
||||
"185.172.24.0/22",
|
||||
"185.174.160.0/22",
|
||||
"185.180.196.0/22",
|
||||
"185.184.42.0/24",
|
||||
"185.190.249.0/24",
|
||||
"185.191.16.0/22",
|
||||
"185.193.60.0/22",
|
||||
@@ -293,16 +306,18 @@
|
||||
"185.222.106.0/24",
|
||||
"185.223.92.0/22",
|
||||
"185.228.250.0/24",
|
||||
"185.233.184.0/24",
|
||||
"185.235.80.0/22",
|
||||
"185.235.142.0/23",
|
||||
"185.235.143.0/24",
|
||||
"185.235.160.0/22",
|
||||
"185.236.32.0/22",
|
||||
"185.237.104.0/22",
|
||||
"185.241.206.0/24",
|
||||
"185.242.184.0/24",
|
||||
"185.244.48.0/23",
|
||||
"185.244.100.0/22",
|
||||
"185.246.184.0/22",
|
||||
"185.249.222.0/23",
|
||||
"185.250.45.0/24",
|
||||
"185.250.152.0/22",
|
||||
"185.254.34.0/24",
|
||||
"185.254.122.0/24",
|
||||
@@ -318,14 +333,14 @@
|
||||
"193.28.254.0/24",
|
||||
"193.31.108.0/22",
|
||||
"193.32.100.0/24",
|
||||
"193.39.79.0/24",
|
||||
"193.40.0.0/16",
|
||||
"193.42.48.0/22",
|
||||
"193.47.234.0/23",
|
||||
"193.47.244.0/23",
|
||||
"193.93.252.0/24",
|
||||
"193.104.75.0/24",
|
||||
"193.109.120.0/24",
|
||||
"193.109.160.0/22",
|
||||
"193.124.56.0/22",
|
||||
"193.138.8.0/24",
|
||||
"193.143.8.0/21",
|
||||
"193.143.240.0/21",
|
||||
@@ -350,21 +365,25 @@
|
||||
"194.48.211.0/24",
|
||||
"194.55.8.0/22",
|
||||
"194.56.212.0/24",
|
||||
"194.59.183.0/24",
|
||||
"194.61.120.0/23",
|
||||
"194.63.144.0/24",
|
||||
"194.76.198.0/24",
|
||||
"194.93.64.0/22",
|
||||
"194.106.96.0/19",
|
||||
"194.107.113.0/24",
|
||||
"194.113.153.0/24",
|
||||
"194.116.188.0/23",
|
||||
"194.117.88.0/24",
|
||||
"194.117.94.0/24",
|
||||
"194.125.236.0/22",
|
||||
"194.126.96.0/19",
|
||||
"194.146.64.0/23",
|
||||
"194.146.82.0/23",
|
||||
"194.147.215.0/24",
|
||||
"194.147.218.0/24",
|
||||
"194.147.241.0/24",
|
||||
"194.147.244.0/24",
|
||||
"194.147.255.0/24",
|
||||
"194.149.89.0/24",
|
||||
"194.150.64.0/22",
|
||||
"194.152.45.0/24",
|
||||
"194.164.246.0/24",
|
||||
@@ -401,7 +420,6 @@
|
||||
"212.7.0.0/19",
|
||||
"212.23.202.0/24",
|
||||
"212.46.38.0/24",
|
||||
"212.108.106.0/24",
|
||||
"212.237.231.0/24",
|
||||
"213.5.72.0/24",
|
||||
"213.35.128.0/17",
|
||||
@@ -413,24 +431,25 @@
|
||||
"213.187.224.0/20",
|
||||
"213.187.248.0/21",
|
||||
"213.219.64.0/18",
|
||||
"213.232.236.0/24",
|
||||
"213.239.152.0/23",
|
||||
"216.87.53.0/24",
|
||||
"217.11.166.0/23",
|
||||
"217.71.32.0/20",
|
||||
"217.119.138.0/24",
|
||||
"217.146.64.0/20",
|
||||
"217.159.128.0/17"
|
||||
"217.159.128.0/17",
|
||||
"217.180.23.0/24"
|
||||
],
|
||||
"ipv6": [
|
||||
"2001:678:94::/48",
|
||||
"2001:678:5e0::/48",
|
||||
"2001:678:6d8::/48",
|
||||
"2001:678:a54::/48",
|
||||
"2001:678:f64::/48",
|
||||
"2001:67c:32c::/48",
|
||||
"2001:67c:3c8::/48",
|
||||
"2001:67c:6e4::/48",
|
||||
"2001:67c:804::/48",
|
||||
"2001:67c:a40::/48",
|
||||
"2001:67c:dd8::/48",
|
||||
"2001:67c:e64::/48",
|
||||
"2001:67c:ec4::/48",
|
||||
@@ -474,7 +493,6 @@
|
||||
"2a02:e80::/32",
|
||||
"2a02:29e8::/29",
|
||||
"2a02:68a0::/32",
|
||||
"2a02:7980::/32",
|
||||
"2a03:29c0::/32",
|
||||
"2a03:42e0::/32",
|
||||
"2a03:4360::/32",
|
||||
@@ -493,6 +511,8 @@
|
||||
"2a05:1cc0::/29",
|
||||
"2a05:4080::/29",
|
||||
"2a05:4280::/29",
|
||||
"2a05:cfc0::/29",
|
||||
"2a06:9c0::/29",
|
||||
"2a06:22c0::/29",
|
||||
"2a06:6b00::/29",
|
||||
"2a06:a980::/29",
|
||||
@@ -509,7 +529,7 @@
|
||||
"2a07:9900::/29",
|
||||
"2a07:b400::/29",
|
||||
"2a07:ddc0::/29",
|
||||
"2a07:e580::/29",
|
||||
"2a07:e000::/29",
|
||||
"2a09:5840::/29",
|
||||
"2a09:6940::/29",
|
||||
"2a09:8240::/32",
|
||||
@@ -531,15 +551,13 @@
|
||||
"2a0b:ac40::/29",
|
||||
"2a0b:b240::/29",
|
||||
"2a0b:b2c0::/29",
|
||||
"2a0b:ba40::/29",
|
||||
"2a0b:f740::/29",
|
||||
"2a0c:1180::/29",
|
||||
"2a0c:36c0::/29",
|
||||
"2a0c:9d40::/29",
|
||||
"2a0c:e240::/32",
|
||||
"2a0c:f940::/29",
|
||||
"2a0d:c0::/29",
|
||||
"2a0d:3e40::/29",
|
||||
"2a0d:4ec0::/29",
|
||||
"2a0d:6800::/29",
|
||||
"2a0d:6b00::/29",
|
||||
"2a0d:8f00::/29",
|
||||
@@ -550,16 +568,11 @@
|
||||
"2a0e:4940::/32",
|
||||
"2a0e:4c00::/29",
|
||||
"2a0e:7c80::/29",
|
||||
"2a0e:7d80::/29",
|
||||
"2a0e:8680::/29",
|
||||
"2a0e:8a80::/29",
|
||||
"2a0e:a840::/32",
|
||||
"2a0e:db40::/29",
|
||||
"2a0e:e740::/29",
|
||||
"2a0f:4980::/29",
|
||||
"2a0f:a680::/29",
|
||||
"2a0f:aac0::/29",
|
||||
"2a0f:bb80::/29",
|
||||
"2a10:1fc0::/29",
|
||||
"2a10:2a00::/29",
|
||||
"2a10:46c0::/29",
|
||||
@@ -572,6 +585,7 @@
|
||||
"2a11:6a00::/29",
|
||||
"2a11:9000::/29",
|
||||
"2a11:cc40::/29",
|
||||
"2a12:e00::/32",
|
||||
"2a12:1200::/29",
|
||||
"2a12:1b80::/32",
|
||||
"2a12:2780::/29",
|
||||
@@ -583,14 +597,13 @@
|
||||
"2a12:ab00::/29",
|
||||
"2a12:bc40::/29",
|
||||
"2a12:c740::/29",
|
||||
"2a12:d0c0::/29",
|
||||
"2a13:b80::/29",
|
||||
"2a13:1c80::/29",
|
||||
"2a13:3600::/29",
|
||||
"2a13:6000::/29",
|
||||
"2a13:7a40::/29",
|
||||
"2a13:85c0::/29",
|
||||
"2a13:adc0::/29",
|
||||
"2a13:c180::/29",
|
||||
"2a13:c5c0::/32",
|
||||
"2a13:ca40::/29",
|
||||
"2a13:cec0::/29",
|
||||
|
||||
@@ -65,6 +65,9 @@
|
||||
"102.164.114.0/23",
|
||||
"102.164.122.0/24",
|
||||
"102.184.0.0/13",
|
||||
"102.202.78.0/24",
|
||||
"102.202.166.0/23",
|
||||
"102.202.222.0/24",
|
||||
"102.204.121.0/24",
|
||||
"102.206.48.0/22",
|
||||
"102.206.80.0/24",
|
||||
|
||||
@@ -23,7 +23,14 @@
|
||||
"2.59.232.0/22",
|
||||
"2.59.244.0/22",
|
||||
"2.136.0.0/13",
|
||||
"2.152.0.0/14",
|
||||
"2.152.0.0/18",
|
||||
"2.152.66.0/23",
|
||||
"2.152.72.0/21",
|
||||
"2.152.80.0/20",
|
||||
"2.152.96.0/19",
|
||||
"2.152.128.0/17",
|
||||
"2.153.0.0/16",
|
||||
"2.154.0.0/15",
|
||||
"5.1.32.0/21",
|
||||
"5.2.24.0/21",
|
||||
"5.2.88.0/21",
|
||||
@@ -69,6 +76,7 @@
|
||||
"5.158.216.0/21",
|
||||
"5.159.8.0/21",
|
||||
"5.159.128.0/18",
|
||||
"5.159.195.0/24",
|
||||
"5.159.240.0/21",
|
||||
"5.175.40.0/21",
|
||||
"5.180.228.0/22",
|
||||
@@ -90,7 +98,6 @@
|
||||
"5.183.210.0/24",
|
||||
"5.183.220.0/22",
|
||||
"5.187.0.0/21",
|
||||
"5.187.38.0/23",
|
||||
"5.199.224.0/21",
|
||||
"5.205.0.0/16",
|
||||
"5.224.0.0/15",
|
||||
@@ -127,6 +134,7 @@
|
||||
"31.47.72.0/21",
|
||||
"31.131.176.0/21",
|
||||
"31.170.100.0/22",
|
||||
"31.171.213.0/24",
|
||||
"31.172.64.0/20",
|
||||
"31.177.48.0/21",
|
||||
"31.187.68.0/24",
|
||||
@@ -148,9 +156,7 @@
|
||||
"31.223.191.0/24",
|
||||
"37.0.104.0/21",
|
||||
"37.1.176.0/21",
|
||||
"37.10.70.0/24",
|
||||
"37.10.72.0/21",
|
||||
"37.10.108.0/24",
|
||||
"37.10.128.0/17",
|
||||
"37.11.0.0/16",
|
||||
"37.12.0.0/14",
|
||||
@@ -213,7 +219,7 @@
|
||||
"45.10.4.0/22",
|
||||
"45.10.104.0/22",
|
||||
"45.10.112.0/22",
|
||||
"45.10.128.0/23",
|
||||
"45.10.128.0/24",
|
||||
"45.10.130.0/24",
|
||||
"45.11.64.0/22",
|
||||
"45.12.152.0/22",
|
||||
@@ -423,7 +429,6 @@
|
||||
"46.102.103.0/24",
|
||||
"46.102.160.0/21",
|
||||
"46.136.0.0/16",
|
||||
"46.149.98.0/24",
|
||||
"46.149.106.0/24",
|
||||
"46.175.128.0/24",
|
||||
"46.183.112.0/21",
|
||||
@@ -439,7 +444,7 @@
|
||||
"46.251.160.0/19",
|
||||
"46.251.252.0/22",
|
||||
"46.253.32.0/20",
|
||||
"46.253.138.0/23",
|
||||
"46.253.138.0/24",
|
||||
"46.253.224.0/20",
|
||||
"46.254.104.0/24",
|
||||
"46.255.24.0/24",
|
||||
@@ -494,6 +499,7 @@
|
||||
"77.72.208.0/21",
|
||||
"77.73.40.0/21",
|
||||
"77.73.80.0/21",
|
||||
"77.73.118.0/24",
|
||||
"77.73.160.0/21",
|
||||
"77.73.200.0/21",
|
||||
"77.75.176.0/21",
|
||||
@@ -533,10 +539,7 @@
|
||||
"79.98.244.0/22",
|
||||
"79.99.208.0/21",
|
||||
"79.108.0.0/17",
|
||||
"79.108.128.0/19",
|
||||
"79.108.200.0/21",
|
||||
"79.108.208.0/20",
|
||||
"79.108.226.0/24",
|
||||
"79.108.136.0/21",
|
||||
"79.108.228.0/22",
|
||||
"79.108.232.0/21",
|
||||
"79.108.240.0/20",
|
||||
@@ -575,16 +578,22 @@
|
||||
"80.94.0.0/20",
|
||||
"80.102.0.0/15",
|
||||
"80.173.0.0/17",
|
||||
"80.173.128.0/18",
|
||||
"80.173.200.0/22",
|
||||
"80.173.224.0/21",
|
||||
"80.173.128.0/19",
|
||||
"80.173.172.0/22",
|
||||
"80.173.176.0/20",
|
||||
"80.174.0.0/16",
|
||||
"80.209.255.0/24",
|
||||
"80.224.0.0/16",
|
||||
"80.224.0.0/17",
|
||||
"80.224.128.0/18",
|
||||
"80.224.192.0/19",
|
||||
"80.224.224.0/20",
|
||||
"80.224.240.0/21",
|
||||
"80.224.252.0/23",
|
||||
"80.240.126.0/23",
|
||||
"80.244.2.0/24",
|
||||
"80.244.48.0/20",
|
||||
"80.245.0.0/20",
|
||||
"80.248.137.0/24",
|
||||
"80.251.64.0/20",
|
||||
"80.253.64.0/20",
|
||||
"80.254.224.0/22",
|
||||
@@ -604,22 +613,35 @@
|
||||
"81.31.196.0/24",
|
||||
"81.32.0.0/12",
|
||||
"81.60.0.0/15",
|
||||
"81.85.76.0/22",
|
||||
"81.89.32.0/20",
|
||||
"81.90.96.0/20",
|
||||
"81.92.128.0/20",
|
||||
"81.95.64.0/20",
|
||||
"81.172.0.0/17",
|
||||
"81.172.32.0/21",
|
||||
"81.172.40.0/22",
|
||||
"81.172.44.0/24",
|
||||
"81.172.46.0/23",
|
||||
"81.172.60.0/22",
|
||||
"81.172.68.0/22",
|
||||
"81.172.72.0/21",
|
||||
"81.172.80.0/20",
|
||||
"81.172.96.0/20",
|
||||
"81.172.112.0/22",
|
||||
"81.172.117.0/24",
|
||||
"81.172.118.0/23",
|
||||
"81.172.120.0/21",
|
||||
"81.173.40.0/23",
|
||||
"81.173.104.0/21",
|
||||
"81.184.0.0/16",
|
||||
"81.202.0.0/15",
|
||||
"81.202.0.0/16",
|
||||
"82.86.0.0/16",
|
||||
"82.98.128.0/18",
|
||||
"82.116.160.0/19",
|
||||
"82.130.128.0/17",
|
||||
"82.144.0.0/19",
|
||||
"82.144.96.0/19",
|
||||
"82.158.128.0/17",
|
||||
"82.158.176.0/20",
|
||||
"82.159.0.0/16",
|
||||
"82.194.64.0/19",
|
||||
"82.198.48.0/20",
|
||||
@@ -632,7 +654,6 @@
|
||||
"83.136.176.0/22",
|
||||
"83.136.184.0/21",
|
||||
"83.138.40.0/21",
|
||||
"83.138.192.0/18",
|
||||
"83.142.240.0/21",
|
||||
"83.143.108.0/22",
|
||||
"83.143.168.0/21",
|
||||
@@ -677,13 +698,17 @@
|
||||
"85.117.248.0/22",
|
||||
"85.118.240.0/21",
|
||||
"85.119.192.0/21",
|
||||
"85.136.0.0/15",
|
||||
"85.136.82.0/23",
|
||||
"85.137.16.0/23",
|
||||
"85.137.24.0/22",
|
||||
"85.137.30.0/23",
|
||||
"85.137.82.0/23",
|
||||
"85.137.180.0/23",
|
||||
"85.137.212.0/23",
|
||||
"85.137.214.0/24",
|
||||
"85.152.0.0/16",
|
||||
"85.155.0.0/17",
|
||||
"85.155.128.0/18",
|
||||
"85.155.0.0/19",
|
||||
"85.155.192.0/19",
|
||||
"85.155.232.0/21",
|
||||
"85.155.240.0/21",
|
||||
"85.155.252.0/22",
|
||||
"85.158.168.0/21",
|
||||
"85.184.224.0/22",
|
||||
@@ -740,6 +765,7 @@
|
||||
"87.101.88.0/22",
|
||||
"87.111.0.0/16",
|
||||
"87.117.96.0/20",
|
||||
"87.121.134.0/23",
|
||||
"87.124.128.0/17",
|
||||
"87.125.0.0/16",
|
||||
"87.216.0.0/13",
|
||||
@@ -814,7 +840,6 @@
|
||||
"89.38.40.0/21",
|
||||
"89.38.168.0/21",
|
||||
"89.38.176.0/21",
|
||||
"89.38.200.0/21",
|
||||
"89.38.216.0/21",
|
||||
"89.39.16.0/20",
|
||||
"89.39.32.0/19",
|
||||
@@ -873,6 +898,7 @@
|
||||
"89.107.176.0/21",
|
||||
"89.107.240.0/21",
|
||||
"89.124.250.0/24",
|
||||
"89.127.192.0/19",
|
||||
"89.128.0.0/14",
|
||||
"89.140.0.0/15",
|
||||
"89.150.32.0/24",
|
||||
@@ -887,6 +913,8 @@
|
||||
"90.160.0.0/12",
|
||||
"91.90.0.0/21",
|
||||
"91.90.161.0/24",
|
||||
"91.92.248.0/23",
|
||||
"91.102.125.0/24",
|
||||
"91.102.240.0/21",
|
||||
"91.103.48.0/21",
|
||||
"91.103.148.0/22",
|
||||
@@ -957,9 +985,7 @@
|
||||
"91.215.64.0/22",
|
||||
"91.216.12.0/24",
|
||||
"91.216.31.0/24",
|
||||
"91.216.63.0/24",
|
||||
"91.216.73.0/24",
|
||||
"91.216.77.0/24",
|
||||
"91.216.100.0/24",
|
||||
"91.216.122.0/24",
|
||||
"91.216.210.0/24",
|
||||
@@ -1062,7 +1088,6 @@
|
||||
"93.113.16.0/21",
|
||||
"93.113.48.0/22",
|
||||
"93.113.102.0/24",
|
||||
"93.113.136.0/21",
|
||||
"93.113.160.0/22",
|
||||
"93.114.112.0/20",
|
||||
"93.114.144.0/20",
|
||||
@@ -1212,6 +1237,7 @@
|
||||
"109.70.32.0/21",
|
||||
"109.70.128.0/21",
|
||||
"109.70.232.0/22",
|
||||
"109.74.19.0/24",
|
||||
"109.107.96.0/19",
|
||||
"109.107.149.0/24",
|
||||
"109.167.0.0/17",
|
||||
@@ -1325,6 +1351,7 @@
|
||||
"152.114.197.0/24",
|
||||
"152.114.198.0/23",
|
||||
"152.114.248.0/21",
|
||||
"153.51.192.0/18",
|
||||
"153.92.27.0/24",
|
||||
"153.92.42.0/24",
|
||||
"153.92.120.0/22",
|
||||
@@ -1340,6 +1367,7 @@
|
||||
"157.97.80.0/20",
|
||||
"157.97.172.0/22",
|
||||
"157.97.176.0/20",
|
||||
"157.173.8.0/21",
|
||||
"158.42.0.0/16",
|
||||
"158.49.0.0/16",
|
||||
"158.99.0.0/16",
|
||||
@@ -1366,6 +1394,8 @@
|
||||
"163.117.0.0/16",
|
||||
"164.138.208.0/21",
|
||||
"167.150.22.0/24",
|
||||
"167.150.220.0/24",
|
||||
"167.150.223.0/24",
|
||||
"167.160.6.0/23",
|
||||
"167.160.8.0/23",
|
||||
"167.160.15.0/24",
|
||||
@@ -1456,7 +1486,6 @@
|
||||
"185.1.90.0/24",
|
||||
"185.1.143.0/24",
|
||||
"185.1.237.0/24",
|
||||
"185.1.242.0/24",
|
||||
"185.2.68.0/22",
|
||||
"185.3.116.0/22",
|
||||
"185.4.32.0/22",
|
||||
@@ -1503,6 +1532,7 @@
|
||||
"185.20.108.0/22",
|
||||
"185.20.116.0/22",
|
||||
"185.20.192.0/22",
|
||||
"185.21.8.0/22",
|
||||
"185.21.32.0/22",
|
||||
"185.21.44.0/22",
|
||||
"185.21.135.0/24",
|
||||
@@ -1533,7 +1563,6 @@
|
||||
"185.28.118.0/24",
|
||||
"185.28.140.0/22",
|
||||
"185.28.168.0/22",
|
||||
"185.28.216.0/22",
|
||||
"185.29.68.0/22",
|
||||
"185.29.212.0/22",
|
||||
"185.30.84.0/22",
|
||||
@@ -1574,7 +1603,6 @@
|
||||
"185.40.180.0/22",
|
||||
"185.41.96.0/22",
|
||||
"185.41.244.0/22",
|
||||
"185.42.20.0/22",
|
||||
"185.42.104.0/22",
|
||||
"185.42.120.0/22",
|
||||
"185.42.240.0/22",
|
||||
@@ -1677,7 +1705,6 @@
|
||||
"185.74.223.0/24",
|
||||
"185.74.240.0/22",
|
||||
"185.75.12.0/22",
|
||||
"185.75.22.0/23",
|
||||
"185.75.179.0/24",
|
||||
"185.75.200.0/22",
|
||||
"185.76.76.0/23",
|
||||
@@ -1725,7 +1752,6 @@
|
||||
"185.88.0.0/22",
|
||||
"185.88.52.0/22",
|
||||
"185.88.68.0/22",
|
||||
"185.88.202.0/23",
|
||||
"185.88.232.0/22",
|
||||
"185.89.60.0/22",
|
||||
"185.90.28.0/22",
|
||||
@@ -1736,7 +1762,6 @@
|
||||
"185.91.108.0/22",
|
||||
"185.91.116.0/22",
|
||||
"185.91.136.0/22",
|
||||
"185.91.192.0/22",
|
||||
"185.91.228.0/22",
|
||||
"185.92.80.0/22",
|
||||
"185.92.108.0/22",
|
||||
@@ -1758,6 +1783,7 @@
|
||||
"185.97.168.0/22",
|
||||
"185.98.16.0/22",
|
||||
"185.98.32.0/22",
|
||||
"185.98.133.0/24",
|
||||
"185.98.232.0/22",
|
||||
"185.99.40.0/22",
|
||||
"185.99.60.0/22",
|
||||
@@ -1778,7 +1804,6 @@
|
||||
"185.103.204.0/22",
|
||||
"185.104.62.0/24",
|
||||
"185.104.152.0/23",
|
||||
"185.104.164.0/22",
|
||||
"185.104.236.0/22",
|
||||
"185.105.12.0/22",
|
||||
"185.105.16.0/22",
|
||||
@@ -2017,7 +2042,6 @@
|
||||
"185.161.40.0/22",
|
||||
"185.161.96.0/22",
|
||||
"185.161.116.0/22",
|
||||
"185.161.186.0/23",
|
||||
"185.162.52.0/22",
|
||||
"185.162.168.0/21",
|
||||
"185.163.49.0/24",
|
||||
@@ -2212,7 +2236,6 @@
|
||||
"185.205.252.0/22",
|
||||
"185.206.60.0/22",
|
||||
"185.206.76.0/22",
|
||||
"185.206.121.0/24",
|
||||
"185.206.248.0/22",
|
||||
"185.206.252.0/24",
|
||||
"185.206.254.0/24",
|
||||
@@ -2242,6 +2265,7 @@
|
||||
"185.210.152.0/22",
|
||||
"185.210.184.0/22",
|
||||
"185.210.192.0/22",
|
||||
"185.210.226.0/23",
|
||||
"185.210.232.0/22",
|
||||
"185.210.244.0/22",
|
||||
"185.211.41.0/24",
|
||||
@@ -2250,7 +2274,6 @@
|
||||
"185.211.196.0/22",
|
||||
"185.211.212.0/22",
|
||||
"185.212.84.0/22",
|
||||
"185.212.114.0/24",
|
||||
"185.212.124.0/22",
|
||||
"185.212.136.0/22",
|
||||
"185.212.204.0/22",
|
||||
@@ -2337,7 +2360,6 @@
|
||||
"185.224.192.0/22",
|
||||
"185.224.220.0/22",
|
||||
"185.225.0.0/22",
|
||||
"185.225.8.0/24",
|
||||
"185.225.11.0/24",
|
||||
"185.225.20.0/22",
|
||||
"185.225.126.0/24",
|
||||
@@ -2377,6 +2399,7 @@
|
||||
"185.228.160.0/22",
|
||||
"185.228.172.0/22",
|
||||
"185.228.244.0/22",
|
||||
"185.228.249.0/24",
|
||||
"185.229.44.0/22",
|
||||
"185.229.96.0/22",
|
||||
"185.229.156.0/22",
|
||||
@@ -2541,6 +2564,7 @@
|
||||
"185.252.172.0/22",
|
||||
"185.252.184.0/22",
|
||||
"185.252.224.0/22",
|
||||
"185.253.129.0/24",
|
||||
"185.253.144.0/22",
|
||||
"185.253.152.0/22",
|
||||
"185.253.224.0/22",
|
||||
@@ -2790,6 +2814,7 @@
|
||||
"193.84.177.0/24",
|
||||
"193.91.0.0/24",
|
||||
"193.91.10.0/24",
|
||||
"193.93.183.0/24",
|
||||
"193.104.0.0/24",
|
||||
"193.104.44.0/24",
|
||||
"193.104.51.0/24",
|
||||
@@ -2986,6 +3011,7 @@
|
||||
"194.59.223.0/24",
|
||||
"194.61.16.0/22",
|
||||
"194.62.56.0/22",
|
||||
"194.62.115.0/24",
|
||||
"194.62.158.0/23",
|
||||
"194.62.190.0/23",
|
||||
"194.62.252.0/22",
|
||||
@@ -2999,7 +3025,6 @@
|
||||
"194.76.172.0/23",
|
||||
"194.93.44.0/22",
|
||||
"194.104.141.0/24",
|
||||
"194.104.231.0/24",
|
||||
"194.106.0.0/19",
|
||||
"194.107.136.0/22",
|
||||
"194.110.201.0/24",
|
||||
@@ -3014,6 +3039,7 @@
|
||||
"194.116.220.0/24",
|
||||
"194.116.240.0/23",
|
||||
"194.117.53.0/26",
|
||||
"194.121.26.0/24",
|
||||
"194.124.56.0/22",
|
||||
"194.124.68.0/22",
|
||||
"194.124.210.0/23",
|
||||
@@ -3058,6 +3084,7 @@
|
||||
"194.149.192.0/19",
|
||||
"194.150.180.0/23",
|
||||
"194.150.242.0/23",
|
||||
"194.154.24.0/21",
|
||||
"194.156.72.0/22",
|
||||
"194.165.42.0/24",
|
||||
"194.165.60.0/24",
|
||||
@@ -3193,6 +3220,7 @@
|
||||
"202.58.108.0/22",
|
||||
"203.78.160.0/24",
|
||||
"203.88.96.0/22",
|
||||
"206.203.0.0/18",
|
||||
"206.204.128.0/18",
|
||||
"207.66.0.0/18",
|
||||
"207.188.128.0/18",
|
||||
@@ -3254,7 +3282,6 @@
|
||||
"212.118.61.0/24",
|
||||
"212.119.48.0/21",
|
||||
"212.121.224.0/19",
|
||||
"212.122.96.0/19",
|
||||
"212.128.0.0/16",
|
||||
"212.142.128.0/17",
|
||||
"212.145.0.0/16",
|
||||
@@ -3290,6 +3317,7 @@
|
||||
"213.148.192.0/19",
|
||||
"213.149.224.0/19",
|
||||
"213.151.96.0/19",
|
||||
"213.155.16.0/22",
|
||||
"213.162.192.0/19",
|
||||
"213.164.32.0/19",
|
||||
"213.164.160.0/19",
|
||||
@@ -3324,7 +3352,9 @@
|
||||
"213.236.4.0/24",
|
||||
"213.236.7.0/24",
|
||||
"213.236.16.0/20",
|
||||
"213.239.156.0/22",
|
||||
"216.147.96.0/20",
|
||||
"216.176.232.0/22",
|
||||
"217.9.24.0/21",
|
||||
"217.10.80.0/20",
|
||||
"217.11.96.0/19",
|
||||
@@ -3358,7 +3388,6 @@
|
||||
"217.114.44.0/24",
|
||||
"217.114.128.0/20",
|
||||
"217.116.0.0/19",
|
||||
"217.119.141.0/24",
|
||||
"217.124.0.0/14",
|
||||
"217.130.0.0/16",
|
||||
"217.145.176.0/20",
|
||||
@@ -3370,6 +3399,9 @@
|
||||
"217.168.0.0/20",
|
||||
"217.172.64.0/20",
|
||||
"217.173.112.0/20",
|
||||
"217.177.10.0/23",
|
||||
"217.177.72.0/22",
|
||||
"217.179.88.0/22",
|
||||
"217.194.148.0/24",
|
||||
"217.197.16.0/20",
|
||||
"217.197.111.0/24",
|
||||
@@ -3379,6 +3411,7 @@
|
||||
"2001:678:40::/48",
|
||||
"2001:678:44::/48",
|
||||
"2001:678:48::/48",
|
||||
"2001:678:21c::/48",
|
||||
"2001:678:2f4::/48",
|
||||
"2001:678:2f8::/48",
|
||||
"2001:678:2fc::/48",
|
||||
@@ -3392,6 +3425,10 @@
|
||||
"2001:678:1098::/48",
|
||||
"2001:678:1118::/48",
|
||||
"2001:678:111c::/48",
|
||||
"2001:678:115c::/48",
|
||||
"2001:678:1208::/48",
|
||||
"2001:678:1228::/48",
|
||||
"2001:678:1274::/48",
|
||||
"2001:67c:400::/48",
|
||||
"2001:67c:7d8::/48",
|
||||
"2001:67c:820::/48",
|
||||
@@ -3399,19 +3436,18 @@
|
||||
"2001:67c:abc::/48",
|
||||
"2001:67c:b68::/48",
|
||||
"2001:67c:c40::/48",
|
||||
"2001:67c:da8::/48",
|
||||
"2001:67c:f20::/48",
|
||||
"2001:67c:1148::/48",
|
||||
"2001:67c:11b4::/48",
|
||||
"2001:67c:11e0::/48",
|
||||
"2001:67c:137c::/48",
|
||||
"2001:67c:16ac::/48",
|
||||
"2001:67c:1714::/48",
|
||||
"2001:67c:195c::/48",
|
||||
"2001:67c:1b3c::/48",
|
||||
"2001:67c:21cc::/48",
|
||||
"2001:67c:2294::/48",
|
||||
"2001:67c:23bc::/48",
|
||||
"2001:67c:2598::/48",
|
||||
"2001:67c:25f0::/48",
|
||||
"2001:67c:283c::/48",
|
||||
"2001:67c:2898::/48",
|
||||
@@ -3425,7 +3461,6 @@
|
||||
"2001:7f8:de::/48",
|
||||
"2001:7f8:118::/48",
|
||||
"2001:7f8:127::/48",
|
||||
"2001:7f8:12c::/48",
|
||||
"2001:7f8:167::/48",
|
||||
"2001:a50::/32",
|
||||
"2001:ac0::/29",
|
||||
@@ -3468,11 +3503,9 @@
|
||||
"2a00:7e60::/32",
|
||||
"2a00:7f00::/32",
|
||||
"2a00:83e0::/32",
|
||||
"2a00:84e0::/32",
|
||||
"2a00:8a80::/29",
|
||||
"2a00:8cc0::/32",
|
||||
"2a00:8e20::/32",
|
||||
"2a00:91a0::/32",
|
||||
"2a00:93c0::/32",
|
||||
"2a00:9440::/32",
|
||||
"2a00:99c0::/32",
|
||||
@@ -3506,10 +3539,8 @@
|
||||
"2a00:e160::/32",
|
||||
"2a00:e1e0::/32",
|
||||
"2a00:e9c0::/32",
|
||||
"2a00:eda0::/32",
|
||||
"2a00:f380::/32",
|
||||
"2a00:f640::/29",
|
||||
"2a00:f800::/32",
|
||||
"2a00:fdc0::/32",
|
||||
"2a00:fde0::/32",
|
||||
"2a00:fe40::/32",
|
||||
@@ -3519,6 +3550,9 @@
|
||||
"2a01:1c8::/29",
|
||||
"2a01:250::/32",
|
||||
"2a01:770::/32",
|
||||
"2a01:800::/31",
|
||||
"2a01:806::/31",
|
||||
"2a01:8c0::/32",
|
||||
"2a01:4100::/32",
|
||||
"2a01:4140::/32",
|
||||
"2a01:4480::/32",
|
||||
@@ -3596,7 +3630,6 @@
|
||||
"2a02:52e0::/32",
|
||||
"2a02:5540::/32",
|
||||
"2a02:5b00::/32",
|
||||
"2a02:5bc0::/32",
|
||||
"2a02:5dc0::/32",
|
||||
"2a02:5ea0::/32",
|
||||
"2a02:5fc0::/32",
|
||||
@@ -3716,6 +3749,7 @@
|
||||
"2a04:a280::/29",
|
||||
"2a04:a980::/29",
|
||||
"2a04:b000::/29",
|
||||
"2a04:b740::/32",
|
||||
"2a04:b880::/29",
|
||||
"2a04:d700::/29",
|
||||
"2a04:e180::/29",
|
||||
@@ -3737,7 +3771,6 @@
|
||||
"2a05:4cc0::/29",
|
||||
"2a05:4d40::/29",
|
||||
"2a05:5180::/29",
|
||||
"2a05:52c0::/29",
|
||||
"2a05:5c80::/29",
|
||||
"2a05:5d40::/29",
|
||||
"2a05:6500::/29",
|
||||
@@ -3791,7 +3824,6 @@
|
||||
"2a06:a8c0::/29",
|
||||
"2a06:ab80::/29",
|
||||
"2a06:b4c0::/29",
|
||||
"2a06:b980::/29",
|
||||
"2a06:c980::/29",
|
||||
"2a06:ce40::/29",
|
||||
"2a06:d080::/29",
|
||||
@@ -3809,7 +3841,6 @@
|
||||
"2a06:f840::/29",
|
||||
"2a06:fc80::/29",
|
||||
"2a07:100::/29",
|
||||
"2a07:480::/29",
|
||||
"2a07:16c0::/29",
|
||||
"2a07:1a00::/29",
|
||||
"2a07:2040::/29",
|
||||
@@ -3838,7 +3869,6 @@
|
||||
"2a07:8e40::/29",
|
||||
"2a07:9040::/29",
|
||||
"2a07:9cc0::/29",
|
||||
"2a07:a180::/29",
|
||||
"2a07:a280::/29",
|
||||
"2a07:a4c0::/29",
|
||||
"2a07:ad40::/29",
|
||||
@@ -3878,7 +3908,6 @@
|
||||
"2a09:c5c0::/29",
|
||||
"2a09:c740::/29",
|
||||
"2a09:cc40::/29",
|
||||
"2a09:cf40::/29",
|
||||
"2a09:d940::/29",
|
||||
"2a09:dd40::/29",
|
||||
"2a09:eac0::/29",
|
||||
@@ -3903,7 +3932,6 @@
|
||||
"2a0a:1680::/29",
|
||||
"2a0a:1d40::/32",
|
||||
"2a0a:1e80::/29",
|
||||
"2a0a:3000::/32",
|
||||
"2a0a:3580::/29",
|
||||
"2a0a:3ac0::/29",
|
||||
"2a0a:3b40::/29",
|
||||
@@ -3911,7 +3939,6 @@
|
||||
"2a0a:3e00::/29",
|
||||
"2a0a:4280::/29",
|
||||
"2a0a:43c0::/29",
|
||||
"2a0a:45c0::/29",
|
||||
"2a0a:4e40::/29",
|
||||
"2a0a:5040::/32",
|
||||
"2a0a:5140::/29",
|
||||
@@ -3965,7 +3992,6 @@
|
||||
"2a0b:d00::/29",
|
||||
"2a0b:1f80::/29",
|
||||
"2a0b:2f80::/29",
|
||||
"2a0b:3600::/29",
|
||||
"2a0b:3780::/32",
|
||||
"2a0b:3a80::/32",
|
||||
"2a0b:4240::/29",
|
||||
@@ -3986,7 +4012,6 @@
|
||||
"2a0b:8cc0::/32",
|
||||
"2a0b:98c0::/29",
|
||||
"2a0b:9d80::/32",
|
||||
"2a0b:9dc0::/29",
|
||||
"2a0b:9f80::/29",
|
||||
"2a0b:a7c0::/29",
|
||||
"2a0b:b100::/29",
|
||||
@@ -3998,12 +4023,12 @@
|
||||
"2a0b:cd80::/29",
|
||||
"2a0b:cf80::/29",
|
||||
"2a0b:d100::/29",
|
||||
"2a0b:d800::/32",
|
||||
"2a0b:d940::/29",
|
||||
"2a0b:da80::/29",
|
||||
"2a0b:dc40::/29",
|
||||
"2a0b:dcc0::/29",
|
||||
"2a0b:dd40::/29",
|
||||
"2a0b:e000::/29",
|
||||
"2a0b:e140::/29",
|
||||
"2a0b:e800::/29",
|
||||
"2a0b:edc0::/29",
|
||||
@@ -4023,10 +4048,8 @@
|
||||
"2a0c:1500::/29",
|
||||
"2a0c:17c0::/32",
|
||||
"2a0c:1a80::/29",
|
||||
"2a0c:1b40::/29",
|
||||
"2a0c:1c80::/29",
|
||||
"2a0c:1cc0::/29",
|
||||
"2a0c:1d40::/29",
|
||||
"2a0c:1f80::/29",
|
||||
"2a0c:21c0::/29",
|
||||
"2a0c:27c0::/29",
|
||||
@@ -4041,7 +4064,6 @@
|
||||
"2a0c:4e80::/29",
|
||||
"2a0c:4f00::/29",
|
||||
"2a0c:4fc0::/29",
|
||||
"2a0c:5040::/29",
|
||||
"2a0c:5500::/32",
|
||||
"2a0c:5a80::/29",
|
||||
"2a0c:6a00::/29",
|
||||
@@ -4059,7 +4081,6 @@
|
||||
"2a0c:ba80::/29",
|
||||
"2a0c:c340::/29",
|
||||
"2a0c:c780::/29",
|
||||
"2a0c:d140::/29",
|
||||
"2a0c:d1c0::/29",
|
||||
"2a0c:e200::/29",
|
||||
"2a0c:edc0::/29",
|
||||
@@ -4068,7 +4089,6 @@
|
||||
"2a0c:f5c0::/32",
|
||||
"2a0c:f780::/29",
|
||||
"2a0c:ff80::/29",
|
||||
"2a0d::/29",
|
||||
"2a0d:340::/32",
|
||||
"2a0d:e80::/29",
|
||||
"2a0d:fc0::/29",
|
||||
@@ -4083,7 +4103,6 @@
|
||||
"2a0d:59c0::/29",
|
||||
"2a0d:5fc0::/29",
|
||||
"2a0d:62c0::/29",
|
||||
"2a0d:67c0::/29",
|
||||
"2a0d:6b80::/29",
|
||||
"2a0d:7300::/29",
|
||||
"2a0d:7800::/29",
|
||||
@@ -4099,14 +4118,12 @@
|
||||
"2a0d:a900::/29",
|
||||
"2a0d:aec0::/29",
|
||||
"2a0d:b440::/29",
|
||||
"2a0d:b640::/29",
|
||||
"2a0d:bf00::/29",
|
||||
"2a0d:c240::/29",
|
||||
"2a0d:c540::/29",
|
||||
"2a0d:c780::/29",
|
||||
"2a0d:c880::/29",
|
||||
"2a0d:ca80::/29",
|
||||
"2a0d:cbc0::/29",
|
||||
"2a0d:ce80::/29",
|
||||
"2a0d:d080::/29",
|
||||
"2a0d:da80::/32",
|
||||
@@ -4127,11 +4144,11 @@
|
||||
"2a0e:3c80::/29",
|
||||
"2a0e:4800::/29",
|
||||
"2a0e:5280::/29",
|
||||
"2a0e:6240::/29",
|
||||
"2a0e:8000::/29",
|
||||
"2a0e:8600::/29",
|
||||
"2a0e:8fc0::/29",
|
||||
"2a0e:a180::/29",
|
||||
"2a0e:a980::/30",
|
||||
"2a0e:ad00::/29",
|
||||
"2a0e:ca80::/29",
|
||||
"2a0e:d400::/29",
|
||||
@@ -4143,47 +4160,45 @@
|
||||
"2a0f:2fc0::/29",
|
||||
"2a0f:3a40::/29",
|
||||
"2a0f:4200::/29",
|
||||
"2a0f:4c40::/29",
|
||||
"2a0f:4ec0::/29",
|
||||
"2a0f:4f00::/29",
|
||||
"2a0f:5400::/29",
|
||||
"2a0f:5900::/29",
|
||||
"2a0f:5d40::/29",
|
||||
"2a0f:6540::/29",
|
||||
"2a0f:6a00::/29",
|
||||
"2a0f:6e40::/29",
|
||||
"2a0f:7c00::/29",
|
||||
"2a0f:8a00::/29",
|
||||
"2a0f:8c00::/32",
|
||||
"2a0f:9140::/29",
|
||||
"2a0f:9780::/29",
|
||||
"2a0f:9940::/29",
|
||||
"2a0f:9f80::/29",
|
||||
"2a0f:a240::/29",
|
||||
"2a0f:b000::/29",
|
||||
"2a0f:c680::/29",
|
||||
"2a0f:d140::/29",
|
||||
"2a0f:d6c0::/32",
|
||||
"2a0f:de00::/29",
|
||||
"2a0f:f040::/29",
|
||||
"2a0f:f200::/29",
|
||||
"2a0f:f940::/29",
|
||||
"2a10:80::/29",
|
||||
"2a10:c0::/29",
|
||||
"2a10:300::/29",
|
||||
"2a10:1500::/29",
|
||||
"2a10:1540::/29",
|
||||
"2a10:1840::/29",
|
||||
"2a10:2280::/29",
|
||||
"2a10:22c0::/29",
|
||||
"2a10:2640::/32",
|
||||
"2a10:3700::/29",
|
||||
"2a10:3800::/29",
|
||||
"2a10:4d00::/29",
|
||||
"2a10:4e80::/29",
|
||||
"2a10:5100::/29",
|
||||
"2a10:5280::/29",
|
||||
"2a10:5d80::/29",
|
||||
"2a10:5f40::/32",
|
||||
"2a10:64c0::/32",
|
||||
"2a10:6fc0::/29",
|
||||
"2a10:7dc0::/29",
|
||||
"2a10:8c00::/29",
|
||||
"2a10:a900::/29",
|
||||
"2a10:aec0::/29",
|
||||
"2a10:b180::/32",
|
||||
@@ -4194,21 +4209,23 @@
|
||||
"2a10:efc0::/32",
|
||||
"2a10:f680::/29",
|
||||
"2a10:f940::/29",
|
||||
"2a10:fb80::/29",
|
||||
"2a10:fc00::/29",
|
||||
"2a11:180::/29",
|
||||
"2a11:880::/29",
|
||||
"2a11:1f40::/29",
|
||||
"2a11:4f80::/29",
|
||||
"2a11:5c40::/29",
|
||||
"2a11:5f40::/29",
|
||||
"2a11:61c0::/32",
|
||||
"2a11:7f40::/29",
|
||||
"2a11:c040::/29",
|
||||
"2a11:c6c0::/29",
|
||||
"2a11:ca00::/29",
|
||||
"2a12:17c0::/29",
|
||||
"2a12:32c0::/29",
|
||||
"2a12:6c80::/29",
|
||||
"2a12:7ac0::/29",
|
||||
"2a12:8f40::/29",
|
||||
"2a12:8a80::/29",
|
||||
"2a12:96c0::/29",
|
||||
"2a12:9740::/29",
|
||||
"2a12:b5c0::/29",
|
||||
@@ -4221,6 +4238,7 @@
|
||||
"2a12:d340::/29",
|
||||
"2a12:d440::/29",
|
||||
"2a12:d840::/29",
|
||||
"2a12:e8c0::/29",
|
||||
"2a12:f2c0::/29",
|
||||
"2a12:f800::/29",
|
||||
"2a13:880::/29",
|
||||
@@ -4238,6 +4256,7 @@
|
||||
"2a13:7940::/29",
|
||||
"2a13:8080::/32",
|
||||
"2a13:8180::/29",
|
||||
"2a13:8740::/29",
|
||||
"2a13:8d00::/29",
|
||||
"2a13:9bc0::/29",
|
||||
"2a13:a040::/29",
|
||||
@@ -4246,12 +4265,10 @@
|
||||
"2a13:b540::/29",
|
||||
"2a13:b800::/32",
|
||||
"2a13:c600::/29",
|
||||
"2a13:c780::/29",
|
||||
"2a13:ca00::/29",
|
||||
"2a13:d600::/29",
|
||||
"2a13:d680::/29",
|
||||
"2a13:dc40::/29",
|
||||
"2a13:fec0::/29",
|
||||
"2a14:300::/29",
|
||||
"2a14:4c0::/32",
|
||||
"2a14:d40::/29",
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"code": "ET",
|
||||
"name": "Ethiopia",
|
||||
"ipv4": [
|
||||
"102.203.224.0/22",
|
||||
"102.204.190.0/23",
|
||||
"102.208.96.0/22",
|
||||
"102.208.136.0/22",
|
||||
|
||||
@@ -53,7 +53,6 @@
|
||||
"45.88.227.0/24",
|
||||
"45.95.8.0/24",
|
||||
"45.135.144.0/22",
|
||||
"45.142.140.0/22",
|
||||
"45.146.248.0/22",
|
||||
"45.151.128.0/22",
|
||||
"45.152.104.0/22",
|
||||
@@ -63,7 +62,6 @@
|
||||
"45.156.104.0/22",
|
||||
"45.156.252.0/22",
|
||||
"45.157.104.0/22",
|
||||
"45.158.116.0/22",
|
||||
"46.17.192.0/21",
|
||||
"46.23.160.0/20",
|
||||
"46.30.128.0/21",
|
||||
@@ -110,7 +108,9 @@
|
||||
"62.248.128.0/17",
|
||||
"77.72.56.0/21",
|
||||
"77.86.128.0/17",
|
||||
"77.91.208.0/21",
|
||||
"77.91.209.0/24",
|
||||
"77.91.210.0/23",
|
||||
"77.91.212.0/22",
|
||||
"77.95.16.0/22",
|
||||
"77.95.144.0/21",
|
||||
"77.95.240.0/21",
|
||||
@@ -133,7 +133,6 @@
|
||||
"80.71.192.0/20",
|
||||
"80.74.192.0/19",
|
||||
"80.75.96.0/20",
|
||||
"80.78.16.0/20",
|
||||
"80.81.160.0/19",
|
||||
"80.83.0.0/20",
|
||||
"80.88.176.0/20",
|
||||
@@ -201,10 +200,10 @@
|
||||
"85.76.0.0/14",
|
||||
"85.131.0.0/17",
|
||||
"85.134.0.0/17",
|
||||
"85.136.176.0/22",
|
||||
"85.156.0.0/15",
|
||||
"85.188.0.0/18",
|
||||
"85.194.192.0/22",
|
||||
"85.194.204.0/22",
|
||||
"85.194.208.0/20",
|
||||
"85.194.224.0/21",
|
||||
"85.194.232.0/24",
|
||||
@@ -309,6 +308,7 @@
|
||||
"93.174.192.0/21",
|
||||
"93.183.0.0/18",
|
||||
"93.190.96.0/21",
|
||||
"93.190.127.0/24",
|
||||
"93.191.120.0/21",
|
||||
"94.22.0.0/16",
|
||||
"94.101.0.0/20",
|
||||
@@ -320,9 +320,7 @@
|
||||
"95.111.192.0/19",
|
||||
"95.130.24.0/21",
|
||||
"95.133.252.0/22",
|
||||
"95.175.96.0/19",
|
||||
"95.214.64.0/22",
|
||||
"95.215.16.0/22",
|
||||
"109.68.128.0/21",
|
||||
"109.68.248.0/21",
|
||||
"109.69.32.0/21",
|
||||
@@ -357,6 +355,7 @@
|
||||
"137.163.0.0/16",
|
||||
"138.216.0.0/16",
|
||||
"139.28.184.0/22",
|
||||
"139.54.0.0/16",
|
||||
"139.74.0.0/16",
|
||||
"139.97.0.0/16",
|
||||
"139.123.0.0/16",
|
||||
@@ -381,6 +380,7 @@
|
||||
"149.197.0.0/16",
|
||||
"151.105.0.0/16",
|
||||
"153.1.0.0/16",
|
||||
"155.132.0.0/16",
|
||||
"156.10.0.0/16",
|
||||
"157.24.0.0/16",
|
||||
"157.94.0.0/16",
|
||||
@@ -393,6 +393,7 @@
|
||||
"158.131.0.0/16",
|
||||
"158.233.0.0/16",
|
||||
"159.152.0.0/16",
|
||||
"159.217.0.0/16",
|
||||
"159.255.224.0/19",
|
||||
"160.71.0.0/16",
|
||||
"161.41.0.0/16",
|
||||
@@ -403,7 +404,6 @@
|
||||
"164.13.0.0/16",
|
||||
"164.138.0.0/20",
|
||||
"164.141.0.0/16",
|
||||
"164.215.32.0/21",
|
||||
"171.22.241.0/24",
|
||||
"176.72.0.0/16",
|
||||
"176.93.0.0/16",
|
||||
@@ -428,7 +428,6 @@
|
||||
"185.15.212.0/22",
|
||||
"185.16.96.0/22",
|
||||
"185.16.168.0/22",
|
||||
"185.18.76.0/22",
|
||||
"185.20.136.0/22",
|
||||
"185.21.0.0/22",
|
||||
"185.22.132.0/22",
|
||||
@@ -528,7 +527,6 @@
|
||||
"185.153.232.0/24",
|
||||
"185.158.72.0/22",
|
||||
"185.159.236.0/22",
|
||||
"185.162.156.0/22",
|
||||
"185.163.12.0/22",
|
||||
"185.163.56.0/22",
|
||||
"185.163.152.0/22",
|
||||
@@ -557,11 +555,11 @@
|
||||
"185.192.128.0/22",
|
||||
"185.192.196.0/22",
|
||||
"185.193.76.0/22",
|
||||
"185.193.124.0/22",
|
||||
"185.195.149.0/24",
|
||||
"185.195.150.0/23",
|
||||
"185.196.4.0/22",
|
||||
"185.196.232.0/22",
|
||||
"185.204.144.0/22",
|
||||
"185.205.0.0/22",
|
||||
"185.206.176.0/22",
|
||||
"185.207.84.0/22",
|
||||
@@ -646,11 +644,7 @@
|
||||
"192.88.86.0/24",
|
||||
"192.89.0.0/16",
|
||||
"192.92.116.0/24",
|
||||
"192.98.0.0/18",
|
||||
"192.98.64.0/19",
|
||||
"192.98.96.0/20",
|
||||
"192.98.112.0/21",
|
||||
"192.98.128.0/17",
|
||||
"192.98.0.0/16",
|
||||
"192.101.192.0/24",
|
||||
"192.102.18.0/23",
|
||||
"192.102.20.0/22",
|
||||
@@ -714,9 +708,6 @@
|
||||
"193.28.89.0/24",
|
||||
"193.28.203.0/24",
|
||||
"193.29.176.0/24",
|
||||
"193.30.92.0/24",
|
||||
"193.30.109.0/24",
|
||||
"193.30.113.0/24",
|
||||
"193.56.196.0/22",
|
||||
"193.57.6.0/24",
|
||||
"193.64.0.0/15",
|
||||
@@ -848,6 +839,7 @@
|
||||
"194.93.72.0/24",
|
||||
"194.99.33.0/24",
|
||||
"194.100.0.0/16",
|
||||
"194.107.113.0/24",
|
||||
"194.110.23.0/24",
|
||||
"194.110.31.0/24",
|
||||
"194.110.32.0/20",
|
||||
@@ -887,8 +879,8 @@
|
||||
"195.8.60.0/23",
|
||||
"195.8.63.0/24",
|
||||
"195.10.128.0/18",
|
||||
"195.13.36.0/24",
|
||||
"195.14.15.0/24",
|
||||
"195.14.20.0/24",
|
||||
"195.16.192.0/19",
|
||||
"195.20.116.0/23",
|
||||
"195.20.149.0/24",
|
||||
@@ -902,6 +894,7 @@
|
||||
"195.94.104.0/22",
|
||||
"195.95.208.0/23",
|
||||
"195.134.224.0/19",
|
||||
"195.137.221.0/24",
|
||||
"195.138.213.0/24",
|
||||
"195.140.192.0/22",
|
||||
"195.148.0.0/16",
|
||||
@@ -943,6 +936,7 @@
|
||||
"212.104.128.0/24",
|
||||
"212.116.32.0/19",
|
||||
"212.146.0.0/18",
|
||||
"212.147.224.0/19",
|
||||
"212.149.64.0/18",
|
||||
"212.149.128.0/17",
|
||||
"212.182.192.0/18",
|
||||
@@ -987,7 +981,8 @@
|
||||
"217.140.128.0/17",
|
||||
"217.149.48.0/20",
|
||||
"217.152.0.0/16",
|
||||
"217.169.64.0/20"
|
||||
"217.169.64.0/20",
|
||||
"217.177.40.0/22"
|
||||
],
|
||||
"ipv6": [
|
||||
"2001:670::/29",
|
||||
@@ -996,6 +991,8 @@
|
||||
"2001:678:b6c::/48",
|
||||
"2001:678:d18::/48",
|
||||
"2001:678:db0::/48",
|
||||
"2001:678:11ec::/48",
|
||||
"2001:678:122c::/48",
|
||||
"2001:67c:70::/48",
|
||||
"2001:67c:110::/48",
|
||||
"2001:67c:12c::/48",
|
||||
@@ -1003,17 +1000,21 @@
|
||||
"2001:67c:164::/48",
|
||||
"2001:67c:224::/48",
|
||||
"2001:67c:25c::/48",
|
||||
"2001:67c:298::/48",
|
||||
"2001:67c:2b0::/48",
|
||||
"2001:67c:408::/48",
|
||||
"2001:67c:8e4::/48",
|
||||
"2001:67c:da0::/48",
|
||||
"2001:67c:e8c::/48",
|
||||
"2001:67c:ecc::/48",
|
||||
"2001:67c:10a4::/48",
|
||||
"2001:67c:13ac::/48",
|
||||
"2001:67c:14c0::/48",
|
||||
"2001:67c:1534::/48",
|
||||
"2001:67c:16c8::/48",
|
||||
"2001:67c:17a0::/48",
|
||||
"2001:67c:1850::/48",
|
||||
"2001:67c:1908::/48",
|
||||
"2001:67c:19b0::/46",
|
||||
"2001:67c:1bb0::/48",
|
||||
"2001:67c:1be8::/48",
|
||||
@@ -1021,11 +1022,7 @@
|
||||
"2001:67c:2168::/48",
|
||||
"2001:67c:21a4::/48",
|
||||
"2001:67c:21d8::/48",
|
||||
"2001:67c:2354::/48",
|
||||
"2001:67c:2358::/48",
|
||||
"2001:67c:235c::/48",
|
||||
"2001:67c:245c::/48",
|
||||
"2001:67c:2724::/48",
|
||||
"2001:67c:2784::/48",
|
||||
"2001:67c:2900::/48",
|
||||
"2001:67c:2970::/48",
|
||||
@@ -1061,7 +1058,6 @@
|
||||
"2a00:18a0::/32",
|
||||
"2a00:18b8::/32",
|
||||
"2a00:1a58::/32",
|
||||
"2a00:1ab8::/32",
|
||||
"2a00:1c30::/32",
|
||||
"2a00:1d50::/32",
|
||||
"2a00:1dd0::/29",
|
||||
@@ -1099,7 +1095,6 @@
|
||||
"2a01:a7e0::/32",
|
||||
"2a01:a800::/29",
|
||||
"2a01:b5a0::/32",
|
||||
"2a02:6f8::/32",
|
||||
"2a02:ef0::/32",
|
||||
"2a02:1370::/32",
|
||||
"2a02:13c8::/32",
|
||||
@@ -1109,7 +1104,6 @@
|
||||
"2a02:2380::/32",
|
||||
"2a02:2600::/32",
|
||||
"2a02:2ac8::/29",
|
||||
"2a02:2b20::/32",
|
||||
"2a02:4820::/32",
|
||||
"2a02:4880::/32",
|
||||
"2a02:5de0::/32",
|
||||
@@ -1139,13 +1133,11 @@
|
||||
"2a03:a8a0::/29",
|
||||
"2a03:c540::/32",
|
||||
"2a03:d640::/32",
|
||||
"2a03:e580::/29",
|
||||
"2a03:eb00::/29",
|
||||
"2a04:240::/29",
|
||||
"2a04:680::/29",
|
||||
"2a04:25c0::/29",
|
||||
"2a04:3540::/29",
|
||||
"2a04:40c0::/29",
|
||||
"2a04:4a80::/29",
|
||||
"2a04:5980::/29",
|
||||
"2a04:7000::/29",
|
||||
@@ -1177,6 +1169,7 @@
|
||||
"2a06:9340::/29",
|
||||
"2a06:a0c0::/29",
|
||||
"2a06:ae00::/29",
|
||||
"2a06:ae80::/29",
|
||||
"2a06:b100::/29",
|
||||
"2a06:c780::/29",
|
||||
"2a06:c7c0::/29",
|
||||
@@ -1206,7 +1199,6 @@
|
||||
"2a0a:1c40::/29",
|
||||
"2a0a:2000::/29",
|
||||
"2a0a:25c0::/29",
|
||||
"2a0a:3840::/29",
|
||||
"2a0a:48c0::/29",
|
||||
"2a0a:5380::/29",
|
||||
"2a0a:62c0::/32",
|
||||
@@ -1252,7 +1244,6 @@
|
||||
"2a0d:9240::/29",
|
||||
"2a0d:a680::/32",
|
||||
"2a0d:a840::/29",
|
||||
"2a0d:c180::/29",
|
||||
"2a0d:c840::/29",
|
||||
"2a0d:f2c0::/29",
|
||||
"2a0d:fc80::/29",
|
||||
@@ -1290,10 +1281,11 @@
|
||||
"2a11:d6c0::/29",
|
||||
"2a12:71c0::/29",
|
||||
"2a12:b440::/29",
|
||||
"2a12:d940::/29",
|
||||
"2a12:c480::/29",
|
||||
"2a13:4f80::/29",
|
||||
"2a13:5300::/29",
|
||||
"2a13:81c0::/29",
|
||||
"2a13:82c0::/29",
|
||||
"2a13:8680::/29",
|
||||
"2a13:8c00::/32",
|
||||
"2a13:aec0::/32",
|
||||
|
||||
@@ -25,7 +25,9 @@
|
||||
"119.235.96.0/21",
|
||||
"124.108.24.0/21",
|
||||
"144.120.0.0/16",
|
||||
"151.158.177.0/24",
|
||||
"183.81.128.0/20",
|
||||
"198.15.17.0/24",
|
||||
"202.62.6.0/23",
|
||||
"202.62.118.0/23",
|
||||
"202.62.120.0/21",
|
||||
@@ -48,6 +50,7 @@
|
||||
"2001:df5:5700::/48",
|
||||
"2001:df5:fa00::/48",
|
||||
"2001:df6:1ec0::/48",
|
||||
"2001:df6:b740::/48",
|
||||
"2400:6d00::/32",
|
||||
"2401:5100::/32",
|
||||
"2401:d7c0::/32",
|
||||
|
||||
+131
-61
@@ -50,6 +50,7 @@
|
||||
"5.180.56.0/22",
|
||||
"5.181.53.0/24",
|
||||
"5.181.172.0/22",
|
||||
"5.182.60.0/24",
|
||||
"5.182.136.0/22",
|
||||
"5.182.144.0/22",
|
||||
"5.182.156.0/22",
|
||||
@@ -73,7 +74,6 @@
|
||||
"14.102.102.0/24",
|
||||
"23.90.192.0/18",
|
||||
"23.136.248.0/24",
|
||||
"23.174.120.0/24",
|
||||
"24.230.0.0/19",
|
||||
"31.3.136.0/21",
|
||||
"31.7.248.0/21",
|
||||
@@ -261,6 +261,7 @@
|
||||
"45.92.252.0/22",
|
||||
"45.93.21.0/24",
|
||||
"45.93.144.0/22",
|
||||
"45.93.198.0/23",
|
||||
"45.94.16.0/22",
|
||||
"45.94.124.0/22",
|
||||
"45.94.128.0/22",
|
||||
@@ -298,7 +299,6 @@
|
||||
"45.140.20.0/22",
|
||||
"45.140.108.0/22",
|
||||
"45.141.112.0/22",
|
||||
"45.141.164.0/22",
|
||||
"45.141.172.0/22",
|
||||
"45.142.13.0/24",
|
||||
"45.142.14.0/24",
|
||||
@@ -324,10 +324,10 @@
|
||||
"45.149.124.0/22",
|
||||
"45.149.140.0/22",
|
||||
"45.149.152.0/22",
|
||||
"45.150.248.0/22",
|
||||
"45.151.8.0/22",
|
||||
"45.151.16.0/22",
|
||||
"45.151.40.0/22",
|
||||
"45.151.90.0/24",
|
||||
"45.151.184.0/21",
|
||||
"45.151.208.0/22",
|
||||
"45.151.220.0/22",
|
||||
@@ -390,6 +390,7 @@
|
||||
"46.149.107.0/24",
|
||||
"46.162.128.0/18",
|
||||
"46.165.64.0/18",
|
||||
"46.174.132.0/24",
|
||||
"46.182.0.0/21",
|
||||
"46.182.40.0/21",
|
||||
"46.182.72.0/21",
|
||||
@@ -495,6 +496,7 @@
|
||||
"77.72.40.0/21",
|
||||
"77.72.88.0/21",
|
||||
"77.73.34.0/23",
|
||||
"77.73.116.0/24",
|
||||
"77.74.152.0/21",
|
||||
"77.74.208.0/21",
|
||||
"77.74.240.0/21",
|
||||
@@ -544,13 +546,18 @@
|
||||
"78.159.0.0/19",
|
||||
"78.159.132.0/22",
|
||||
"78.159.148.0/24",
|
||||
"78.192.0.0/10",
|
||||
"78.192.0.0/11",
|
||||
"78.231.0.0/16",
|
||||
"78.232.0.0/13",
|
||||
"78.240.0.0/12",
|
||||
"79.80.0.0/12",
|
||||
"79.98.16.0/21",
|
||||
"79.98.56.0/21",
|
||||
"79.98.96.0/21",
|
||||
"79.99.32.0/21",
|
||||
"79.99.160.0/21",
|
||||
"79.108.144.0/21",
|
||||
"79.108.226.0/24",
|
||||
"79.110.56.0/22",
|
||||
"79.110.237.0/24",
|
||||
"79.132.32.0/19",
|
||||
@@ -594,6 +601,7 @@
|
||||
"80.245.16.0/20",
|
||||
"80.247.0.0/20",
|
||||
"80.247.224.0/20",
|
||||
"80.248.128.0/21",
|
||||
"80.248.208.0/20",
|
||||
"80.251.96.0/20",
|
||||
"80.253.192.0/20",
|
||||
@@ -614,6 +622,7 @@
|
||||
"81.56.0.0/15",
|
||||
"81.64.0.0/14",
|
||||
"81.80.0.0/16",
|
||||
"81.85.62.0/23",
|
||||
"81.88.96.0/20",
|
||||
"81.91.64.0/20",
|
||||
"81.92.80.0/20",
|
||||
@@ -715,6 +724,8 @@
|
||||
"85.117.128.0/19",
|
||||
"85.118.32.0/19",
|
||||
"85.119.168.0/21",
|
||||
"85.137.183.0/24",
|
||||
"85.137.232.0/22",
|
||||
"85.158.8.0/22",
|
||||
"85.158.16.0/21",
|
||||
"85.158.112.0/20",
|
||||
@@ -733,6 +744,7 @@
|
||||
"85.208.180.0/22",
|
||||
"85.208.192.0/22",
|
||||
"85.208.216.0/22",
|
||||
"85.209.43.0/24",
|
||||
"85.209.224.0/22",
|
||||
"85.222.200.0/21",
|
||||
"85.237.96.0/19",
|
||||
@@ -750,13 +762,19 @@
|
||||
"86.107.189.0/24",
|
||||
"86.107.190.0/24",
|
||||
"86.107.248.0/21",
|
||||
"86.192.0.0/10",
|
||||
"86.192.0.0/11",
|
||||
"86.224.0.0/15",
|
||||
"86.227.0.0/16",
|
||||
"86.228.0.0/14",
|
||||
"86.232.0.0/13",
|
||||
"86.240.0.0/12",
|
||||
"87.88.0.0/14",
|
||||
"87.98.128.0/17",
|
||||
"87.100.0.0/17",
|
||||
"87.121.88.0/24",
|
||||
"87.121.136.0/21",
|
||||
"87.121.208.0/21",
|
||||
"87.192.192.0/21",
|
||||
"87.231.0.0/16",
|
||||
"87.236.34.0/23",
|
||||
"87.236.72.0/21",
|
||||
@@ -799,6 +817,8 @@
|
||||
"89.37.106.0/23",
|
||||
"89.37.142.0/24",
|
||||
"89.37.228.0/22",
|
||||
"89.37.232.0/23",
|
||||
"89.38.200.0/21",
|
||||
"89.38.238.0/23",
|
||||
"89.40.176.0/22",
|
||||
"89.40.210.0/24",
|
||||
@@ -811,6 +831,8 @@
|
||||
"89.80.0.0/12",
|
||||
"89.106.184.0/21",
|
||||
"89.107.168.0/21",
|
||||
"89.127.236.0/22",
|
||||
"89.127.252.0/23",
|
||||
"89.147.104.0/22",
|
||||
"89.150.49.0/24",
|
||||
"89.156.0.0/14",
|
||||
@@ -825,7 +847,13 @@
|
||||
"89.248.72.0/21",
|
||||
"89.248.208.0/20",
|
||||
"89.251.48.0/20",
|
||||
"90.0.0.0/9",
|
||||
"90.0.0.0/10",
|
||||
"90.64.0.0/11",
|
||||
"90.97.0.0/16",
|
||||
"90.98.0.0/15",
|
||||
"90.100.0.0/14",
|
||||
"90.104.0.0/13",
|
||||
"90.112.0.0/12",
|
||||
"91.68.0.0/14",
|
||||
"91.88.0.0/16",
|
||||
"91.90.96.0/21",
|
||||
@@ -884,7 +912,6 @@
|
||||
"91.199.0.0/24",
|
||||
"91.199.11.0/24",
|
||||
"91.199.103.0/24",
|
||||
"91.199.152.0/24",
|
||||
"91.199.179.0/24",
|
||||
"91.199.221.0/24",
|
||||
"91.199.233.0/24",
|
||||
@@ -996,7 +1023,6 @@
|
||||
"91.216.221.0/24",
|
||||
"91.216.228.0/24",
|
||||
"91.216.234.0/24",
|
||||
"91.217.44.0/23",
|
||||
"91.217.94.0/23",
|
||||
"91.217.114.0/23",
|
||||
"91.217.118.0/24",
|
||||
@@ -1040,6 +1066,7 @@
|
||||
"91.223.192.0/24",
|
||||
"91.223.207.0/24",
|
||||
"91.223.240.0/24",
|
||||
"91.223.249.0/24",
|
||||
"91.223.253.0/24",
|
||||
"91.224.6.0/23",
|
||||
"91.224.148.0/23",
|
||||
@@ -1158,6 +1185,7 @@
|
||||
"93.95.31.0/24",
|
||||
"93.95.56.0/21",
|
||||
"93.95.232.0/21",
|
||||
"93.113.136.0/21",
|
||||
"93.113.206.0/23",
|
||||
"93.113.254.0/24",
|
||||
"93.114.176.0/22",
|
||||
@@ -1233,7 +1261,11 @@
|
||||
"94.247.176.0/21",
|
||||
"94.247.232.0/21",
|
||||
"95.81.128.0/18",
|
||||
"95.111.128.0/19",
|
||||
"95.111.128.0/22",
|
||||
"95.111.132.0/24",
|
||||
"95.111.135.0/24",
|
||||
"95.111.136.0/21",
|
||||
"95.111.144.0/20",
|
||||
"95.128.40.0/21",
|
||||
"95.128.72.0/21",
|
||||
"95.128.144.0/21",
|
||||
@@ -1248,6 +1280,8 @@
|
||||
"95.141.96.0/19",
|
||||
"95.142.160.0/20",
|
||||
"95.143.64.0/20",
|
||||
"95.143.96.0/24",
|
||||
"95.143.102.0/24",
|
||||
"95.157.128.0/17",
|
||||
"95.168.0.0/19",
|
||||
"95.170.0.0/18",
|
||||
@@ -1273,6 +1307,7 @@
|
||||
"103.58.8.0/22",
|
||||
"103.73.172.0/22",
|
||||
"103.77.32.0/22",
|
||||
"103.88.163.0/24",
|
||||
"103.102.228.0/22",
|
||||
"103.122.52.0/24",
|
||||
"103.133.84.0/22",
|
||||
@@ -1286,6 +1321,7 @@
|
||||
"109.70.16.0/21",
|
||||
"109.70.168.0/21",
|
||||
"109.71.128.0/20",
|
||||
"109.71.157.0/24",
|
||||
"109.73.136.0/22",
|
||||
"109.74.80.0/20",
|
||||
"109.94.32.0/19",
|
||||
@@ -1378,8 +1414,8 @@
|
||||
"138.231.0.0/16",
|
||||
"139.28.68.0/22",
|
||||
"139.28.248.0/22",
|
||||
"139.54.0.0/16",
|
||||
"139.100.0.0/16",
|
||||
"139.100.98.0/24",
|
||||
"139.100.176.0/20",
|
||||
"139.124.0.0/16",
|
||||
"139.158.0.0/16",
|
||||
"139.160.0.0/16",
|
||||
@@ -1462,7 +1498,13 @@
|
||||
"149.255.48.0/21",
|
||||
"149.255.136.0/21",
|
||||
"150.175.0.0/16",
|
||||
"150.251.248.0/22",
|
||||
"151.80.0.0/16",
|
||||
"151.87.0.0/16",
|
||||
"151.88.0.0/16",
|
||||
"151.91.0.0/16",
|
||||
"151.92.0.0/16",
|
||||
"151.115.0.0/16",
|
||||
"151.127.0.0/16",
|
||||
"152.77.0.0/16",
|
||||
"152.81.0.0/16",
|
||||
@@ -1478,7 +1520,6 @@
|
||||
"153.92.224.0/19",
|
||||
"155.2.128.0/19",
|
||||
"155.2.160.0/20",
|
||||
"155.132.0.0/16",
|
||||
"155.133.128.0/18",
|
||||
"155.140.0.0/16",
|
||||
"156.18.0.0/16",
|
||||
@@ -1507,7 +1548,6 @@
|
||||
"159.151.0.0/16",
|
||||
"159.173.0.0/16",
|
||||
"159.180.224.0/19",
|
||||
"159.217.0.0/16",
|
||||
"160.92.0.0/16",
|
||||
"160.103.0.0/16",
|
||||
"160.223.180.0/23",
|
||||
@@ -1517,7 +1557,9 @@
|
||||
"160.238.52.0/22",
|
||||
"161.3.0.0/16",
|
||||
"161.48.0.0/16",
|
||||
"161.104.0.0/15",
|
||||
"161.104.80.0/21",
|
||||
"161.104.160.0/20",
|
||||
"161.105.0.0/16",
|
||||
"161.106.0.0/16",
|
||||
"162.19.0.0/16",
|
||||
"162.38.0.0/16",
|
||||
@@ -1547,10 +1589,12 @@
|
||||
"163.114.160.0/19",
|
||||
"163.115.0.0/16",
|
||||
"163.116.0.0/17",
|
||||
"163.173.0.0/16",
|
||||
"163.172.0.0/15",
|
||||
"164.1.0.0/16",
|
||||
"164.2.0.0/16",
|
||||
"164.7.0.0/16",
|
||||
"164.37.39.0/24",
|
||||
"164.40.239.0/24",
|
||||
"164.81.0.0/16",
|
||||
"164.129.0.0/16",
|
||||
"164.131.0.0/16",
|
||||
@@ -1559,6 +1603,7 @@
|
||||
"164.138.240.0/21",
|
||||
"164.177.0.0/17",
|
||||
"166.108.128.0/18",
|
||||
"167.254.248.0/22",
|
||||
"168.220.128.0/19",
|
||||
"170.37.203.0/24",
|
||||
"170.37.204.0/23",
|
||||
@@ -1596,6 +1641,8 @@
|
||||
"176.118.172.0/22",
|
||||
"176.119.222.0/24",
|
||||
"176.120.128.0/19",
|
||||
"176.121.248.0/22",
|
||||
"176.121.254.0/24",
|
||||
"176.123.63.0/24",
|
||||
"176.124.40.0/22",
|
||||
"176.124.115.0/24",
|
||||
@@ -1657,6 +1704,7 @@
|
||||
"178.255.160.0/21",
|
||||
"178.255.208.0/21",
|
||||
"180.149.196.0/22",
|
||||
"185.0.19.0/24",
|
||||
"185.1.2.0/24",
|
||||
"185.1.14.0/24",
|
||||
"185.1.26.0/24",
|
||||
@@ -1693,7 +1741,7 @@
|
||||
"185.7.108.0/22",
|
||||
"185.7.160.0/22",
|
||||
"185.8.28.0/22",
|
||||
"185.8.48.0/21",
|
||||
"185.8.52.0/22",
|
||||
"185.8.64.0/22",
|
||||
"185.8.76.0/22",
|
||||
"185.8.96.0/22",
|
||||
@@ -1716,7 +1764,6 @@
|
||||
"185.12.37.0/24",
|
||||
"185.12.48.0/22",
|
||||
"185.12.96.0/22",
|
||||
"185.12.176.0/22",
|
||||
"185.13.36.0/22",
|
||||
"185.13.64.0/22",
|
||||
"185.13.86.0/24",
|
||||
@@ -1861,6 +1908,8 @@
|
||||
"185.42.188.0/22",
|
||||
"185.42.232.0/22",
|
||||
"185.43.28.0/24",
|
||||
"185.43.32.0/24",
|
||||
"185.43.35.0/24",
|
||||
"185.43.36.0/22",
|
||||
"185.43.44.0/22",
|
||||
"185.43.60.0/22",
|
||||
@@ -1929,6 +1978,7 @@
|
||||
"185.59.40.0/22",
|
||||
"185.60.8.0/22",
|
||||
"185.60.24.0/22",
|
||||
"185.60.56.0/24",
|
||||
"185.60.92.0/22",
|
||||
"185.60.108.0/22",
|
||||
"185.60.148.0/22",
|
||||
@@ -1941,6 +1991,7 @@
|
||||
"185.61.184.0/21",
|
||||
"185.62.4.0/22",
|
||||
"185.62.40.0/22",
|
||||
"185.62.44.0/24",
|
||||
"185.62.184.0/22",
|
||||
"185.62.220.0/22",
|
||||
"185.62.224.0/22",
|
||||
@@ -1961,7 +2012,7 @@
|
||||
"185.65.141.0/24",
|
||||
"185.65.224.0/22",
|
||||
"185.65.248.0/22",
|
||||
"185.66.100.0/22",
|
||||
"185.66.96.0/21",
|
||||
"185.66.152.0/22",
|
||||
"185.66.232.0/22",
|
||||
"185.67.72.0/22",
|
||||
@@ -1970,7 +2021,7 @@
|
||||
"185.67.152.0/22",
|
||||
"185.68.148.0/22",
|
||||
"185.68.224.0/21",
|
||||
"185.69.3.0/24",
|
||||
"185.69.2.0/23",
|
||||
"185.69.76.0/22",
|
||||
"185.69.228.0/22",
|
||||
"185.69.248.0/22",
|
||||
@@ -2088,6 +2139,7 @@
|
||||
"185.103.64.0/22",
|
||||
"185.103.118.0/24",
|
||||
"185.103.140.0/22",
|
||||
"185.104.0.0/24",
|
||||
"185.104.76.0/22",
|
||||
"185.104.172.0/22",
|
||||
"185.105.28.0/22",
|
||||
@@ -2095,6 +2147,8 @@
|
||||
"185.105.136.0/22",
|
||||
"185.105.152.0/22",
|
||||
"185.106.12.0/22",
|
||||
"185.106.117.0/24",
|
||||
"185.106.118.0/24",
|
||||
"185.106.135.0/24",
|
||||
"185.106.160.0/22",
|
||||
"185.106.216.0/22",
|
||||
@@ -2145,7 +2199,7 @@
|
||||
"185.118.119.0/24",
|
||||
"185.119.24.0/22",
|
||||
"185.119.168.0/22",
|
||||
"185.119.200.0/21",
|
||||
"185.119.200.0/22",
|
||||
"185.120.112.0/22",
|
||||
"185.120.176.0/22",
|
||||
"185.121.140.0/22",
|
||||
@@ -2160,6 +2214,7 @@
|
||||
"185.124.216.0/22",
|
||||
"185.124.236.0/22",
|
||||
"185.125.52.0/22",
|
||||
"185.125.141.0/24",
|
||||
"185.126.33.0/24",
|
||||
"185.126.228.0/22",
|
||||
"185.126.244.0/22",
|
||||
@@ -2191,6 +2246,7 @@
|
||||
"185.135.160.0/22",
|
||||
"185.135.176.0/22",
|
||||
"185.135.188.0/24",
|
||||
"185.135.196.0/24",
|
||||
"185.135.216.0/22",
|
||||
"185.135.236.0/22",
|
||||
"185.136.40.0/22",
|
||||
@@ -2262,7 +2318,6 @@
|
||||
"185.151.212.0/22",
|
||||
"185.152.24.0/22",
|
||||
"185.152.52.0/22",
|
||||
"185.152.168.0/22",
|
||||
"185.153.8.0/22",
|
||||
"185.153.28.0/22",
|
||||
"185.153.96.0/22",
|
||||
@@ -2414,6 +2469,8 @@
|
||||
"185.187.208.0/22",
|
||||
"185.187.216.0/22",
|
||||
"185.187.244.0/22",
|
||||
"185.188.13.0/24",
|
||||
"185.188.28.0/24",
|
||||
"185.188.88.0/21",
|
||||
"185.188.156.0/22",
|
||||
"185.188.160.0/22",
|
||||
@@ -2513,6 +2570,7 @@
|
||||
"185.212.20.0/22",
|
||||
"185.212.72.0/22",
|
||||
"185.212.96.0/22",
|
||||
"185.212.114.0/24",
|
||||
"185.212.224.0/22",
|
||||
"185.213.72.0/22",
|
||||
"185.213.160.0/22",
|
||||
@@ -2713,6 +2771,7 @@
|
||||
"185.253.54.0/24",
|
||||
"185.253.57.0/24",
|
||||
"185.253.92.0/22",
|
||||
"185.253.130.0/24",
|
||||
"185.253.132.0/22",
|
||||
"185.253.168.0/22",
|
||||
"185.254.8.0/22",
|
||||
@@ -2726,6 +2785,7 @@
|
||||
"188.7.0.0/16",
|
||||
"188.64.240.0/21",
|
||||
"188.65.120.0/21",
|
||||
"188.65.165.0/24",
|
||||
"188.65.168.0/21",
|
||||
"188.66.56.0/22",
|
||||
"188.73.0.0/18",
|
||||
@@ -2856,11 +2916,13 @@
|
||||
"192.149.44.0/22",
|
||||
"192.149.59.0/24",
|
||||
"192.149.77.0/24",
|
||||
"192.149.98.0/24",
|
||||
"192.152.42.0/24",
|
||||
"192.152.167.0/24",
|
||||
"192.159.121.0/24",
|
||||
"192.160.123.0/24",
|
||||
"192.162.68.0/22",
|
||||
"192.166.39.0/24",
|
||||
"192.166.140.0/22",
|
||||
"192.166.154.0/23",
|
||||
"192.166.156.0/23",
|
||||
@@ -2892,8 +2954,13 @@
|
||||
"193.3.24.0/24",
|
||||
"193.3.190.0/24",
|
||||
"193.7.212.0/22",
|
||||
"193.8.9.0/24",
|
||||
"193.8.10.0/23",
|
||||
"193.8.116.0/22",
|
||||
"193.8.143.0/24",
|
||||
"193.8.148.0/22",
|
||||
"193.8.152.0/21",
|
||||
"193.8.160.0/22",
|
||||
"193.8.204.0/24",
|
||||
"193.8.206.0/23",
|
||||
"193.8.220.0/23",
|
||||
@@ -2955,6 +3022,7 @@
|
||||
"193.29.138.0/24",
|
||||
"193.29.140.0/22",
|
||||
"193.29.222.0/24",
|
||||
"193.30.92.0/24",
|
||||
"193.30.126.0/23",
|
||||
"193.30.141.0/24",
|
||||
"193.30.144.0/20",
|
||||
@@ -3002,7 +3070,9 @@
|
||||
"193.42.150.0/23",
|
||||
"193.42.213.0/24",
|
||||
"193.43.0.0/26",
|
||||
"193.43.48.0/20",
|
||||
"193.43.214.0/23",
|
||||
"193.46.72.0/24",
|
||||
"193.46.85.0/24",
|
||||
"193.46.203.0/24",
|
||||
"193.46.206.0/24",
|
||||
@@ -3129,6 +3199,8 @@
|
||||
"193.93.40.0/22",
|
||||
"193.93.124.0/22",
|
||||
"193.93.181.0/24",
|
||||
"193.93.253.0/24",
|
||||
"193.93.255.0/24",
|
||||
"193.104.19.0/24",
|
||||
"193.104.31.0/24",
|
||||
"193.104.36.0/24",
|
||||
@@ -3225,7 +3297,6 @@
|
||||
"193.164.153.0/24",
|
||||
"193.164.156.0/24",
|
||||
"193.164.196.0/23",
|
||||
"193.164.202.0/23",
|
||||
"193.164.228.0/22",
|
||||
"193.164.232.0/26",
|
||||
"193.164.232.64/27",
|
||||
@@ -3254,7 +3325,6 @@
|
||||
"193.178.211.0/24",
|
||||
"193.186.8.0/24",
|
||||
"193.186.192.0/22",
|
||||
"193.188.134.64/27",
|
||||
"193.188.134.144/28",
|
||||
"193.188.249.0/24",
|
||||
"193.188.255.0/24",
|
||||
@@ -3288,6 +3358,7 @@
|
||||
"193.201.103.0/24",
|
||||
"193.201.146.0/25",
|
||||
"193.201.157.192/26",
|
||||
"193.201.196.0/24",
|
||||
"193.202.0.0/24",
|
||||
"193.202.77.0/24",
|
||||
"193.202.78.0/23",
|
||||
@@ -3327,7 +3398,6 @@
|
||||
"193.228.181.0/24",
|
||||
"193.228.185.0/24",
|
||||
"193.228.186.0/24",
|
||||
"193.228.229.0/24",
|
||||
"193.238.148.0/22",
|
||||
"193.239.12.0/22",
|
||||
"193.239.76.0/22",
|
||||
@@ -3470,6 +3540,7 @@
|
||||
"194.51.0.0/16",
|
||||
"194.53.4.0/22",
|
||||
"194.53.76.0/22",
|
||||
"194.54.70.0/24",
|
||||
"194.56.92.0/22",
|
||||
"194.56.183.0/24",
|
||||
"194.56.231.0/24",
|
||||
@@ -3527,6 +3598,7 @@
|
||||
"194.117.192.0/19",
|
||||
"194.117.244.0/22",
|
||||
"194.119.0.0/17",
|
||||
"194.124.160.0/21",
|
||||
"194.124.192.0/22",
|
||||
"194.126.128.0/24",
|
||||
"194.126.156.0/23",
|
||||
@@ -3658,11 +3730,11 @@
|
||||
"195.12.37.0/24",
|
||||
"195.13.32.0/23",
|
||||
"195.13.34.0/24",
|
||||
"195.13.37.128/26",
|
||||
"195.13.47.0/24",
|
||||
"195.13.51.0/24",
|
||||
"195.13.58.0/23",
|
||||
"195.14.0.0/24",
|
||||
"195.14.5.0/24",
|
||||
"195.14.7.0/24",
|
||||
"195.14.10.0/24",
|
||||
"195.14.22.0/24",
|
||||
@@ -3749,6 +3821,7 @@
|
||||
"195.128.132.0/24",
|
||||
"195.128.146.0/23",
|
||||
"195.128.149.0/24",
|
||||
"195.130.201.0/24",
|
||||
"195.130.207.0/24",
|
||||
"195.130.222.0/24",
|
||||
"195.132.0.0/16",
|
||||
@@ -3824,6 +3897,7 @@
|
||||
"195.216.242.0/24",
|
||||
"195.216.249.0/24",
|
||||
"195.220.0.0/15",
|
||||
"195.222.104.0/24",
|
||||
"195.225.80.0/24",
|
||||
"195.225.204.0/22",
|
||||
"195.226.215.0/24",
|
||||
@@ -3927,8 +4001,10 @@
|
||||
"212.108.118.0/24",
|
||||
"212.108.123.0/24",
|
||||
"212.114.0.0/19",
|
||||
"212.115.41.0/24",
|
||||
"212.121.32.0/19",
|
||||
"212.121.160.0/19",
|
||||
"212.122.96.0/19",
|
||||
"212.129.0.0/18",
|
||||
"212.146.192.0/18",
|
||||
"212.155.0.0/16",
|
||||
@@ -3989,6 +4065,7 @@
|
||||
"213.215.0.0/18",
|
||||
"213.217.12.0/22",
|
||||
"213.218.128.0/19",
|
||||
"213.218.162.0/24",
|
||||
"213.222.64.0/18",
|
||||
"213.223.0.0/16",
|
||||
"213.225.160.0/19",
|
||||
@@ -3998,6 +4075,7 @@
|
||||
"213.232.108.0/22",
|
||||
"213.232.198.0/24",
|
||||
"213.232.226.0/24",
|
||||
"213.232.255.0/24",
|
||||
"213.244.0.0/19",
|
||||
"213.245.0.0/16",
|
||||
"213.246.32.0/19",
|
||||
@@ -4021,6 +4099,7 @@
|
||||
"217.26.218.0/24",
|
||||
"217.64.48.0/20",
|
||||
"217.64.156.0/22",
|
||||
"217.65.130.0/24",
|
||||
"217.66.112.0/20",
|
||||
"217.67.144.0/20",
|
||||
"217.69.16.0/20",
|
||||
@@ -4038,6 +4117,7 @@
|
||||
"217.114.200.0/21",
|
||||
"217.115.160.0/20",
|
||||
"217.118.224.0/20",
|
||||
"217.119.141.0/24",
|
||||
"217.119.176.0/20",
|
||||
"217.128.0.0/16",
|
||||
"217.144.112.0/20",
|
||||
@@ -4069,6 +4149,7 @@
|
||||
"2001:678:3cc::/48",
|
||||
"2001:678:3fc::/48",
|
||||
"2001:678:430::/46",
|
||||
"2001:678:474::/48",
|
||||
"2001:678:794::/48",
|
||||
"2001:678:7b0::/48",
|
||||
"2001:678:7c8::/48",
|
||||
@@ -4086,12 +4167,11 @@
|
||||
"2001:678:de8::/48",
|
||||
"2001:678:e0c::/48",
|
||||
"2001:678:e6c::/48",
|
||||
"2001:678:ea8::/48",
|
||||
"2001:678:eac::/48",
|
||||
"2001:678:eb0::/48",
|
||||
"2001:678:f24::/48",
|
||||
"2001:678:1088::/48",
|
||||
"2001:678:10d8::/48",
|
||||
"2001:678:1174::/48",
|
||||
"2001:67c:ec::/48",
|
||||
"2001:67c:200::/48",
|
||||
"2001:67c:214::/48",
|
||||
@@ -4148,7 +4228,6 @@
|
||||
"2001:67c:1690::/48",
|
||||
"2001:67c:1718::/47",
|
||||
"2001:67c:1740::/48",
|
||||
"2001:67c:1788::/48",
|
||||
"2001:67c:17fc::/48",
|
||||
"2001:67c:1814::/48",
|
||||
"2001:67c:184c::/48",
|
||||
@@ -4179,8 +4258,6 @@
|
||||
"2001:67c:2844::/48",
|
||||
"2001:67c:2858::/48",
|
||||
"2001:67c:2868::/48",
|
||||
"2001:67c:2888::/48",
|
||||
"2001:67c:288c::/48",
|
||||
"2001:67c:2914::/48",
|
||||
"2001:67c:2944::/48",
|
||||
"2001:67c:2998::/48",
|
||||
@@ -4194,6 +4271,7 @@
|
||||
"2001:67c:2b38::/48",
|
||||
"2001:67c:2b3c::/48",
|
||||
"2001:67c:2d48::/48",
|
||||
"2001:67c:2e4c::/48",
|
||||
"2001:67c:2eb4::/48",
|
||||
"2001:67c:2ebc::/48",
|
||||
"2001:67c:2ec4::/48",
|
||||
@@ -4206,7 +4284,7 @@
|
||||
"2001:7f8:2d::/48",
|
||||
"2001:7f8:43::/48",
|
||||
"2001:7f8:47::/48",
|
||||
"2001:7f8:4e::/48",
|
||||
"2001:7f8:4e::/47",
|
||||
"2001:7f8:54::/48",
|
||||
"2001:7f8:68::/48",
|
||||
"2001:7f8:6d::/48",
|
||||
@@ -4297,7 +4375,6 @@
|
||||
"2a00:5880::/29",
|
||||
"2a00:5a40::/29",
|
||||
"2a00:5ce0::/32",
|
||||
"2a00:5e80::/32",
|
||||
"2a00:6000::/32",
|
||||
"2a00:6060::/32",
|
||||
"2a00:6200::/29",
|
||||
@@ -4323,9 +4400,8 @@
|
||||
"2a00:7aa0::/32",
|
||||
"2a00:7e40::/29",
|
||||
"2a00:7ec0::/29",
|
||||
"2a00:7ee0::/32",
|
||||
"2a00:7ee0::/29",
|
||||
"2a00:7f40::/32",
|
||||
"2a00:8380::/32",
|
||||
"2a00:8880::/32",
|
||||
"2a00:88a0::/32",
|
||||
"2a00:89c0::/32",
|
||||
@@ -4338,6 +4414,7 @@
|
||||
"2a00:98e0::/32",
|
||||
"2a00:9980::/32",
|
||||
"2a00:99a0::/32",
|
||||
"2a00:9a00::/29",
|
||||
"2a00:a120::/32",
|
||||
"2a00:a320::/32",
|
||||
"2a00:a4a0::/32",
|
||||
@@ -4348,7 +4425,7 @@
|
||||
"2a00:aa60::/32",
|
||||
"2a00:ab80::/32",
|
||||
"2a00:ae60::/32",
|
||||
"2a00:afe0::/32",
|
||||
"2a00:afe0::/29",
|
||||
"2a00:b120::/32",
|
||||
"2a00:b180::/32",
|
||||
"2a00:b1a0::/32",
|
||||
@@ -4367,7 +4444,6 @@
|
||||
"2a00:c120::/32",
|
||||
"2a00:c2e0::/32",
|
||||
"2a00:c340::/32",
|
||||
"2a00:c780::/32",
|
||||
"2a00:cb80::/32",
|
||||
"2a00:cc80::/32",
|
||||
"2a00:cfa0::/32",
|
||||
@@ -4458,6 +4534,7 @@
|
||||
"2a01:e3c0::/29",
|
||||
"2a01:e6c0::/29",
|
||||
"2a01:ea80::/29",
|
||||
"2a01:f5c0::/32",
|
||||
"2a01:f7c0::/29",
|
||||
"2a01:f9c0::/29",
|
||||
"2a01:fcc0::/29",
|
||||
@@ -4513,8 +4590,7 @@
|
||||
"2a02:28c0::/32",
|
||||
"2a02:2ab8::/29",
|
||||
"2a02:2d20::/32",
|
||||
"2a02:2fa0::/32",
|
||||
"2a02:4200::/32",
|
||||
"2a02:4200::/29",
|
||||
"2a02:4220::/32",
|
||||
"2a02:4e80::/32",
|
||||
"2a02:5000::/32",
|
||||
@@ -4584,7 +4660,6 @@
|
||||
"2a03:25c0::/32",
|
||||
"2a03:2640::/32",
|
||||
"2a03:2680::/32",
|
||||
"2a03:2c40::/32",
|
||||
"2a03:2d60::/32",
|
||||
"2a03:2ec0::/32",
|
||||
"2a03:2ee0::/32",
|
||||
@@ -4642,7 +4717,6 @@
|
||||
"2a03:9a40::/32",
|
||||
"2a03:9d60::/32",
|
||||
"2a03:9f80::/32",
|
||||
"2a03:a140::/32",
|
||||
"2a03:a240::/32",
|
||||
"2a03:a2c0::/29",
|
||||
"2a03:a580::/32",
|
||||
@@ -4733,6 +4807,7 @@
|
||||
"2a04:e900::/29",
|
||||
"2a04:ecc0::/29",
|
||||
"2a04:f600::/29",
|
||||
"2a05:700::/29",
|
||||
"2a05:780::/29",
|
||||
"2a05:9c0::/29",
|
||||
"2a05:d40::/29",
|
||||
@@ -4764,7 +4839,6 @@
|
||||
"2a05:5f80::/29",
|
||||
"2a05:6040::/29",
|
||||
"2a05:6280::/32",
|
||||
"2a05:6340::/29",
|
||||
"2a05:6e00::/29",
|
||||
"2a05:71c0::/29",
|
||||
"2a05:7680::/29",
|
||||
@@ -4826,9 +4900,9 @@
|
||||
"2a06:7440::/29",
|
||||
"2a06:7d80::/29",
|
||||
"2a06:8040::/29",
|
||||
"2a06:8840::/29",
|
||||
"2a06:8b80::/29",
|
||||
"2a06:8bc0::/29",
|
||||
"2a06:8c00::/29",
|
||||
"2a06:97c0::/29",
|
||||
"2a06:9840::/29",
|
||||
"2a06:a400::/29",
|
||||
@@ -4857,12 +4931,12 @@
|
||||
"2a07:1200::/29",
|
||||
"2a07:1780::/29",
|
||||
"2a07:18c0::/29",
|
||||
"2a07:1900::/29",
|
||||
"2a07:19c0::/29",
|
||||
"2a07:1bc0::/29",
|
||||
"2a07:1d80::/29",
|
||||
"2a07:1fc0::/29",
|
||||
"2a07:2400::/29",
|
||||
"2a07:2700::/29",
|
||||
"2a07:2880::/29",
|
||||
"2a07:28c0::/29",
|
||||
"2a07:2b00::/29",
|
||||
@@ -4873,12 +4947,14 @@
|
||||
"2a07:3a80::/29",
|
||||
"2a07:4100::/29",
|
||||
"2a07:4200::/29",
|
||||
"2a07:4500::/29",
|
||||
"2a07:4b00::/29",
|
||||
"2a07:4d40::/29",
|
||||
"2a07:4e00::/29",
|
||||
"2a07:5300::/29",
|
||||
"2a07:53c0::/29",
|
||||
"2a07:5600::/29",
|
||||
"2a07:5900::/29",
|
||||
"2a07:5e40::/29",
|
||||
"2a07:5f40::/29",
|
||||
"2a07:6200::/29",
|
||||
@@ -4892,11 +4968,9 @@
|
||||
"2a07:7a40::/29",
|
||||
"2a07:7ac0::/29",
|
||||
"2a07:7b40::/29",
|
||||
"2a07:7f00::/29",
|
||||
"2a07:8000::/29",
|
||||
"2a07:8140::/29",
|
||||
"2a07:81c0::/29",
|
||||
"2a07:8300::/29",
|
||||
"2a07:8580::/29",
|
||||
"2a07:8680::/29",
|
||||
"2a07:8d40::/29",
|
||||
@@ -4920,6 +4994,7 @@
|
||||
"2a07:cc00::/29",
|
||||
"2a07:cf80::/32",
|
||||
"2a07:da00::/29",
|
||||
"2a07:f200::/29",
|
||||
"2a07:fb40::/29",
|
||||
"2a09:1380::/29",
|
||||
"2a09:1cc0::/29",
|
||||
@@ -4936,7 +5011,6 @@
|
||||
"2a09:35c0::/32",
|
||||
"2a09:3dc0::/29",
|
||||
"2a09:4380::/32",
|
||||
"2a09:44c0::/29",
|
||||
"2a09:45c0::/32",
|
||||
"2a09:4b00::/32",
|
||||
"2a09:5180::/29",
|
||||
@@ -4949,7 +5023,6 @@
|
||||
"2a09:6980::/29",
|
||||
"2a09:69c0::/29",
|
||||
"2a09:6f40::/29",
|
||||
"2a09:7140::/29",
|
||||
"2a09:7340::/29",
|
||||
"2a09:7dc0::/29",
|
||||
"2a09:7ec0::/32",
|
||||
@@ -5043,7 +5116,6 @@
|
||||
"2a0b:1800::/29",
|
||||
"2a0b:1e80::/29",
|
||||
"2a0b:2080::/29",
|
||||
"2a0b:2640::/29",
|
||||
"2a0b:30c0::/29",
|
||||
"2a0b:3200::/29",
|
||||
"2a0b:38c0::/29",
|
||||
@@ -5068,6 +5140,7 @@
|
||||
"2a0b:b140::/29",
|
||||
"2a0b:b300::/29",
|
||||
"2a0b:b800::/29",
|
||||
"2a0b:bc00::/29",
|
||||
"2a0b:bc80::/29",
|
||||
"2a0b:c500::/32",
|
||||
"2a0b:c780::/29",
|
||||
@@ -5220,11 +5293,9 @@
|
||||
"2a0e:7ec0::/29",
|
||||
"2a0e:8700::/32",
|
||||
"2a0e:9400::/29",
|
||||
"2a0e:9780::/29",
|
||||
"2a0e:9900::/29",
|
||||
"2a0e:9f40::/29",
|
||||
"2a0e:ac80::/29",
|
||||
"2a0e:aec0::/29",
|
||||
"2a0e:b380::/29",
|
||||
"2a0e:b700::/29",
|
||||
"2a0e:b880::/29",
|
||||
@@ -5233,7 +5304,6 @@
|
||||
"2a0e:cec0::/29",
|
||||
"2a0e:d040::/32",
|
||||
"2a0e:d500::/29",
|
||||
"2a0e:d680::/29",
|
||||
"2a0e:db00::/29",
|
||||
"2a0e:dd80::/29",
|
||||
"2a0e:e080::/32",
|
||||
@@ -5252,7 +5322,6 @@
|
||||
"2a0f:3400::/29",
|
||||
"2a0f:3500::/29",
|
||||
"2a0f:6780::/29",
|
||||
"2a0f:6940::/32",
|
||||
"2a0f:7240::/29",
|
||||
"2a0f:8340::/29",
|
||||
"2a0f:9080::/29",
|
||||
@@ -5334,36 +5403,35 @@
|
||||
"2a10:f480::/29",
|
||||
"2a10:f7c0::/29",
|
||||
"2a11:600::/29",
|
||||
"2a11:900::/29",
|
||||
"2a11:10c0::/29",
|
||||
"2a11:1dc0::/29",
|
||||
"2a11:3040::/29",
|
||||
"2a11:3100::/29",
|
||||
"2a11:3380::/29",
|
||||
"2a11:3400::/29",
|
||||
"2a11:4980::/29",
|
||||
"2a11:5cc0::/29",
|
||||
"2a11:6840::/29",
|
||||
"2a11:93c0::/29",
|
||||
"2a11:9ac0::/29",
|
||||
"2a11:a3c0::/29",
|
||||
"2a11:a7c0::/29",
|
||||
"2a11:a840::/29",
|
||||
"2a11:c780::/29",
|
||||
"2a11:da80::/29",
|
||||
"2a11:ddc0::/29",
|
||||
"2a11:dfc0::/29",
|
||||
"2a11:e600::/29",
|
||||
"2a11:e880::/29",
|
||||
"2a11:f940::/29",
|
||||
"2a11:fac0::/29",
|
||||
"2a12:27c0::/29",
|
||||
"2a12:3440::/29",
|
||||
"2a12:3640::/29",
|
||||
"2a12:3f40::/29",
|
||||
"2a12:40c0::/29",
|
||||
"2a12:42c0::/29",
|
||||
"2a12:4640::/32",
|
||||
"2a12:4840::/29",
|
||||
"2a12:52c0::/29",
|
||||
"2a12:5380::/29",
|
||||
"2a12:5480::/29",
|
||||
"2a12:5540::/29",
|
||||
"2a12:56c0::/32",
|
||||
"2a12:5980::/29",
|
||||
"2a12:6a80::/29",
|
||||
"2a12:6dc0::/29",
|
||||
@@ -5381,12 +5449,13 @@
|
||||
"2a12:aa40::/32",
|
||||
"2a12:b0c0::/29",
|
||||
"2a12:dac0::/29",
|
||||
"2a12:eb00::/29",
|
||||
"2a12:ec00::/29",
|
||||
"2a12:f240::/29",
|
||||
"2a12:f280::/29",
|
||||
"2a12:f7c0::/29",
|
||||
"2a13:1c0::/29",
|
||||
"2a13:b40::/29",
|
||||
"2a13:1080::/29",
|
||||
"2a13:15c0::/29",
|
||||
"2a13:1d00::/29",
|
||||
"2a13:2080::/29",
|
||||
@@ -5394,6 +5463,7 @@
|
||||
"2a13:2280::/29",
|
||||
"2a13:2900::/29",
|
||||
"2a13:2a80::/29",
|
||||
"2a13:41c0::/29",
|
||||
"2a13:45c0::/29",
|
||||
"2a13:4cc0::/29",
|
||||
"2a13:5640::/29",
|
||||
@@ -5410,6 +5480,7 @@
|
||||
"2a13:b040::/29",
|
||||
"2a13:b380::/29",
|
||||
"2a13:b940::/29",
|
||||
"2a13:bc40::/29",
|
||||
"2a13:bf80::/29",
|
||||
"2a13:c7c0::/29",
|
||||
"2a13:c880::/29",
|
||||
@@ -5440,7 +5511,6 @@
|
||||
"2a14:6c40::/29",
|
||||
"2a14:7400::/32",
|
||||
"2a14:7ac0::/32",
|
||||
"2a14:8b00::/29",
|
||||
"2a14:9000::/29",
|
||||
"2a14:9f00::/29",
|
||||
"2a14:a200::/29",
|
||||
|
||||
+384
-227
File diff suppressed because it is too large
Load Diff
@@ -5,6 +5,7 @@
|
||||
"23.128.4.0/24",
|
||||
"23.130.168.0/24",
|
||||
"23.141.216.0/24",
|
||||
"23.155.216.0/24",
|
||||
"45.42.225.0/24",
|
||||
"67.159.199.0/24",
|
||||
"74.117.84.0/22",
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
"23.252.76.0/24",
|
||||
"23.252.79.0/24",
|
||||
"31.146.0.0/16",
|
||||
"31.171.208.0/24",
|
||||
"31.192.0.0/18",
|
||||
"31.222.234.0/24",
|
||||
"37.46.104.0/21",
|
||||
@@ -42,6 +43,7 @@
|
||||
"45.67.14.0/24",
|
||||
"45.81.28.0/22",
|
||||
"45.90.252.0/22",
|
||||
"45.134.241.0/24",
|
||||
"45.136.52.0/22",
|
||||
"45.138.44.0/22",
|
||||
"45.141.217.0/24",
|
||||
@@ -62,6 +64,7 @@
|
||||
"62.233.61.0/24",
|
||||
"77.74.40.0/21",
|
||||
"77.91.64.0/20",
|
||||
"77.91.96.0/19",
|
||||
"77.92.224.0/19",
|
||||
"77.242.48.0/20",
|
||||
"78.40.104.0/22",
|
||||
@@ -81,6 +84,7 @@
|
||||
"85.114.224.0/19",
|
||||
"85.117.32.0/19",
|
||||
"85.118.96.0/19",
|
||||
"85.137.81.0/24",
|
||||
"85.209.80.0/22",
|
||||
"85.238.32.0/19",
|
||||
"87.253.32.0/19",
|
||||
@@ -107,6 +111,7 @@
|
||||
"91.211.86.0/24",
|
||||
"91.212.213.0/24",
|
||||
"91.212.225.0/24",
|
||||
"91.214.78.0/23",
|
||||
"91.219.232.0/22",
|
||||
"91.221.52.0/23",
|
||||
"91.223.53.0/24",
|
||||
@@ -168,6 +173,8 @@
|
||||
"176.74.64.0/18",
|
||||
"176.97.217.0/24",
|
||||
"176.100.46.0/24",
|
||||
"176.121.224.0/20",
|
||||
"176.121.240.0/21",
|
||||
"176.126.101.0/24",
|
||||
"176.221.128.0/17",
|
||||
"178.22.27.0/24",
|
||||
@@ -201,6 +208,7 @@
|
||||
"185.83.36.0/22",
|
||||
"185.83.200.0/22",
|
||||
"185.92.56.0/22",
|
||||
"185.98.26.0/24",
|
||||
"185.99.92.0/22",
|
||||
"185.100.76.0/22",
|
||||
"185.102.144.0/22",
|
||||
@@ -281,6 +289,7 @@
|
||||
"194.31.8.0/24",
|
||||
"194.48.200.0/24",
|
||||
"194.60.250.0/24",
|
||||
"194.76.184.0/24",
|
||||
"194.99.158.0/24",
|
||||
"194.165.62.0/24",
|
||||
"194.247.16.0/23",
|
||||
@@ -300,9 +309,11 @@
|
||||
"213.134.15.0/24",
|
||||
"213.139.236.0/22",
|
||||
"213.157.192.0/19",
|
||||
"213.173.15.0/24",
|
||||
"213.177.188.0/24",
|
||||
"213.200.0.0/19",
|
||||
"213.217.16.0/22",
|
||||
"217.11.160.0/22",
|
||||
"217.11.160.0/23",
|
||||
"217.26.222.0/24",
|
||||
"217.70.4.0/24",
|
||||
"217.147.224.0/20"
|
||||
@@ -313,6 +324,7 @@
|
||||
"2001:7f8:14c::/48",
|
||||
"2001:3940::/29",
|
||||
"2001:3d40::/29",
|
||||
"2a00:1e68::/30",
|
||||
"2a00:e8c0::/29",
|
||||
"2a00:f2e0::/32",
|
||||
"2a01:47a0::/32",
|
||||
@@ -365,6 +377,7 @@
|
||||
"2a0e:2700::/29",
|
||||
"2a0f:8c0::/32",
|
||||
"2a0f:52c0::/29",
|
||||
"2a0f:7980::/32",
|
||||
"2a10:1580::/29",
|
||||
"2a10:3480::/29",
|
||||
"2a10:6040::/32",
|
||||
|
||||
@@ -39,6 +39,10 @@
|
||||
"102.164.123.0/24",
|
||||
"102.176.0.0/17",
|
||||
"102.177.100.0/22",
|
||||
"102.202.198.0/23",
|
||||
"102.202.228.0/22",
|
||||
"102.203.0.0/24",
|
||||
"102.203.160.0/22",
|
||||
"102.204.32.0/22",
|
||||
"102.204.64.0/24",
|
||||
"102.204.144.0/22",
|
||||
@@ -171,11 +175,14 @@
|
||||
"2001:43f8:1a00::/48",
|
||||
"2001:43f8:1a10::/48",
|
||||
"2001:43fc:3000::/48",
|
||||
"2001:43fd:4800::/48",
|
||||
"2001:43fe:4000::/48",
|
||||
"2001:43fe:5000::/48",
|
||||
"2001:43fe:8000::/48",
|
||||
"2001:43ff:7000::/48",
|
||||
"2c0e:a000::/24",
|
||||
"2c0f:420::/32",
|
||||
"2c0f:7a0::/32",
|
||||
"2c0f:1380::/32",
|
||||
"2c0f:1640::/32",
|
||||
"2c0f:1d80::/32",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"85.115.128.0/19",
|
||||
"85.159.120.0/21",
|
||||
"85.208.60.0/22",
|
||||
"89.124.253.0/24",
|
||||
"91.109.248.0/21",
|
||||
"91.235.119.0/24",
|
||||
"92.249.5.0/24",
|
||||
@@ -29,7 +30,9 @@
|
||||
"94.131.21.0/24",
|
||||
"94.131.22.0/24",
|
||||
"94.131.24.0/21",
|
||||
"94.131.32.0/19",
|
||||
"94.131.32.0/20",
|
||||
"94.131.52.0/22",
|
||||
"94.131.56.0/22",
|
||||
"94.131.64.0/20",
|
||||
"94.131.124.0/22",
|
||||
"94.131.128.0/19",
|
||||
@@ -46,7 +49,6 @@
|
||||
"178.211.128.0/24",
|
||||
"185.9.212.0/22",
|
||||
"185.16.192.0/22",
|
||||
"185.39.28.0/23",
|
||||
"185.49.216.0/22",
|
||||
"185.74.72.0/22",
|
||||
"185.75.80.0/22",
|
||||
@@ -59,14 +61,11 @@
|
||||
"185.149.68.0/22",
|
||||
"185.192.4.0/22",
|
||||
"192.190.168.0/22",
|
||||
"193.33.64.0/23",
|
||||
"193.34.188.0/23",
|
||||
"193.105.57.0/24",
|
||||
"193.169.30.0/24",
|
||||
"194.164.146.0/23",
|
||||
"195.166.192.0/19",
|
||||
"195.214.213.0/24",
|
||||
"195.214.214.0/24",
|
||||
"195.244.192.0/19",
|
||||
"212.22.224.0/19",
|
||||
"212.86.97.0/24",
|
||||
@@ -82,6 +81,7 @@
|
||||
"2a01:8c40::/32",
|
||||
"2a02:638::/32",
|
||||
"2a03:50c0::/32",
|
||||
"2a03:c040::/32",
|
||||
"2a03:dc40::/32",
|
||||
"2a05:8c00::/29",
|
||||
"2a05:b180::/29",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"41.223.212.0/22",
|
||||
"102.69.160.0/22",
|
||||
"102.140.128.0/19",
|
||||
"102.203.168.0/22",
|
||||
"102.206.88.0/22",
|
||||
"102.211.12.0/22",
|
||||
"102.211.244.0/22",
|
||||
|
||||
@@ -54,6 +54,7 @@
|
||||
"77.69.0.0/17",
|
||||
"78.87.0.0/16",
|
||||
"78.108.32.0/20",
|
||||
"78.109.28.0/22",
|
||||
"79.103.0.0/16",
|
||||
"79.107.0.0/16",
|
||||
"79.128.0.0/14",
|
||||
@@ -150,6 +151,7 @@
|
||||
"94.232.80.0/21",
|
||||
"94.241.128.0/18",
|
||||
"95.129.40.0/21",
|
||||
"95.133.192.0/20",
|
||||
"109.68.144.0/21",
|
||||
"109.107.139.0/24",
|
||||
"109.178.0.0/16",
|
||||
@@ -173,6 +175,7 @@
|
||||
"152.89.116.0/22",
|
||||
"155.207.0.0/16",
|
||||
"160.40.0.0/16",
|
||||
"164.40.237.0/24",
|
||||
"172.93.4.0/23",
|
||||
"176.58.128.0/17",
|
||||
"176.92.0.0/17",
|
||||
@@ -195,7 +198,6 @@
|
||||
"185.1.172.0/24",
|
||||
"185.3.220.0/22",
|
||||
"185.4.88.0/22",
|
||||
"185.4.132.0/22",
|
||||
"185.4.236.0/22",
|
||||
"185.5.76.0/22",
|
||||
"185.6.76.0/22",
|
||||
@@ -211,6 +213,7 @@
|
||||
"185.29.24.0/22",
|
||||
"185.32.228.0/22",
|
||||
"185.36.232.0/22",
|
||||
"185.39.28.0/23",
|
||||
"185.42.208.0/22",
|
||||
"185.44.144.0/22",
|
||||
"185.51.132.0/22",
|
||||
@@ -229,6 +232,7 @@
|
||||
"185.90.44.0/22",
|
||||
"185.96.32.0/22",
|
||||
"185.98.100.0/22",
|
||||
"185.98.134.0/24",
|
||||
"185.100.168.0/22",
|
||||
"185.104.144.0/22",
|
||||
"185.105.248.0/22",
|
||||
@@ -238,7 +242,6 @@
|
||||
"185.117.32.0/22",
|
||||
"185.118.125.0/24",
|
||||
"185.134.112.0/22",
|
||||
"185.138.40.0/22",
|
||||
"185.140.240.0/22",
|
||||
"185.143.52.0/22",
|
||||
"185.145.164.0/22",
|
||||
@@ -305,6 +308,7 @@
|
||||
"193.92.0.0/16",
|
||||
"193.93.164.0/22",
|
||||
"193.104.200.0/24",
|
||||
"193.104.210.0/24",
|
||||
"193.105.42.0/24",
|
||||
"193.105.80.0/24",
|
||||
"193.105.85.0/24",
|
||||
@@ -350,6 +354,7 @@
|
||||
"193.254.200.0/23",
|
||||
"193.254.222.0/23",
|
||||
"194.0.4.0/24",
|
||||
"194.0.143.0/24",
|
||||
"194.0.185.0/24",
|
||||
"194.13.111.0/24",
|
||||
"194.24.170.0/23",
|
||||
@@ -446,6 +451,7 @@
|
||||
"2001:678:92c::/48",
|
||||
"2001:678:a6c::/48",
|
||||
"2001:678:bf0::/48",
|
||||
"2001:678:1164::/48",
|
||||
"2001:67c:b44::/48",
|
||||
"2001:67c:d44::/48",
|
||||
"2001:67c:df8::/48",
|
||||
@@ -478,7 +484,6 @@
|
||||
"2a02:4900::/29",
|
||||
"2a02:4fc0::/32",
|
||||
"2a02:5440::/32",
|
||||
"2a02:c500::/29",
|
||||
"2a02:ce00::/29",
|
||||
"2a02:fa80::/32",
|
||||
"2a03:e40::/32",
|
||||
@@ -497,9 +502,9 @@
|
||||
"2a06:3a40::/29",
|
||||
"2a06:3ac0::/29",
|
||||
"2a06:3d00::/29",
|
||||
"2a06:5200::/29",
|
||||
"2a06:5780::/29",
|
||||
"2a06:e780::/29",
|
||||
"2a07:8c0::/29",
|
||||
"2a07:9b00::/29",
|
||||
"2a09:68c0::/29",
|
||||
"2a09:a1c0::/29",
|
||||
@@ -521,7 +526,6 @@
|
||||
"2a0d:8880::/29",
|
||||
"2a0e:2140::/29",
|
||||
"2a0e:9c40::/29",
|
||||
"2a0f:8780::/29",
|
||||
"2a0f:ffc0::/29",
|
||||
"2a10:1200::/29",
|
||||
"2a10:5040::/29",
|
||||
@@ -543,6 +547,7 @@
|
||||
"2a14:80::/29",
|
||||
"2a14:4280::/29",
|
||||
"2a14:6700::/29",
|
||||
"2a14:7240::/29",
|
||||
"2a14:8100::/29",
|
||||
"2a14:9200::/29",
|
||||
"2a14:ed00::/29"
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
"45.68.4.0/22",
|
||||
"45.68.48.0/22",
|
||||
"45.164.148.0/22",
|
||||
"45.165.152.0/24",
|
||||
"45.166.240.0/22",
|
||||
"45.171.64.0/22",
|
||||
"45.173.216.0/22",
|
||||
@@ -34,7 +33,8 @@
|
||||
"143.208.56.0/22",
|
||||
"143.208.180.0/22",
|
||||
"148.222.58.0/23",
|
||||
"148.224.60.0/24",
|
||||
"148.224.60.0/23",
|
||||
"148.227.208.0/20",
|
||||
"148.230.16.0/20",
|
||||
"167.250.220.0/22",
|
||||
"168.194.72.0/22",
|
||||
@@ -74,6 +74,8 @@
|
||||
"190.104.112.0/20",
|
||||
"190.106.192.0/19",
|
||||
"190.111.0.0/19",
|
||||
"190.113.33.0/24",
|
||||
"190.113.34.0/23",
|
||||
"190.113.88.0/22",
|
||||
"190.115.0.0/20",
|
||||
"190.121.192.0/20",
|
||||
@@ -149,11 +151,13 @@
|
||||
"2801:17:c800::/48",
|
||||
"2801:18:b800::/48",
|
||||
"2801:1a:8800::/48",
|
||||
"2801:1c:8400::/48",
|
||||
"2801:1d:2000::/48",
|
||||
"2801:155::/40",
|
||||
"2801:1a5::/44",
|
||||
"2803:c90::/32",
|
||||
"2803:d20::/32",
|
||||
"2803:1030::/32",
|
||||
"2803:1440::/32",
|
||||
"2803:1520::/32",
|
||||
"2803:1610::/32",
|
||||
@@ -164,6 +168,7 @@
|
||||
"2803:3280::/32",
|
||||
"2803:3350::/32",
|
||||
"2803:34d0::/32",
|
||||
"2803:3830::/32",
|
||||
"2803:3910::/32",
|
||||
"2803:3a00::/32",
|
||||
"2803:3b10::/32",
|
||||
@@ -186,16 +191,18 @@
|
||||
"2803:8720::/32",
|
||||
"2803:95e0::/32",
|
||||
"2803:96e0::/32",
|
||||
"2803:99a0::/32",
|
||||
"2803:9d50::/32",
|
||||
"2803:a490::/32",
|
||||
"2803:a7a0::/32",
|
||||
"2803:a9d0::/32",
|
||||
"2803:ac30::/32",
|
||||
"2803:b430::/32",
|
||||
"2803:b4e0::/32",
|
||||
"2803:b760::/32",
|
||||
"2803:b860::/32",
|
||||
"2803:b910::/32",
|
||||
"2803:ba00::/32",
|
||||
"2803:bc30::/32",
|
||||
"2803:bee0::/32",
|
||||
"2803:bf40::/32",
|
||||
"2803:bf60::/32",
|
||||
@@ -212,6 +219,7 @@
|
||||
"2803:e290::/32",
|
||||
"2803:e2e0::/32",
|
||||
"2803:e880::/32",
|
||||
"2803:ee30::/32",
|
||||
"2803:f5d0::/32",
|
||||
"2803:fd10::/32"
|
||||
]
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"ipv4": [
|
||||
"43.240.88.0/22",
|
||||
"43.247.60.0/22",
|
||||
"49.128.104.0/22",
|
||||
"49.128.107.0/24",
|
||||
"101.99.128.0/17",
|
||||
"103.3.240.0/22",
|
||||
"103.7.100.0/22",
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"2800:3c0::/32",
|
||||
"2801:16:e0::/48",
|
||||
"2803:d00::/32",
|
||||
"2803:2630::/32",
|
||||
"2803:77e0::/32",
|
||||
"2803:da00::/32",
|
||||
"2803:e340::/32",
|
||||
|
||||
+150
-70
@@ -19,6 +19,7 @@
|
||||
"5.182.116.0/22",
|
||||
"5.182.216.0/22",
|
||||
"5.254.128.0/19",
|
||||
"9.176.0.0/16",
|
||||
"14.0.128.0/17",
|
||||
"14.1.20.0/22",
|
||||
"14.102.90.0/24",
|
||||
@@ -41,10 +42,8 @@
|
||||
"27.122.56.0/22",
|
||||
"27.123.32.0/19",
|
||||
"27.123.192.0/20",
|
||||
"27.123.228.0/22",
|
||||
"27.123.232.0/22",
|
||||
"27.126.176.0/20",
|
||||
"27.126.192.0/18",
|
||||
"31.24.251.0/24",
|
||||
"31.24.255.0/24",
|
||||
"31.40.201.0/24",
|
||||
@@ -196,6 +195,7 @@
|
||||
"43.251.32.0/22",
|
||||
"43.251.44.0/22",
|
||||
"43.251.76.0/22",
|
||||
"43.251.100.0/22",
|
||||
"43.251.104.0/22",
|
||||
"43.251.132.0/22",
|
||||
"43.251.140.0/22",
|
||||
@@ -288,7 +288,6 @@
|
||||
"45.115.196.0/22",
|
||||
"45.115.240.0/22",
|
||||
"45.116.8.0/21",
|
||||
"45.116.40.0/22",
|
||||
"45.116.60.0/22",
|
||||
"45.116.64.0/22",
|
||||
"45.116.76.0/22",
|
||||
@@ -423,6 +422,7 @@
|
||||
"45.251.104.0/21",
|
||||
"45.253.244.0/23",
|
||||
"45.254.252.0/22",
|
||||
"45.255.124.0/22",
|
||||
"45.255.132.0/22",
|
||||
"46.16.37.0/24",
|
||||
"46.149.172.0/23",
|
||||
@@ -477,23 +477,34 @@
|
||||
"62.204.41.0/24",
|
||||
"62.204.52.0/24",
|
||||
"63.140.0.0/20",
|
||||
"63.216.0.0/13",
|
||||
"64.83.0.0/18",
|
||||
"64.90.0.0/19",
|
||||
"64.118.128.0/19",
|
||||
"64.120.88.0/22",
|
||||
"64.120.112.0/21",
|
||||
"64.120.120.0/23",
|
||||
"64.178.96.0/19",
|
||||
"64.188.56.0/21",
|
||||
"65.72.0.0/16",
|
||||
"65.181.64.0/19",
|
||||
"66.51.64.0/20",
|
||||
"66.203.144.0/20",
|
||||
"66.220.47.0/24",
|
||||
"66.232.0.0/20",
|
||||
"67.19.0.0/16",
|
||||
"67.211.64.0/20",
|
||||
"69.8.128.0/20",
|
||||
"69.72.80.0/21",
|
||||
"69.94.96.0/20",
|
||||
"69.160.168.0/21",
|
||||
"69.172.64.0/19",
|
||||
"69.194.160.0/20",
|
||||
"72.4.80.0/21",
|
||||
"72.35.252.0/23",
|
||||
"72.57.128.0/17",
|
||||
"72.255.224.0/19",
|
||||
"74.52.0.0/15",
|
||||
"74.114.168.0/22",
|
||||
"74.121.152.0/21",
|
||||
"77.72.83.0/24",
|
||||
@@ -511,6 +522,7 @@
|
||||
"80.71.152.0/24",
|
||||
"80.71.159.0/24",
|
||||
"80.242.52.0/22",
|
||||
"82.158.224.0/21",
|
||||
"83.138.54.0/24",
|
||||
"83.150.224.0/21",
|
||||
"83.171.212.0/22",
|
||||
@@ -518,7 +530,6 @@
|
||||
"83.229.40.0/21",
|
||||
"83.229.120.0/21",
|
||||
"84.21.160.0/22",
|
||||
"84.38.4.0/23",
|
||||
"84.54.8.0/22",
|
||||
"84.54.16.0/22",
|
||||
"84.252.68.0/22",
|
||||
@@ -526,10 +537,13 @@
|
||||
"85.8.182.0/23",
|
||||
"85.31.48.0/22",
|
||||
"85.92.112.0/22",
|
||||
"85.137.238.0/23",
|
||||
"85.137.240.0/21",
|
||||
"85.208.56.0/22",
|
||||
"85.208.84.0/24",
|
||||
"85.208.208.0/24",
|
||||
"85.209.148.0/24",
|
||||
"85.236.136.0/21",
|
||||
"86.54.81.0/24",
|
||||
"86.106.77.0/24",
|
||||
"87.247.144.0/22",
|
||||
@@ -544,6 +558,7 @@
|
||||
"88.218.48.0/22",
|
||||
"88.218.64.0/24",
|
||||
"88.218.184.0/22",
|
||||
"91.102.120.0/24",
|
||||
"91.188.236.0/22",
|
||||
"91.188.240.0/22",
|
||||
"91.190.152.0/24",
|
||||
@@ -580,11 +595,9 @@
|
||||
"91.240.71.0/24",
|
||||
"91.240.118.0/24",
|
||||
"91.240.254.0/24",
|
||||
"91.241.19.0/24",
|
||||
"91.242.234.0/24",
|
||||
"91.242.254.0/24",
|
||||
"91.246.43.0/24",
|
||||
"91.246.45.0/24",
|
||||
"91.246.56.0/24",
|
||||
"91.246.62.0/24",
|
||||
"91.247.169.0/24",
|
||||
@@ -616,12 +629,12 @@
|
||||
"103.1.152.0/22",
|
||||
"103.1.158.0/23",
|
||||
"103.1.224.0/22",
|
||||
"103.3.24.0/22",
|
||||
"103.4.20.0/22",
|
||||
"103.4.24.0/22",
|
||||
"103.4.112.0/23",
|
||||
"103.4.244.0/22",
|
||||
"103.5.12.0/22",
|
||||
"103.5.40.0/22",
|
||||
"103.5.79.0/24",
|
||||
"103.5.220.0/22",
|
||||
"103.6.4.0/22",
|
||||
@@ -645,7 +658,6 @@
|
||||
"103.11.72.0/23",
|
||||
"103.11.88.0/21",
|
||||
"103.11.100.0/22",
|
||||
"103.11.104.0/23",
|
||||
"103.11.108.0/22",
|
||||
"103.11.228.0/22",
|
||||
"103.12.48.0/22",
|
||||
@@ -655,6 +667,7 @@
|
||||
"103.13.176.0/23",
|
||||
"103.13.191.0/24",
|
||||
"103.13.220.0/22",
|
||||
"103.14.100.0/22",
|
||||
"103.14.112.0/21",
|
||||
"103.14.220.0/22",
|
||||
"103.15.20.0/22",
|
||||
@@ -667,7 +680,6 @@
|
||||
"103.15.216.0/22",
|
||||
"103.15.220.0/23",
|
||||
"103.16.26.0/23",
|
||||
"103.16.184.0/22",
|
||||
"103.16.228.0/22",
|
||||
"103.16.252.0/22",
|
||||
"103.17.4.0/22",
|
||||
@@ -787,7 +799,6 @@
|
||||
"103.43.160.0/22",
|
||||
"103.43.172.0/22",
|
||||
"103.43.216.0/22",
|
||||
"103.43.236.0/22",
|
||||
"103.43.244.0/22",
|
||||
"103.44.28.0/22",
|
||||
"103.44.60.0/22",
|
||||
@@ -877,6 +888,7 @@
|
||||
"103.63.132.0/22",
|
||||
"103.63.136.0/22",
|
||||
"103.63.236.0/22",
|
||||
"103.65.36.0/22",
|
||||
"103.65.40.0/22",
|
||||
"103.65.98.0/23",
|
||||
"103.65.180.0/22",
|
||||
@@ -900,7 +912,6 @@
|
||||
"103.70.118.0/23",
|
||||
"103.70.180.0/22",
|
||||
"103.70.212.0/22",
|
||||
"103.71.12.0/22",
|
||||
"103.71.24.0/24",
|
||||
"103.71.28.0/22",
|
||||
"103.71.32.0/22",
|
||||
@@ -917,7 +928,6 @@
|
||||
"103.73.88.0/22",
|
||||
"103.73.96.0/22",
|
||||
"103.73.160.0/22",
|
||||
"103.73.194.0/23",
|
||||
"103.74.52.0/23",
|
||||
"103.74.128.0/22",
|
||||
"103.74.172.0/22",
|
||||
@@ -948,6 +958,7 @@
|
||||
"103.81.247.0/24",
|
||||
"103.82.4.0/23",
|
||||
"103.82.16.0/22",
|
||||
"103.82.52.0/22",
|
||||
"103.82.168.0/22",
|
||||
"103.82.212.0/22",
|
||||
"103.82.216.0/22",
|
||||
@@ -1004,6 +1015,7 @@
|
||||
"103.95.176.0/22",
|
||||
"103.96.72.0/22",
|
||||
"103.96.120.0/22",
|
||||
"103.96.128.0/22",
|
||||
"103.96.148.0/22",
|
||||
"103.97.0.0/22",
|
||||
"103.97.175.0/24",
|
||||
@@ -1106,15 +1118,12 @@
|
||||
"103.126.40.0/23",
|
||||
"103.126.92.0/22",
|
||||
"103.126.227.0/24",
|
||||
"103.126.242.0/23",
|
||||
"103.127.24.0/22",
|
||||
"103.127.80.0/22",
|
||||
"103.127.128.0/24",
|
||||
"103.127.240.0/22",
|
||||
"103.127.248.0/22",
|
||||
"103.129.52.0/22",
|
||||
"103.129.252.0/22",
|
||||
"103.130.200.0/24",
|
||||
"103.131.34.0/24",
|
||||
"103.131.44.0/22",
|
||||
"103.131.204.0/22",
|
||||
@@ -1149,13 +1158,12 @@
|
||||
"103.140.154.0/24",
|
||||
"103.140.156.0/23",
|
||||
"103.140.170.0/23",
|
||||
"103.140.226.0/23",
|
||||
"103.140.238.0/23",
|
||||
"103.141.16.0/23",
|
||||
"103.141.118.0/23",
|
||||
"103.141.130.0/23",
|
||||
"103.141.185.0/24",
|
||||
"103.141.220.0/23",
|
||||
"103.141.224.0/23",
|
||||
"103.141.236.0/23",
|
||||
"103.142.8.0/23",
|
||||
"103.142.36.0/23",
|
||||
@@ -1164,6 +1172,7 @@
|
||||
"103.142.100.0/23",
|
||||
"103.142.130.0/23",
|
||||
"103.142.146.0/23",
|
||||
"103.142.190.0/23",
|
||||
"103.142.230.0/24",
|
||||
"103.142.244.0/22",
|
||||
"103.143.10.0/23",
|
||||
@@ -1171,7 +1180,7 @@
|
||||
"103.143.26.0/23",
|
||||
"103.143.28.0/23",
|
||||
"103.143.72.0/23",
|
||||
"103.143.80.0/22",
|
||||
"103.143.80.0/23",
|
||||
"103.143.158.0/23",
|
||||
"103.143.160.0/23",
|
||||
"103.143.230.0/23",
|
||||
@@ -1179,13 +1188,12 @@
|
||||
"103.144.2.0/23",
|
||||
"103.144.28.0/23",
|
||||
"103.144.96.0/23",
|
||||
"103.144.196.0/23",
|
||||
"103.144.218.0/23",
|
||||
"103.144.244.0/22",
|
||||
"103.145.40.0/23",
|
||||
"103.145.58.0/23",
|
||||
"103.145.72.0/23",
|
||||
"103.145.80.0/23",
|
||||
"103.145.86.0/23",
|
||||
"103.145.90.0/23",
|
||||
"103.145.104.0/22",
|
||||
"103.145.114.0/23",
|
||||
@@ -1214,14 +1222,12 @@
|
||||
"103.148.140.0/23",
|
||||
"103.148.145.0/24",
|
||||
"103.148.150.0/23",
|
||||
"103.148.186.0/23",
|
||||
"103.148.202.0/23",
|
||||
"103.148.218.0/23",
|
||||
"103.148.226.0/23",
|
||||
"103.148.231.0/24",
|
||||
"103.148.244.0/23",
|
||||
"103.149.26.0/23",
|
||||
"103.149.40.0/23",
|
||||
"103.149.62.0/23",
|
||||
"103.149.82.0/23",
|
||||
"103.149.84.0/23",
|
||||
@@ -1250,19 +1256,24 @@
|
||||
"103.151.250.0/23",
|
||||
"103.152.14.0/23",
|
||||
"103.152.16.0/23",
|
||||
"103.152.24.0/23",
|
||||
"103.152.34.0/23",
|
||||
"103.152.82.0/23",
|
||||
"103.152.98.0/23",
|
||||
"103.152.174.0/23",
|
||||
"103.152.190.0/23",
|
||||
"103.152.206.0/24",
|
||||
"103.152.210.0/23",
|
||||
"103.152.226.0/23",
|
||||
"103.153.16.0/23",
|
||||
"103.153.124.0/23",
|
||||
"103.153.128.0/23",
|
||||
"103.153.162.0/23",
|
||||
"103.154.104.0/24",
|
||||
"103.154.182.0/23",
|
||||
"103.154.242.0/23",
|
||||
"103.155.13.0/24",
|
||||
"103.155.16.0/23",
|
||||
"103.155.60.0/23",
|
||||
"103.155.86.0/23",
|
||||
"103.155.90.0/23",
|
||||
@@ -1284,12 +1295,12 @@
|
||||
"103.158.160.0/23",
|
||||
"103.158.202.0/23",
|
||||
"103.159.138.0/23",
|
||||
"103.159.158.0/23",
|
||||
"103.159.190.0/23",
|
||||
"103.160.38.0/23",
|
||||
"103.160.44.0/23",
|
||||
"103.160.50.0/23",
|
||||
"103.161.34.0/23",
|
||||
"103.161.138.0/23",
|
||||
"103.161.158.0/23",
|
||||
"103.161.224.0/23",
|
||||
"103.162.7.0/24",
|
||||
@@ -1308,7 +1319,6 @@
|
||||
"103.164.224.0/23",
|
||||
"103.165.16.0/23",
|
||||
"103.165.80.0/23",
|
||||
"103.165.84.0/23",
|
||||
"103.165.112.0/23",
|
||||
"103.166.86.0/23",
|
||||
"103.166.96.0/23",
|
||||
@@ -1472,7 +1482,6 @@
|
||||
"103.214.16.0/22",
|
||||
"103.214.32.0/22",
|
||||
"103.214.41.0/24",
|
||||
"103.214.56.0/22",
|
||||
"103.214.64.0/22",
|
||||
"103.214.76.0/22",
|
||||
"103.214.140.0/22",
|
||||
@@ -1601,7 +1610,6 @@
|
||||
"103.242.72.0/22",
|
||||
"103.242.108.0/22",
|
||||
"103.242.140.0/22",
|
||||
"103.242.148.0/23",
|
||||
"103.243.0.0/22",
|
||||
"103.243.8.0/23",
|
||||
"103.243.18.0/24",
|
||||
@@ -1664,6 +1672,7 @@
|
||||
"103.255.44.0/22",
|
||||
"103.255.127.0/24",
|
||||
"103.255.252.0/22",
|
||||
"104.171.128.0/20",
|
||||
"104.250.32.0/19",
|
||||
"109.205.56.0/24",
|
||||
"109.205.58.0/24",
|
||||
@@ -1691,7 +1700,6 @@
|
||||
"112.213.96.0/19",
|
||||
"113.10.128.0/17",
|
||||
"113.20.20.0/22",
|
||||
"113.21.192.0/19",
|
||||
"113.28.0.0/16",
|
||||
"113.29.252.0/22",
|
||||
"113.52.132.0/22",
|
||||
@@ -1731,6 +1739,7 @@
|
||||
"116.92.240.0/21",
|
||||
"116.193.152.0/22",
|
||||
"116.193.158.0/23",
|
||||
"116.193.164.0/22",
|
||||
"116.193.168.0/22",
|
||||
"116.197.176.0/20",
|
||||
"116.204.156.0/22",
|
||||
@@ -1762,7 +1771,7 @@
|
||||
"117.18.120.0/23",
|
||||
"117.18.122.0/24",
|
||||
"117.18.224.0/22",
|
||||
"117.20.42.0/23",
|
||||
"117.20.43.0/24",
|
||||
"117.20.44.0/22",
|
||||
"117.103.144.0/20",
|
||||
"117.104.188.0/22",
|
||||
@@ -1845,13 +1854,11 @@
|
||||
"125.62.68.0/22",
|
||||
"125.214.192.0/18",
|
||||
"125.215.128.0/17",
|
||||
"125.253.128.0/23",
|
||||
"125.253.132.0/22",
|
||||
"125.253.136.0/21",
|
||||
"125.253.144.0/20",
|
||||
"130.49.0.0/17",
|
||||
"130.49.128.0/19",
|
||||
"130.49.212.0/22",
|
||||
"130.49.130.0/23",
|
||||
"130.193.26.0/24",
|
||||
"130.255.170.0/24",
|
||||
"130.255.172.0/24",
|
||||
@@ -1859,6 +1866,7 @@
|
||||
"134.42.224.0/24",
|
||||
"134.42.232.0/21",
|
||||
"134.159.0.0/16",
|
||||
"134.168.0.0/16",
|
||||
"136.143.224.0/20",
|
||||
"137.59.20.0/22",
|
||||
"137.59.100.0/22",
|
||||
@@ -1872,6 +1880,10 @@
|
||||
"138.249.0.0/16",
|
||||
"138.252.60.0/23",
|
||||
"138.252.80.0/23",
|
||||
"138.252.196.0/23",
|
||||
"138.252.208.0/24",
|
||||
"138.252.211.0/24",
|
||||
"138.252.228.0/23",
|
||||
"139.5.180.0/22",
|
||||
"139.5.200.0/22",
|
||||
"139.28.128.0/21",
|
||||
@@ -1886,6 +1898,9 @@
|
||||
"144.48.188.0/22",
|
||||
"144.48.216.0/22",
|
||||
"144.48.240.0/22",
|
||||
"144.79.134.0/23",
|
||||
"144.79.170.0/23",
|
||||
"144.98.0.0/16",
|
||||
"144.214.0.0/16",
|
||||
"146.19.51.0/24",
|
||||
"146.19.87.0/24",
|
||||
@@ -1925,20 +1940,23 @@
|
||||
"150.242.208.0/22",
|
||||
"150.242.216.0/22",
|
||||
"150.242.228.0/22",
|
||||
"151.158.8.0/23",
|
||||
"151.158.134.0/23",
|
||||
"152.32.128.0/17",
|
||||
"152.101.0.0/16",
|
||||
"152.103.0.0/16",
|
||||
"152.104.0.0/17",
|
||||
"154.8.0.0/19",
|
||||
"154.8.32.0/20",
|
||||
"154.8.64.0/18",
|
||||
"154.8.64.0/19",
|
||||
"154.8.96.0/20",
|
||||
"154.8.112.0/21",
|
||||
"154.8.124.0/22",
|
||||
"154.32.0.0/16",
|
||||
"155.137.128.0/17",
|
||||
"155.212.0.0/17",
|
||||
"155.212.154.0/23",
|
||||
"155.212.212.0/23",
|
||||
"155.212.232.0/24",
|
||||
"155.212.241.0/24",
|
||||
"157.15.28.0/23",
|
||||
"157.15.106.0/23",
|
||||
"157.15.224.0/24",
|
||||
@@ -1976,6 +1994,8 @@
|
||||
"160.250.164.0/23",
|
||||
"160.250.201.0/24",
|
||||
"161.81.0.0/16",
|
||||
"162.4.40.0/23",
|
||||
"162.4.114.0/23",
|
||||
"162.219.32.0/21",
|
||||
"162.219.80.0/21",
|
||||
"162.245.124.0/22",
|
||||
@@ -1989,6 +2009,7 @@
|
||||
"163.61.161.0/26",
|
||||
"163.61.176.0/23",
|
||||
"163.61.208.0/23",
|
||||
"163.128.100.0/23",
|
||||
"163.223.40.0/23",
|
||||
"163.223.72.0/23",
|
||||
"163.223.77.0/24",
|
||||
@@ -2012,10 +2033,10 @@
|
||||
"165.202.0.0/16",
|
||||
"166.81.0.0/16",
|
||||
"167.179.48.0/20",
|
||||
"167.179.200.0/21",
|
||||
"168.70.0.0/16",
|
||||
"168.106.0.0/16",
|
||||
"170.168.0.0/16",
|
||||
"172.110.208.0/20",
|
||||
"172.241.216.0/21",
|
||||
"173.248.224.0/19",
|
||||
"174.138.144.0/20",
|
||||
@@ -2032,7 +2053,8 @@
|
||||
"176.53.172.0/22",
|
||||
"176.100.40.0/24",
|
||||
"176.100.42.0/24",
|
||||
"176.113.115.0/24",
|
||||
"176.111.37.0/24",
|
||||
"176.111.38.0/23",
|
||||
"176.116.15.0/24",
|
||||
"176.116.17.0/24",
|
||||
"176.118.38.0/24",
|
||||
@@ -2040,9 +2062,27 @@
|
||||
"176.126.96.0/24",
|
||||
"176.126.98.0/24",
|
||||
"176.126.102.0/24",
|
||||
"177.0.128.0/20",
|
||||
"177.2.16.0/20",
|
||||
"177.2.176.0/20",
|
||||
"177.3.32.0/20",
|
||||
"177.3.80.0/20",
|
||||
"177.4.0.0/20",
|
||||
"177.4.32.0/20",
|
||||
"177.4.80.0/20",
|
||||
"177.5.48.0/20",
|
||||
"177.5.64.0/20",
|
||||
"177.5.112.0/20",
|
||||
"177.5.176.0/20",
|
||||
"177.6.176.0/20",
|
||||
"177.7.128.0/20",
|
||||
"177.201.224.0/20",
|
||||
"177.210.0.0/15",
|
||||
"178.107.32.0/20",
|
||||
"178.212.78.0/24",
|
||||
"178.236.40.0/21",
|
||||
"178.255.222.0/24",
|
||||
"179.236.96.0/20",
|
||||
"180.92.180.0/22",
|
||||
"180.131.160.0/19",
|
||||
"180.149.236.0/22",
|
||||
@@ -2055,7 +2095,6 @@
|
||||
"180.219.0.0/16",
|
||||
"180.222.200.0/22",
|
||||
"180.233.112.0/21",
|
||||
"180.233.160.0/19",
|
||||
"180.235.132.0/22",
|
||||
"180.235.136.0/22",
|
||||
"182.16.0.0/17",
|
||||
@@ -2099,15 +2138,16 @@
|
||||
"185.94.67.0/24",
|
||||
"185.106.176.0/22",
|
||||
"185.109.236.0/22",
|
||||
"185.118.60.0/22",
|
||||
"185.128.41.0/24",
|
||||
"185.128.42.0/23",
|
||||
"185.128.224.0/24",
|
||||
"185.135.72.0/21",
|
||||
"185.142.28.0/22",
|
||||
"185.143.238.0/24",
|
||||
"185.145.54.0/23",
|
||||
"185.149.120.0/24",
|
||||
"185.170.208.0/22",
|
||||
"185.171.168.0/22",
|
||||
"185.171.244.0/22",
|
||||
"185.189.160.0/22",
|
||||
"185.189.240.0/22",
|
||||
@@ -2145,9 +2185,28 @@
|
||||
"185.251.22.0/24",
|
||||
"185.253.2.0/24",
|
||||
"185.253.4.0/24",
|
||||
"186.240.0.0/17",
|
||||
"186.241.192.0/18",
|
||||
"186.243.64.0/18",
|
||||
"186.243.128.0/17",
|
||||
"186.246.0.0/17",
|
||||
"187.53.80.0/20",
|
||||
"187.53.192.0/20",
|
||||
"187.54.48.0/20",
|
||||
"187.55.112.0/20",
|
||||
"187.126.64.0/20",
|
||||
"188.64.140.0/24",
|
||||
"188.93.136.0/24",
|
||||
"188.95.8.0/22",
|
||||
"189.10.48.0/20",
|
||||
"189.24.64.0/18",
|
||||
"189.75.0.0/20",
|
||||
"189.75.144.0/20",
|
||||
"189.105.64.0/18",
|
||||
"191.1.0.0/16",
|
||||
"191.40.0.0/18",
|
||||
"191.214.0.0/16",
|
||||
"191.223.32.0/20",
|
||||
"192.75.137.0/24",
|
||||
"192.94.174.0/24",
|
||||
"192.100.68.0/24",
|
||||
@@ -2199,9 +2258,9 @@
|
||||
"193.107.216.0/22",
|
||||
"193.108.46.0/23",
|
||||
"193.108.96.0/23",
|
||||
"193.108.191.0/24",
|
||||
"193.117.32.0/19",
|
||||
"193.150.8.0/22",
|
||||
"193.151.247.0/24",
|
||||
"193.162.35.0/24",
|
||||
"193.164.155.0/24",
|
||||
"193.164.222.0/23",
|
||||
@@ -2280,12 +2339,24 @@
|
||||
"195.211.164.0/24",
|
||||
"195.211.166.0/24",
|
||||
"195.216.152.0/22",
|
||||
"195.242.189.0/24",
|
||||
"195.248.90.0/24",
|
||||
"195.253.236.0/22",
|
||||
"198.15.31.0/24",
|
||||
"198.59.162.0/23",
|
||||
"199.9.24.0/21",
|
||||
"199.43.19.0/24",
|
||||
"199.43.45.0/24",
|
||||
"199.43.63.0/24",
|
||||
"200.97.32.0/20",
|
||||
"200.217.96.0/20",
|
||||
"200.222.224.0/20",
|
||||
"200.225.144.0/20",
|
||||
"201.5.0.0/16",
|
||||
"201.15.128.0/20",
|
||||
"201.15.160.0/20",
|
||||
"201.15.208.0/20",
|
||||
"201.78.128.0/19",
|
||||
"202.0.160.0/20",
|
||||
"202.0.180.0/22",
|
||||
"202.1.2.0/24",
|
||||
@@ -2314,6 +2385,7 @@
|
||||
"202.14.67.0/24",
|
||||
"202.14.68.0/24",
|
||||
"202.14.80.0/24",
|
||||
"202.14.116.0/24",
|
||||
"202.20.100.0/23",
|
||||
"202.22.240.0/21",
|
||||
"202.27.114.0/24",
|
||||
@@ -2382,7 +2454,6 @@
|
||||
"202.60.224.0/19",
|
||||
"202.61.84.0/22",
|
||||
"202.61.97.0/24",
|
||||
"202.61.103.0/24",
|
||||
"202.61.111.0/24",
|
||||
"202.62.192.0/19",
|
||||
"202.62.247.0/24",
|
||||
@@ -2552,7 +2623,6 @@
|
||||
"202.170.0.0/19",
|
||||
"202.171.208.0/21",
|
||||
"202.174.8.0/21",
|
||||
"202.174.121.0/24",
|
||||
"202.174.130.0/24",
|
||||
"202.174.155.0/24",
|
||||
"202.174.156.0/23",
|
||||
@@ -2607,7 +2677,6 @@
|
||||
"203.14.106.0/24",
|
||||
"203.14.184.0/21",
|
||||
"203.14.193.0/24",
|
||||
"203.16.239.0/24",
|
||||
"203.18.50.0/24",
|
||||
"203.18.151.0/24",
|
||||
"203.19.52.0/24",
|
||||
@@ -2715,6 +2784,7 @@
|
||||
"203.124.8.0/21",
|
||||
"203.129.64.0/19",
|
||||
"203.131.224.0/20",
|
||||
"203.132.0.0/22",
|
||||
"203.132.192.0/20",
|
||||
"203.135.128.0/19",
|
||||
"203.142.88.0/21",
|
||||
@@ -2766,14 +2836,24 @@
|
||||
"204.79.169.0/24",
|
||||
"204.110.8.0/21",
|
||||
"204.152.224.0/21",
|
||||
"205.177.0.0/16",
|
||||
"205.252.0.0/16",
|
||||
"206.109.68.0/22",
|
||||
"206.109.72.0/22",
|
||||
"206.161.0.0/16",
|
||||
"206.220.132.0/22",
|
||||
"206.225.128.0/22",
|
||||
"207.45.8.0/21",
|
||||
"207.148.32.0/20",
|
||||
"207.174.176.0/20",
|
||||
"207.176.0.0/17",
|
||||
"207.189.168.0/22",
|
||||
"207.226.0.0/16",
|
||||
"208.87.200.0/21",
|
||||
"209.8.0.0/15",
|
||||
"209.33.128.0/18",
|
||||
"209.58.184.0/21",
|
||||
"209.248.0.0/18",
|
||||
"210.0.128.0/17",
|
||||
"210.3.0.0/16",
|
||||
"210.5.160.0/19",
|
||||
@@ -2846,10 +2926,18 @@
|
||||
"213.232.206.0/24",
|
||||
"213.255.200.0/22",
|
||||
"213.255.228.0/22",
|
||||
"216.23.64.0/18",
|
||||
"216.57.104.0/21",
|
||||
"216.108.240.0/20",
|
||||
"216.116.160.0/19",
|
||||
"216.118.224.0/19",
|
||||
"216.119.224.0/19",
|
||||
"216.151.192.0/20",
|
||||
"216.176.236.0/23",
|
||||
"216.195.192.0/19",
|
||||
"216.235.240.0/22",
|
||||
"216.235.248.0/22",
|
||||
"216.236.0.0/18",
|
||||
"216.250.104.0/21",
|
||||
"217.8.117.0/24",
|
||||
"217.28.132.0/24",
|
||||
@@ -2946,7 +3034,6 @@
|
||||
"2001:df0:20a::/48",
|
||||
"2001:df0:212::/48",
|
||||
"2001:df0:22b::/48",
|
||||
"2001:df0:22e::/48",
|
||||
"2001:df0:25b::/48",
|
||||
"2001:df0:280::/44",
|
||||
"2001:df0:295::/48",
|
||||
@@ -3034,7 +3121,6 @@
|
||||
"2001:df2:2c00::/48",
|
||||
"2001:df2:37c0::/48",
|
||||
"2001:df2:3880::/48",
|
||||
"2001:df2:4100::/48",
|
||||
"2001:df2:4600::/48",
|
||||
"2001:df2:4680::/48",
|
||||
"2001:df2:5100::/48",
|
||||
@@ -3062,11 +3148,7 @@
|
||||
"2001:df2:d980::/48",
|
||||
"2001:df2:da40::/48",
|
||||
"2001:df2:dc80::/48",
|
||||
"2001:df2:e380::/48",
|
||||
"2001:df2:f080::/48",
|
||||
"2001:df3:f80::/48",
|
||||
"2001:df3:1c80::/48",
|
||||
"2001:df3:1d80::/48",
|
||||
"2001:df3:1e80::/48",
|
||||
"2001:df3:1f00::/48",
|
||||
"2001:df3:2d80::/48",
|
||||
@@ -3077,7 +3159,6 @@
|
||||
"2001:df3:49c0::/48",
|
||||
"2001:df3:4dc0::/48",
|
||||
"2001:df3:5040::/48",
|
||||
"2001:df3:5180::/48",
|
||||
"2001:df3:5500::/48",
|
||||
"2001:df3:65c0::/48",
|
||||
"2001:df3:7240::/48",
|
||||
@@ -3094,12 +3175,10 @@
|
||||
"2001:df3:cd00::/48",
|
||||
"2001:df3:cd80::/48",
|
||||
"2001:df3:cdc0::/48",
|
||||
"2001:df3:d200::/48",
|
||||
"2001:df3:f740::/48",
|
||||
"2001:df3:fc00::/48",
|
||||
"2001:df4:180::/48",
|
||||
"2001:df4:d00::/48",
|
||||
"2001:df4:1000::/48",
|
||||
"2001:df4:1d00::/48",
|
||||
"2001:df4:26c0::/48",
|
||||
"2001:df4:2ac0::/48",
|
||||
@@ -3107,7 +3186,6 @@
|
||||
"2001:df4:4780::/48",
|
||||
"2001:df4:6b00::/48",
|
||||
"2001:df4:7000::/48",
|
||||
"2001:df4:7a00::/48",
|
||||
"2001:df4:8c00::/48",
|
||||
"2001:df4:a0c0::/48",
|
||||
"2001:df4:be40::/48",
|
||||
@@ -3128,7 +3206,6 @@
|
||||
"2001:df5:7300::/48",
|
||||
"2001:df5:7e80::/48",
|
||||
"2001:df5:8300::/48",
|
||||
"2001:df5:8380::/48",
|
||||
"2001:df5:8480::/48",
|
||||
"2001:df5:8540::/48",
|
||||
"2001:df5:8580::/48",
|
||||
@@ -3154,6 +3231,9 @@
|
||||
"2001:df6:1c80::/48",
|
||||
"2001:df6:2680::/48",
|
||||
"2001:df6:3bc0::/48",
|
||||
"2001:df6:4e40::/48",
|
||||
"2001:df6:5140::/48",
|
||||
"2001:df6:55c0::/48",
|
||||
"2001:df6:5680::/48",
|
||||
"2001:df6:5780::/48",
|
||||
"2001:df6:6280::/48",
|
||||
@@ -3164,18 +3244,20 @@
|
||||
"2001:df6:a780::/48",
|
||||
"2001:df6:a980::/48",
|
||||
"2001:df6:aa80::/48",
|
||||
"2001:df6:b2c0::/48",
|
||||
"2001:df6:bc00::/48",
|
||||
"2001:df6:cb80::/48",
|
||||
"2001:df6:d000::/48",
|
||||
"2001:df6:d840::/48",
|
||||
"2001:df6:e180::/48",
|
||||
"2001:df6:eb00::/48",
|
||||
"2001:df6:f480::/48",
|
||||
"2001:df7:400::/48",
|
||||
"2001:df7:680::/48",
|
||||
"2001:df7:7c0::/48",
|
||||
"2001:df7:1780::/48",
|
||||
"2001:df7:2600::/48",
|
||||
"2001:df7:3480::/48",
|
||||
"2001:df7:3700::/48",
|
||||
"2001:df7:3700::/46",
|
||||
"2001:df7:3d00::/48",
|
||||
"2001:df7:5500::/48",
|
||||
"2001:df7:6280::/48",
|
||||
@@ -3189,13 +3271,13 @@
|
||||
"2001:df7:dc80::/48",
|
||||
"2001:df7:f680::/48",
|
||||
"2001:df7:fc80::/48",
|
||||
"2001:dff::/32",
|
||||
"2001:eb0::/32",
|
||||
"2001:4480::/32",
|
||||
"2400:13a0::/32",
|
||||
"2400:1c40::/32",
|
||||
"2400:1c80::/32",
|
||||
"2400:1e00::/32",
|
||||
"2400:1e80::/32",
|
||||
"2400:3520::/32",
|
||||
"2400:38e0::/32",
|
||||
"2400:3ec0::/32",
|
||||
@@ -3255,7 +3337,6 @@
|
||||
"2400:ef00::/32",
|
||||
"2400:f000::/32",
|
||||
"2400:f100::/32",
|
||||
"2400:f700::/32",
|
||||
"2400:f800::/32",
|
||||
"2400:f880::/32",
|
||||
"2401:c0::/32",
|
||||
@@ -3372,7 +3453,7 @@
|
||||
"2401:f6c0::/32",
|
||||
"2401:f940::/32",
|
||||
"2401:fc20::/32",
|
||||
"2401:fd20::/32",
|
||||
"2401:fd20::/30",
|
||||
"2401:fe60::/32",
|
||||
"2402:620::/32",
|
||||
"2402:720::/32",
|
||||
@@ -3400,13 +3481,20 @@
|
||||
"2402:26c0::/32",
|
||||
"2402:2a80::/32",
|
||||
"2402:2b40::/32",
|
||||
"2402:3960::/32",
|
||||
"2402:3b40::/32",
|
||||
"2402:3f60::/32",
|
||||
"2402:4220::/32",
|
||||
"2402:4480::/32",
|
||||
"2402:4680::/32",
|
||||
"2402:47a0::/32",
|
||||
"2402:47c0::/32",
|
||||
"2402:4b40::/32",
|
||||
"2402:4d00::/32",
|
||||
"2402:4f00::/32",
|
||||
"2402:5060::/32",
|
||||
"2402:5aa0::/32",
|
||||
"2402:5c20::/32",
|
||||
"2402:5dc0::/32",
|
||||
"2402:6140::/32",
|
||||
"2402:6a80::/32",
|
||||
@@ -3462,7 +3550,6 @@
|
||||
"2403:6540::/32",
|
||||
"2403:6f80::/32",
|
||||
"2403:7680::/32",
|
||||
"2403:7780::/32",
|
||||
"2403:8100::/32",
|
||||
"2403:8e40::/32",
|
||||
"2403:9bc0::/32",
|
||||
@@ -3484,11 +3571,8 @@
|
||||
"2404:8c0::/32",
|
||||
"2404:1280::/32",
|
||||
"2404:1a40::/32",
|
||||
"2404:2100::/32",
|
||||
"2404:2480::/32",
|
||||
"2404:2a80::/32",
|
||||
"2404:2b40::/32",
|
||||
"2404:2fc0::/32",
|
||||
"2404:3500::/32",
|
||||
"2404:3880::/32",
|
||||
"2404:3e40::/32",
|
||||
@@ -3500,7 +3584,6 @@
|
||||
"2404:7380::/32",
|
||||
"2404:7480::/32",
|
||||
"2404:7980::/32",
|
||||
"2404:7ac0::/32",
|
||||
"2404:7b40::/32",
|
||||
"2404:7cc0::/32",
|
||||
"2404:7f40::/32",
|
||||
@@ -3513,13 +3596,11 @@
|
||||
"2404:9ec0::/32",
|
||||
"2404:a140::/32",
|
||||
"2404:a340::/32",
|
||||
"2404:ae00::/32",
|
||||
"2404:bb40::/31",
|
||||
"2404:c140::/32",
|
||||
"2404:c680::/32",
|
||||
"2404:c800::/29",
|
||||
"2404:ccc0::/32",
|
||||
"2404:ce80::/32",
|
||||
"2404:d180::/32",
|
||||
"2404:da80::/32",
|
||||
"2404:de80::/32",
|
||||
@@ -3555,7 +3636,6 @@
|
||||
"2405:d1c0::/32",
|
||||
"2405:d6c0::/32",
|
||||
"2405:d800::/32",
|
||||
"2405:dac0::/32",
|
||||
"2405:dfc0::/32",
|
||||
"2405:e440::/32",
|
||||
"2405:e500::/32",
|
||||
@@ -3620,7 +3700,6 @@
|
||||
"2407:3d80::/32",
|
||||
"2407:3fc0::/32",
|
||||
"2407:4340::/32",
|
||||
"2407:47c0::/32",
|
||||
"2407:4e40::/32",
|
||||
"2407:6080::/32",
|
||||
"2407:6480::/32",
|
||||
@@ -3632,7 +3711,6 @@
|
||||
"2407:a3c0::/32",
|
||||
"2407:a700::/32",
|
||||
"2407:a980::/32",
|
||||
"2407:ac40::/32",
|
||||
"2407:b400::/32",
|
||||
"2407:b700::/32",
|
||||
"2407:bd00::/32",
|
||||
@@ -3645,6 +3723,7 @@
|
||||
"2407:ea00::/32",
|
||||
"2407:fa00::/32",
|
||||
"2602:f5f1::/40",
|
||||
"2a01:4240::/29",
|
||||
"2a01:9260::/32",
|
||||
"2a01:f100::/29",
|
||||
"2a02:810::/32",
|
||||
@@ -3654,13 +3733,13 @@
|
||||
"2a04:94c0::/30",
|
||||
"2a05:a300::/29",
|
||||
"2a06:5040::/29",
|
||||
"2a06:9200::/29",
|
||||
"2a06:da40::/29",
|
||||
"2a09:640::/29",
|
||||
"2a09:42c0::/29",
|
||||
"2a09:4f80::/29",
|
||||
"2a0a:68c0::/32",
|
||||
"2a0a:a880::/29",
|
||||
"2a0b:1180::/29",
|
||||
"2a0b:1f00::/29",
|
||||
"2a0b:65c0::/29",
|
||||
"2a0b:9900::/29",
|
||||
@@ -3715,6 +3794,7 @@
|
||||
"2a0f:e180::/29",
|
||||
"2a10:bc40::/29",
|
||||
"2a10:ce40::/32",
|
||||
"2a10:dc80::/32",
|
||||
"2a10:e8c0::/32",
|
||||
"2a11:ec0::/29",
|
||||
"2a11:17c0::/29",
|
||||
@@ -3785,6 +3865,7 @@
|
||||
"2a12:1040::/29",
|
||||
"2a12:11c0::/29",
|
||||
"2a12:12c0::/29",
|
||||
"2a12:1340::/29",
|
||||
"2a12:1a80::/29",
|
||||
"2a12:2800::/29",
|
||||
"2a12:2b80::/29",
|
||||
@@ -3821,7 +3902,6 @@
|
||||
"2a12:e100::/29",
|
||||
"2a12:f980::/29",
|
||||
"2a13:1e80::/29",
|
||||
"2a13:5580::/29",
|
||||
"2a13:7c00::/29",
|
||||
"2a13:aac0::/29",
|
||||
"2a13:ce40::/29",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user