curl¶
speed test with python using curl¶
speed check with more servers using curl¶
cloudflare speed test using curl¶
### 10M Download
curl --dump-header - --connect-timeout 10 -o /dev/null https://speed.cloudflare.com/__down?bytes=$((10 * 1024 * 1024))
### 10M Upload
curl --dump-header - --connect-timeout 10 -o /dev/null -F up=@/dev/zero https://speed.cloudflare.com/__up?bytes=$((10 * 1024 * 1024))
speed test with a socks5 proxy using curl¶
### 10M Download
curl --dump-header - --socks5-hostname 127.0.0.1:2080 --connect-timeout 10 -o /dev/null https://speed.cloudflare.com/__down?bytes=$((10 * 1024 * 1024))
### 10M Upload
curl --dump-header - --socks5-hostname 127.0.0.1:2080 --connect-timeout 10 -o /dev/null -F up=@/dev/zero https://speed.cloudflare.com/__up?bytes=$((10 * 1024 * 1024))
check your location for chat.openai.com using curl¶
check your location for chatgpt.com using curl¶
check if your network is part of cloudflare warp using curl¶
check an IP reputation using curl¶
Note
You can check the link https://reputation.noc.org in your browser
find all IPs of an ASN system using curl¶
Note
the output is long, containing all IPs
Example
$ curl https://api.hackertarget.com/aslookup/?q=AS15169
34.2.85.0/24
173.194.172.0/24
34.4.96.0/22
192.178.191.0/24
172.217.202.0/24
2404:6800:4001::/48
108.177.112.0/24
192.178.195.0/24
173.194.204.0/24
172.253.59.0/24
34.190.112.0/21
34.1.93.0/24
173.194.175.0/24
34.1.96.0/24
172.217.209.0/24
192.178.190.0/24
192.178.202.0/24
142.250.28.0/24
142.250.70.0/24
...
...