CDN Providers • Install • Usage Parameters • Preview • Usage • Contact me
The tool's basic functionality would involve taking the list of IP addresses as input and then checking to determine whether the IP is behind a CDN. This tool will gather all CIDR of the most-known CDN providers and check your provided list with them. This is a handy tool for bug hunters.
go install github.com/ImAyrix/cut-cdn@latest
cut-cdn -h
This will display help for the tool. Here are all the switches it supports.
Removing CDN IPs from the list of IP addresses
Usage:
cut-cdn [flags]
Flags:
INPUT:
-i string Input [Filename | IP]
-pu string Provider CIDRs page [URL]
-pl string Providers CIDRs pages [File]
-apu string Append provider to the default providers [URL]
-apl string Append list of providers to the default providers [File]
-c string Use cache file (offline) [File]
RATE-LIMIT:
-t int Number Of Thread [Number] (default 1)
OUTPUT:
-o string File to write output to (optional) (default "CLI")
-s string Save all CIDRs [File]
DEBUG:
-silent Show only IPs in output
-version Show version of cut-cdn

If you do not utilize the -pu and -pl switches, the default providers will be employed (list of providers). if you use these two switches, only the list of your input providers will be utilized. In case you wish to add a new link provider in addition to the default providers, make use of -apu and -apl.
bash
cut-cdn -i 127.0.0.1 -pu https://www.cloudflare.com/ips-v4bash
cut-cdn -i 127.0.0.1 -pl providers.txtbash
cut-cdn -i 127.0.0.1 -apu https://www.cloudflare.com/ips-v4bash
cut-cdn -i 127.0.0.1 -apl providers.txtCheck your IP list with the latest IP ranges of CDN providers:
bash
cut-cdn -i 127.0.0.1
echo "127.0.0.1" | cut-cdnbash
cut-cdn -i allIP.txt
cat allIP.txt | cut-cdn-o option
bash
cut-cdn -i allIP.txt -o output.txtbash
cut-cdn -i allIP.txt -o output.txt -t 20bash
cut-cdn -s allCIDR.txt-c pointing to the CIDR file
bash
cut-cdn -i allIP.txt -o output.txt -t 20 -c allCIDR.txt—
$ claude mcp add cut-cdn \
-- python -m otcore.mcp_server <graph>