├── .github └── workflows │ └── auto-close.yml ├── README-es.md ├── README.md ├── bipupdate ├── bipupdate.sh ├── lst │ ├── aipextra.txt │ ├── aipupdate.sh │ ├── allowip.txt │ ├── blackcidr.txt │ ├── dns.txt │ └── iana.txt └── tools │ ├── cidr2ip.py │ └── debugbip.py ├── blackip.tar.gz └── checksum.md5 /.github/workflows/auto-close.yml: -------------------------------------------------------------------------------- 1 | name: Auto Close Stale Issues and PRs 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | workflow_dispatch: 7 | schedule: 8 | - cron: '0 0 * * *' 9 | 10 | permissions: 11 | issues: write 12 | pull-requests: write 13 | contents: write 14 | 15 | jobs: 16 | close-stale: 17 | runs-on: ubuntu-latest 18 | steps: 19 | - uses: actions/stale@v9 20 | with: 21 | repo-token: ${{ secrets.GITHUB_TOKEN }} 22 | stale-issue-message: 'This issue is stale because it has had no activity for 0 days.' 23 | close-issue-message: 'Closed due to inactivity.' 24 | stale-pr-message: 'This PR is stale because it has had no activity for 0 days.' 25 | close-pr-message: 'Closed due to inactivity.' 26 | days-before-stale: 90 27 | days-before-pr-stale: 90 28 | days-before-close: 90 29 | days-before-pr-close: 90 30 | stale-issue-label: 'stale' 31 | stale-pr-label: 'stale' 32 | 33 | -------------------------------------------------------------------------------- /README-es.md: -------------------------------------------------------------------------------- 1 | # [BlackIP](https://www.maravento.com/p/blackip.html) 2 | 3 | 4 | 5 | [![status-stable](https://img.shields.io/badge/status-stable-green.svg)](https://github.com/maravento/blackip) 6 | [![last commit](https://img.shields.io/github/last-commit/maravento/blackip)](https://github.com/maravento/blackip) 7 | [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/maravento/blackip) 8 | [![Twitter Follow](https://img.shields.io/twitter/follow/maraventostudio.svg?style=social)](https://twitter.com/maraventostudio) 9 | 10 | 11 | 12 | 15 | 16 |
13 | English | Español 14 |
17 | 18 | BlackIP es un proyecto que recopila y unifica listas públicas de bloqueo de direcciones IPs, para hacerlas compatibles con [Squid](http://www.squid-cache.org/) e [IPSET](http://ipset.netfilter.org/) ([Iptables](http://www.netfilter.org/documentation/HOWTO/es/packet-filtering-HOWTO-7.html) [Netfilter](http://www.netfilter.org/)). 19 | 20 | ## DATA SHEET 21 | 22 | --- 23 | 24 | | ACL | Blocked IP | File Size | 25 | | :---: | :---: | :---: | 26 | | blackip.txt | 437710 | 6,2 Mb | 27 | 28 | ## GIT CLONE 29 | 30 | --- 31 | 32 | ```bash 33 | git clone --depth=1 https://github.com/maravento/blackip.git 34 | ``` 35 | 36 | ## HOW TO USE 37 | 38 | --- 39 | 40 | `blackip.txt` ya viene optimizada. Descárguela y descomprimala en la ruta de su preferencia. 41 | 42 | ### Download 43 | 44 | ```bash 45 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/blackip.tar.gz && cat blackip.tar.gz* | tar xzf - 46 | ``` 47 | 48 | ### Optional: Checksum 49 | 50 | ```bash 51 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/checksum.md5 52 | md5sum blackip.txt | awk '{print $1}' && cat checksum.md5 | awk '{print $1}' 53 | ``` 54 | 55 | #### Important about BlackIP 56 | 57 | - No debe utilizar `blackip.txt` en [IPSET](http://ipset.netfilter.org/) y en [Squid](http://www.squid-cache.org/) al mismo tiempo (doble filtrado). 58 | - `blackip.txt` es una lista IPv4. No incluye CIDR. 59 | 60 | ### [Ipset/Iptables](http://ipset.netfilter.org/) Rules 61 | 62 | Edite su bash script de Iptables y agregue las siguientes líneas (ejecutar con privilegios root): 63 | 64 | ```bash 65 | #!/bin/bash 66 | # https://linux.die.net/man/8/ipset 67 | # variables 68 | ipset=/sbin/ipset 69 | iptables=/sbin/iptables 70 | 71 | # Replace with your path to blackip.txt 72 | ips=/path_to_lst/blackip.txt 73 | 74 | # ipset rules 75 | $ipset -L blackip >/dev/null 2>&1 76 | if [ $? -ne 0 ]; then 77 | echo "set blackip does not exist. create set..." 78 | $ipset -! create blackip hash:net family inet hashsize 1024 maxelem 10000000 79 | else 80 | echo "set blackip exist. flush set..." 81 | $ipset -! flush blackip 82 | fi 83 | $ipset -! save > /tmp/ipset_blackip.txt 84 | # read file and sort (v8.32 or later) 85 | cat $ips | sort -V -u | while read line; do 86 | # optional: if there are commented lines 87 | if [ "${line:0:1}" = "#" ]; then 88 | continue 89 | fi 90 | # adding IPv4 addresses to the tmp list 91 | echo "add blackip $line" >> /tmp/ipset_blackip.txt 92 | done 93 | # adding the tmp list of IPv4 addresses to the blackip set of ipset 94 | $ipset -! restore < /tmp/ipset_blackip.txt 95 | 96 | # iptables rules 97 | $iptables -t mangle -I PREROUTING -m set --match-set blackip src,dst -j DROP 98 | $iptables -I INPUT -m set --match-set blackip src,dst -j DROP 99 | $iptables -I FORWARD -m set --match-set blackip src,dst -j DROP 100 | echo "done" 101 | ``` 102 | 103 | #### Ipset/Iptables Rules with IPDeny (Optional) 104 | 105 | Puede agregar las siguientes líneas al bash anterior para incluir rangos de IPs completos de países con [IPDeny](https://www.ipdeny.com/ipblocks/) agregando los países de su elección. 106 | 107 | ```bash 108 | # Put these lines at the end of the "variables" section 109 | # Replace with your path to zones folder 110 | zones=/path_to_folder/zones 111 | # download zones 112 | if [ ! -d $zones ]; then mkdir -p $zones; fi 113 | wget -q -N http://www.ipdeny.com/ipblocks/data/countries/all-zones.tar.gz 114 | tar -C $zones -zxvf all-zones.tar.gz >/dev/null 2>&1 115 | rm -f all-zones.tar.gz >/dev/null 2>&1 116 | 117 | # replace the line: 118 | cat $ips | sort -V -u | while read line; do 119 | # with (e.g: Russia and China): 120 | cat $zones/{cn,ru}.zone $ips | sort -V -u | while read line; do 121 | ``` 122 | 123 | #### About Ipset/Iptables Rules 124 | 125 | - Ipset permite realizar filtrado masivo, a una velocidad de procesamiento muy superior a otras soluciones (consulte [benchmark](https://web.archive.org/web/20161014210553/http://daemonkeeper.net/781/mass-blocking-ip-addresses-with-ipset/)). 126 | - Blackip es una lista que contiene millones de líneas IPv4 y para ser soportada por Ipset, hemos tenido que aumentar arbitrariamente el parámetro [maxelem](https://ipset.netfilter.org/ipset.man.html#:~:text=hash%3Aip%20hashsize%201536-,maxelem,-This%20parameter%20is) (para más información, consulte [ipset's hashsize and maxelem parameters](https://www.odi.ch/weblog/posting.php?posting=738)). 127 | - Limitación de Ipset/iptables: "*Cuando las entradas agregadas por el objetivo SET de iptables/ip6tables, el tamaño del hash es fijo y el conjunto no se duplicará, incluso si la nueva entrada no se puede agregar al conjunto*" (para más información, consulte [Man Ipset](https://ipset.netfilter.org/ipset.man.html)). 128 | - El uso intensivo de estas reglas puede ralentizar su PC al punto de hacerlo colapsa. Úselas bajo su propio riesgo. 129 | - Probado en: iptables v1.8.7, ipset v7.15, protocol version: 7. 130 | 131 | ### [Squid](http://www.squid-cache.org/) Rule 132 | 133 | Edit: 134 | 135 | ```bash 136 | /etc/squid/squid.conf 137 | ``` 138 | 139 | Y agregue las siguientes líneas: 140 | 141 | ```bash 142 | # INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS 143 | 144 | # Block Rule for BlackIP 145 | acl blackip dst "/path_to/blackip.txt" 146 | http_access deny blackip 147 | ``` 148 | 149 | #### About Squid Rule 150 | 151 | - `blackip.txt` ha sido testeada en Squid v3.5.x y posteriores. 152 | 153 | #### Advanced Rules 154 | 155 | BlackIP contiene millones de direcciones IP, por tanto se recomienda: 156 | 157 | - Use `blackcidr.txt` para agregar IP/CIDR que no están incluidas en `blackip.txt` (Por defecto contiene algunos Block CIDR). 158 | - Use `allowip.txt` (una lista blanca de direcciones IPs IPv4 tales como Hotmail, Gmail, Yahoo. etc). 159 | - Use `aipextra.txt` para agregar listas blancas de IP/CIDR que no están incluidas en `allowip.txt`. 160 | - Por defecto, `blackip.txt` excluye algunos rangos privados o reservados [RFC1918](https://es.wikipedia.org/wiki/Red_privada). Use IANA (`iana.txt`) para excluirlos todos. 161 | - Por defecto, `blackip.txt` excluye algunos servidores DNS incluidos en `dns.txt`. Puede usar esta lista y ampliarla, para denegar o permitir servidores DNS. 162 | - Para incrementar la seguridad, cierre Squid a cualquier otra petición a direcciones IP con ZTR. 163 | 164 | ```bash 165 | ### INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS ### 166 | 167 | # Allow Rule for IP 168 | acl allowip dst "/path_to/allowip.txt" 169 | http_access allow allowip 170 | 171 | # Allow Rule for IP/CIDR ACL (not included in allowip.txt) 172 | acl aipextra dst "/path_to/aipextra.txt" 173 | http_access allow aipextra 174 | 175 | # Allow Rule for IANA ACL (not included in allowip.txt) 176 | acl iana dst "/path_to/iana.txt" 177 | http_access allow iana 178 | 179 | # Allow Rule for DNS ACL (excluded from blackip.txt) 180 | acl dnslst dst "/path_to/dns.txt" 181 | http_access allow dnslst # or deny dnlst 182 | 183 | # Block Rule for IP/CIDR ACL (not included in blackip.txt) 184 | acl blackcidr dst "/path_to/blackcidr.txt" 185 | http_access deny blackcidr 186 | 187 | ## Block Rule for BlackIP 188 | acl blackip dst "/path_to/blackip.txt" 189 | http_access deny blackip 190 | 191 | ## Block IP 192 | acl no_ip url_regex -i ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ 193 | http_access deny no_ip 194 | ``` 195 | 196 | ## BLACKIP UPDATE 197 | 198 | --- 199 | 200 | ### ⚠️ WARNING: BEFORE YOU CONTINUE 201 | 202 | Esta sección es únicamente para explicar cómo funciona el proceso de actualización y optimización. No es necesario que el usuario la ejecute. Este proceso puede tardar y consumir muchos recursos de hardware y ancho de banda, por tanto se recomienda usar equipos de pruebas. 203 | 204 | #### Bash Update 205 | 206 | >El proceso de actualización de `blackip.txt` es ejecutado en secuencia por el script `bipupdate.sh`. El script solicitará privilegios cuando lo requiera. 207 | 208 | ```bash 209 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/bipupdate/bipupdate.sh && chmod +x bipupdate.sh && ./bipupdate.sh 210 | ``` 211 | 212 | #### Dependencies 213 | 214 | >La actualización requiere python 3x y bash 5x 215 | 216 | ```bash 217 | pkgs='wget git curl idn2 perl tar rar unrar unzip zip python-is-python3 ipset' 218 | if ! dpkg -s $pkgs >/dev/null 2>&1; then 219 | apt -y install $pkgs 220 | fi 221 | ``` 222 | 223 | >Asegúrese que Squid esté instalado correctamente. Si tienes algún problema, ejecute el siguiente script: (`sudo ./squid_install.sh`): 224 | 225 | ```bash 226 | #!/bin/bash 227 | 228 | # kill old version 229 | while pgrep squid > /dev/null; do 230 | echo "Waiting for Squid to stop..." 231 | killall -s SIGTERM squid &>/dev/null 232 | sleep 5 233 | done 234 | 235 | # squid remove (if exist) 236 | apt purge -y squid- &>/dev/null 237 | rm -rf /var/spool/squid- /var/log/squid- /etc/squid- /dev/shm/- &>/dev/null 238 | 239 | # squid install (you can use 'squid-openssl' or 'squid') 240 | apt install -y squid-openssl squid-langpack squid-common squidclient squid-purge 241 | 242 | # create log 243 | if [ ! -d /var/log/squid ]; then 244 | mkdir -p /var/log/squid 245 | fi &>/dev/null 246 | if [[ ! -f /var/log/squid/{access,cache,store,deny}.log ]]; then 247 | touch /var/log/squid/{access,cache,store,deny}.log 248 | fi &>/dev/null 249 | 250 | # permissions 251 | chown -R proxy:proxy /var/log/squid 252 | 253 | # enable service 254 | systemctl enable squid.service 255 | systemctl start squid.service 256 | echo "Done" 257 | ``` 258 | 259 | #### Capture Public Blocklists 260 | 261 | >Captura las IPv4 de las listas de bloqueo públicas descargadas (ver [FUENTES](https://github.com/maravento/blackip#sources)) y las unifica en un solo archivo. 262 | 263 | #### DNS Loockup 264 | 265 | >La mayoría de las [FUENTES](https://github.com/maravento/blackip#sources) contienen millones de IP inválidas e inexistentes. Entonces se hace una verificación doble de cada IP (en 2 pasos) vía DNS y los inválidos e inexistentes se excluyen de Blackip. Este proceso puede tardar. Por defecto procesa en paralelo ≈ 6k a 12k x min, en dependencia del hardware y ancho de banda. 266 | 267 | ```bash 268 | HIT 8.8.8.8 269 | Host 8.8.8.8.in-addr.arpa domain name pointer dns.google 270 | FAULT 0.0.9.1 271 | Host 1.9.0.0.in-addr.arpa. not found: 3(NXDOMAIN) 272 | ``` 273 | 274 | #### Run Squid-Cache with BlackIP 275 | 276 | >Corre Squid-Cache con BlackIP y cualquier error lo envía a `SquidError.txt` en su escritorio. 277 | 278 | #### Check execution (/var/log/syslog) 279 | 280 | ```bash 281 | BlackIP: Done 02/02/2024 15:47:14 282 | ``` 283 | 284 | #### Important about BlackIP Update 285 | 286 | - `tw.txt` contiene IPs de servidores teamviewer. Por defecto están comentadas. Para bloquearlas o autorizarlas activelas en `bipupdate.sh`. Para actualizarla use `tw.sh`. 287 | - Antes de utilizar `bipupdate.sh` debe activar las reglas en [Squid](http://www.squid-cache.org/). 288 | - Algunas listas tienen restricciones de descarga, entonces no ejecute `bipupdate.sh` más de una vez al día. 289 | - Durante la ejecución de `bipupdate.sh` solicitará privilegios cuando los necesite. 290 | - Si usa `aufs`, cámbielo temporalmente a `ufs` durante la actualización, para evitar: `ERROR: Can't change type of existing cache_dir aufs /var/spool/squid to ufs. Restart required`. 291 | 292 | #### AllowIP Update 293 | 294 | >`allowip.txt` ya esta actualizada y optimizada. El proceso de actualización de `allowip.txt` es ejecutado en secuencia por el script `aipupdate.sh`. 295 | 296 | ```bash 297 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/bipupdate/wlst/aipupdate.sh && chmod +x aipupdate.sh && ./aipupdate.sh 298 | ``` 299 | 300 | ## SOURCES 301 | 302 | --- 303 | 304 | ### BLOCKLISTS 305 | 306 | #### Active 307 | 308 | - [abuse.ch - Feodo Tracker](https://feodotracker.abuse.ch/blocklist/?download=ipblocklist) 309 | - [abuse.ch - Zeustracker blocklist](https://zeustracker.abuse.ch/blocklist.php?download=badips) 310 | - [alienvault - reputation](https://reputation.alienvault.com/reputation.generic) 311 | - [BBcan177 - minerchk](https://raw.githubusercontent.com/BBcan177/minerchk/master/ip-only.txt) 312 | - [BBcan177 - pfBlockerNG Malicious Threats](https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw) 313 | - [binarydefense - Artillery Threat Intelligence Feed and Banlist Feed](https://www.binarydefense.com/banlist.txt) 314 | - [blocklist.de - export-ips_all](https://www.blocklist.de/downloads/export-ips_all.txt) 315 | - [blocklist.de - IPs all](https://lists.blocklist.de/lists/all.txt) 316 | - [Cinsscore - badguys](http://cinsscore.com/list/ci-badguys.txt) 317 | - [CriticalPathSecurity - Public-Intelligence-Feeds](https://github.com/CriticalPathSecurity/Public-Intelligence-Feeds/) 318 | - [dan.me.uk - TOR Node List](https://www.dan.me.uk/torlist/?exit) 319 | - [darklist - raw](https://www.darklist.de/raw.php) 320 | - [dshield.org - block](https://feeds.dshield.org/block.txt) 321 | - [duggytuxy - Intelligence_IPv4_Blocklist](https://github.com/duggytuxy/Intelligence_IPv4_Blocklist/blob/main/agressive_ips_dst_fr_be_blocklist.txt) 322 | - [ellio.tech - Threat List](https://cdn.ellio.tech/community-feed) 323 | - [Emerging Threats - compromised ips](http://rules.emergingthreats.net/blockrules/compromised-ips.txt) 324 | - [Emerging Threats Block](http://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt) 325 | - [Firehold - Forus Spam](https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_7d.ipset) 326 | - [Firehold - level1](https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset) 327 | - [Greensnow - blocklist](http://blocklist.greensnow.co/greensnow.txt) 328 | - [IPDeny - ipblocks](http://www.ipdeny.com/ipblocks/) 329 | - [Myip - full BL](https://myip.ms/files/blacklist/general/full_blacklist_database.zip) 330 | - [MyIP - latest BL](https://myip.ms/files/blacklist/general/latest_blacklist.txt) 331 | - [Nick Galbreath client9 - datacenters](https://raw.githubusercontent.com/client9/ipcat/master/datacenters.csv) 332 | - [OpenBL - base](http://www.openbl.org/lists/base.txt) 333 | - [opsxcq - proxy-list](https://raw.githubusercontent.com/opsxcq/proxy-list/master/list.txt) 334 | - [Project Honeypot - list_of_ips](https://www.projecthoneypot.org/list_of_ips.php?t=d&rss=1) 335 | - [Rulez - BruteForceBlocker](http://danger.rulez.sk/projects/bruteforceblocker/blist.php) 336 | - [rulez.sk - bruteforceblocker](http://danger.rulez.sk/projects/bruteforceblocker/blist.php) 337 | - [SecOps-Institute - TOR Exit Node List](https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst) 338 | - [Spamhaus - drop-lasso](https://www.spamhaus.org/drop/drop.lasso) 339 | - [stamparm - ipsum](https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt) 340 | - [StopForumSpam - 180](https://www.stopforumspam.com/downloads/listed_ip_180_all.zip) 341 | - [StopForumSpam - Toxic CIDR](https://www.stopforumspam.com/downloads/toxic_ip_cidr.txt) 342 | - [torproject - TOR BulkExitList](https://check.torproject.org/torbulkexitlist?ip=1.1.1.1) 343 | - [Uceprotect - backscatterer Level 1](http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-1.uceprotect.net.gz) 344 | - [Uceprotect - backscatterer Level 2](http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-2.uceprotect.net.gz) 345 | - [Uceprotect - backscatterer Level 3](http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-3.uceprotect.net.gz) 346 | - [Ultimate Hosts IPs Blocklist - ips](https://github.com/Ultimate-Hosts-Blacklist/Ultimate.Hosts.Blacklist/tree/master/ips) 347 | - [yoyo - adservers](https://pgl.yoyo.org/adservers/iplist.php?format=&showintro=0) 348 | 349 | #### Inactive, Offline, Discontinued or Private 350 | 351 | - [abuse.ch - Ransomwaretracker](https://ransomwaretracker.abuse.ch/downloads/RW_IPBL.txt) 352 | - [Malc0de - IP Blocklist](http://malc0de.com/bl/IP_Blacklist.txt) 353 | - [Malwaredomain - IP List](https://www.malwaredomainlist.com/hostslist/ip.txt) 354 | - [Maxmind - high-risk-ip-sample-list](https://www.maxmind.com/en/high-risk-ip-sample-list) 355 | - [unsubscore - blacklist](http://www.unsubscore.com/blacklist.txt) 356 | 357 | ### DEBUG LISTS 358 | 359 | - [Allow IP/CIDR extra](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 360 | - [Allow IPs](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 361 | - [Allow URLs](https://raw.githubusercontent.com/maravento/blackweb/master/bwupdate/lst/allowurls.txt) 362 | - [Amazon AWS](https://ip-ranges.amazonaws.com/ip-ranges.json) 363 | - [Block IP/CIDR Extra](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 364 | - [DNS](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 365 | - [IANA](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 366 | - [Microsoft Azure Datacenter](https://www.microsoft.com/en-us/download/details.aspx?id=41653) 367 | 368 | ### WORKTOOLS 369 | 370 | - [cidr2ip](https://github.com/maravento/blackip/tree/master/bipupdate/tools) 371 | - [Debug IPs](https://github.com/maravento/blackip/tree/master/bipupdate/tools) 372 | 373 | ## NOTICE 374 | 375 | --- 376 | 377 | - Este proyecto incluye componentes de terceros. 378 | - Los cambios deben proponerse mediante Issues. No se aceptan Pull Requests. 379 | - Blackip no es un servicio de listas negras como tal. No verifica de forma independiente las direcciones IP. Su función es consolidar y formatear listas negras públicas para hacerlas compatibles con Squid/Iptables/Ipset. 380 | - Si su dirección IP aparece en Blackip, y considera que esto es un error, debe revisar las fuentes públicas [SOURCES](https://github.com/maravento/blackip/blob/master/README-es.md#sources), identificar en cuál(es) aparece, y contactar al responsable de dicha lista para solicitar su eliminación. Una vez que la dirección IP sea eliminada en la fuente original, desaparecerá automáticamente de Blackip en la siguiente actualización. 381 | 382 | ## STARGAZERS 383 | 384 | --- 385 | 386 | [![Stargazers](https://bytecrank.com/nastyox/reporoster/php/stargazersSVG.php?user=maravento&repo=blackip)](https://github.com/maravento/blackip/stargazers) 387 | 388 | ## CONTRIBUTIONS 389 | 390 | --- 391 | 392 | Agradecemos a todos aquellos que han contribuido a este proyecto. Los interesados pueden contribuir, enviándonos enlaces de nuevas "Blocklist", para ser incluidas en este proyecto. 393 | 394 | Special thanks to: [Jhonatan Sneider](https://github.com/sney2002) 395 | 396 | ## SPONSOR THIS PROJECT 397 | 398 | --- 399 | 400 | [![Image](https://raw.githubusercontent.com/maravento/winexternal/master/img/maravento-paypal.png)](https://paypal.me/maravento) 401 | 402 | ## PROJECT LICENSES 403 | 404 | --- 405 | 406 | [![GPL-3.0](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl.txt) 407 | [![CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC_BY--NC--ND_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) 408 | 409 | ## DISCLAIMER 410 | 411 | --- 412 | 413 | EL SOFTWARE SE PROPORCIONA "TAL CUAL", SIN GARANTÍA DE NINGÚN TIPO, EXPRESA O IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE COMERCIABILIDAD, IDONEIDAD PARA UN PROPÓSITO PARTICULAR Y NO INFRACCIÓN. EN NINGÚN CASO LOS AUTORES O TITULARES DE LOS DERECHOS DE AUTOR SERÁN RESPONSABLES DE NINGUNA RECLAMACIÓN, DAÑO U OTRA RESPONSABILIDAD, YA SEA EN UNA ACCIÓN CONTRACTUAL, EXTRACONTRACTUAL O DE OTRO MODO, QUE SURJA DE, A PARTIR DE O EN CONEXIÓN CON EL SOFTWARE O EL USO U OTRAS OPERACIONES EN EL SOFTWARE. 414 | 415 | ## OBJECTION 416 | 417 | --- 418 | 419 | Debido a los recientes cambios arbitrarios en la terminología informática, es necesario aclarar el significado y connotación del término **blacklist**, asociado a este proyecto: 420 | 421 | *En informática, una lista negra, lista de denegación o lista de bloqueo es un mecanismo básico de control de acceso que permite a través de todos los elementos (direcciones de correo electrónico, usuarios, contraseñas, URL, direcciones IP, nombres de dominio, hashes de archivos, etc.), excepto los mencionados explícitamente. Esos elementos en la lista tienen acceso denegado. Lo opuesto es una lista blanca, lo que significa que solo los elementos de la lista pueden pasar por cualquier puerta que se esté utilizando.* Fuente [Wikipedia](https://en.wikipedia.org/wiki/Blacklist_(computing)) 422 | 423 | Por tanto, **blacklist**, **blocklist**, **blackweb**, **blackip**, **whitelist** y similares, son términos que no tienen ninguna relación con la discriminación racial. 424 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [BlackIP](https://www.maravento.com/p/blackip.html) 2 | 3 | 4 | 5 | [![status-stable](https://img.shields.io/badge/status-stable-green.svg)](https://github.com/maravento/blackip) 6 | [![last commit](https://img.shields.io/github/last-commit/maravento/blackip)](https://github.com/maravento/blackip) 7 | [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/maravento/blackip) 8 | [![Twitter Follow](https://img.shields.io/twitter/follow/maraventostudio.svg?style=social)](https://twitter.com/maraventostudio) 9 | 10 | 11 | 12 | 15 | 16 |
13 | English | Español 14 |
17 | 18 | BlackIP is a project that collects and unifies public blocklists of IP addresses, to make them compatible with [Squid](http://www.squid-cache.org/) and [IPSET](http://ipset.netfilter.org/) ([Iptables](http://www.netfilter.org/documentation/HOWTO/es/packet-filtering-HOWTO-7.html) [Netfilter](http://www.netfilter.org/)). 19 | 20 | ## DATA SHEET 21 | 22 | --- 23 | 24 | | ACL | Blocked IP | File Size | 25 | | :---: | :---: | :---: | 26 | | blackip.txt | 437710 | 6,2 Mb | 27 | 28 | ## GIT CLONE 29 | 30 | --- 31 | 32 | ```bash 33 | git clone --depth=1 https://github.com/maravento/blackip.git 34 | ``` 35 | 36 | ## HOW TO USE 37 | 38 | --- 39 | 40 | `blackip.txt` is already optimized. Download it and unzip it in the path of your preference. 41 | 42 | ### Download 43 | 44 | ```bash 45 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/blackip.tar.gz && cat blackip.tar.gz* | tar xzf - 46 | ``` 47 | 48 | ### Optional: Checksum 49 | 50 | ```bash 51 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/checksum.md5 52 | md5sum blackip.txt | awk '{print $1}' && cat checksum.md5 | awk '{print $1}' 53 | ``` 54 | 55 | #### Important about BlackIP 56 | 57 | - Should not be used `blackip.txt` in [IPSET](http://ipset.netfilter.org/) and in [Squid](http://www.squid-cache.org/) at the same time (double filtrate). 58 | - `blackip.txt` is a list IPv4. Does not include CIDR. 59 | 60 | ### [Ipset/Iptables](http://ipset.netfilter.org/) Rules 61 | 62 | Edit your Iptables bash script and add the following lines (run with root privileges): 63 | 64 | ```bash 65 | #!/bin/bash 66 | # https://linux.die.net/man/8/ipset 67 | # variables 68 | ipset=/sbin/ipset 69 | iptables=/sbin/iptables 70 | 71 | # Replace with your path to blackip.txt 72 | ips=/path_to_lst/blackip.txt 73 | 74 | # ipset rules 75 | $ipset -L blackip >/dev/null 2>&1 76 | if [ $? -ne 0 ]; then 77 | echo "set blackip does not exist. create set..." 78 | $ipset -! create blackip hash:net family inet hashsize 1024 maxelem 10000000 79 | else 80 | echo "set blackip exist. flush set..." 81 | $ipset -! flush blackip 82 | fi 83 | $ipset -! save > /tmp/ipset_blackip.txt 84 | # read file and sort (v8.32 or later) 85 | cat $ips | sort -V -u | while read line; do 86 | # optional: if there are commented lines 87 | if [ "${line:0:1}" = "#" ]; then 88 | continue 89 | fi 90 | # adding IPv4 addresses to the tmp list 91 | echo "add blackip $line" >> /tmp/ipset_blackip.txt 92 | done 93 | # adding the tmp list of IPv4 addresses to the blackip set of ipset 94 | $ipset -! restore < /tmp/ipset_blackip.txt 95 | 96 | # iptables rules 97 | $iptables -t mangle -I PREROUTING -m set --match-set blackip src,dst -j DROP 98 | $iptables -I INPUT -m set --match-set blackip src,dst -j DROP 99 | $iptables -I FORWARD -m set --match-set blackip src,dst -j DROP 100 | echo "done" 101 | ``` 102 | 103 | #### Ipset/Iptables Rules with IPDeny (Optional) 104 | 105 | You can add the following lines to the bash above to include full country IP ranges with [IPDeny](https://www.ipdeny.com/ipblocks/) adding the countries of your choice. 106 | 107 | ```bash 108 | # Put these lines at the end of the "variables" section 109 | # Replace with your path to zones folder 110 | zones=/path_to_folder/zones 111 | # download zones 112 | if [ ! -d $zones ]; then mkdir -p $zones; fi 113 | wget -q -N http://www.ipdeny.com/ipblocks/data/countries/all-zones.tar.gz 114 | tar -C $zones -zxvf all-zones.tar.gz >/dev/null 2>&1 115 | rm -f all-zones.tar.gz >/dev/null 2>&1 116 | 117 | # replace the line: 118 | cat $ips | sort -V -u | while read line; do 119 | # with (e.g: Russia and China): 120 | cat $zones/{cn,ru}.zone $ips | sort -V -u | while read line; do 121 | ``` 122 | 123 | #### About Ipset/Iptables Rules 124 | 125 | - Ipset allows mass filtering, at a much higher processing speed than other solutions (check [benchmark](https://web.archive.org/web/20161014210553/http://daemonkeeper.net/781/mass-blocking-ip-addresses-with-ipset/)). 126 | - Blackip is a list containing millions of IPv4 lines and to be supported by Ipset, we had to arbitrarily increase the parameter [maxelem](https://ipset.netfilter.org/ipset.man.html#:~:text=hash%3Aip%20hashsize%201536-,maxelem,-This%20parameter%20is) (for more information, check [ipset's hashsize and maxelem parameters](https://www.odi.ch/weblog/posting.php?posting=738)). 127 | - Ipset/iptables limitation: "*When entries added by the SET target of iptables/ip6tables, then the hash size is fixed and the set won't be duplicated, even if the new entry cannot be added to the set*" (for more information, check [Man Ipset](https://ipset.netfilter.org/ipset.man.html)). 128 | - Heavy use of these rules can slow down your PC to the point of crashing. Use them at your own risk. 129 | - Tested on iptables v1.8.7, ipset v7.15, protocol version: 7. 130 | 131 | ### [Squid](http://www.squid-cache.org/) Rule 132 | 133 | Edit: 134 | 135 | ```bash 136 | /etc/squid/squid.conf 137 | ``` 138 | 139 | And add the following lines: 140 | 141 | ```bash 142 | # INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS 143 | 144 | # Block Rule for BlackIP 145 | acl blackip dst "/path_to/blackip.txt" 146 | http_access deny blackip 147 | ``` 148 | 149 | #### About Squid Rule 150 | 151 | - `blackip.txt` has been tested in Squid v3.5.x and later. 152 | 153 | #### Advanced Rules 154 | 155 | BlackIP contains millions of IP addresses, therefore it is recommended: 156 | 157 | - Use `blackcidr.txt` to add IP/CIDR that are not included in `blackip.txt` (By default it contains some Block CIDR). 158 | - Use `allowip.txt` (a whitelist of IPv4 IP addresses such as Hotmail, Gmail, Yahoo. etc.). 159 | - Use `aipextra.txt` to add whitelists of IP/CIDRs that are not included in `allowip.txt`. 160 | - By default, `blackip.txt` excludes some private or reserved ranges [RFC1918](https://en.wikipedia.org/wiki/Private_network). Use IANA (`iana.txt`) to exclude them all. 161 | - By default, `blackip.txt` excludes some DNS servers included in `dns.txt`. You can use this list and expand it to deny or allow DNS servers. 162 | - To increase security, close Squid to any other request to IP addresses with ZTR. 163 | 164 | ```bash 165 | ### INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS ### 166 | 167 | # Allow Rule for IP 168 | acl allowip dst "/path_to/allowip.txt" 169 | http_access allow allowip 170 | 171 | # Allow Rule for IP/CIDR ACL (not included in allowip.txt) 172 | acl aipextra dst "/path_to/aipextra.txt" 173 | http_access allow aipextra 174 | 175 | # Allow Rule for IANA ACL (not included in allowip.txt) 176 | acl iana dst "/path_to/iana.txt" 177 | http_access allow iana 178 | 179 | # Allow Rule for DNS ACL (excluded from blackip.txt) 180 | acl dnslst dst "/path_to/dns.txt" 181 | http_access allow dnslst # or deny dnlst 182 | 183 | # Block Rule for IP/CIDR ACL (not included in blackip.txt) 184 | acl blackcidr dst "/path_to/blackcidr.txt" 185 | http_access deny blackcidr 186 | 187 | ## Block Rule for BlackIP 188 | acl blackip dst "/path_to/blackip.txt" 189 | http_access deny blackip 190 | 191 | ## Block IP 192 | acl no_ip url_regex -i ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ 193 | http_access deny no_ip 194 | ``` 195 | 196 | ## BLACKIP UPDATE 197 | 198 | --- 199 | 200 | ### ⚠️ WARNING: BEFORE YOU CONTINUE 201 | 202 | This section is only to explain how update and optimization process works. It is not necessary for user to run it. This process can take time and consume a lot of hardware and bandwidth resources, therefore it is recommended to use test equipment. 203 | 204 | #### Bash Update 205 | 206 | >The update process of `blackip.txt` is executed in sequence by the script `bipupdate.sh`. The script will request privileges when required. 207 | 208 | ```bash 209 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/bipupdate/bipupdate.sh && chmod +x bipupdate.sh && ./bipupdate.sh 210 | ``` 211 | 212 | #### Dependencies 213 | 214 | >Update requires python 3x and bash 5x. 215 | 216 | ```bash 217 | pkgs='wget git curl idn2 perl tar rar unrar unzip zip python-is-python3 ipset' 218 | if ! dpkg -s $pkgs >/dev/null 2>&1; then 219 | apt -y install $pkgs 220 | fi 221 | ``` 222 | 223 | >Make sure your Squid is installed correctly. If you have any problems, run the following script: (`sudo ./squid_install.sh`): 224 | 225 | ```bash 226 | #!/bin/bash 227 | 228 | # kill old version 229 | while pgrep squid > /dev/null; do 230 | echo "Waiting for Squid to stop..." 231 | killall -s SIGTERM squid &>/dev/null 232 | sleep 5 233 | done 234 | 235 | # squid remove (if exist) 236 | apt purge -y squid- &>/dev/null 237 | rm -rf /var/spool/squid- /var/log/squid- /etc/squid- /dev/shm/- &>/dev/null 238 | 239 | # squid install (you can use 'squid-openssl' or 'squid') 240 | apt install -y squid-openssl squid-langpack squid-common squidclient squid-purge 241 | 242 | # create log 243 | if [ ! -d /var/log/squid ]; then 244 | mkdir -p /var/log/squid 245 | fi &>/dev/null 246 | if [[ ! -f /var/log/squid/{access,cache,store,deny}.log ]]; then 247 | touch /var/log/squid/{access,cache,store,deny}.log 248 | fi &>/dev/null 249 | 250 | # permissions 251 | chown -R proxy:proxy /var/log/squid 252 | 253 | # enable service 254 | systemctl enable squid.service 255 | systemctl start squid.service 256 | echo "Done" 257 | ``` 258 | 259 | #### Capture Public Blocklists 260 | 261 | >Capture IPv4 from downloaded public blocklists (see [SOURCES](https://github.com/maravento/blackip#sources)) and unifies them in a single file. 262 | 263 | #### DNS Loockup 264 | 265 | >Most of the [SOURCES](https://github.com/maravento/blackip#sources) contain millions of invalid and nonexistent IP. Then, a double check of each IP is done (in 2 steps) via DNS and invalid and nonexistent are excluded from Blackip. This process may take. By default it processes in parallel ≈ 6k to 12k x min, depending on the hardware and bandwidth. 266 | 267 | ```bash 268 | HIT 8.8.8.8 269 | Host 8.8.8.8.in-addr.arpa domain name pointer dns.google 270 | FAULT 0.0.9.1 271 | Host 1.9.0.0.in-addr.arpa. not found: 3(NXDOMAIN) 272 | ``` 273 | 274 | #### Run Squid-Cache with BlackIP 275 | 276 | >Run Squid-Cache with BlackIP and any error sends it to `SquidError.txt` on your desktop. 277 | 278 | #### Check execution (/var/log/syslog) 279 | 280 | ```bash 281 | BlackIP: Done 02/02/2024 15:47:14 282 | ``` 283 | 284 | #### Important about BlackIP Update 285 | 286 | - `tw.txt` containing IPs of teamviewer servers. By default they are commented. To block or authorize them, activate them in `bipupdate.sh`. To update it use `tw.sh`. 287 | - You must activate the rules in [Squid](http://www.squid-cache.org/) before using `bipupdate.sh`. 288 | - Some lists have download restrictions, so do not run `bipupdate.sh` more than once a day. 289 | - During the execution of `bipupdate.sh` it will request privileges when needed. 290 | - If you use `aufs`, temporarily change it to `ufs` during the upgrade, to avoid: `ERROR: Can't change type of existing cache_dir aufs /var/spool/squid to ufs. Restart required`. 291 | 292 | #### AllowIP Update 293 | 294 | >`allowip.txt` is already updated and optimized. The update process of `allowip.txt` is executed in sequence by the script `aipupdate.sh`. 295 | 296 | ```bash 297 | wget -q -N https://raw.githubusercontent.com/maravento/blackip/master/bipupdate/wlst/aipupdate.sh && chmod +x aipupdate.sh && ./aipupdate.sh 298 | ``` 299 | 300 | ## SOURCES 301 | 302 | --- 303 | 304 | ### BLOCKLISTS 305 | 306 | #### Active 307 | 308 | - [abuse.ch - Feodo Tracker](https://feodotracker.abuse.ch/blocklist/?download=ipblocklist) 309 | - [abuse.ch - Zeustracker blocklist](https://zeustracker.abuse.ch/blocklist.php?download=badips) 310 | - [alienvault - reputation](https://reputation.alienvault.com/reputation.generic) 311 | - [BBcan177 - minerchk](https://raw.githubusercontent.com/BBcan177/minerchk/master/ip-only.txt) 312 | - [BBcan177 - pfBlockerNG Malicious Threats](https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw) 313 | - [binarydefense - Artillery Threat Intelligence Feed and Banlist Feed](https://www.binarydefense.com/banlist.txt) 314 | - [blocklist.de - export-ips_all](https://www.blocklist.de/downloads/export-ips_all.txt) 315 | - [blocklist.de - IPs all](https://lists.blocklist.de/lists/all.txt) 316 | - [Cinsscore - badguys](http://cinsscore.com/list/ci-badguys.txt) 317 | - [CriticalPathSecurity - Public-Intelligence-Feeds](https://github.com/CriticalPathSecurity/Public-Intelligence-Feeds/) 318 | - [dan.me.uk - TOR Node List](https://www.dan.me.uk/torlist/?exit) 319 | - [darklist - raw](https://www.darklist.de/raw.php) 320 | - [dshield.org - block](https://feeds.dshield.org/block.txt) 321 | - [duggytuxy - Intelligence_IPv4_Blocklist](https://github.com/duggytuxy/Intelligence_IPv4_Blocklist/blob/main/agressive_ips_dst_fr_be_blocklist.txt) 322 | - [ellio.tech - Threat List](https://cdn.ellio.tech/community-feed) 323 | - [Emerging Threats - compromised ips](http://rules.emergingthreats.net/blockrules/compromised-ips.txt) 324 | - [Emerging Threats Block](http://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt) 325 | - [Firehold - Forus Spam](https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_7d.ipset) 326 | - [Firehold - level1](https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset) 327 | - [Greensnow - blocklist](http://blocklist.greensnow.co/greensnow.txt) 328 | - [IPDeny - ipblocks](http://www.ipdeny.com/ipblocks/) 329 | - [Myip - full BL](https://myip.ms/files/blacklist/general/full_blacklist_database.zip) 330 | - [MyIP - latest BL](https://myip.ms/files/blacklist/general/latest_blacklist.txt) 331 | - [Nick Galbreath client9 - datacenters](https://raw.githubusercontent.com/client9/ipcat/master/datacenters.csv) 332 | - [OpenBL - base](http://www.openbl.org/lists/base.txt) 333 | - [opsxcq - proxy-list](https://raw.githubusercontent.com/opsxcq/proxy-list/master/list.txt) 334 | - [Project Honeypot - list_of_ips](https://www.projecthoneypot.org/list_of_ips.php?t=d&rss=1) 335 | - [Rulez - BruteForceBlocker](http://danger.rulez.sk/projects/bruteforceblocker/blist.php) 336 | - [rulez.sk - bruteforceblocker](http://danger.rulez.sk/projects/bruteforceblocker/blist.php) 337 | - [SecOps-Institute - TOR Exit Node List](https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst) 338 | - [Spamhaus - drop-lasso](https://www.spamhaus.org/drop/drop.lasso) 339 | - [stamparm - ipsum](https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt) 340 | - [StopForumSpam - 180](https://www.stopforumspam.com/downloads/listed_ip_180_all.zip) 341 | - [StopForumSpam - Toxic CIDR](https://www.stopforumspam.com/downloads/toxic_ip_cidr.txt) 342 | - [torproject - TOR BulkExitList](https://check.torproject.org/torbulkexitlist?ip=1.1.1.1) 343 | - [Uceprotect - backscatterer Level 1](http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-1.uceprotect.net.gz) 344 | - [Uceprotect - backscatterer Level 2](http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-2.uceprotect.net.gz) 345 | - [Uceprotect - backscatterer Level 3](http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-3.uceprotect.net.gz) 346 | - [Ultimate Hosts IPs Blocklist - ips](https://github.com/Ultimate-Hosts-Blacklist/Ultimate.Hosts.Blacklist/tree/master/ips) 347 | - [yoyo - adservers](https://pgl.yoyo.org/adservers/iplist.php?format=&showintro=0) 348 | 349 | #### Inactive, Offline, Discontinued or Private 350 | 351 | - [abuse.ch - Ransomwaretracker](https://ransomwaretracker.abuse.ch/downloads/RW_IPBL.txt) 352 | - [Malc0de - IP Blocklist](http://malc0de.com/bl/IP_Blacklist.txt) 353 | - [Malwaredomain - IP List](https://www.malwaredomainlist.com/hostslist/ip.txt) 354 | - [Maxmind - high-risk-ip-sample-list](https://www.maxmind.com/en/high-risk-ip-sample-list) 355 | - [unsubscore - blacklist](http://www.unsubscore.com/blacklist.txt) 356 | 357 | ### DEBUG LISTS 358 | 359 | - [Allow IP/CIDR extra](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 360 | - [Allow IPs](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 361 | - [Allow URLs](https://raw.githubusercontent.com/maravento/blackweb/master/bwupdate/lst/allowurls.txt) 362 | - [Amazon AWS](https://ip-ranges.amazonaws.com/ip-ranges.json) 363 | - [Block IP/CIDR Extra](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 364 | - [DNS](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 365 | - [IANA](https://github.com/maravento/blackip/tree/master/bipupdate/lst) 366 | - [Microsoft Azure Datacenter](https://www.microsoft.com/en-us/download/details.aspx?id=41653) 367 | 368 | ### WORKTOOLS 369 | 370 | - [cidr2ip](https://github.com/maravento/blackip/tree/master/bipupdate/tools) 371 | - [Debug IPs](https://github.com/maravento/blackip/tree/master/bipupdate/tools) 372 | 373 | ## NOTICE 374 | 375 | --- 376 | 377 | - This project includes third-party components. 378 | - Changes must be submitted via Issues. Pull requests are not accepted. 379 | - Blackip is not a blacklist service itself. It does not independently verify IPs addresses. Its purpose is to consolidate and reformat public blacklist sources to make them compatible with Squid/Iptables/Ipset. 380 | - If your IP address is listed on Blackip and you believe this is an error, you should check the public sources [SOURCES](https://github.com/maravento/blackip/blob/master/README-es.md#sources), identify which one(s) it appears in, and contact the person responsible for that list to request its removal. Once the IP address is removed from the original source, it will automatically disappear from Blackip with the next update. 381 | 382 | ## STARGAZERS 383 | 384 | --- 385 | 386 | [![Stargazers](https://bytecrank.com/nastyox/reporoster/php/stargazersSVG.php?user=maravento&repo=blackip)](https://github.com/maravento/blackip/stargazers) 387 | 388 | ## CONTRIBUTIONS 389 | 390 | --- 391 | 392 | We thank all those who contributed to this project. Those interested may contribute sending us new "Blocklist" links to be included in this project. 393 | 394 | Special thanks to: [Jhonatan Sneider](https://github.com/sney2002) 395 | 396 | ## SPONSOR THIS PROJECT 397 | 398 | --- 399 | 400 | [![Image](https://raw.githubusercontent.com/maravento/winexternal/master/img/maravento-paypal.png)](https://paypal.me/maravento) 401 | 402 | ## PROJECT LICENSES 403 | 404 | --- 405 | 406 | [![GPL-3.0](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl.txt) 407 | [![CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC_BY--NC--ND_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) 408 | 409 | ## DISCLAIMER 410 | 411 | --- 412 | 413 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 414 | 415 | ## OBJECTION 416 | 417 | --- 418 | 419 | Due to recent arbitrary changes in computer terminology, it is necessary to clarify the meaning and connotation of the term **blacklist**, associated with this project: 420 | 421 | *In computing, a blacklist, denylist or blocklist is a basic access control mechanism that allows through all elements (email addresses, users, passwords, URLs, IP addresses, domain names, file hashes, etc.), except those explicitly mentioned. Those items on the list are denied access. The opposite is a whitelist, which means only items on the list are let through whatever gate is being used.* Source [Wikipedia](https://en.wikipedia.org/wiki/Blacklist_(computing)) 422 | 423 | Therefore, **blacklist**, **blocklist**, **blackweb**, **blackip**, **whitelist** and similar, are terms that have nothing to do with racial discrimination. 424 | -------------------------------------------------------------------------------- /bipupdate/bipupdate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Language spa-eng 3 | bip01=("This process can take. Be patient..." "Este proceso puede tardar. Sea paciente...") 4 | bip02=("Downloading IPDeny..." "Descargando IPDeny...") 5 | bip03=("Downloading BlackIP..." "Descargando BlackIP...") 6 | bip04=("Downloading Blocklists..." "Descargando Listas de Bloqueo...") 7 | bip05=("Debugging BlackIP..." "Depurando BlackIP...") 8 | bip06=("1st DNS Loockup..." "1ra Busqueda DNS...") 9 | bip07=("2nd DNS Loockup..." "2da Busqueda DNS...") 10 | bip08=("Squid Reload..." "Reiniciando Squid...") 11 | bip09=("Check on your desktop Squid-Error" "Verifique en su escritorio Squid-Error") 12 | test "${LANG:0:2}" == "en" 13 | en=$? 14 | 15 | # VARIABLES 16 | bipupdate=$(pwd)/bipupdate 17 | ipRegExp="(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)" 18 | reorganize="sort -t . -k 1,1n -k 2,2n -k 3,3n -k 4,4n" 19 | xdesktop=$(xdg-user-dir DESKTOP) 20 | wgetd='wget -q -c --show-progress --no-check-certificate --retry-connrefused --timeout=10 --tries=4' 21 | # path_to_lst (Change it to the directory of your preference) 22 | route=/etc/acl 23 | # CREATE PATH 24 | if [ ! -d "$route" ]; then sudo mkdir -p "$route"; fi 25 | 26 | clear 27 | echo 28 | echo "Blackip Project" 29 | echo "${bip01[${en}]}" 30 | 31 | # CHECK DNSLOOKUP1 32 | if [ ! -e "$bipupdate"/dnslookup1 ]; then 33 | 34 | # DELETE OLD REPOSITORY 35 | if [ -d "$bipupdate" ]; then rm -rf "$bipupdate"; fi 36 | 37 | # DOWNLOADING GEOZONES 38 | echo "${bip02[${en}]}" 39 | geopath="/etc/zones" 40 | if [ ! -d "$geopath" ]; then sudo mkdir -p "$geopath"; fi 41 | $wgetd http://www.ipdeny.com/ipblocks/data/countries/all-zones.tar.gz && tar -C "$geopath" -zxvf all-zones.tar.gz >/dev/null 2>&1 && rm -f all-zones.tar.gz >/dev/null 2>&1 42 | echo "OK" 43 | 44 | # DOWNLOAD BLACKIP 45 | echo "${bip03[${en}]}" 46 | wget https://raw.githubusercontent.com/maravento/vault/master/scripts/python/gitfolderdl.py 47 | chmod +x gitfolderdl.py 48 | python gitfolderdl.py https://github.com/maravento/blackip/bipupdate 49 | if [ -d "$bipupdate" ]; then 50 | cd "$bipupdate" || { 51 | echo "Access Error: $bipupdate" 52 | exit 1 53 | } 54 | else 55 | echo "Does not exist: $bipupdate" 56 | exit 1 57 | fi 58 | 59 | # DOWNLOADING BLOCKLIST IPS 60 | echo "${bip04[${en}]}" 61 | 62 | function blips() { 63 | curl -k -X GET --connect-timeout 10 --retry 1 -I "$1" &>/dev/null 64 | if [ $? -eq 0 ]; then 65 | $wgetd "$1" -O - | grep -E -o "([0-9]{1,3}\.){3}[0-9]{1,3}" | uniq >>capture 66 | else 67 | echo ERROR "$1" 68 | fi 69 | } 70 | blips 'http://danger.rulez.sk/projects/bruteforceblocker/blist.php' && sleep 1 71 | blips 'https://blocklist.greensnow.co/greensnow.txt' && sleep 1 72 | blips 'https://cdn.ellio.tech/community-feed' && sleep 1 73 | blips 'https://check.torproject.org/torbulkexitlist?ip=1.1.1.1' && sleep 1 74 | blips 'https://cinsscore.com/list/ci-badguys.txt' && sleep 1 75 | blips 'https://danger.rulez.sk/projects/bruteforceblocker/blist.php' && sleep 1 76 | blips 'https://feeds.dshield.org/block.txt' && sleep 1 77 | blips 'https://feodotracker.abuse.ch/blocklist/?download=ipblocklist' && sleep 1 78 | blips 'https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw' && sleep 1 79 | blips 'https://lists.blocklist.de/lists/all.txt' && sleep 1 80 | blips 'https://myip.ms/files/blacklist/general/latest_blacklist.txt' && sleep 1 81 | blips 'https://pgl.yoyo.org/adservers/iplist.php?format=&showintro=0' && sleep 1 82 | blips 'https://raw.githubusercontent.com/BBcan177/minerchk/master/ip-only.txt' && sleep 1 83 | blips 'https://raw.githubusercontent.com/client9/ipcat/master/datacenters.csv' && sleep 1 84 | blips 'https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/abuse-ch-ipblocklist.txt' && sleep 1 85 | blips 'https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/compromised-ips.txt' && sleep 1 86 | blips 'https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/cps_cobaltstrike_ip.txt' && sleep 1 87 | blips 'https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/log4j.txt' && sleep 1 88 | blips 'https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/tor-exit.txt' && sleep 1 89 | blips 'https://raw.githubusercontent.com/duggytuxy/Intelligence_IPv4_Blocklist/refs/heads/main/agressive_ips_dst_fr_be_blocklist.txt' && sleep 1 90 | blips 'https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset' && sleep 1 91 | blips 'https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_7d.ipset' && sleep 1 92 | blips 'https://raw.githubusercontent.com/opsxcq/proxy-list/master/list.txt' && sleep 1 93 | blips 'https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt' && sleep 1 94 | blips 'https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/Ultimate.Hosts.Blacklist/master/ips/ips0.list' && sleep 1 95 | blips 'https://reputation.alienvault.com/reputation.generic' && sleep 1 96 | blips 'https://rules.emergingthreats.net/blockrules/compromised-ips.txt' && sleep 1 97 | blips 'https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt' && sleep 1 98 | blips 'https://www.binarydefense.com/banlist.txt' && sleep 1 99 | blips 'https://www.blocklist.de/downloads/export-ips_all.txt' && sleep 1 100 | blips 'https://www.dan.me.uk/torlist/?exit' && sleep 1 101 | blips 'https://www.darklist.de/raw.php' && sleep 1 102 | blips 'https://www.projecthoneypot.org/list_of_ips.php?t=d&rss=1' && sleep 1 103 | blips 'https://www.spamhaus.org/drop/drop.lasso' && sleep 1 104 | 105 | function uceprotect() { 106 | curl -k -X GET --connect-timeout 10 --retry 1 -I "$1" &>/dev/null 107 | if [ $? -eq 0 ]; then 108 | $wgetd "$1" && gunzip -c -f *uceprotect.net.gz | grep -E -o "([0-9]{1,3}\.){3}[0-9]{1,3}" | uniq >>capture 109 | else 110 | echo ERROR "$1" 111 | fi 112 | } 113 | uceprotect 'http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-1.uceprotect.net.gz' && sleep 2 114 | uceprotect 'http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-2.uceprotect.net.gz' && sleep 2 115 | uceprotect 'http://wget-mirrors.uceprotect.net/rbldnsd-all/dnsbl-3.uceprotect.net.gz' && sleep 2 116 | 117 | function listed_ip_180_all() { 118 | curl -k -X GET --connect-timeout 10 --retry 1 -I "$1" &>/dev/null 119 | if [ $? -eq 0 ]; then 120 | $wgetd "$1" && unzip -p listed_ip_180_all.zip | grep -E -o "([0-9]{1,3}\.){3}[0-9]{1,3}" | uniq >>capture 121 | else 122 | echo ERROR "$1" 123 | fi 124 | } 125 | listed_ip_180_all 'https://www.stopforumspam.com/downloads/listed_ip_180_all.zip' 126 | 127 | function full_blacklist_database() { 128 | curl -k -X GET --connect-timeout 10 --retry 1 -I "$1" &>/dev/null 129 | 130 | if [ $? -eq 0 ]; then 131 | $wgetd "$1" && unzip -p full_blacklist_database.zip | grep -E -o "([0-9]{1,3}\.){3}[0-9]{1,3}" | uniq >>capture 132 | else 133 | echo ERROR "$1" 134 | fi 135 | } 136 | full_blacklist_database 'https://myip.ms/files/blacklist/general/full_blacklist_database.zip' 137 | 138 | echo "OK" 139 | 140 | # CIDR2IP (High consumption of system resources) 141 | #function cidr() { 142 | # $wgetd "$1" -O - | sed '/^$/d; /*#/d' | uniq > cidr.txt && sort -o cidr.txt -u cidr.txt >/dev/null 2>&1 143 | # python tools/cidr2ip.py cidr.txt >> bip 144 | #} 145 | # cidr 'https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset' 146 | # cidr 'https://www.stopforumspam.com/downloads/toxic_ip_cidr.txt' 147 | 148 | echo "${bip05[${en}]}" 149 | # debug 150 | sed -r 's/^0*([0-9]+)\.0*([0-9]+)\.0*([0-9]+)\.0*([0-9]+)$/\1.\2.\3.\4/' capture | sed "/:/d" | sed '/\/[0-9]*$/d' | sed 's/^[ \s]*//;s/[ \s]*$//' | sed -r '/\.0\.0$/d' | sed -r 's:\s+.*::g' | awk -F. '$1 <= 255 && $2 <= 255 && $3 <= 255 && $4 <= 255' | grep -oP $ipRegExp | $reorganize | uniq >cleancapture 151 | # DEBBUGGING BLACKIP 152 | # First you must edit /etc/squid/squid.conf 153 | # And add line: 154 | # acl blackip dst "/path_to_lst/blackip.txt" 155 | # http_access deny blackip 156 | # add black ips/cidr 157 | #sed '/^$/d; /#/d' lst/blackcidr.txt >> cleancapture 158 | # add iana 159 | #sed '/^$/d; /#/d' lst/iana.txt >> cleancapture 160 | # exclude allowip 161 | sed 's:\/.*::' lst/iana.txt >>lst/allowip.txt 162 | #comm -3 <(sort lst/allowip.txt) <(sort cleancapture) | sed -r 's/^\s+*//;s/\s+*$//' > cleancapture2 163 | grep -vFf lst/allowip.txt cleancapture | sed -r 's/^\s+*//;s/\s+*$//' | $reorganize | uniq >cleancapture2 164 | echo "OK" 165 | else 166 | cd "$bipupdate" 167 | fi 168 | 169 | # DNS LOCKUP 170 | # FAULT: Unexist/Fail domain 171 | # HIT: Exist domain 172 | # pp = parallel processes 173 | # WARNING: high resource consumption! 174 | # Xargs Limit: The limit is at least 127 on all systems (and on the author’s system it is 2147483647) 175 | # For more information, run: xargs --show-limits 176 | pp="50" 177 | 178 | # STEP 1: 179 | if [ ! -e "$bipupdate"/dnslookup2 ]; then 180 | echo "${bip06[${en}]}" 181 | sed 's/^\.//g' cleancapture2 | sort -u >step1 182 | if [ -s dnslookup1 ]; then 183 | awk 'FNR==NR {seen[$2]=1;next} seen[$1]!=1' dnslookup1 step1 184 | else 185 | cat step1 186 | fi | xargs -I {} -P "$pp" sh -c "if host {} >/dev/null; then echo HIT {}; else echo FAULT {}; fi" >>dnslookup1 187 | sed '/^FAULT/d' dnslookup1 | awk '{print $2}' | awk '{print "." $1}' | sort -u >hit.txt 188 | sed '/^HIT/d' dnslookup1 | awk '{print $2}' | awk '{print "." $1}' | sort -u >>fault.txt 189 | sort -o fault.txt -u fault.txt 190 | echo "OK" 191 | fi 192 | 193 | sleep 10 194 | 195 | # STEP 2: 196 | echo "${bip07[${en}]}" 197 | sed 's/^\.//g' fault.txt | sort -u >step2 198 | if [ -s dnslookup2 ]; then 199 | awk 'FNR==NR {seen[$2]=1;next} seen[$1]!=1' dnslookup2 step2 200 | else 201 | cat step2 202 | fi | xargs -I {} -P "$pp" sh -c "if host {} >/dev/null; then echo HIT {}; else echo FAULT {}; fi" >>dnslookup2 203 | sed '/^FAULT/d' dnslookup2 | awk '{print $2}' | awk '{print "." $1}' | sort -u >>hit.txt 204 | sed '/^HIT/d' dnslookup2 | awk '{print $2}' | awk '{print "." $1}' | sort -u >fault.txt 205 | echo "OK" 206 | 207 | # RELOAD SQUID-CACHE 208 | echo "${bip08[${en}]}" 209 | sed '/^$/d; /#/d' hit.txt | sort -u > blackip.txt 210 | sudo cp -f blackip.txt "$route"/blackip.txt 211 | sudo bash -c 'squid -k reconfigure' 2>SquidError.txt 212 | sudo bash -c 'grep "$(date +%Y/%m/%d)" /var/log/squid/cache.log' >>SquidError.txt 213 | grep -oP "([0-9]{1,3}\.){3}[0-9]{1,3}" SquidError.txt | $reorganize | uniq >squidip 214 | ## Remove conflicts from blackip.txt 215 | grep -Fvxf <(cat lst/iana.txt lst/dns.txt | sed '/^#/d') squidip | sort -u >cleanip 216 | cat cleanip | $reorganize | uniq >debugip 217 | python tools/debugbip.py 218 | sed -E '/:/d; s/\/[0-9]+//g' outip | grep -E -o '([0-9]{1,3}\.){3}[0-9]{1,3}' | $reorganize | uniq >blackip.txt 219 | 220 | # COPY ACL TO PATH AND LOG 221 | sudo cp -f blackip.txt "$route"/blackip.txt 222 | sudo bash -c 'squid -k reconfigure' 2>"$xdesktop"/SquidErrors.txt 223 | 224 | # DELETE REPOSITORY (Optional) 225 | cd .. 226 | if [ -d "$bipupdate" ]; then rm -rf "$bipupdate"; fi 227 | 228 | # END 229 | sudo bash -c 'echo "BlackIP Done: $(date)" | tee -a /var/log/syslog' 230 | echo "${bip09[${en}]}" 231 | -------------------------------------------------------------------------------- /bipupdate/lst/aipextra.txt: -------------------------------------------------------------------------------- 1 | # google 2 | 74.125.0.0/16 3 | 172.217.0.0/16 4 | 173.194.0.0/16 5 | # epson 6 | 192.37.252.01 7 | # amazon 8 | 3.0.0.0/15 9 | 3.2.0.0/24 10 | 3.2.2.0/24 11 | 3.2.3.0/24 12 | 3.3.0.0/23 13 | 3.3.5.0/24 14 | 3.3.6.0/23 15 | 3.3.8.0/21 16 | 3.4.0.0/24 17 | 3.4.1.0/24 18 | 3.4.2.0/27 19 | 3.4.3.0/24 20 | 3.4.4.0/24 21 | 3.5.0.0/18 22 | 3.5.64.0/21 23 | 3.5.72.0/23 24 | 3.5.76.0/22 25 | 3.5.80.0/21 26 | 3.5.128.0/22 27 | 3.5.132.0/23 28 | 3.5.134.0/23 29 | 3.5.136.0/22 30 | 3.5.140.0/22 31 | 3.5.144.0/23 32 | 3.5.146.0/23 33 | 3.5.148.0/22 34 | 3.5.152.0/21 35 | 3.5.160.0/22 36 | 3.5.164.0/22 37 | 3.5.168.0/23 38 | 3.5.208.0/22 39 | 3.5.212.0/23 40 | 3.5.216.0/22 41 | 3.5.220.0/22 42 | 3.5.224.0/22 43 | 3.5.228.0/22 44 | 3.5.232.0/22 45 | 3.5.236.0/22 46 | 3.5.240.0/22 47 | 3.5.244.0/22 48 | 3.5.248.0/22 49 | 3.5.252.0/22 50 | 3.6.0.0/15 51 | 3.8.0.0/14 52 | 3.12.0.0/16 53 | 3.13.0.0/16 54 | 3.14.0.0/15 55 | 3.16.0.0/14 56 | 3.20.0.0/14 57 | 3.24.0.0/14 58 | 3.32.0.0/16 59 | 3.33.128.0/17 60 | 3.34.0.0/15 61 | 3.36.0.0/14 62 | 3.64.0.0/12 63 | 3.80.0.0/12 64 | 3.96.0.0/15 65 | 3.98.0.0/15 66 | 3.101.0.0/16 67 | 3.104.0.0/14 68 | 3.108.0.0/14 69 | 3.112.0.0/14 70 | 3.120.0.0/14 71 | 3.124.0.0/14 72 | 3.128.0.0/15 73 | 3.130.0.0/16 74 | 3.131.0.0/16 75 | 3.132.0.0/14 76 | 3.136.0.0/13 77 | 3.208.0.0/12 78 | 3.224.0.0/12 79 | 3.248.0.0/13 80 | 13.32.0.0/15 81 | 13.34.1.0/27 82 | 13.34.1.32/27 83 | 13.34.3.128/27 84 | 13.34.3.160/27 85 | 13.34.3.192/27 86 | 13.34.3.224/27 87 | 13.34.6.192/27 88 | 13.34.6.224/27 89 | 13.34.9.0/27 90 | 13.34.9.32/27 91 | 13.34.14.192/27 92 | 13.34.14.224/27 93 | 13.34.15.0/27 94 | 13.34.15.32/27 95 | 13.34.22.88/29 96 | 13.34.22.160/27 97 | 13.34.22.192/27 98 | 13.34.22.224/27 99 | 13.34.23.0/27 100 | 13.34.23.32/27 101 | 13.34.23.64/27 102 | 13.34.23.96/27 103 | 13.34.23.128/27 104 | 13.34.23.160/27 105 | 13.34.23.192/27 106 | 13.34.23.224/27 107 | 13.34.24.64/27 108 | 13.34.24.96/27 109 | 13.34.24.128/27 110 | 13.34.24.160/27 111 | 13.34.24.192/27 112 | 13.34.25.64/27 113 | 13.34.25.96/27 114 | 13.34.25.128/27 115 | 13.34.25.160/27 116 | 13.34.25.216/29 117 | 13.34.25.248/29 118 | 13.34.26.0/27 119 | 13.34.26.32/27 120 | 13.34.26.64/27 121 | 13.34.26.96/27 122 | 13.34.26.128/27 123 | 13.34.26.160/27 124 | 13.34.26.192/27 125 | 13.34.26.224/27 126 | 13.34.27.0/27 127 | 13.34.27.32/27 128 | 13.34.27.64/27 129 | 13.34.27.96/27 130 | 13.34.27.128/27 131 | 13.34.28.0/27 132 | 13.34.28.32/27 133 | 13.34.28.64/27 134 | 13.34.28.96/27 135 | 13.34.28.128/27 136 | 13.34.28.160/27 137 | 13.34.28.192/27 138 | 13.34.28.224/27 139 | 13.34.29.0/27 140 | 13.34.29.32/27 141 | 13.34.29.64/27 142 | 13.34.29.96/27 143 | 13.34.29.128/27 144 | 13.34.29.160/27 145 | 13.34.29.192/27 146 | 13.34.29.224/27 147 | 13.34.30.0/27 148 | 13.34.30.32/27 149 | 13.34.30.64/27 150 | 13.34.30.96/27 151 | 13.34.30.128/27 152 | 13.34.30.160/27 153 | 13.34.30.192/27 154 | 13.34.30.224/27 155 | 13.34.31.0/27 156 | 13.34.31.32/27 157 | 13.34.31.64/27 158 | 13.34.31.96/27 159 | 13.34.31.128/27 160 | 13.34.31.160/27 161 | 13.34.31.192/27 162 | 13.34.31.224/27 163 | 13.34.32.0/27 164 | 13.34.32.32/27 165 | 13.34.32.64/27 166 | 13.34.32.96/27 167 | 13.34.32.128/27 168 | 13.34.32.160/27 169 | 13.34.33.0/27 170 | 13.34.33.32/27 171 | 13.34.33.64/27 172 | 13.34.33.96/27 173 | 13.34.33.128/27 174 | 13.34.33.160/27 175 | 13.34.33.192/27 176 | 13.34.33.224/27 177 | 13.34.34.0/27 178 | 13.34.34.32/27 179 | 13.34.34.64/27 180 | 13.34.34.96/27 181 | 13.34.35.192/27 182 | 13.34.35.224/27 183 | 13.34.36.0/27 184 | 13.34.36.32/27 185 | 13.34.36.64/27 186 | 13.34.36.96/27 187 | 13.34.36.128/27 188 | 13.34.36.160/27 189 | 13.34.36.192/27 190 | 13.34.36.224/27 191 | 13.34.38.0/27 192 | 13.34.38.32/27 193 | 13.34.38.64/27 194 | 13.34.38.96/27 195 | 13.34.38.128/27 196 | 13.34.38.160/27 197 | 13.34.39.0/27 198 | 13.34.39.32/27 199 | 13.34.39.64/27 200 | 13.34.39.96/27 201 | 13.34.39.128/27 202 | 13.34.39.160/27 203 | 13.34.39.192/27 204 | 13.34.39.224/27 205 | 13.34.40.0/27 206 | 13.34.40.32/27 207 | 13.34.40.64/27 208 | 13.34.40.96/27 209 | 13.34.40.128/27 210 | 13.34.40.160/27 211 | 13.34.40.192/27 212 | 13.34.40.224/27 213 | 13.34.41.0/27 214 | 13.34.41.32/27 215 | 13.34.41.64/27 216 | 13.34.41.96/27 217 | 13.34.41.128/27 218 | 13.34.41.160/27 219 | 13.34.41.192/27 220 | 13.34.41.224/27 221 | 13.34.42.0/27 222 | 13.34.42.32/27 223 | 13.34.42.64/27 224 | 13.34.42.96/27 225 | 13.34.42.128/27 226 | 13.34.42.160/27 227 | 13.34.42.192/27 228 | 13.34.42.224/27 229 | 13.34.43.0/27 230 | 13.34.43.32/27 231 | 13.34.43.64/27 232 | 13.34.43.96/27 233 | 13.34.43.128/27 234 | 13.34.43.160/27 235 | 13.34.43.192/27 236 | 13.34.43.224/27 237 | 13.34.44.0/27 238 | 13.34.44.32/27 239 | 13.34.44.64/27 240 | 13.34.44.96/27 241 | 13.34.44.128/27 242 | 13.34.44.160/27 243 | 13.34.44.192/27 244 | 13.34.44.224/27 245 | 13.34.45.0/27 246 | 13.34.45.32/27 247 | 13.34.45.64/27 248 | 13.34.45.96/27 249 | 13.34.45.128/27 250 | 13.34.45.160/27 251 | 13.34.45.192/27 252 | 13.34.45.224/27 253 | 13.34.46.0/27 254 | 13.34.46.32/27 255 | 13.34.46.64/27 256 | 13.34.46.96/27 257 | 13.34.46.128/27 258 | 13.34.46.160/27 259 | 13.34.46.192/27 260 | 13.34.46.224/27 261 | 13.34.47.0/27 262 | 13.34.47.32/27 263 | 13.34.47.64/27 264 | 13.34.47.96/27 265 | 13.35.0.0/16 266 | 13.36.0.0/14 267 | 13.48.0.0/15 268 | 13.50.0.0/16 269 | 13.51.0.0/16 270 | 13.52.0.0/16 271 | 13.53.0.0/16 272 | 13.54.0.0/15 273 | 13.56.0.0/16 274 | 13.57.0.0/16 275 | 13.58.0.0/15 276 | 13.112.0.0/14 277 | 13.124.0.0/16 278 | 13.125.0.0/16 279 | 13.126.0.0/15 280 | 13.208.0.0/16 281 | 13.209.0.0/16 282 | 13.210.0.0/15 283 | 13.212.0.0/15 284 | 13.224.0.0/14 285 | 13.228.0.0/15 286 | 13.230.0.0/15 287 | 13.232.0.0/14 288 | 13.236.0.0/14 289 | 13.244.0.0/15 290 | 13.248.0.0/20 291 | 13.248.16.0/21 292 | 13.248.24.0/22 293 | 13.248.28.0/22 294 | 13.248.32.0/20 295 | 13.248.48.0/21 296 | 13.248.56.0/22 297 | 13.248.60.0/22 298 | 13.248.64.0/24 299 | 13.248.65.0/24 300 | 13.248.68.0/24 301 | 13.248.69.0/24 302 | 13.248.70.0/24 303 | 13.248.71.0/24 304 | 13.248.96.0/24 305 | 13.248.97.0/24 306 | 13.248.98.0/24 307 | 13.248.99.0/24 308 | 13.248.100.0/24 309 | 13.248.101.0/24 310 | 13.248.102.0/24 311 | 13.248.103.0/24 312 | 13.248.104.0/24 313 | 13.248.105.0/24 314 | 13.248.106.0/24 315 | 13.248.107.0/24 316 | 13.248.108.0/24 317 | 13.248.109.0/24 318 | 13.248.111.0/24 319 | 13.248.112.0/24 320 | 13.248.113.0/24 321 | 13.248.114.0/24 322 | 13.248.115.0/24 323 | 13.248.116.0/24 324 | 13.248.117.0/24 325 | 13.248.118.0/24 326 | 13.248.119.0/24 327 | 13.248.120.0/24 328 | 13.248.121.0/24 329 | 13.248.122.0/24 330 | 13.248.123.0/24 331 | 13.248.124.0/24 332 | 13.248.125.0/24 333 | 13.248.126.0/24 334 | 13.248.127.0/24 335 | 13.248.128.0/17 336 | 13.249.0.0/16 337 | 13.250.0.0/15 338 | 15.152.0.0/16 339 | 15.156.0.0/15 340 | 15.160.0.0/16 341 | 15.161.0.0/16 342 | 15.164.0.0/15 343 | 15.177.0.0/18 344 | 15.177.64.0/23 345 | 15.177.66.0/23 346 | 15.177.68.0/23 347 | 15.177.70.0/23 348 | 15.177.72.0/24 349 | 15.177.73.0/24 350 | 15.177.74.0/24 351 | 15.177.75.0/24 352 | 15.177.76.0/24 353 | 15.177.77.0/24 354 | 15.177.78.0/24 355 | 15.177.79.0/24 356 | 15.177.80.0/24 357 | 15.177.81.0/24 358 | 15.177.82.0/24 359 | 15.177.83.0/24 360 | 15.177.84.0/24 361 | 15.177.85.0/24 362 | 15.177.86.0/24 363 | 15.177.87.0/24 364 | 15.177.88.0/24 365 | 15.177.89.0/24 366 | 15.177.90.0/24 367 | 15.177.91.0/24 368 | 15.181.0.0/20 369 | 15.181.16.0/20 370 | 15.181.48.0/20 371 | 15.181.80.0/20 372 | 15.181.128.0/20 373 | 15.181.144.0/20 374 | 15.181.192.0/19 375 | 15.181.240.0/24 376 | 15.181.243.0/24 377 | 15.181.244.0/24 378 | 15.181.247.0/24 379 | 15.181.249.0/24 380 | 15.181.251.0/24 381 | 15.181.252.0/24 382 | 15.184.0.0/16 383 | 15.185.0.0/16 384 | 15.188.0.0/16 385 | 15.193.0.0/24 386 | 15.197.0.0/23 387 | 15.197.2.0/24 388 | 15.197.4.0/22 389 | 15.197.128.0/17 390 | 15.200.0.0/16 391 | 15.205.0.0/16 392 | 15.206.0.0/15 393 | 15.221.0.0/24 394 | 15.221.1.0/24 395 | 15.221.2.0/24 396 | 15.221.3.0/24 397 | 15.221.4.0/23 398 | 15.221.6.0/24 399 | 15.221.7.0/24 400 | 15.221.8.0/21 401 | 15.221.16.0/22 402 | 15.221.20.0/22 403 | 15.221.24.0/21 404 | 15.221.33.0/24 405 | 15.221.34.0/24 406 | 15.221.35.0/24 407 | 15.221.48.0/24 408 | 15.221.49.0/24 409 | 15.221.50.0/24 410 | 15.221.51.0/24 411 | 15.221.52.0/24 412 | 15.221.53.0/24 413 | 15.222.0.0/15 414 | 15.228.0.0/15 415 | 15.230.0.0/30 416 | 15.230.0.6/31 417 | 15.230.0.8/30 418 | 15.230.4.152/31 419 | 15.230.4.154/31 420 | 15.230.4.156/31 421 | 15.230.4.158/31 422 | 15.230.4.160/31 423 | 15.230.4.162/31 424 | 15.230.4.176/28 425 | 15.230.5.0/24 426 | 15.230.6.0/24 427 | 15.230.16.18/31 428 | 15.230.16.20/31 429 | 15.230.16.252/31 430 | 15.230.18.0/24 431 | 15.230.21.0/24 432 | 15.230.22.0/24 433 | 15.230.23.0/24 434 | 15.230.24.0/22 435 | 15.230.28.0/24 436 | 15.230.29.0/24 437 | 15.230.30.0/24 438 | 15.230.31.0/24 439 | 15.230.32.0/24 440 | 15.230.35.0/24 441 | 15.230.36.0/23 442 | 15.230.38.0/24 443 | 15.230.39.0/31 444 | 15.230.39.2/31 445 | 15.230.39.4/31 446 | 15.230.39.6/31 447 | 15.230.39.8/31 448 | 15.230.39.10/31 449 | 15.230.39.12/31 450 | 15.230.39.14/31 451 | 15.230.39.16/31 452 | 15.230.39.18/31 453 | 15.230.39.20/31 454 | 15.230.39.22/31 455 | 15.230.39.24/31 456 | 15.230.39.26/31 457 | 15.230.39.28/31 458 | 15.230.39.30/31 459 | 15.230.39.32/31 460 | 15.230.39.34/31 461 | 15.230.39.36/31 462 | 15.230.39.38/31 463 | 15.230.39.40/31 464 | 15.230.39.42/31 465 | 15.230.39.44/31 466 | 15.230.39.46/31 467 | 15.230.39.48/31 468 | 15.230.39.50/31 469 | 15.230.39.52/31 470 | 15.230.39.54/31 471 | 15.230.39.56/31 472 | 15.230.39.58/31 473 | 15.230.39.60/31 474 | 15.230.39.62/31 475 | 15.230.39.64/31 476 | 15.230.39.66/31 477 | 15.230.39.68/31 478 | 15.230.39.70/31 479 | 15.230.39.72/31 480 | 15.230.39.74/31 481 | 15.230.39.76/31 482 | 15.230.39.78/31 483 | 15.230.39.80/31 484 | 15.230.39.82/31 485 | 15.230.39.84/31 486 | 15.230.39.86/31 487 | 15.230.39.88/31 488 | 15.230.39.90/31 489 | 15.230.39.92/31 490 | 15.230.39.94/31 491 | 15.230.39.96/31 492 | 15.230.39.98/31 493 | 15.230.39.100/31 494 | 15.230.39.102/31 495 | 15.230.39.104/31 496 | 15.230.39.106/31 497 | 15.230.39.108/31 498 | 15.230.39.110/31 499 | 15.230.39.112/31 500 | 15.230.39.114/31 501 | 15.230.39.116/31 502 | 15.230.39.118/31 503 | 15.230.39.120/31 504 | 15.230.39.122/31 505 | 15.230.39.124/31 506 | 15.230.39.126/31 507 | 15.230.39.128/31 508 | 15.230.39.130/31 509 | 15.230.39.132/31 510 | 15.230.39.134/31 511 | 15.230.39.136/31 512 | 15.230.39.138/31 513 | 15.230.39.140/31 514 | 15.230.39.142/31 515 | 15.230.39.144/31 516 | 15.230.39.146/31 517 | 15.230.39.148/31 518 | 15.230.39.150/31 519 | 15.230.39.152/31 520 | 15.230.39.154/31 521 | 15.230.39.156/31 522 | 15.230.39.158/31 523 | 15.230.39.160/31 524 | 15.230.39.162/31 525 | 15.230.39.164/31 526 | 15.230.39.166/31 527 | 15.230.39.168/31 528 | 15.230.39.170/31 529 | 15.230.39.172/31 530 | 15.230.39.174/31 531 | 15.230.39.176/31 532 | 15.230.39.178/31 533 | 15.230.39.180/31 534 | 15.230.39.182/31 535 | 15.230.39.184/31 536 | 15.230.39.186/31 537 | 15.230.39.188/31 538 | 15.230.39.190/31 539 | 15.230.39.192/31 540 | 15.230.39.194/31 541 | 15.230.39.196/31 542 | 15.230.39.198/31 543 | 15.230.39.200/31 544 | 15.230.39.202/31 545 | 15.230.39.204/31 546 | 15.230.39.206/31 547 | 15.230.39.208/31 548 | 15.230.39.210/31 549 | 15.230.39.212/31 550 | 15.230.39.214/31 551 | 15.230.39.216/31 552 | 15.230.39.218/31 553 | 15.230.39.220/31 554 | 15.230.39.222/31 555 | 15.230.39.224/31 556 | 15.230.39.226/31 557 | 15.230.39.228/31 558 | 15.230.39.230/31 559 | 15.230.39.232/31 560 | 15.230.39.234/31 561 | 15.230.39.236/31 562 | 15.230.39.238/31 563 | 15.230.39.240/31 564 | 15.230.39.242/31 565 | 15.230.39.244/31 566 | 15.230.39.246/31 567 | 15.230.39.248/31 568 | 15.230.39.250/31 569 | 15.230.39.252/31 570 | 15.230.39.254/31 571 | 15.230.40.0/24 572 | 15.230.41.0/24 573 | 15.230.42.0/24 574 | 15.230.43.0/24 575 | 15.230.49.0/24 576 | 15.230.50.0/24 577 | 15.230.51.0/24 578 | 15.230.52.0/24 579 | 15.230.53.0/24 580 | 15.230.54.0/24 581 | 15.230.55.0/24 582 | 15.230.56.64/31 583 | 15.230.56.66/31 584 | 15.230.56.68/31 585 | 15.230.56.70/31 586 | 15.230.56.72/31 587 | 15.230.56.74/31 588 | 15.230.56.76/31 589 | 15.230.56.78/31 590 | 15.230.56.80/31 591 | 15.230.56.82/31 592 | 15.230.56.84/31 593 | 15.230.56.86/31 594 | 15.230.56.88/31 595 | 15.230.56.90/31 596 | 15.230.56.92/31 597 | 15.230.56.94/31 598 | 15.230.56.96/31 599 | 15.230.56.98/31 600 | 15.230.56.100/31 601 | 15.230.56.102/31 602 | 15.230.56.104/31 603 | 15.230.56.106/31 604 | 15.230.56.108/31 605 | 15.230.56.110/31 606 | 15.230.56.112/31 607 | 15.230.56.114/31 608 | 15.230.56.116/31 609 | 15.230.56.118/31 610 | 15.230.56.120/31 611 | 15.230.56.122/31 612 | 15.230.56.124/31 613 | 15.230.56.126/31 614 | 15.230.56.128/31 615 | 15.230.56.130/31 616 | 15.230.56.132/31 617 | 15.230.56.134/31 618 | 15.230.56.136/31 619 | 15.230.56.138/31 620 | 15.230.56.140/31 621 | 15.230.56.142/31 622 | 15.230.56.144/31 623 | 15.230.56.146/31 624 | 15.230.56.148/31 625 | 15.230.56.150/31 626 | 15.230.56.152/31 627 | 15.230.56.154/31 628 | 15.230.56.156/31 629 | 15.230.56.158/31 630 | 15.230.56.160/31 631 | 15.230.56.162/31 632 | 15.230.56.164/31 633 | 15.230.56.166/31 634 | 15.230.56.168/31 635 | 15.230.56.170/31 636 | 15.230.56.172/31 637 | 15.230.56.174/31 638 | 15.230.56.176/31 639 | 15.230.56.178/31 640 | 15.230.56.180/31 641 | 15.230.56.182/31 642 | 15.230.56.184/31 643 | 15.230.56.186/31 644 | 15.230.56.188/31 645 | 15.230.56.190/31 646 | 15.230.56.248/31 647 | 15.230.56.250/31 648 | 15.230.56.252/31 649 | 15.230.56.254/31 650 | 15.230.57.0/24 651 | 15.230.58.0/24 652 | 15.230.59.0/24 653 | 15.230.60.0/24 654 | 15.230.61.0/24 655 | 15.230.64.0/26 656 | 15.230.64.64/26 657 | 15.230.64.128/26 658 | 15.230.64.192/26 659 | 15.230.65.0/26 660 | 15.230.65.64/26 661 | 15.230.65.128/26 662 | 15.230.65.192/26 663 | 15.230.66.0/26 664 | 15.230.80.0/24 665 | 15.230.81.0/24 666 | 15.230.82.0/24 667 | 15.230.83.0/24 668 | 15.230.129.0/24 669 | 15.230.130.0/24 670 | 15.230.131.16/28 671 | 15.230.131.32/28 672 | 15.230.131.48/28 673 | 15.230.131.64/28 674 | 15.230.131.80/28 675 | 15.230.131.96/28 676 | 15.230.131.112/28 677 | 15.230.131.128/28 678 | 15.230.131.144/28 679 | 15.230.132.0/24 680 | 15.230.133.0/28 681 | 15.230.133.18/31 682 | 15.230.133.20/31 683 | 15.230.134.0/24 684 | 15.230.135.0/24 685 | 15.230.136.0/24 686 | 15.230.137.0/24 687 | 15.230.138.0/24 688 | 15.230.140.0/24 689 | 15.230.141.0/24 690 | 15.230.142.0/24 691 | 15.230.143.0/24 692 | 15.230.144.0/24 693 | 15.230.145.0/24 694 | 15.230.149.2/31 695 | 15.230.150.0/23 696 | 15.230.152.0/24 697 | 15.230.153.0/24 698 | 15.230.154.0/23 699 | 15.230.156.0/24 700 | 15.230.158.0/23 701 | 15.236.0.0/15 702 | 15.253.0.0/16 703 | 15.254.0.0/16 704 | 16.62.0.0/15 705 | 16.162.0.0/15 706 | 16.170.0.0/15 707 | 18.60.0.0/15 708 | 18.64.0.0/14 709 | 18.100.0.0/15 710 | 18.116.0.0/14 711 | 18.130.0.0/16 712 | 18.132.0.0/14 713 | 18.136.0.0/16 714 | 18.138.0.0/15 715 | 18.140.0.0/15 716 | 18.142.0.0/15 717 | 18.144.0.0/15 718 | 18.153.0.0/16 719 | 18.156.0.0/14 720 | 18.162.0.0/16 721 | 18.163.0.0/16 722 | 18.166.0.0/15 723 | 18.168.0.0/14 724 | 18.175.0.0/16 725 | 18.176.0.0/15 726 | 18.178.0.0/16 727 | 18.179.0.0/16 728 | 18.180.0.0/15 729 | 18.182.0.0/16 730 | 18.183.0.0/16 731 | 18.184.0.0/15 732 | 18.188.0.0/16 733 | 18.189.0.0/16 734 | 18.190.0.0/16 735 | 18.191.0.0/16 736 | 18.192.0.0/15 737 | 18.194.0.0/15 738 | 18.196.0.0/15 739 | 18.198.0.0/15 740 | 18.200.0.0/16 741 | 18.201.0.0/16 742 | 18.202.0.0/15 743 | 18.204.0.0/14 744 | 18.208.0.0/13 745 | 18.216.0.0/14 746 | 18.220.0.0/14 747 | 18.224.0.0/14 748 | 18.228.0.0/16 749 | 18.229.0.0/16 750 | 18.230.0.0/16 751 | 18.231.0.0/16 752 | 18.232.0.0/14 753 | 18.236.0.0/15 754 | 18.246.0.0/16 755 | 18.252.0.0/16 756 | 18.253.0.0/16 757 | 23.20.0.0/14 758 | 27.0.0.0/22 759 | 34.192.0.0/12 760 | 34.208.0.0/12 761 | 34.224.0.0/12 762 | 34.240.0.0/13 763 | 34.248.0.0/13 764 | 35.71.64.0/22 765 | 35.71.96.0/24 766 | 35.71.128.0/17 767 | 35.72.0.0/13 768 | 35.80.0.0/12 769 | 35.152.0.0/16 770 | 35.153.0.0/16 771 | 35.154.0.0/16 772 | 35.155.0.0/16 773 | 35.156.0.0/14 774 | 35.160.0.0/13 775 | 35.168.0.0/13 776 | 35.176.0.0/15 777 | 35.178.0.0/15 778 | 35.180.0.0/16 779 | 35.181.0.0/16 780 | 35.182.0.0/15 781 | 36.103.232.0/25 782 | 36.103.232.128/26 783 | 43.249.45.0/24 784 | 43.249.46.0/24 785 | 43.249.47.0/24 786 | 43.250.192.0/24 787 | 43.250.193.0/24 788 | 43.250.194.0/24 789 | 44.192.0.0/11 790 | 44.224.0.0/11 791 | 46.51.128.0/18 792 | 46.51.192.0/20 793 | 46.51.208.0/22 794 | 46.51.216.0/21 795 | 46.51.224.0/19 796 | 46.137.0.0/17 797 | 46.137.128.0/18 798 | 46.137.192.0/19 799 | 46.137.224.0/19 800 | 50.16.0.0/15 801 | 50.18.0.0/16 802 | 50.19.0.0/16 803 | 50.112.0.0/16 804 | 52.0.0.0/15 805 | 52.2.0.0/15 806 | 52.4.0.0/14 807 | 52.8.0.0/16 808 | 52.9.0.0/16 809 | 52.10.0.0/15 810 | 52.12.0.0/15 811 | 52.14.0.0/16 812 | 52.15.0.0/16 813 | 52.16.0.0/15 814 | 52.18.0.0/15 815 | 52.20.0.0/14 816 | 52.24.0.0/14 817 | 52.28.0.0/16 818 | 52.29.0.0/16 819 | 52.30.0.0/15 820 | 52.32.0.0/14 821 | 52.36.0.0/14 822 | 52.40.0.0/14 823 | 52.44.0.0/15 824 | 52.46.0.0/18 825 | 52.46.64.0/20 826 | 52.46.80.0/21 827 | 52.46.88.0/22 828 | 52.46.92.0/22 829 | 52.46.96.0/19 830 | 52.46.128.0/19 831 | 52.46.164.0/23 832 | 52.46.166.0/23 833 | 52.46.168.0/23 834 | 52.46.170.0/23 835 | 52.46.172.0/22 836 | 52.46.176.0/22 837 | 52.46.180.0/22 838 | 52.46.184.0/22 839 | 52.46.192.0/20 840 | 52.46.208.0/21 841 | 52.46.216.0/22 842 | 52.46.220.0/22 843 | 52.46.224.0/20 844 | 52.46.240.0/22 845 | 52.46.249.0/24 846 | 52.46.250.0/23 847 | 52.46.252.0/22 848 | 52.47.0.0/16 849 | 52.48.0.0/14 850 | 52.52.0.0/15 851 | 52.54.0.0/15 852 | 52.56.0.0/16 853 | 52.57.0.0/16 854 | 52.58.0.0/15 855 | 52.60.0.0/16 856 | 52.61.0.0/16 857 | 52.62.0.0/15 858 | 52.64.0.0/17 859 | 52.64.128.0/17 860 | 52.65.0.0/16 861 | 52.66.0.0/16 862 | 52.67.0.0/16 863 | 52.68.0.0/15 864 | 52.70.0.0/15 865 | 52.72.0.0/15 866 | 52.74.0.0/16 867 | 52.75.0.0/16 868 | 52.76.0.0/17 869 | 52.76.128.0/17 870 | 52.77.0.0/16 871 | 52.78.0.0/16 872 | 52.79.0.0/16 873 | 52.80.0.0/16 874 | 52.81.0.0/16 875 | 52.82.0.0/17 876 | 52.82.128.0/19 877 | 52.82.160.0/22 878 | 52.82.164.0/22 879 | 52.82.168.0/24 880 | 52.82.169.0/28 881 | 52.82.169.16/28 882 | 52.82.176.0/22 883 | 52.82.180.0/22 884 | 52.82.184.0/23 885 | 52.82.187.0/24 886 | 52.82.188.0/22 887 | 52.82.192.0/18 888 | 52.83.0.0/16 889 | 52.84.0.0/15 890 | 52.86.0.0/15 891 | 52.88.0.0/15 892 | 52.90.0.0/15 893 | 52.92.16.0/20 894 | 52.92.40.0/21 895 | 52.92.60.0/22 896 | 52.92.72.0/22 897 | 52.92.128.0/17 898 | 52.93.0.0/24 899 | 52.93.1.0/24 900 | 52.93.2.0/24 901 | 52.93.3.0/24 902 | 52.93.4.0/24 903 | 52.93.5.0/24 904 | 52.93.8.0/22 905 | 52.93.16.0/24 906 | 52.93.17.0/24 907 | 52.93.20.0/24 908 | 52.93.38.0/24 909 | 52.93.43.0/24 910 | 52.93.48.0/24 911 | 52.93.50.132/31 912 | 52.93.50.134/31 913 | 52.93.50.136/31 914 | 52.93.50.138/31 915 | 52.93.50.140/31 916 | 52.93.50.142/31 917 | 52.93.50.144/31 918 | 52.93.50.146/31 919 | 52.93.50.148/31 920 | 52.93.50.150/31 921 | 52.93.50.152/31 922 | 52.93.50.154/31 923 | 52.93.50.156/31 924 | 52.93.50.158/31 925 | 52.93.50.160/31 926 | 52.93.50.162/31 927 | 52.93.50.164/31 928 | 52.93.50.166/31 929 | 52.93.50.168/31 930 | 52.93.50.170/31 931 | 52.93.50.172/31 932 | 52.93.50.174/31 933 | 52.93.50.176/31 934 | 52.93.50.178/31 935 | 52.93.50.180/31 936 | 52.93.50.182/31 937 | 52.93.50.184/31 938 | 52.93.50.186/31 939 | 52.93.50.188/31 940 | 52.93.50.190/31 941 | 52.93.50.192/31 942 | 52.93.50.194/31 943 | 52.93.56.0/24 944 | 52.93.57.0/24 945 | 52.93.58.32/28 946 | 52.93.59.0/24 947 | 52.93.60.0/24 948 | 52.93.62.0/24 949 | 52.93.63.0/24 950 | 52.93.64.0/24 951 | 52.93.67.0/24 952 | 52.93.69.0/24 953 | 52.93.73.0/26 954 | 52.93.75.0/24 955 | 52.93.76.0/24 956 | 52.93.78.0/24 957 | 52.93.80.0/24 958 | 52.93.81.0/24 959 | 52.93.87.96/27 960 | 52.93.96.0/24 961 | 52.93.97.0/24 962 | 52.93.98.0/24 963 | 52.93.99.0/24 964 | 52.93.112.0/24 965 | 52.93.137.0/24 966 | 52.93.149.0/24 967 | 52.93.150.0/24 968 | 52.93.151.0/24 969 | 52.93.156.0/22 970 | 52.93.236.0/24 971 | 52.93.237.0/24 972 | 52.93.240.146/31 973 | 52.93.240.148/31 974 | 52.93.240.150/31 975 | 52.93.240.152/31 976 | 52.93.240.154/31 977 | 52.93.240.156/31 978 | 52.93.240.158/31 979 | 52.93.240.160/31 980 | 52.93.240.162/31 981 | 52.93.240.164/31 982 | 52.93.240.166/31 983 | 52.93.240.168/31 984 | 52.93.240.170/31 985 | 52.93.240.172/31 986 | 52.93.240.174/31 987 | 52.93.240.176/31 988 | 52.93.240.178/31 989 | 52.93.240.180/31 990 | 52.93.240.182/31 991 | 52.93.240.184/31 992 | 52.93.240.186/31 993 | 52.93.240.188/31 994 | 52.93.240.190/31 995 | 52.93.240.192/31 996 | 52.93.245.0/24 997 | 52.93.247.0/25 998 | 52.93.248.0/24 999 | 52.93.249.0/24 1000 | 52.93.250.0/23 1001 | 52.93.254.0/24 1002 | 52.94.0.0/22 1003 | 52.94.4.0/24 1004 | 52.94.5.0/24 1005 | 52.94.6.0/24 1006 | 52.94.7.0/24 1007 | 52.94.8.0/24 1008 | 52.94.9.0/24 1009 | 52.94.10.0/24 1010 | 52.94.11.0/24 1011 | 52.94.12.0/24 1012 | 52.94.13.0/24 1013 | 52.94.14.0/24 1014 | 52.94.15.0/24 1015 | 52.94.16.0/24 1016 | 52.94.17.0/24 1017 | 52.94.18.0/24 1018 | 52.94.19.0/24 1019 | 52.94.20.0/24 1020 | 52.94.22.0/24 1021 | 52.94.23.0/24 1022 | 52.94.24.0/23 1023 | 52.94.26.0/23 1024 | 52.94.28.0/23 1025 | 52.94.30.0/24 1026 | 52.94.31.0/24 1027 | 52.94.32.0/20 1028 | 52.94.48.0/20 1029 | 52.94.64.0/22 1030 | 52.94.68.0/24 1031 | 52.94.69.0/24 1032 | 52.94.72.0/22 1033 | 52.94.76.0/22 1034 | 52.94.80.0/20 1035 | 52.94.96.0/20 1036 | 52.94.112.0/22 1037 | 52.94.116.0/22 1038 | 52.94.120.0/22 1039 | 52.94.124.0/22 1040 | 52.94.128.0/22 1041 | 52.94.136.0/21 1042 | 52.94.148.0/22 1043 | 52.94.160.0/20 1044 | 52.94.176.0/20 1045 | 52.94.192.0/22 1046 | 52.94.196.0/24 1047 | 52.94.197.0/24 1048 | 52.94.198.0/28 1049 | 52.94.198.16/28 1050 | 52.94.198.32/28 1051 | 52.94.198.48/28 1052 | 52.94.198.64/28 1053 | 52.94.198.80/28 1054 | 52.94.198.96/28 1055 | 52.94.198.112/28 1056 | 52.94.198.128/28 1057 | 52.94.198.144/28 1058 | 52.94.199.0/24 1059 | 52.94.200.0/24 1060 | 52.94.201.0/26 1061 | 52.94.204.0/23 1062 | 52.94.206.0/23 1063 | 52.94.208.0/21 1064 | 52.94.216.0/21 1065 | 52.94.224.0/20 1066 | 52.94.240.0/22 1067 | 52.94.244.0/22 1068 | 52.94.248.0/28 1069 | 52.94.248.16/28 1070 | 52.94.248.32/28 1071 | 52.94.248.48/28 1072 | 52.94.248.64/28 1073 | 52.94.248.80/28 1074 | 52.94.248.96/28 1075 | 52.94.248.112/28 1076 | 52.94.248.128/28 1077 | 52.94.248.144/28 1078 | 52.94.248.160/28 1079 | 52.94.248.176/28 1080 | 52.94.248.192/28 1081 | 52.94.248.208/28 1082 | 52.94.248.224/28 1083 | 52.94.249.32/28 1084 | 52.94.249.48/28 1085 | 52.94.249.64/28 1086 | 52.94.249.80/28 1087 | 52.94.249.96/28 1088 | 52.94.249.112/28 1089 | 52.94.249.128/28 1090 | 52.94.249.144/28 1091 | 52.94.249.160/28 1092 | 52.94.249.176/28 1093 | 52.94.249.192/28 1094 | 52.94.249.208/28 1095 | 52.94.249.240/28 1096 | 52.94.250.0/28 1097 | 52.94.252.0/23 1098 | 52.94.254.0/23 1099 | 52.95.0.0/20 1100 | 52.95.16.0/21 1101 | 52.95.24.0/22 1102 | 52.95.28.0/24 1103 | 52.95.29.0/26 1104 | 52.95.30.0/23 1105 | 52.95.34.0/24 1106 | 52.95.35.0/24 1107 | 52.95.36.0/22 1108 | 52.95.40.0/24 1109 | 52.95.41.0/24 1110 | 52.95.42.0/24 1111 | 52.95.48.0/22 1112 | 52.95.52.0/22 1113 | 52.95.56.0/22 1114 | 52.95.60.0/24 1115 | 52.95.61.0/24 1116 | 52.95.62.0/24 1117 | 52.95.63.0/24 1118 | 52.95.64.0/20 1119 | 52.95.80.0/20 1120 | 52.95.96.0/22 1121 | 52.95.100.0/22 1122 | 52.95.104.0/22 1123 | 52.95.108.0/23 1124 | 52.95.110.0/24 1125 | 52.95.111.0/24 1126 | 52.95.112.0/20 1127 | 52.95.128.0/21 1128 | 52.95.136.0/23 1129 | 52.95.138.0/24 1130 | 52.95.139.0/24 1131 | 52.95.140.0/23 1132 | 52.95.142.0/23 1133 | 52.95.144.0/24 1134 | 52.95.145.0/24 1135 | 52.95.146.0/23 1136 | 52.95.148.0/23 1137 | 52.95.150.0/24 1138 | 52.95.151.0/24 1139 | 52.95.152.0/23 1140 | 52.95.154.0/23 1141 | 52.95.156.0/24 1142 | 52.95.157.0/24 1143 | 52.95.158.0/23 1144 | 52.95.160.0/23 1145 | 52.95.162.0/24 1146 | 52.95.163.0/24 1147 | 52.95.164.0/23 1148 | 52.95.169.0/24 1149 | 52.95.170.0/23 1150 | 52.95.172.0/23 1151 | 52.95.174.0/24 1152 | 52.95.175.0/24 1153 | 52.95.176.0/24 1154 | 52.95.177.0/24 1155 | 52.95.178.0/23 1156 | 52.95.180.0/24 1157 | 52.95.181.0/24 1158 | 52.95.182.0/23 1159 | 52.95.184.0/23 1160 | 52.95.186.0/24 1161 | 52.95.190.0/24 1162 | 52.95.192.0/20 1163 | 52.95.208.0/22 1164 | 52.95.212.0/22 1165 | 52.95.216.0/22 1166 | 52.95.224.0/24 1167 | 52.95.225.0/24 1168 | 52.95.226.0/24 1169 | 52.95.227.0/24 1170 | 52.95.228.0/24 1171 | 52.95.229.0/24 1172 | 52.95.230.0/24 1173 | 52.95.235.0/24 1174 | 52.95.239.0/24 1175 | 52.95.240.0/24 1176 | 52.95.241.0/24 1177 | 52.95.242.0/24 1178 | 52.95.243.0/24 1179 | 52.95.244.0/24 1180 | 52.95.245.0/24 1181 | 52.95.246.0/24 1182 | 52.95.247.0/24 1183 | 52.95.248.0/24 1184 | 52.95.249.0/24 1185 | 52.95.250.0/24 1186 | 52.95.251.0/24 1187 | 52.95.252.0/24 1188 | 52.95.253.0/24 1189 | 52.95.254.0/24 1190 | 52.95.255.0/28 1191 | 52.95.255.16/28 1192 | 52.95.255.32/28 1193 | 52.95.255.48/28 1194 | 52.95.255.64/28 1195 | 52.95.255.80/28 1196 | 52.95.255.96/28 1197 | 52.95.255.112/28 1198 | 52.95.255.128/28 1199 | 52.95.255.144/28 1200 | 52.119.128.0/20 1201 | 52.119.144.0/21 1202 | 52.119.152.0/22 1203 | 52.119.156.0/22 1204 | 52.119.160.0/20 1205 | 52.119.176.0/21 1206 | 52.119.184.0/22 1207 | 52.119.188.0/22 1208 | 52.119.192.0/22 1209 | 52.119.196.0/22 1210 | 52.119.205.0/24 1211 | 52.119.206.0/23 1212 | 52.119.208.0/23 1213 | 52.119.210.0/23 1214 | 52.119.212.0/23 1215 | 52.119.214.0/23 1216 | 52.119.216.0/21 1217 | 52.119.224.0/21 1218 | 52.119.232.0/21 1219 | 52.119.240.0/21 1220 | 52.119.248.0/24 1221 | 52.119.249.0/24 1222 | 52.119.252.0/22 1223 | 52.124.128.0/17 1224 | 52.144.133.32/27 1225 | 52.144.192.0/26 1226 | 52.144.192.64/26 1227 | 52.144.192.128/26 1228 | 52.144.192.192/26 1229 | 52.144.193.0/26 1230 | 52.144.193.64/26 1231 | 52.144.193.128/26 1232 | 52.144.194.0/26 1233 | 52.144.194.64/26 1234 | 52.144.194.128/26 1235 | 52.144.194.192/26 1236 | 52.144.195.0/26 1237 | 52.144.196.192/26 1238 | 52.144.197.128/26 1239 | 52.144.197.192/26 1240 | 52.144.199.128/26 1241 | 52.144.200.64/26 1242 | 52.144.200.128/26 1243 | 52.144.201.64/26 1244 | 52.144.201.128/26 1245 | 52.144.205.0/26 1246 | 52.144.208.0/31 1247 | 52.144.208.2/31 1248 | 52.144.208.64/26 1249 | 52.144.208.128/26 1250 | 52.144.208.192/26 1251 | 52.144.209.0/26 1252 | 52.144.209.64/26 1253 | 52.144.209.128/26 1254 | 52.144.209.192/26 1255 | 52.144.210.0/26 1256 | 52.144.210.64/26 1257 | 52.144.210.128/26 1258 | 52.144.210.192/26 1259 | 52.144.211.0/26 1260 | 52.144.211.64/26 1261 | 52.144.211.128/26 1262 | 52.144.211.192/31 1263 | 52.144.211.194/31 1264 | 52.144.211.196/31 1265 | 52.144.211.198/31 1266 | 52.144.211.200/31 1267 | 52.144.211.202/31 1268 | 52.144.212.64/26 1269 | 52.144.212.192/26 1270 | 52.144.213.64/26 1271 | 52.144.214.128/26 1272 | 52.144.215.0/31 1273 | 52.144.215.2/31 1274 | 52.144.215.192/31 1275 | 52.144.215.194/31 1276 | 52.144.215.196/31 1277 | 52.144.215.198/31 1278 | 52.144.215.200/31 1279 | 52.144.215.202/31 1280 | 52.144.216.0/31 1281 | 52.144.216.2/31 1282 | 52.144.216.4/31 1283 | 52.144.216.6/31 1284 | 52.144.216.8/31 1285 | 52.144.216.10/31 1286 | 52.144.218.0/26 1287 | 52.144.218.64/26 1288 | 52.144.223.64/26 1289 | 52.144.223.128/26 1290 | 52.144.224.64/26 1291 | 52.144.224.128/26 1292 | 52.144.224.192/26 1293 | 52.144.225.0/26 1294 | 52.144.225.64/26 1295 | 52.144.225.128/26 1296 | 52.144.227.64/26 1297 | 52.144.227.192/26 1298 | 52.144.228.0/31 1299 | 52.144.228.2/31 1300 | 52.144.228.64/26 1301 | 52.144.228.128/26 1302 | 52.144.228.192/26 1303 | 52.144.229.0/26 1304 | 52.144.229.64/26 1305 | 52.144.230.0/26 1306 | 52.144.231.64/26 1307 | 52.144.233.64/31 1308 | 52.144.233.66/31 1309 | 52.144.233.68/31 1310 | 52.144.233.70/31 1311 | 52.144.233.128/31 1312 | 52.144.233.130/31 1313 | 52.144.233.132/31 1314 | 52.144.233.134/31 1315 | 52.144.233.192/26 1316 | 52.192.0.0/15 1317 | 52.194.0.0/15 1318 | 52.196.0.0/14 1319 | 52.200.0.0/13 1320 | 52.208.0.0/13 1321 | 52.216.0.0/15 1322 | 52.218.0.0/17 1323 | 52.218.128.0/17 1324 | 52.219.0.0/20 1325 | 52.219.16.0/22 1326 | 52.219.20.0/22 1327 | 52.219.24.0/21 1328 | 52.219.32.0/21 1329 | 52.219.40.0/22 1330 | 52.219.44.0/22 1331 | 52.219.48.0/22 1332 | 52.219.56.0/22 1333 | 52.219.60.0/23 1334 | 52.219.62.0/23 1335 | 52.219.64.0/22 1336 | 52.219.68.0/22 1337 | 52.219.72.0/22 1338 | 52.219.80.0/20 1339 | 52.219.96.0/20 1340 | 52.219.112.0/21 1341 | 52.219.120.0/22 1342 | 52.219.124.0/22 1343 | 52.219.128.0/22 1344 | 52.219.132.0/22 1345 | 52.219.136.0/22 1346 | 52.219.140.0/24 1347 | 52.219.144.0/22 1348 | 52.219.148.0/23 1349 | 52.219.152.0/22 1350 | 52.219.156.0/22 1351 | 52.219.160.0/23 1352 | 52.219.164.0/22 1353 | 52.219.168.0/24 1354 | 52.219.169.0/24 1355 | 52.219.170.0/23 1356 | 52.219.172.0/22 1357 | 52.220.0.0/15 1358 | 52.222.0.0/17 1359 | 52.222.128.0/17 1360 | 52.223.0.0/17 1361 | 54.64.0.0/15 1362 | 54.66.0.0/16 1363 | 54.67.0.0/16 1364 | 54.68.0.0/14 1365 | 54.72.0.0/15 1366 | 54.74.0.0/15 1367 | 54.76.0.0/15 1368 | 54.78.0.0/16 1369 | 54.79.0.0/16 1370 | 54.80.0.0/13 1371 | 54.88.0.0/14 1372 | 54.92.0.0/17 1373 | 54.92.128.0/17 1374 | 54.93.0.0/16 1375 | 54.94.0.0/16 1376 | 54.95.0.0/16 1377 | 54.144.0.0/14 1378 | 54.148.0.0/15 1379 | 54.150.0.0/16 1380 | 54.151.0.0/17 1381 | 54.151.128.0/17 1382 | 54.152.0.0/16 1383 | 54.153.0.0/17 1384 | 54.153.128.0/17 1385 | 54.154.0.0/16 1386 | 54.155.0.0/16 1387 | 54.156.0.0/14 1388 | 54.160.0.0/13 1389 | 54.168.0.0/16 1390 | 54.169.0.0/16 1391 | 54.170.0.0/15 1392 | 54.172.0.0/15 1393 | 54.174.0.0/15 1394 | 54.176.0.0/15 1395 | 54.178.0.0/16 1396 | 54.179.0.0/16 1397 | 54.180.0.0/15 1398 | 54.182.0.0/16 1399 | 54.183.0.0/16 1400 | 54.184.0.0/13 1401 | 54.192.0.0/16 1402 | 54.193.0.0/16 1403 | 54.194.0.0/15 1404 | 54.196.0.0/15 1405 | 54.198.0.0/16 1406 | 54.199.0.0/16 1407 | 54.200.0.0/15 1408 | 54.202.0.0/15 1409 | 54.204.0.0/15 1410 | 54.206.0.0/16 1411 | 54.207.0.0/16 1412 | 54.208.0.0/15 1413 | 54.210.0.0/15 1414 | 54.212.0.0/15 1415 | 54.214.0.0/16 1416 | 54.215.0.0/16 1417 | 54.216.0.0/15 1418 | 54.218.0.0/16 1419 | 54.219.0.0/16 1420 | 54.220.0.0/16 1421 | 54.221.0.0/16 1422 | 54.222.0.0/19 1423 | 54.222.32.0/22 1424 | 54.222.36.0/22 1425 | 54.222.48.0/22 1426 | 54.222.52.0/22 1427 | 54.222.57.0/24 1428 | 54.222.58.0/28 1429 | 54.222.58.32/28 1430 | 54.222.58.48/28 1431 | 54.222.59.0/24 1432 | 54.222.64.0/23 1433 | 54.222.66.0/23 1434 | 54.222.68.0/23 1435 | 54.222.70.0/24 1436 | 54.222.71.0/24 1437 | 54.222.76.0/22 1438 | 54.222.80.0/23 1439 | 54.222.128.0/17 1440 | 54.223.0.0/16 1441 | 54.224.0.0/15 1442 | 54.226.0.0/15 1443 | 54.228.0.0/16 1444 | 54.229.0.0/16 1445 | 54.230.0.0/17 1446 | 54.230.128.0/18 1447 | 54.230.192.0/21 1448 | 54.230.200.0/21 1449 | 54.230.208.0/20 1450 | 54.230.224.0/19 1451 | 54.231.0.0/17 1452 | 54.231.128.0/19 1453 | 54.231.192.0/20 1454 | 54.231.232.0/21 1455 | 54.231.244.0/22 1456 | 54.231.248.0/22 1457 | 54.231.252.0/24 1458 | 54.232.0.0/16 1459 | 54.233.0.0/18 1460 | 54.233.64.0/18 1461 | 54.233.128.0/17 1462 | 54.234.0.0/15 1463 | 54.236.0.0/15 1464 | 54.238.0.0/16 1465 | 54.239.0.0/28 1466 | 54.239.0.16/28 1467 | 54.239.0.32/28 1468 | 54.239.0.48/28 1469 | 54.239.0.64/28 1470 | 54.239.0.80/28 1471 | 54.239.0.96/28 1472 | 54.239.0.112/28 1473 | 54.239.0.128/28 1474 | 54.239.0.144/28 1475 | 54.239.0.160/28 1476 | 54.239.0.176/28 1477 | 54.239.0.192/28 1478 | 54.239.0.208/28 1479 | 54.239.0.224/28 1480 | 54.239.0.240/28 1481 | 54.239.1.0/28 1482 | 54.239.1.16/28 1483 | 54.239.1.32/28 1484 | 54.239.1.48/28 1485 | 54.239.1.64/28 1486 | 54.239.1.80/28 1487 | 54.239.1.96/28 1488 | 54.239.1.112/28 1489 | 54.239.1.128/28 1490 | 54.239.1.144/28 1491 | 54.239.1.160/28 1492 | 54.239.1.192/28 1493 | 54.239.1.208/28 1494 | 54.239.2.0/23 1495 | 54.239.4.0/22 1496 | 54.239.8.0/21 1497 | 54.239.16.0/20 1498 | 54.239.32.0/21 1499 | 54.239.40.152/29 1500 | 54.239.48.0/22 1501 | 54.239.52.0/23 1502 | 54.239.54.0/23 1503 | 54.239.56.0/21 1504 | 54.239.64.0/21 1505 | 54.239.96.0/24 1506 | 54.239.98.0/24 1507 | 54.239.99.0/24 1508 | 54.239.100.0/23 1509 | 54.239.102.162/31 1510 | 54.239.102.232/31 1511 | 54.239.102.234/31 1512 | 54.239.102.236/31 1513 | 54.239.104.0/23 1514 | 54.239.106.0/23 1515 | 54.239.108.0/22 1516 | 54.239.112.0/24 1517 | 54.239.113.0/24 1518 | 54.239.115.0/25 1519 | 54.239.116.0/22 1520 | 54.239.120.0/21 1521 | 54.239.128.0/18 1522 | 54.239.192.0/19 1523 | 54.240.17.0/24 1524 | 54.240.96.0/19 1525 | 54.240.128.0/18 1526 | 54.240.192.0/22 1527 | 54.240.196.0/24 1528 | 54.240.197.0/24 1529 | 54.240.198.0/24 1530 | 54.240.199.0/24 1531 | 54.240.200.0/24 1532 | 54.240.202.0/24 1533 | 54.240.203.0/24 1534 | 54.240.204.0/22 1535 | 54.240.208.0/22 1536 | 54.240.212.0/22 1537 | 54.240.216.0/22 1538 | 54.240.220.0/22 1539 | 54.240.225.0/24 1540 | 54.240.226.0/24 1541 | 54.240.227.0/24 1542 | 54.240.228.0/23 1543 | 54.240.230.0/23 1544 | 54.240.232.0/22 1545 | 54.240.241.0/24 1546 | 54.240.244.0/22 1547 | 54.240.248.0/21 1548 | 54.241.0.0/16 1549 | 54.242.0.0/15 1550 | 54.244.0.0/16 1551 | 54.245.0.0/16 1552 | 54.246.0.0/16 1553 | 54.247.0.0/16 1554 | 54.248.0.0/15 1555 | 54.250.0.0/16 1556 | 54.251.0.0/16 1557 | 54.252.0.0/16 1558 | 54.253.0.0/16 1559 | 54.254.0.0/16 1560 | 54.255.0.0/16 1561 | 58.254.138.0/25 1562 | 58.254.138.128/26 1563 | 63.32.0.0/14 1564 | 63.246.112.0/24 1565 | 63.246.113.0/24 1566 | 63.246.114.0/23 1567 | 63.246.119.0/24 1568 | 64.187.128.0/20 1569 | 64.252.128.0/18 1570 | 65.0.0.0/14 1571 | 65.8.0.0/16 1572 | 65.9.0.0/17 1573 | 65.9.128.0/18 1574 | 67.202.0.0/18 1575 | 68.66.112.0/20 1576 | 68.79.0.0/18 1577 | 69.107.6.112/29 1578 | 69.107.6.120/29 1579 | 69.107.6.160/29 1580 | 69.107.6.168/29 1581 | 69.107.6.200/29 1582 | 69.107.6.208/29 1583 | 69.107.6.216/29 1584 | 69.107.6.224/29 1585 | 69.107.7.0/29 1586 | 69.107.7.8/29 1587 | 69.107.7.16/29 1588 | 69.107.7.32/29 1589 | 69.107.7.40/29 1590 | 69.230.192.0/18 1591 | 69.231.128.0/18 1592 | 69.234.192.0/18 1593 | 69.235.128.0/18 1594 | 70.132.0.0/18 1595 | 70.224.192.0/18 1596 | 70.232.92.0/22 1597 | 70.232.96.0/20 1598 | 70.232.112.0/21 1599 | 70.232.120.0/22 1600 | 70.232.124.0/22 1601 | 71.152.0.0/17 1602 | 72.21.192.0/19 1603 | 72.41.0.0/20 1604 | 72.44.32.0/19 1605 | 75.2.0.0/17 1606 | 75.101.128.0/17 1607 | 76.223.0.0/17 1608 | 79.125.0.0/17 1609 | 87.238.80.0/21 1610 | 96.127.0.0/17 1611 | 99.77.28.0/22 1612 | 99.77.32.0/20 1613 | 99.77.48.0/21 1614 | 99.77.247.0/24 1615 | 99.77.250.0/24 1616 | 99.77.253.0/24 1617 | 99.77.254.0/24 1618 | 99.78.128.0/20 1619 | 99.78.144.0/21 1620 | 99.78.152.0/22 1621 | 99.78.156.0/22 1622 | 99.78.160.0/21 1623 | 99.78.168.0/23 1624 | 99.78.170.0/23 1625 | 99.78.172.0/24 1626 | 99.78.176.0/21 1627 | 99.78.184.0/22 1628 | 99.78.188.0/22 1629 | 99.78.192.0/22 1630 | 99.78.196.0/22 1631 | 99.78.208.0/22 1632 | 99.78.212.0/22 1633 | 99.78.216.0/22 1634 | 99.78.220.0/22 1635 | 99.78.228.0/22 1636 | 99.78.232.0/21 1637 | 99.78.240.0/20 1638 | 99.79.0.0/16 1639 | 99.80.0.0/15 1640 | 99.82.128.0/20 1641 | 99.82.144.0/21 1642 | 99.82.152.0/22 1643 | 99.82.156.0/22 1644 | 99.82.160.0/24 1645 | 99.82.161.0/24 1646 | 99.82.162.0/24 1647 | 99.82.163.0/24 1648 | 99.82.164.0/24 1649 | 99.82.165.0/24 1650 | 99.82.166.0/24 1651 | 99.82.167.0/24 1652 | 99.82.168.0/24 1653 | 99.82.169.0/24 1654 | 99.82.170.0/24 1655 | 99.82.171.0/24 1656 | 99.82.172.0/24 1657 | 99.82.173.0/24 1658 | 99.82.174.0/24 1659 | 99.82.175.0/24 1660 | 99.82.176.0/21 1661 | 99.82.184.0/22 1662 | 99.82.188.0/22 1663 | 99.83.64.0/21 1664 | 99.83.72.0/22 1665 | 99.83.76.0/22 1666 | 99.83.80.0/22 1667 | 99.83.88.0/21 1668 | 99.83.96.0/24 1669 | 99.83.97.0/24 1670 | 99.83.98.0/24 1671 | 99.83.99.0/24 1672 | 99.83.100.0/24 1673 | 99.83.101.0/24 1674 | 99.83.128.0/17 1675 | 99.84.0.0/16 1676 | 99.86.0.0/16 1677 | 99.87.0.0/22 1678 | 99.87.4.0/22 1679 | 99.87.8.0/21 1680 | 99.87.16.0/20 1681 | 99.87.32.0/22 1682 | 99.150.0.0/21 1683 | 99.150.8.0/21 1684 | 99.150.16.0/21 1685 | 99.150.24.0/21 1686 | 99.150.32.0/21 1687 | 99.150.40.0/21 1688 | 99.150.48.0/21 1689 | 99.150.56.0/21 1690 | 99.150.64.0/21 1691 | 99.150.72.0/21 1692 | 99.150.80.0/21 1693 | 99.150.88.0/21 1694 | 99.150.96.0/21 1695 | 99.150.104.0/21 1696 | 99.150.112.0/21 1697 | 99.151.64.0/21 1698 | 99.151.80.0/21 1699 | 99.151.88.0/21 1700 | 99.151.96.0/21 1701 | 99.151.104.0/21 1702 | 99.151.112.0/21 1703 | 99.151.120.0/21 1704 | 99.151.128.0/21 1705 | 99.151.136.0/21 1706 | 99.151.144.0/21 1707 | 100.20.0.0/14 1708 | 100.24.0.0/13 1709 | 103.4.8.0/21 1710 | 103.8.172.0/22 1711 | 103.246.148.0/23 1712 | 103.246.150.0/23 1713 | 107.20.0.0/14 1714 | 107.176.0.0/15 1715 | 108.128.0.0/13 1716 | 108.136.0.0/15 1717 | 108.166.224.0/21 1718 | 108.166.232.0/21 1719 | 108.166.240.0/21 1720 | 108.166.248.0/21 1721 | 108.175.48.0/22 1722 | 108.175.52.0/22 1723 | 108.175.56.0/22 1724 | 108.175.60.0/22 1725 | 116.129.226.0/25 1726 | 116.129.226.128/26 1727 | 118.193.97.64/26 1728 | 118.193.97.128/25 1729 | 119.147.182.0/25 1730 | 119.147.182.128/26 1731 | 120.52.12.64/26 1732 | 120.52.22.96/27 1733 | 120.52.39.128/27 1734 | 120.52.153.192/26 1735 | 120.232.236.0/25 1736 | 120.232.236.128/26 1737 | 120.253.240.192/26 1738 | 120.253.241.160/27 1739 | 120.253.245.128/26 1740 | 120.253.245.192/27 1741 | 122.248.192.0/18 1742 | 130.176.0.0/17 1743 | 130.176.128.0/18 1744 | 130.176.192.0/19 1745 | 130.176.224.0/20 1746 | 130.176.254.0/24 1747 | 130.176.255.0/24 1748 | 140.179.0.0/16 1749 | 143.204.0.0/16 1750 | 144.220.0.0/16 1751 | 150.222.2.0/24 1752 | 150.222.3.192/31 1753 | 150.222.3.194/31 1754 | 150.222.3.196/31 1755 | 150.222.3.198/31 1756 | 150.222.3.200/31 1757 | 150.222.3.202/31 1758 | 150.222.3.204/31 1759 | 150.222.3.206/31 1760 | 150.222.3.208/31 1761 | 150.222.3.210/31 1762 | 150.222.3.212/31 1763 | 150.222.3.214/31 1764 | 150.222.3.216/31 1765 | 150.222.3.218/31 1766 | 150.222.3.220/31 1767 | 150.222.3.222/31 1768 | 150.222.3.224/31 1769 | 150.222.3.226/31 1770 | 150.222.3.228/31 1771 | 150.222.3.230/31 1772 | 150.222.3.232/31 1773 | 150.222.3.234/31 1774 | 150.222.3.236/31 1775 | 150.222.3.238/31 1776 | 150.222.3.240/31 1777 | 150.222.3.242/31 1778 | 150.222.3.244/31 1779 | 150.222.3.246/31 1780 | 150.222.3.248/31 1781 | 150.222.3.250/31 1782 | 150.222.3.252/31 1783 | 150.222.3.254/31 1784 | 150.222.5.0/24 1785 | 150.222.6.0/24 1786 | 150.222.7.0/24 1787 | 150.222.10.0/24 1788 | 150.222.11.0/31 1789 | 150.222.12.0/24 1790 | 150.222.13.0/24 1791 | 150.222.14.72/31 1792 | 150.222.15.128/31 1793 | 150.222.15.130/31 1794 | 150.222.28.106/31 1795 | 150.222.28.108/31 1796 | 150.222.28.110/31 1797 | 150.222.28.112/31 1798 | 150.222.28.114/31 1799 | 150.222.28.116/31 1800 | 150.222.28.118/31 1801 | 150.222.28.120/31 1802 | 150.222.28.122/31 1803 | 150.222.28.124/31 1804 | 150.222.28.126/31 1805 | 150.222.28.128/31 1806 | 150.222.28.130/31 1807 | 150.222.28.132/31 1808 | 150.222.28.134/31 1809 | 150.222.28.136/31 1810 | 150.222.66.0/24 1811 | 150.222.67.0/24 1812 | 150.222.69.0/24 1813 | 150.222.70.0/24 1814 | 150.222.71.0/24 1815 | 150.222.72.0/24 1816 | 150.222.73.0/24 1817 | 150.222.74.0/24 1818 | 150.222.75.0/24 1819 | 150.222.76.0/24 1820 | 150.222.77.0/24 1821 | 150.222.78.0/24 1822 | 150.222.79.0/24 1823 | 150.222.80.0/24 1824 | 150.222.81.0/24 1825 | 150.222.82.0/24 1826 | 150.222.83.0/24 1827 | 150.222.84.0/24 1828 | 150.222.85.0/24 1829 | 150.222.87.0/24 1830 | 150.222.88.0/24 1831 | 150.222.89.0/24 1832 | 150.222.90.0/24 1833 | 150.222.91.0/24 1834 | 150.222.92.0/22 1835 | 150.222.96.0/24 1836 | 150.222.97.0/24 1837 | 150.222.98.0/24 1838 | 150.222.99.0/24 1839 | 150.222.100.0/24 1840 | 150.222.101.0/24 1841 | 150.222.102.0/24 1842 | 150.222.104.0/24 1843 | 150.222.105.0/24 1844 | 150.222.106.0/24 1845 | 150.222.108.0/24 1846 | 150.222.109.0/24 1847 | 150.222.110.0/24 1848 | 150.222.112.0/24 1849 | 150.222.113.0/24 1850 | 150.222.114.0/24 1851 | 150.222.115.0/24 1852 | 150.222.116.0/24 1853 | 150.222.117.0/24 1854 | 150.222.118.0/24 1855 | 150.222.119.0/24 1856 | 150.222.120.20/31 1857 | 150.222.120.62/31 1858 | 150.222.120.224/31 1859 | 150.222.120.226/31 1860 | 150.222.120.228/31 1861 | 150.222.120.230/31 1862 | 150.222.120.232/31 1863 | 150.222.120.234/31 1864 | 150.222.120.240/31 1865 | 150.222.120.242/31 1866 | 150.222.120.244/31 1867 | 150.222.120.246/31 1868 | 150.222.120.248/31 1869 | 150.222.120.250/31 1870 | 150.222.121.0/24 1871 | 150.222.122.92/31 1872 | 150.222.122.94/31 1873 | 150.222.122.96/31 1874 | 150.222.122.98/31 1875 | 150.222.122.100/31 1876 | 150.222.122.102/31 1877 | 150.222.122.104/31 1878 | 150.222.122.106/31 1879 | 150.222.122.108/31 1880 | 150.222.122.110/31 1881 | 150.222.122.112/31 1882 | 150.222.122.114/31 1883 | 150.222.122.116/31 1884 | 150.222.129.20/31 1885 | 150.222.129.62/31 1886 | 150.222.129.110/31 1887 | 150.222.129.112/31 1888 | 150.222.129.114/31 1889 | 150.222.129.116/31 1890 | 150.222.129.118/31 1891 | 150.222.129.120/31 1892 | 150.222.129.122/31 1893 | 150.222.129.124/31 1894 | 150.222.129.126/31 1895 | 150.222.129.128/31 1896 | 150.222.129.130/31 1897 | 150.222.129.132/31 1898 | 150.222.129.134/31 1899 | 150.222.129.136/31 1900 | 150.222.129.138/31 1901 | 150.222.129.140/31 1902 | 150.222.129.142/31 1903 | 150.222.129.152/31 1904 | 150.222.129.154/31 1905 | 150.222.129.156/31 1906 | 150.222.129.158/31 1907 | 150.222.129.240/31 1908 | 150.222.129.242/31 1909 | 150.222.129.244/31 1910 | 150.222.129.246/31 1911 | 150.222.133.0/24 1912 | 150.222.134.0/24 1913 | 150.222.135.0/24 1914 | 150.222.136.0/24 1915 | 150.222.138.0/24 1916 | 150.222.139.116/30 1917 | 150.222.139.120/30 1918 | 150.222.139.124/30 1919 | 150.222.140.0/24 1920 | 150.222.141.0/24 1921 | 150.222.142.0/24 1922 | 150.222.143.0/24 1923 | 150.222.164.208/30 1924 | 150.222.164.220/31 1925 | 150.222.176.0/22 1926 | 150.222.180.0/24 1927 | 150.222.196.0/24 1928 | 150.222.199.0/25 1929 | 150.222.202.0/24 1930 | 150.222.203.0/24 1931 | 150.222.204.0/24 1932 | 150.222.205.0/24 1933 | 150.222.206.0/24 1934 | 150.222.207.0/24 1935 | 150.222.208.66/31 1936 | 150.222.208.68/31 1937 | 150.222.208.70/31 1938 | 150.222.208.72/31 1939 | 150.222.208.74/31 1940 | 150.222.208.76/31 1941 | 150.222.208.78/31 1942 | 150.222.208.80/31 1943 | 150.222.208.82/31 1944 | 150.222.208.84/31 1945 | 150.222.208.86/31 1946 | 150.222.208.88/31 1947 | 150.222.208.90/31 1948 | 150.222.208.92/31 1949 | 150.222.208.94/31 1950 | 150.222.208.96/31 1951 | 150.222.210.0/24 1952 | 150.222.212.0/24 1953 | 150.222.214.0/24 1954 | 150.222.215.0/24 1955 | 150.222.217.228/30 1956 | 150.222.217.232/31 1957 | 150.222.217.248/30 1958 | 150.222.218.0/24 1959 | 150.222.219.0/24 1960 | 150.222.220.0/24 1961 | 150.222.221.0/24 1962 | 150.222.222.0/24 1963 | 150.222.223.0/24 1964 | 150.222.224.0/24 1965 | 150.222.226.0/24 1966 | 150.222.227.0/24 1967 | 150.222.228.0/24 1968 | 150.222.229.0/24 1969 | 150.222.230.94/31 1970 | 150.222.230.96/31 1971 | 150.222.230.98/31 1972 | 150.222.230.100/31 1973 | 150.222.230.102/31 1974 | 150.222.230.104/31 1975 | 150.222.230.106/31 1976 | 150.222.230.108/31 1977 | 150.222.230.110/31 1978 | 150.222.230.112/31 1979 | 150.222.230.114/31 1980 | 150.222.230.116/31 1981 | 150.222.230.118/31 1982 | 150.222.230.120/31 1983 | 150.222.230.122/31 1984 | 150.222.230.124/31 1985 | 150.222.231.198/31 1986 | 150.222.231.200/31 1987 | 150.222.232.96/28 1988 | 150.222.233.0/24 1989 | 150.222.234.0/24 1990 | 150.222.235.0/24 1991 | 150.222.236.0/24 1992 | 150.222.237.0/24 1993 | 150.222.239.0/24 1994 | 150.222.242.84/31 1995 | 150.222.242.214/31 1996 | 150.222.245.122/31 1997 | 157.175.0.0/16 1998 | 160.1.0.0/16 1999 | 161.189.0.0/16 2000 | 162.213.232.0/24 2001 | 162.213.233.0/24 2002 | 162.213.234.0/23 2003 | 162.250.236.0/24 2004 | 162.250.237.0/24 2005 | 162.250.238.0/23 2006 | 172.96.97.0/24 2007 | 172.96.98.0/24 2008 | 172.96.110.0/24 2009 | 174.129.0.0/16 2010 | 175.41.128.0/18 2011 | 175.41.192.0/18 2012 | 176.32.64.0/19 2013 | 176.32.96.0/21 2014 | 176.32.104.0/21 2015 | 176.32.112.0/21 2016 | 176.32.120.0/22 2017 | 176.32.124.128/25 2018 | 176.32.125.0/25 2019 | 176.32.125.128/26 2020 | 176.32.125.192/27 2021 | 176.32.125.224/31 2022 | 176.32.125.226/31 2023 | 176.32.125.228/31 2024 | 176.32.125.230/31 2025 | 176.32.125.232/31 2026 | 176.32.125.234/31 2027 | 176.32.125.236/31 2028 | 176.32.125.238/31 2029 | 176.32.125.240/31 2030 | 176.32.125.242/31 2031 | 176.32.125.244/31 2032 | 176.32.125.246/31 2033 | 176.32.125.248/31 2034 | 176.32.125.250/31 2035 | 176.32.125.252/31 2036 | 176.32.125.254/31 2037 | 176.34.0.0/19 2038 | 176.34.32.0/19 2039 | 176.34.64.0/18 2040 | 176.34.128.0/17 2041 | 177.71.128.0/17 2042 | 177.72.240.0/21 2043 | 178.236.0.0/20 2044 | 180.163.57.0/25 2045 | 180.163.57.128/26 2046 | 184.72.0.0/18 2047 | 184.72.64.0/18 2048 | 184.72.128.0/17 2049 | 184.73.0.0/16 2050 | 184.169.128.0/17 2051 | 185.48.120.0/22 2052 | 185.143.16.0/24 2053 | 195.17.0.0/24 2054 | 198.99.2.0/24 2055 | 199.127.232.0/22 2056 | 203.83.220.0/22 2057 | 204.236.128.0/18 2058 | 204.236.192.0/18 2059 | 204.246.160.0/22 2060 | 204.246.164.0/22 2061 | 204.246.168.0/22 2062 | 204.246.172.0/24 2063 | 204.246.173.0/24 2064 | 204.246.174.0/23 2065 | 204.246.176.0/20 2066 | 205.251.192.0/21 2067 | 205.251.200.0/21 2068 | 205.251.208.0/20 2069 | 205.251.224.0/22 2070 | 205.251.228.0/22 2071 | 205.251.232.0/22 2072 | 205.251.236.0/22 2073 | 205.251.240.0/22 2074 | 205.251.244.0/23 2075 | 205.251.246.0/24 2076 | 205.251.247.0/24 2077 | 205.251.248.0/24 2078 | 205.251.249.0/24 2079 | 205.251.250.0/23 2080 | 205.251.252.0/23 2081 | 205.251.254.0/24 2082 | 207.171.160.0/20 2083 | 207.171.176.0/20 2084 | 208.86.88.0/23 2085 | 208.86.90.0/23 2086 | 208.110.48.0/20 2087 | 209.54.176.0/21 2088 | 209.54.184.0/21 2089 | 216.137.32.0/19 2090 | 216.182.224.0/21 2091 | 216.182.232.0/22 2092 | 216.182.236.0/23 2093 | 216.182.238.0/23 2094 | 223.71.11.0/27 2095 | 223.71.71.96/27 2096 | 223.71.71.128/25 2097 | # microsoft (office 365, skype, azure) 2098 | 13.64.0.0/16 2099 | 13.65.0.0/16 2100 | 13.66.0.0/17 2101 | 13.66.128.0/17 2102 | 13.67.0.0/17 2103 | 13.67.128.0/20 2104 | 13.67.144.0/21 2105 | 13.67.152.0/24 2106 | 13.67.153.0/28 2107 | 13.67.153.16/28 2108 | 13.67.153.32/27 2109 | 13.67.153.64/26 2110 | 13.67.153.128/25 2111 | 13.67.154.0/24 2112 | 13.67.155.0/24 2113 | 13.67.156.0/22 2114 | 13.67.160.0/19 2115 | 13.67.192.0/18 2116 | 13.68.0.0/17 2117 | 13.68.128.0/17 2118 | 13.69.0.0/17 2119 | 13.69.128.0/17 2120 | 13.70.0.0/18 2121 | 13.70.64.0/18 2122 | 13.70.128.0/18 2123 | 13.70.192.0/18 2124 | 13.71.0.0/18 2125 | 13.71.64.0/18 2126 | 13.71.128.0/19 2127 | 13.71.160.0/19 2128 | 13.71.192.0/18 2129 | 13.72.64.0/18 2130 | 13.72.192.0/19 2131 | 13.72.224.0/19 2132 | 13.73.0.0/19 2133 | 13.73.32.0/19 2134 | 13.73.96.0/19 2135 | 13.73.128.0/18 2136 | 13.73.192.0/20 2137 | 13.73.224.0/21 2138 | 13.73.232.0/21 2139 | 13.73.240.0/20 2140 | 13.74.0.0/16 2141 | 13.75.0.0/17 2142 | 13.75.128.0/17 2143 | 13.76.0.0/16 2144 | 13.77.0.0/18 2145 | 13.77.64.0/18 2146 | 13.77.128.0/18 2147 | 13.77.192.0/19 2148 | 13.78.0.0/17 2149 | 13.78.128.0/17 2150 | 13.79.0.0/16 2151 | 13.80.0.0/15 2152 | 13.82.0.0/16 2153 | 13.83.0.0/16 2154 | 13.84.0.0/15 2155 | 13.86.0.0/17 2156 | 13.86.128.0/17 2157 | 13.87.0.0/18 2158 | 13.87.64.0/18 2159 | 13.87.128.0/17 2160 | 13.88.0.0/17 2161 | 13.88.128.0/18 2162 | 13.88.200.0/21 2163 | 13.88.208.0/20 2164 | 13.88.224.0/19 2165 | 13.89.0.0/16 2166 | 13.90.0.0/16 2167 | 13.91.0.0/16 2168 | 13.92.0.0/16 2169 | 13.93.0.0/17 2170 | 13.93.128.0/17 2171 | 13.94.0.0/18 2172 | 13.94.64.0/18 2173 | 13.94.128.0/17 2174 | 13.95.0.0/16 2175 | 13.104.129.0/26 2176 | 13.104.129.64/26 2177 | 13.104.129.128/26 2178 | 13.104.129.192/26 2179 | 13.104.144.0/27 2180 | 13.104.144.32/27 2181 | 13.104.144.64/27 2182 | 13.104.144.96/27 2183 | 13.104.144.128/27 2184 | 13.104.144.160/27 2185 | 13.104.144.192/27 2186 | 13.104.144.224/27 2187 | 13.104.145.0/26 2188 | 13.104.145.64/26 2189 | 13.104.145.128/27 2190 | 13.104.145.160/27 2191 | 13.104.145.192/26 2192 | 13.104.146.0/26 2193 | 13.104.146.64/26 2194 | 13.104.146.128/25 2195 | 13.104.147.0/25 2196 | 13.104.147.128/25 2197 | 13.104.148.0/25 2198 | 13.104.148.128/25 2199 | 13.104.149.0/26 2200 | 13.104.149.64/26 2201 | 13.104.149.128/25 2202 | 13.104.150.0/25 2203 | 13.104.150.128/26 2204 | 13.104.150.192/26 2205 | 13.104.151.0/26 2206 | 13.104.151.64/26 2207 | 13.104.151.128/26 2208 | 13.104.151.192/26 2209 | 13.104.152.0/25 2210 | 13.104.152.128/25 2211 | 13.104.153.0/27 2212 | 13.104.153.32/28 2213 | 13.104.153.48/28 2214 | 13.104.153.64/27 2215 | 13.104.153.96/27 2216 | 13.104.153.128/26 2217 | 13.104.153.192/26 2218 | 13.104.154.0/25 2219 | 13.104.154.128/25 2220 | 13.104.155.0/27 2221 | 13.104.155.32/27 2222 | 13.104.155.64/26 2223 | 13.104.155.128/26 2224 | 13.104.155.192/26 2225 | 13.104.156.0/24 2226 | 13.104.157.0/25 2227 | 13.104.157.128/25 2228 | 13.104.158.0/28 2229 | 13.104.158.16/28 2230 | 13.104.158.32/27 2231 | 13.104.158.64/26 2232 | 13.104.158.128/27 2233 | 13.104.158.160/28 2234 | 13.104.158.176/28 2235 | 13.104.158.192/27 2236 | 13.104.158.224/27 2237 | 13.104.159.0/25 2238 | 13.104.159.128/26 2239 | 13.104.159.192/26 2240 | 13.104.192.0/21 2241 | 13.104.208.0/26 2242 | 13.104.208.64/27 2243 | 13.104.208.96/27 2244 | 13.104.208.128/27 2245 | 13.104.208.160/28 2246 | 13.104.208.176/28 2247 | 13.104.208.192/26 2248 | 13.104.209.0/24 2249 | 13.104.210.0/24 2250 | 13.104.211.0/25 2251 | 13.104.211.128/26 2252 | 13.104.211.192/26 2253 | 13.104.212.0/26 2254 | 13.104.212.64/26 2255 | 13.104.212.128/26 2256 | 13.104.212.192/26 2257 | 13.104.213.0/25 2258 | 13.104.213.128/25 2259 | 13.104.214.0/25 2260 | 13.104.214.128/25 2261 | 13.104.215.0/25 2262 | 13.104.215.128/25 2263 | 13.104.216.0/24 2264 | 13.104.217.0/25 2265 | 13.104.217.128/25 2266 | 13.104.218.0/25 2267 | 13.104.218.128/25 2268 | 13.104.219.0/25 2269 | 13.104.219.128/25 2270 | 13.104.220.0/25 2271 | 13.104.220.128/25 2272 | 13.104.221.0/24 2273 | 13.104.222.0/24 2274 | 13.104.223.0/25 2275 | 13.104.223.128/26 2276 | 13.104.223.192/26 2277 | 13.105.14.0/25 2278 | 13.105.14.128/26 2279 | 13.105.14.192/26 2280 | 13.105.16.0/25 2281 | 13.105.16.192/26 2282 | 13.105.17.0/26 2283 | 13.105.17.64/26 2284 | 13.105.17.128/26 2285 | 13.105.17.192/26 2286 | 13.105.18.0/26 2287 | 13.105.18.64/26 2288 | 13.105.18.160/27 2289 | 13.105.18.192/26 2290 | 13.105.19.0/25 2291 | 13.105.19.128/25 2292 | 13.105.20.0/25 2293 | 13.105.20.128/26 2294 | 13.105.20.192/26 2295 | 13.105.21.0/24 2296 | 13.105.22.0/24 2297 | 13.105.23.0/26 2298 | 13.105.23.64/26 2299 | 13.105.23.128/25 2300 | 13.105.24.0/24 2301 | 13.105.25.0/24 2302 | 13.105.26.0/24 2303 | 13.105.27.0/25 2304 | 13.105.36.0/27 2305 | 13.105.36.32/28 2306 | 13.105.36.48/28 2307 | 13.105.36.64/27 2308 | 13.105.36.96/27 2309 | 13.105.36.128/26 2310 | 13.105.36.192/26 2311 | 13.105.37.0/26 2312 | 13.105.37.64/26 2313 | 13.105.37.128/26 2314 | 13.105.37.192/26 2315 | 13.105.52.0/27 2316 | 13.105.52.32/27 2317 | 13.105.52.64/28 2318 | 13.105.52.80/28 2319 | 13.105.52.96/27 2320 | 13.105.52.128/26 2321 | 13.105.52.192/26 2322 | 13.105.53.0/25 2323 | 13.105.53.128/26 2324 | 13.105.53.192/26 2325 | 13.105.60.0/27 2326 | 13.105.60.32/28 2327 | 13.105.60.48/28 2328 | 13.105.60.64/27 2329 | 13.105.60.96/27 2330 | 13.105.60.128/27 2331 | 13.105.60.160/27 2332 | 13.105.60.192/26 2333 | 13.105.61.0/28 2334 | 13.105.61.16/28 2335 | 13.105.61.32/27 2336 | 13.105.61.64/26 2337 | 13.105.61.128/25 2338 | 13.105.66.0/27 2339 | 13.105.66.64/26 2340 | 13.105.66.144/28 2341 | 13.105.66.192/26 2342 | 13.105.67.0/25 2343 | 13.105.67.128/25 2344 | 13.105.74.48/28 2345 | 13.105.74.96/27 2346 | 13.105.74.128/26 2347 | 13.105.74.192/26 2348 | 20.36.0.0/19 2349 | 20.36.32.0/19 2350 | 20.36.64.0/19 2351 | 20.36.96.0/21 2352 | 20.36.104.0/21 2353 | 20.36.112.0/20 2354 | 20.36.128.0/17 2355 | 20.37.0.0/18 2356 | 20.37.64.0/19 2357 | 20.37.96.0/19 2358 | 20.37.128.0/18 2359 | 20.37.192.0/19 2360 | 20.37.224.0/19 2361 | 20.38.64.0/19 2362 | 20.38.96.0/23 2363 | 20.38.98.0/24 2364 | 20.38.99.0/24 2365 | 20.38.100.0/23 2366 | 20.38.102.0/23 2367 | 20.38.104.0/23 2368 | 20.38.106.0/23 2369 | 20.38.108.0/23 2370 | 20.38.112.0/23 2371 | 20.38.114.0/25 2372 | 20.38.114.128/25 2373 | 20.38.115.0/24 2374 | 20.38.116.0/23 2375 | 20.38.118.0/24 2376 | 20.38.120.0/24 2377 | 20.38.121.0/25 2378 | 20.38.121.128/25 2379 | 20.38.122.0/23 2380 | 20.38.124.0/23 2381 | 20.38.126.0/23 2382 | 20.38.128.0/21 2383 | 20.38.136.0/21 2384 | 20.38.144.0/21 2385 | 20.38.152.0/21 2386 | 20.38.184.0/22 2387 | 20.38.188.0/22 2388 | 20.38.192.0/22 2389 | 20.38.196.0/22 2390 | 20.38.200.0/22 2391 | 20.38.208.0/22 2392 | 20.39.0.0/19 2393 | 20.39.32.0/19 2394 | 20.39.64.0/21 2395 | 20.39.72.0/21 2396 | 20.39.80.0/20 2397 | 20.39.96.0/19 2398 | 20.39.128.0/20 2399 | 20.39.144.0/20 2400 | 20.39.160.0/21 2401 | 20.39.168.0/21 2402 | 20.39.176.0/21 2403 | 20.39.184.0/21 2404 | 20.39.192.0/20 2405 | 20.39.208.0/20 2406 | 20.39.224.0/21 2407 | 20.39.232.0/21 2408 | 20.39.240.0/20 2409 | 20.40.0.0/21 2410 | 20.40.8.0/21 2411 | 20.40.16.0/21 2412 | 20.40.32.0/21 2413 | 20.40.40.0/21 2414 | 20.40.48.0/20 2415 | 20.40.64.0/20 2416 | 20.40.80.0/21 2417 | 20.40.88.0/21 2418 | 20.40.96.0/21 2419 | 20.40.104.0/21 2420 | 20.40.112.0/21 2421 | 20.40.120.0/21 2422 | 20.40.128.0/19 2423 | 20.40.160.0/20 2424 | 20.40.176.0/20 2425 | 20.40.192.0/18 2426 | 20.41.0.0/18 2427 | 20.41.64.0/18 2428 | 20.41.128.0/18 2429 | 20.41.192.0/18 2430 | 20.42.0.0/17 2431 | 20.42.128.0/18 2432 | 20.42.192.0/19 2433 | 20.42.224.0/19 2434 | 20.43.0.0/19 2435 | 20.43.32.0/19 2436 | 20.43.64.0/19 2437 | 20.43.96.0/20 2438 | 20.43.120.0/21 2439 | 20.43.128.0/18 2440 | 20.43.192.0/18 2441 | 20.44.8.0/21 2442 | 20.44.16.0/21 2443 | 20.44.24.0/21 2444 | 20.44.32.0/19 2445 | 20.44.64.0/18 2446 | 20.44.128.0/18 2447 | 20.44.192.0/18 2448 | 20.45.0.0/18 2449 | 20.45.64.0/19 2450 | 20.45.120.0/21 2451 | 20.45.128.0/21 2452 | 20.45.136.0/21 2453 | 20.45.144.0/20 2454 | 20.45.160.0/19 2455 | 20.45.192.0/18 2456 | 20.46.0.0/19 2457 | 20.46.32.0/19 2458 | 20.46.96.0/20 2459 | 20.46.112.0/20 2460 | 20.46.144.0/20 2461 | 20.46.160.0/19 2462 | 20.46.192.0/21 2463 | 20.46.200.0/21 2464 | 20.46.208.0/20 2465 | 20.46.224.0/19 2466 | 20.47.0.0/24 2467 | 20.47.1.0/24 2468 | 20.47.2.0/24 2469 | 20.47.3.0/24 2470 | 20.47.4.0/24 2471 | 20.47.5.0/24 2472 | 20.47.6.0/24 2473 | 20.47.7.0/24 2474 | 20.47.8.0/24 2475 | 20.47.9.0/24 2476 | 20.47.10.0/24 2477 | 20.47.11.0/24 2478 | 20.47.12.0/24 2479 | 20.47.15.0/24 2480 | 20.47.16.0/23 2481 | 20.47.18.0/23 2482 | 20.47.20.0/23 2483 | 20.47.22.0/23 2484 | 20.47.24.0/23 2485 | 20.47.26.0/24 2486 | 20.47.27.0/24 2487 | 20.47.28.0/24 2488 | 20.47.29.0/24 2489 | 20.47.30.0/24 2490 | 20.47.31.0/24 2491 | 20.47.32.0/24 2492 | 20.47.33.0/24 2493 | 20.47.34.0/24 2494 | 20.47.35.0/24 2495 | 20.47.36.0/24 2496 | 20.47.37.0/24 2497 | 20.47.38.0/24 2498 | 20.47.39.0/24 2499 | 20.47.40.0/24 2500 | 20.47.41.0/24 2501 | 20.47.42.0/24 2502 | 20.47.43.0/24 2503 | 20.47.44.0/24 2504 | 20.47.45.0/24 2505 | 20.47.46.0/24 2506 | 20.47.47.0/24 2507 | 20.47.48.0/24 2508 | 20.47.49.0/24 2509 | 20.47.50.0/24 2510 | 20.47.51.0/24 2511 | 20.47.52.0/24 2512 | 20.47.53.0/24 2513 | 20.47.54.0/24 2514 | 20.47.55.0/24 2515 | 20.47.56.0/24 2516 | 20.47.57.0/24 2517 | 20.47.58.0/23 2518 | 20.47.60.0/23 2519 | 20.47.62.0/23 2520 | 20.47.64.0/24 2521 | 20.47.65.0/24 2522 | 20.47.66.0/24 2523 | 20.47.67.0/24 2524 | 20.47.68.0/24 2525 | 20.47.69.0/24 2526 | 20.47.70.0/24 2527 | 20.47.71.0/24 2528 | 20.47.72.0/23 2529 | 20.47.74.0/23 2530 | 20.47.76.0/23 2531 | 20.47.78.0/23 2532 | 20.47.80.0/23 2533 | 20.47.82.0/23 2534 | 20.47.84.0/23 2535 | 20.47.86.0/24 2536 | 20.47.87.0/24 2537 | 20.47.88.0/24 2538 | 20.47.89.0/24 2539 | 20.47.90.0/24 2540 | 20.47.91.0/24 2541 | 20.47.92.0/24 2542 | 20.47.93.0/24 2543 | 20.47.94.0/24 2544 | 20.47.95.0/24 2545 | 20.47.96.0/23 2546 | 20.47.98.0/24 2547 | 20.47.99.0/24 2548 | 20.47.100.0/24 2549 | 20.47.101.0/24 2550 | 20.47.102.0/24 2551 | 20.47.103.0/24 2552 | 20.47.104.0/24 2553 | 20.47.105.0/24 2554 | 20.47.106.0/24 2555 | 20.47.107.0/24 2556 | 20.47.108.0/23 2557 | 20.47.110.0/24 2558 | 20.47.111.0/24 2559 | 20.47.112.0/24 2560 | 20.47.113.0/24 2561 | 20.47.114.0/24 2562 | 20.47.115.0/24 2563 | 20.47.116.0/24 2564 | 20.47.117.0/24 2565 | 20.47.118.0/24 2566 | 20.47.119.0/24 2567 | 20.47.120.0/23 2568 | 20.47.122.0/23 2569 | 20.47.124.0/23 2570 | 20.47.126.0/23 2571 | 20.47.128.0/17 2572 | 20.48.0.0/17 2573 | 20.48.128.0/18 2574 | 20.48.192.0/21 2575 | 20.49.0.0/18 2576 | 20.49.88.0/21 2577 | 20.49.96.0/21 2578 | 20.49.104.0/21 2579 | 20.49.112.0/21 2580 | 20.49.120.0/21 2581 | 20.49.128.0/17 2582 | 20.50.0.0/18 2583 | 20.50.64.0/20 2584 | 20.50.96.0/19 2585 | 20.50.128.0/17 2586 | 20.51.0.0/21 2587 | 20.51.8.0/21 2588 | 20.51.16.0/21 2589 | 20.51.32.0/19 2590 | 20.51.64.0/18 2591 | 20.51.128.0/17 2592 | 20.52.0.0/18 2593 | 20.52.64.0/21 2594 | 20.52.72.0/21 2595 | 20.52.128.0/18 2596 | 20.53.0.0/19 2597 | 20.53.32.0/28 2598 | 20.53.40.0/21 2599 | 20.53.64.0/18 2600 | 20.53.128.0/17 2601 | 20.54.0.0/17 2602 | 20.54.128.0/17 2603 | 20.55.0.0/17 2604 | 20.55.128.0/18 2605 | 20.55.192.0/18 2606 | 20.56.0.0/16 2607 | 20.57.0.0/17 2608 | 20.57.128.0/18 2609 | 20.57.192.0/19 2610 | 20.57.224.0/19 2611 | 20.58.0.0/18 2612 | 20.58.64.0/18 2613 | 20.58.128.0/18 2614 | 20.58.192.0/18 2615 | 20.59.0.0/18 2616 | 20.59.64.0/18 2617 | 20.59.128.0/18 2618 | 20.59.192.0/18 2619 | 20.60.0.0/24 2620 | 20.60.1.0/24 2621 | 20.60.2.0/24 2622 | 20.60.4.0/24 2623 | 20.60.6.0/23 2624 | 20.60.8.0/24 2625 | 20.60.10.0/24 2626 | 20.60.11.0/24 2627 | 20.60.12.0/24 2628 | 20.60.13.0/24 2629 | 20.60.15.0/24 2630 | 20.60.16.0/24 2631 | 20.60.17.0/24 2632 | 20.60.18.0/24 2633 | 20.60.19.0/24 2634 | 20.60.20.0/24 2635 | 20.60.21.0/24 2636 | 20.60.22.0/23 2637 | 20.60.24.0/23 2638 | 20.60.26.0/23 2639 | 20.60.28.0/23 2640 | 20.60.30.0/23 2641 | 20.60.32.0/23 2642 | 20.60.34.0/23 2643 | 20.60.36.0/23 2644 | 20.60.40.0/23 2645 | 20.60.128.0/23 2646 | 20.60.130.0/24 2647 | 20.60.131.0/24 2648 | 20.60.132.0/23 2649 | 20.61.0.0/16 2650 | 20.62.0.0/17 2651 | 20.62.128.0/17 2652 | 20.63.0.0/18 2653 | 20.63.128.0/18 2654 | 20.64.0.0/17 2655 | 20.64.128.0/17 2656 | 20.65.0.0/17 2657 | 20.65.128.0/17 2658 | 20.66.0.0/17 2659 | 20.135.0.0/22 2660 | 20.135.4.0/22 2661 | 20.135.8.0/22 2662 | 20.135.12.0/22 2663 | 20.135.16.0/22 2664 | 20.135.20.0/22 2665 | 20.135.24.0/22 2666 | 20.150.0.0/24 2667 | 20.150.1.0/25 2668 | 20.150.1.128/25 2669 | 20.150.2.0/23 2670 | 20.150.4.0/23 2671 | 20.150.6.0/23 2672 | 20.150.8.0/23 2673 | 20.150.10.0/23 2674 | 20.150.12.0/23 2675 | 20.150.14.0/23 2676 | 20.150.16.0/24 2677 | 20.150.17.0/25 2678 | 20.150.17.128/25 2679 | 20.150.18.0/25 2680 | 20.150.18.128/25 2681 | 20.150.19.0/24 2682 | 20.150.20.0/25 2683 | 20.150.20.128/25 2684 | 20.150.21.0/24 2685 | 20.150.22.0/24 2686 | 20.150.23.0/24 2687 | 20.150.24.0/24 2688 | 20.150.25.0/24 2689 | 20.150.26.0/24 2690 | 20.150.27.0/24 2691 | 20.150.28.0/24 2692 | 20.150.29.0/24 2693 | 20.150.31.0/24 2694 | 20.150.32.0/23 2695 | 20.150.34.0/23 2696 | 20.150.36.0/24 2697 | 20.150.37.0/24 2698 | 20.150.38.0/23 2699 | 20.150.40.0/25 2700 | 20.150.40.128/25 2701 | 20.150.41.0/24 2702 | 20.150.42.0/24 2703 | 20.150.43.0/25 2704 | 20.150.43.128/25 2705 | 20.150.46.0/24 2706 | 20.150.47.0/25 2707 | 20.150.47.128/25 2708 | 20.150.48.0/24 2709 | 20.150.49.0/24 2710 | 20.150.50.0/23 2711 | 20.150.52.0/24 2712 | 20.150.53.0/24 2713 | 20.150.54.0/24 2714 | 20.150.55.0/24 2715 | 20.150.56.0/24 2716 | 20.150.58.0/24 2717 | 20.150.59.0/24 2718 | 20.150.60.0/24 2719 | 20.150.61.0/24 2720 | 20.150.62.0/24 2721 | 20.150.63.0/24 2722 | 20.150.66.0/24 2723 | 20.150.67.0/24 2724 | 20.150.68.0/24 2725 | 20.150.69.0/24 2726 | 20.150.70.0/24 2727 | 20.150.71.0/24 2728 | 20.150.72.0/24 2729 | 20.150.73.0/24 2730 | 20.150.74.0/24 2731 | 20.150.75.0/24 2732 | 20.150.76.0/24 2733 | 20.150.77.0/24 2734 | 20.150.78.0/24 2735 | 20.150.79.0/24 2736 | 20.150.80.0/24 2737 | 20.150.81.0/24 2738 | 20.150.82.0/24 2739 | 20.150.83.0/24 2740 | 20.150.84.0/24 2741 | 20.150.85.0/24 2742 | 20.150.86.0/24 2743 | 20.150.87.0/24 2744 | 20.150.88.0/24 2745 | 20.150.89.0/24 2746 | 20.150.90.0/24 2747 | 20.150.91.0/24 2748 | 20.150.92.0/24 2749 | 20.150.93.0/24 2750 | 20.150.94.0/24 2751 | 20.150.95.0/24 2752 | 20.150.96.0/24 2753 | 20.150.98.0/24 2754 | 20.150.100.0/24 2755 | 20.150.101.0/24 2756 | 20.150.102.0/24 2757 | 20.150.103.0/24 2758 | 20.150.104.0/24 2759 | 20.150.105.0/24 2760 | 20.150.106.0/24 2761 | 20.150.107.0/24 2762 | 20.150.108.0/24 2763 | 20.150.110.0/24 2764 | 20.150.111.0/24 2765 | 20.150.112.0/24 2766 | 20.150.113.0/24 2767 | 20.150.114.0/24 2768 | 20.150.115.0/24 2769 | 20.150.116.0/24 2770 | 20.150.117.0/24 2771 | 20.150.118.0/24 2772 | 20.150.119.0/24 2773 | 20.150.121.0/24 2774 | 20.150.122.0/24 2775 | 20.150.123.0/24 2776 | 20.150.124.0/24 2777 | 20.150.125.0/24 2778 | 20.150.126.0/24 2779 | 20.150.127.0/24 2780 | 20.151.0.0/17 2781 | 20.157.0.0/24 2782 | 20.157.1.0/24 2783 | 20.157.2.0/24 2784 | 20.157.3.0/24 2785 | 20.157.32.0/24 2786 | 20.157.33.0/24 2787 | 20.157.34.0/23 2788 | 20.157.36.0/23 2789 | 20.184.0.0/18 2790 | 20.184.64.0/18 2791 | 20.184.128.0/17 2792 | 20.185.0.0/16 2793 | 20.186.0.0/17 2794 | 20.186.128.0/18 2795 | 20.186.192.0/18 2796 | 20.187.0.0/18 2797 | 20.187.64.0/18 2798 | 20.187.128.0/18 2799 | 20.187.192.0/21 2800 | 20.187.224.0/19 2801 | 20.188.0.0/19 2802 | 20.188.32.0/19 2803 | 20.188.64.0/19 2804 | 20.188.96.0/19 2805 | 20.188.128.0/17 2806 | 20.189.0.0/18 2807 | 20.189.64.0/18 2808 | 20.189.128.0/18 2809 | 20.189.192.0/18 2810 | 20.190.0.0/18 2811 | 20.190.64.0/19 2812 | 20.190.96.0/19 2813 | 20.190.128.0/24 2814 | 20.190.129.0/24 2815 | 20.190.130.0/24 2816 | 20.190.131.0/24 2817 | 20.190.132.0/24 2818 | 20.190.133.0/24 2819 | 20.190.134.0/24 2820 | 20.190.135.0/24 2821 | 20.190.136.0/24 2822 | 20.190.137.0/24 2823 | 20.190.138.0/25 2824 | 20.190.138.128/25 2825 | 20.190.139.0/25 2826 | 20.190.139.128/25 2827 | 20.190.140.0/25 2828 | 20.190.140.128/25 2829 | 20.190.141.0/25 2830 | 20.190.141.128/25 2831 | 20.190.142.0/25 2832 | 20.190.142.128/25 2833 | 20.190.143.0/25 2834 | 20.190.143.128/25 2835 | 20.190.144.0/25 2836 | 20.190.144.128/25 2837 | 20.190.145.0/25 2838 | 20.190.145.128/25 2839 | 20.190.146.0/25 2840 | 20.190.146.128/25 2841 | 20.190.147.0/25 2842 | 20.190.147.128/25 2843 | 20.190.148.0/25 2844 | 20.190.148.128/25 2845 | 20.190.149.0/24 2846 | 20.190.150.0/24 2847 | 20.190.151.0/24 2848 | 20.190.152.0/24 2849 | 20.190.153.0/24 2850 | 20.190.154.0/24 2851 | 20.190.155.0/24 2852 | 20.190.156.0/24 2853 | 20.190.157.0/24 2854 | 20.190.158.0/24 2855 | 20.190.159.0/24 2856 | 20.190.160.0/24 2857 | 20.190.161.0/24 2858 | 20.190.162.0/24 2859 | 20.190.163.0/24 2860 | 20.190.164.0/24 2861 | 20.190.165.0/24 2862 | 20.190.166.0/24 2863 | 20.190.167.0/24 2864 | 20.190.168.0/24 2865 | 20.190.169.0/24 2866 | 20.190.170.0/24 2867 | 20.190.171.0/24 2868 | 20.190.172.0/24 2869 | 20.190.173.0/24 2870 | 20.190.174.0/24 2871 | 20.190.175.0/24 2872 | 20.190.176.0/24 2873 | 20.190.177.0/24 2874 | 20.190.178.0/24 2875 | 20.190.179.0/24 2876 | 20.190.180.0/24 2877 | 20.190.183.0/24 2878 | 20.190.184.0/24 2879 | 20.190.185.0/24 2880 | 20.190.186.0/24 2881 | 20.190.187.0/24 2882 | 20.190.188.0/24 2883 | 20.190.189.0/26 2884 | 20.190.189.64/26 2885 | 20.190.189.128/26 2886 | 20.190.189.192/26 2887 | 20.190.192.0/18 2888 | 20.191.0.0/18 2889 | 20.191.64.0/18 2890 | 20.191.128.0/19 2891 | 20.191.160.0/19 2892 | 20.191.192.0/18 2893 | 20.192.0.0/19 2894 | 20.192.40.0/21 2895 | 20.192.64.0/19 2896 | 20.192.96.0/21 2897 | 20.192.184.0/21 2898 | 20.193.0.0/18 2899 | 20.193.64.0/19 2900 | 20.193.96.0/19 2901 | 20.193.224.0/19 2902 | 20.194.0.0/18 2903 | 20.194.64.0/21 2904 | 20.194.96.0/19 2905 | 20.194.128.0/17 2906 | 20.195.0.0/18 2907 | 20.195.128.0/22 2908 | 20.195.136.0/21 2909 | 20.195.144.0/21 2910 | 20.195.160.0/19 2911 | 20.195.192.0/18 2912 | 20.196.0.0/18 2913 | 20.196.64.0/18 2914 | 20.196.128.0/18 2915 | 23.96.0.0/17 2916 | 23.96.128.0/17 2917 | 23.97.48.0/20 2918 | 23.97.64.0/19 2919 | 23.97.96.0/20 2920 | 23.97.112.0/25 2921 | 23.97.112.128/28 2922 | 23.97.116.0/22 2923 | 23.97.120.0/21 2924 | 23.97.128.0/17 2925 | 23.98.32.0/21 2926 | 23.98.40.0/22 2927 | 23.98.44.0/24 2928 | 23.98.45.0/24 2929 | 23.98.46.0/24 2930 | 23.98.47.0/24 2931 | 23.98.48.0/21 2932 | 23.98.56.0/24 2933 | 23.98.57.64/26 2934 | 23.98.64.0/18 2935 | 23.98.128.0/17 2936 | 23.99.0.0/18 2937 | 23.99.64.0/19 2938 | 23.99.96.0/19 2939 | 23.99.128.0/17 2940 | 23.100.0.0/20 2941 | 23.100.16.0/20 2942 | 23.100.32.0/20 2943 | 23.100.48.0/20 2944 | 23.100.64.0/21 2945 | 23.100.72.0/21 2946 | 23.100.80.0/21 2947 | 23.100.88.0/21 2948 | 23.100.96.0/21 2949 | 23.100.104.0/21 2950 | 23.100.112.0/21 2951 | 23.100.120.0/21 2952 | 23.100.128.0/18 2953 | 23.100.224.0/20 2954 | 23.100.240.0/20 2955 | 23.101.0.0/20 2956 | 23.101.16.0/20 2957 | 23.101.32.0/21 2958 | 23.101.48.0/20 2959 | 23.101.64.0/20 2960 | 23.101.80.0/21 2961 | 23.101.112.0/20 2962 | 23.101.128.0/20 2963 | 23.101.144.0/20 2964 | 23.101.160.0/20 2965 | 23.101.176.0/20 2966 | 23.101.192.0/20 2967 | 23.101.208.0/20 2968 | 23.101.224.0/19 2969 | 23.102.0.0/18 2970 | 23.102.64.0/19 2971 | 23.102.96.0/19 2972 | 23.102.128.0/18 2973 | 23.102.192.0/21 2974 | 23.102.200.0/23 2975 | 23.102.202.0/24 2976 | 23.102.203.0/24 2977 | 23.102.204.0/22 2978 | 23.102.208.0/20 2979 | 23.102.224.0/19 2980 | 23.103.64.32/27 2981 | 23.103.64.64/27 2982 | 23.103.66.0/23 2983 | 23.103.128.0/25 2984 | 23.103.128.128/25 2985 | 23.103.129.0/25 2986 | 23.103.129.128/25 2987 | 23.103.130.0/26 2988 | 23.103.130.64/26 2989 | 23.103.130.128/26 2990 | 23.103.130.192/26 2991 | 23.103.132.0/22 2992 | 23.103.136.0/21 2993 | 23.103.144.0/22 2994 | 23.103.160.0/20 2995 | 23.103.176.128/26 2996 | 23.103.176.192/27 2997 | 23.103.178.128/26 2998 | 23.103.178.192/27 2999 | 23.103.183.0/26 3000 | 23.103.191.0/24 3001 | 23.103.198.0/23 3002 | 23.103.200.0/21 3003 | 23.103.224.0/19 3004 | 40.64.64.0/18 3005 | 40.64.128.0/21 3006 | 40.65.0.0/18 3007 | 40.65.64.0/18 3008 | 40.65.128.0/18 3009 | 40.65.192.0/18 3010 | 40.66.32.0/19 3011 | 40.66.120.0/21 3012 | 40.67.120.0/21 3013 | 40.67.128.0/19 3014 | 40.67.160.0/19 3015 | 40.67.192.0/19 3016 | 40.67.224.0/19 3017 | 40.68.0.0/16 3018 | 40.69.0.0/18 3019 | 40.69.64.0/19 3020 | 40.69.96.0/19 3021 | 40.69.128.0/18 3022 | 40.69.192.0/19 3023 | 40.70.0.0/18 3024 | 40.70.64.0/20 3025 | 40.70.80.0/21 3026 | 40.70.88.0/28 3027 | 40.70.128.0/17 3028 | 40.71.0.0/16 3029 | 40.74.0.0/18 3030 | 40.74.64.0/18 3031 | 40.74.128.0/20 3032 | 40.74.144.0/20 3033 | 40.74.160.0/19 3034 | 40.74.192.0/18 3035 | 40.75.0.0/19 3036 | 40.75.32.0/21 3037 | 40.75.64.0/18 3038 | 40.75.128.0/17 3039 | 40.76.0.0/16 3040 | 40.77.0.0/17 3041 | 40.77.128.0/25 3042 | 40.77.128.128/25 3043 | 40.77.129.0/24 3044 | 40.77.130.0/25 3045 | 40.77.130.128/26 3046 | 40.77.130.192/26 3047 | 40.77.131.0/25 3048 | 40.77.131.128/26 3049 | 40.77.131.192/27 3050 | 40.77.131.224/28 3051 | 40.77.131.240/28 3052 | 40.77.132.0/24 3053 | 40.77.133.0/24 3054 | 40.77.134.0/24 3055 | 40.77.135.0/24 3056 | 40.77.136.0/28 3057 | 40.77.136.16/28 3058 | 40.77.136.32/28 3059 | 40.77.136.48/28 3060 | 40.77.136.64/28 3061 | 40.77.136.80/28 3062 | 40.77.136.96/28 3063 | 40.77.136.128/25 3064 | 40.77.137.0/25 3065 | 40.77.137.128/26 3066 | 40.77.137.192/27 3067 | 40.77.138.0/25 3068 | 40.77.138.128/25 3069 | 40.77.139.0/25 3070 | 40.77.139.128/25 3071 | 40.77.160.0/27 3072 | 40.77.160.32/27 3073 | 40.77.160.64/26 3074 | 40.77.160.128/25 3075 | 40.77.161.0/26 3076 | 40.77.161.64/26 3077 | 40.77.161.128/25 3078 | 40.77.162.0/24 3079 | 40.77.163.0/24 3080 | 40.77.164.0/24 3081 | 40.77.165.0/24 3082 | 40.77.166.0/25 3083 | 40.77.166.128/28 3084 | 40.77.166.160/27 3085 | 40.77.166.192/26 3086 | 40.77.167.0/24 3087 | 40.77.168.0/24 3088 | 40.77.169.0/24 3089 | 40.77.170.0/24 3090 | 40.77.171.0/24 3091 | 40.77.172.0/24 3092 | 40.77.173.0/24 3093 | 40.77.174.0/24 3094 | 40.77.175.0/27 3095 | 40.77.175.32/27 3096 | 40.77.175.64/27 3097 | 40.77.175.96/27 3098 | 40.77.175.128/27 3099 | 40.77.175.160/27 3100 | 40.77.175.192/27 3101 | 40.77.175.240/28 3102 | 40.77.176.0/24 3103 | 40.77.177.0/24 3104 | 40.77.178.0/23 3105 | 40.77.180.0/23 3106 | 40.77.182.0/28 3107 | 40.77.182.16/28 3108 | 40.77.182.32/27 3109 | 40.77.182.64/27 3110 | 40.77.182.96/27 3111 | 40.77.182.128/27 3112 | 40.77.182.160/27 3113 | 40.77.182.192/26 3114 | 40.77.183.0/24 3115 | 40.77.184.0/25 3116 | 40.77.184.128/25 3117 | 40.77.185.0/25 3118 | 40.77.185.128/25 3119 | 40.77.186.0/23 3120 | 40.77.188.0/22 3121 | 40.77.192.0/22 3122 | 40.77.196.0/24 3123 | 40.77.197.0/24 3124 | 40.77.198.0/26 3125 | 40.77.198.64/26 3126 | 40.77.198.128/25 3127 | 40.77.199.0/25 3128 | 40.77.199.128/26 3129 | 40.77.199.192/26 3130 | 40.77.200.0/25 3131 | 40.77.200.128/25 3132 | 40.77.201.0/24 3133 | 40.77.202.0/24 3134 | 40.77.224.0/28 3135 | 40.77.224.16/28 3136 | 40.77.224.32/27 3137 | 40.77.224.64/27 3138 | 40.77.224.96/27 3139 | 40.77.224.128/25 3140 | 40.77.225.0/24 3141 | 40.77.226.0/25 3142 | 40.77.226.128/25 3143 | 40.77.227.0/24 3144 | 40.77.228.0/24 3145 | 40.77.229.0/24 3146 | 40.77.230.0/24 3147 | 40.77.231.0/24 3148 | 40.77.232.0/25 3149 | 40.77.232.128/25 3150 | 40.77.233.0/24 3151 | 40.77.234.0/25 3152 | 40.77.234.128/27 3153 | 40.77.234.160/27 3154 | 40.77.234.192/27 3155 | 40.77.234.224/27 3156 | 40.77.235.0/24 3157 | 40.77.236.0/27 3158 | 40.77.236.32/27 3159 | 40.77.236.80/28 3160 | 40.77.236.96/27 3161 | 40.77.236.128/27 3162 | 40.77.236.160/28 3163 | 40.77.236.176/28 3164 | 40.77.236.192/28 3165 | 40.77.237.0/26 3166 | 40.77.237.64/26 3167 | 40.77.237.128/25 3168 | 40.77.240.0/25 3169 | 40.77.240.128/25 3170 | 40.77.241.0/24 3171 | 40.77.242.0/23 3172 | 40.77.245.0/24 3173 | 40.77.246.0/24 3174 | 40.77.247.0/24 3175 | 40.77.248.0/25 3176 | 40.77.248.128/25 3177 | 40.77.249.0/24 3178 | 40.77.250.0/24 3179 | 40.77.251.0/24 3180 | 40.77.252.0/23 3181 | 40.77.254.0/26 3182 | 40.77.254.128/25 3183 | 40.77.255.0/25 3184 | 40.77.255.128/26 3185 | 40.77.255.192/26 3186 | 40.78.0.0/17 3187 | 40.78.128.0/18 3188 | 40.78.192.0/21 3189 | 40.78.200.0/21 3190 | 40.78.208.0/28 3191 | 40.78.208.16/28 3192 | 40.78.208.32/30 3193 | 40.78.208.48/28 3194 | 40.78.208.64/28 3195 | 40.78.209.0/24 3196 | 40.78.210.0/24 3197 | 40.78.211.0/24 3198 | 40.78.214.0/24 3199 | 40.78.216.0/24 3200 | 40.78.217.0/24 3201 | 40.78.218.0/24 3202 | 40.78.219.0/24 3203 | 40.78.220.0/24 3204 | 40.78.221.0/24 3205 | 40.78.222.0/24 3206 | 40.78.223.0/24 3207 | 40.78.224.0/21 3208 | 40.78.232.0/21 3209 | 40.78.240.0/20 3210 | 40.79.0.0/21 3211 | 40.79.8.0/27 3212 | 40.79.8.32/28 3213 | 40.79.8.64/27 3214 | 40.79.8.96/28 3215 | 40.79.9.0/24 3216 | 40.79.16.0/20 3217 | 40.79.32.0/20 3218 | 40.79.48.0/27 3219 | 40.79.48.32/28 3220 | 40.79.49.0/24 3221 | 40.79.56.0/21 3222 | 40.79.64.0/20 3223 | 40.79.80.0/21 3224 | 40.79.88.0/27 3225 | 40.79.88.32/28 3226 | 40.79.89.0/24 3227 | 40.79.90.0/24 3228 | 40.79.91.0/28 3229 | 40.79.92.0/24 3230 | 40.79.93.0/28 3231 | 40.79.94.0/24 3232 | 40.79.95.0/28 3233 | 40.79.96.0/19 3234 | 40.79.128.0/20 3235 | 40.79.144.0/21 3236 | 40.79.152.0/21 3237 | 40.79.160.0/20 3238 | 40.79.176.0/21 3239 | 40.79.184.0/21 3240 | 40.79.192.0/21 3241 | 40.79.201.0/24 3242 | 40.79.202.0/24 3243 | 40.79.203.0/24 3244 | 40.79.208.0/24 3245 | 40.79.209.0/24 3246 | 40.79.210.0/24 3247 | 40.79.211.0/24 3248 | 40.79.212.0/24 3249 | 40.79.213.0/24 3250 | 40.79.214.0/24 3251 | 40.79.215.0/24 3252 | 40.79.216.0/24 3253 | 40.79.217.0/24 3254 | 40.79.218.0/24 3255 | 40.79.219.0/24 3256 | 40.79.220.0/24 3257 | 40.79.221.0/24 3258 | 40.79.222.0/24 3259 | 40.79.223.0/24 3260 | 40.79.232.0/21 3261 | 40.79.240.0/20 3262 | 40.80.0.0/22 3263 | 40.80.12.0/22 3264 | 40.80.16.0/22 3265 | 40.80.20.0/22 3266 | 40.80.24.0/22 3267 | 40.80.32.0/22 3268 | 40.80.36.0/22 3269 | 40.80.40.0/22 3270 | 40.80.44.0/22 3271 | 40.80.48.0/21 3272 | 40.80.56.0/21 3273 | 40.80.64.0/19 3274 | 40.80.96.0/20 3275 | 40.80.144.0/21 3276 | 40.80.152.0/21 3277 | 40.80.160.0/24 3278 | 40.80.168.0/21 3279 | 40.80.176.0/21 3280 | 40.80.184.0/21 3281 | 40.80.192.0/19 3282 | 40.80.224.0/20 3283 | 40.80.240.0/20 3284 | 40.81.0.0/20 3285 | 40.81.16.0/20 3286 | 40.81.32.0/20 3287 | 40.81.48.0/20 3288 | 40.81.64.0/20 3289 | 40.81.80.0/20 3290 | 40.81.96.0/20 3291 | 40.81.112.0/20 3292 | 40.81.128.0/19 3293 | 40.81.160.0/20 3294 | 40.81.176.0/20 3295 | 40.81.192.0/19 3296 | 40.81.224.0/19 3297 | 40.82.0.0/22 3298 | 40.82.4.0/22 3299 | 40.82.8.0/22 3300 | 40.82.12.0/22 3301 | 40.82.16.0/22 3302 | 40.82.20.0/22 3303 | 40.82.24.0/22 3304 | 40.82.28.0/22 3305 | 40.82.32.0/22 3306 | 40.82.36.0/22 3307 | 40.82.40.0/22 3308 | 40.82.44.0/22 3309 | 40.82.48.0/22 3310 | 40.82.52.0/22 3311 | 40.82.56.0/22 3312 | 40.82.60.0/22 3313 | 40.82.64.0/22 3314 | 40.82.68.0/22 3315 | 40.82.72.0/22 3316 | 40.82.84.0/22 3317 | 40.82.88.0/22 3318 | 40.82.92.0/22 3319 | 40.82.96.0/22 3320 | 40.82.100.0/22 3321 | 40.82.104.0/22 3322 | 40.82.108.0/22 3323 | 40.82.112.0/22 3324 | 40.82.116.0/22 3325 | 40.82.120.0/22 3326 | 40.82.124.0/22 3327 | 40.82.128.0/19 3328 | 40.82.160.0/19 3329 | 40.82.192.0/19 3330 | 40.82.224.0/20 3331 | 40.82.240.0/22 3332 | 40.82.244.0/22 3333 | 40.82.248.0/21 3334 | 40.83.0.0/20 3335 | 40.83.16.0/21 3336 | 40.83.24.0/26 3337 | 40.83.24.64/27 3338 | 40.83.24.96/27 3339 | 40.83.24.128/25 3340 | 40.83.25.0/24 3341 | 40.83.26.0/23 3342 | 40.83.28.0/22 3343 | 40.83.32.0/19 3344 | 40.83.64.0/18 3345 | 40.83.128.0/17 3346 | 40.84.0.0/17 3347 | 40.84.128.0/17 3348 | 40.85.0.0/17 3349 | 40.85.128.0/20 3350 | 40.85.144.0/20 3351 | 40.85.160.0/19 3352 | 40.85.192.0/18 3353 | 40.86.0.0/17 3354 | 40.86.128.0/19 3355 | 40.86.160.0/19 3356 | 40.86.192.0/18 3357 | 40.87.0.0/17 3358 | 40.87.128.0/19 3359 | 40.87.160.0/22 3360 | 40.87.164.0/22 3361 | 40.87.168.0/30 3362 | 40.87.168.4/30 3363 | 40.87.168.8/29 3364 | 40.87.168.16/28 3365 | 40.87.168.32/29 3366 | 40.87.168.40/29 3367 | 40.87.168.48/28 3368 | 40.87.168.64/30 3369 | 40.87.168.68/31 3370 | 40.87.168.70/31 3371 | 40.87.168.72/29 3372 | 40.87.168.80/28 3373 | 40.87.168.96/27 3374 | 40.87.168.128/26 3375 | 40.87.168.192/28 3376 | 40.87.168.208/31 3377 | 40.87.168.210/31 3378 | 40.87.168.212/30 3379 | 40.87.168.216/29 3380 | 40.87.168.224/27 3381 | 40.87.169.0/27 3382 | 40.87.169.32/29 3383 | 40.87.169.40/30 3384 | 40.87.169.44/30 3385 | 40.87.169.48/29 3386 | 40.87.169.56/31 3387 | 40.87.169.58/31 3388 | 40.87.169.60/30 3389 | 40.87.169.64/27 3390 | 40.87.169.96/31 3391 | 40.87.169.98/31 3392 | 40.87.169.100/31 3393 | 40.87.169.102/31 3394 | 40.87.169.104/29 3395 | 40.87.169.112/28 3396 | 40.87.169.128/29 3397 | 40.87.169.136/31 3398 | 40.87.169.138/31 3399 | 40.87.169.140/30 3400 | 40.87.169.144/28 3401 | 40.87.169.160/27 3402 | 40.87.169.192/26 3403 | 40.87.170.0/25 3404 | 40.87.170.128/28 3405 | 40.87.170.144/31 3406 | 40.87.170.146/31 3407 | 40.87.170.148/30 3408 | 40.87.170.152/29 3409 | 40.87.170.160/28 3410 | 40.87.170.176/29 3411 | 40.87.170.184/30 3412 | 40.87.170.188/30 3413 | 40.87.170.192/31 3414 | 40.87.170.194/31 3415 | 40.87.170.196/30 3416 | 40.87.170.200/29 3417 | 40.87.170.208/30 3418 | 40.87.170.212/31 3419 | 40.87.170.214/31 3420 | 40.87.170.216/30 3421 | 40.87.170.220/30 3422 | 40.87.170.224/30 3423 | 40.87.170.228/30 3424 | 40.87.170.232/31 3425 | 40.87.172.0/22 3426 | 40.87.176.0/25 3427 | 40.87.176.128/27 3428 | 40.87.176.160/29 3429 | 40.87.176.174/31 3430 | 40.87.176.184/30 3431 | 40.87.176.192/28 3432 | 40.87.176.216/29 3433 | 40.87.176.224/29 3434 | 40.87.176.232/31 3435 | 40.87.176.240/28 3436 | 40.87.177.16/28 3437 | 40.87.177.32/27 3438 | 40.87.177.64/27 3439 | 40.87.177.96/28 3440 | 40.87.177.112/29 3441 | 40.87.177.120/31 3442 | 40.87.177.124/30 3443 | 40.87.177.128/28 3444 | 40.87.177.144/29 3445 | 40.87.177.152/31 3446 | 40.87.177.156/30 3447 | 40.87.177.160/27 3448 | 40.87.177.192/29 3449 | 40.87.177.200/30 3450 | 40.87.177.212/30 3451 | 40.87.177.216/29 3452 | 40.87.180.0/30 3453 | 40.87.180.4/31 3454 | 40.87.180.6/31 3455 | 40.87.180.8/30 3456 | 40.87.180.12/31 3457 | 40.87.182.0/30 3458 | 40.87.182.4/30 3459 | 40.87.182.8/29 3460 | 40.87.182.16/29 3461 | 40.87.182.24/29 3462 | 40.87.182.32/28 3463 | 40.87.182.48/29 3464 | 40.87.182.56/30 3465 | 40.87.182.60/31 3466 | 40.87.182.62/31 3467 | 40.87.182.64/26 3468 | 40.87.182.128/25 3469 | 40.87.183.0/28 3470 | 40.87.183.16/29 3471 | 40.87.183.24/30 3472 | 40.87.183.28/30 3473 | 40.87.183.32/31 3474 | 40.87.183.34/31 3475 | 40.87.183.36/30 3476 | 40.87.183.40/31 3477 | 40.87.183.42/31 3478 | 40.87.183.44/30 3479 | 40.87.183.48/30 3480 | 40.87.183.52/31 3481 | 40.87.183.54/31 3482 | 40.87.183.56/29 3483 | 40.87.183.64/26 3484 | 40.87.183.128/28 3485 | 40.87.183.144/28 3486 | 40.87.183.160/27 3487 | 40.87.183.192/27 3488 | 40.87.183.224/29 3489 | 40.87.183.232/30 3490 | 40.87.183.236/31 3491 | 40.87.183.238/31 3492 | 40.87.183.240/30 3493 | 40.87.183.244/30 3494 | 40.87.183.248/29 3495 | 40.87.184.0/22 3496 | 40.87.188.0/22 3497 | 40.87.192.0/22 3498 | 40.87.196.0/22 3499 | 40.87.200.0/22 3500 | 40.87.204.0/22 3501 | 40.87.208.0/22 3502 | 40.87.212.0/22 3503 | 40.87.216.0/22 3504 | 40.87.220.0/22 3505 | 40.87.224.0/22 3506 | 40.87.228.0/22 3507 | 40.87.232.0/21 3508 | 40.88.0.0/16 3509 | 40.89.0.0/19 3510 | 40.89.32.0/19 3511 | 40.89.64.0/18 3512 | 40.89.128.0/18 3513 | 40.89.192.0/19 3514 | 40.89.224.0/19 3515 | 40.90.16.0/27 3516 | 40.90.16.64/27 3517 | 40.90.16.96/27 3518 | 40.90.16.128/27 3519 | 40.90.16.160/27 3520 | 40.90.16.192/26 3521 | 40.90.17.0/27 3522 | 40.90.17.32/27 3523 | 40.90.17.64/27 3524 | 40.90.17.96/27 3525 | 40.90.17.128/28 3526 | 40.90.17.144/28 3527 | 40.90.17.160/27 3528 | 40.90.17.192/27 3529 | 40.90.17.224/27 3530 | 40.90.18.0/28 3531 | 40.90.18.32/27 3532 | 40.90.18.64/26 3533 | 40.90.18.128/26 3534 | 40.90.18.192/26 3535 | 40.90.19.0/27 3536 | 40.90.19.32/27 3537 | 40.90.19.64/26 3538 | 40.90.19.128/25 3539 | 40.90.20.0/25 3540 | 40.90.20.128/25 3541 | 40.90.21.0/25 3542 | 40.90.21.128/25 3543 | 40.90.22.0/25 3544 | 40.90.22.128/25 3545 | 40.90.23.0/25 3546 | 40.90.23.128/25 3547 | 40.90.24.0/25 3548 | 40.90.24.128/25 3549 | 40.90.25.0/26 3550 | 40.90.25.64/26 3551 | 40.90.25.128/26 3552 | 40.90.25.192/26 3553 | 40.90.26.0/26 3554 | 40.90.26.64/26 3555 | 40.90.26.128/25 3556 | 40.90.27.0/26 3557 | 40.90.27.64/26 3558 | 40.90.27.128/26 3559 | 40.90.27.192/26 3560 | 40.90.28.0/26 3561 | 40.90.28.64/26 3562 | 40.90.28.128/26 3563 | 40.90.28.192/26 3564 | 40.90.29.0/26 3565 | 40.90.29.64/26 3566 | 40.90.29.128/26 3567 | 40.90.29.192/26 3568 | 40.90.30.0/25 3569 | 40.90.30.128/27 3570 | 40.90.30.160/27 3571 | 40.90.30.192/26 3572 | 40.90.31.0/27 3573 | 40.90.31.96/27 3574 | 40.90.31.128/25 3575 | 40.90.128.0/28 3576 | 40.90.128.16/28 3577 | 40.90.128.48/28 3578 | 40.90.128.64/28 3579 | 40.90.128.80/28 3580 | 40.90.128.96/28 3581 | 40.90.128.112/28 3582 | 40.90.128.128/28 3583 | 40.90.128.144/28 3584 | 40.90.128.160/28 3585 | 40.90.128.176/28 3586 | 40.90.128.192/28 3587 | 40.90.128.208/28 3588 | 40.90.128.224/28 3589 | 40.90.128.240/28 3590 | 40.90.129.48/28 3591 | 40.90.129.96/27 3592 | 40.90.129.128/26 3593 | 40.90.129.192/27 3594 | 40.90.129.224/27 3595 | 40.90.130.0/27 3596 | 40.90.130.32/28 3597 | 40.90.130.48/28 3598 | 40.90.130.64/28 3599 | 40.90.130.80/28 3600 | 40.90.130.96/28 3601 | 40.90.130.112/28 3602 | 40.90.130.128/28 3603 | 40.90.130.144/28 3604 | 40.90.130.160/27 3605 | 40.90.130.192/28 3606 | 40.90.130.208/28 3607 | 40.90.130.224/28 3608 | 40.90.130.240/28 3609 | 40.90.131.0/27 3610 | 40.90.131.32/27 3611 | 40.90.131.64/27 3612 | 40.90.131.96/27 3613 | 40.90.131.128/27 3614 | 40.90.131.160/27 3615 | 40.90.131.192/27 3616 | 40.90.131.224/27 3617 | 40.90.132.0/27 3618 | 40.90.132.32/28 3619 | 40.90.132.48/28 3620 | 40.90.132.64/28 3621 | 40.90.132.80/28 3622 | 40.90.132.96/27 3623 | 40.90.132.128/26 3624 | 40.90.132.192/26 3625 | 40.90.133.0/27 3626 | 40.90.133.32/27 3627 | 40.90.133.64/27 3628 | 40.90.133.96/28 3629 | 40.90.133.112/28 3630 | 40.90.133.128/28 3631 | 40.90.133.160/27 3632 | 40.90.133.192/26 3633 | 40.90.134.0/26 3634 | 40.90.134.64/26 3635 | 40.90.134.128/26 3636 | 40.90.134.192/26 3637 | 40.90.135.0/26 3638 | 40.90.135.64/26 3639 | 40.90.135.128/25 3640 | 40.90.136.0/28 3641 | 40.90.136.16/28 3642 | 40.90.136.32/27 3643 | 40.90.136.64/26 3644 | 40.90.136.128/27 3645 | 40.90.136.160/28 3646 | 40.90.136.176/28 3647 | 40.90.136.192/27 3648 | 40.90.136.224/27 3649 | 40.90.137.0/27 3650 | 40.90.137.32/27 3651 | 40.90.137.64/27 3652 | 40.90.137.96/27 3653 | 40.90.137.128/27 3654 | 40.90.137.160/27 3655 | 40.90.137.192/27 3656 | 40.90.137.224/27 3657 | 40.90.138.0/27 3658 | 40.90.138.32/27 3659 | 40.90.138.64/27 3660 | 40.90.138.96/27 3661 | 40.90.138.128/27 3662 | 40.90.138.160/27 3663 | 40.90.138.192/28 3664 | 40.90.138.208/28 3665 | 40.90.138.224/27 3666 | 40.90.139.0/27 3667 | 40.90.139.32/27 3668 | 40.90.139.64/27 3669 | 40.90.139.96/27 3670 | 40.90.139.128/27 3671 | 40.90.139.160/27 3672 | 40.90.139.192/27 3673 | 40.90.139.224/27 3674 | 40.90.140.0/27 3675 | 40.90.140.32/27 3676 | 40.90.140.64/27 3677 | 40.90.140.96/27 3678 | 40.90.140.128/27 3679 | 40.90.140.160/27 3680 | 40.90.140.192/27 3681 | 40.90.140.224/27 3682 | 40.90.141.0/27 3683 | 40.90.141.32/27 3684 | 40.90.141.64/27 3685 | 40.90.141.96/27 3686 | 40.90.141.128/27 3687 | 40.90.141.160/27 3688 | 40.90.141.192/26 3689 | 40.90.142.0/27 3690 | 40.90.142.32/27 3691 | 40.90.142.64/27 3692 | 40.90.142.96/27 3693 | 40.90.142.128/27 3694 | 40.90.142.160/27 3695 | 40.90.142.192/28 3696 | 40.90.142.208/28 3697 | 40.90.142.224/28 3698 | 40.90.142.240/28 3699 | 40.90.143.0/27 3700 | 40.90.143.32/27 3701 | 40.90.143.64/27 3702 | 40.90.143.96/27 3703 | 40.90.143.128/27 3704 | 40.90.143.160/27 3705 | 40.90.143.192/26 3706 | 40.90.144.0/27 3707 | 40.90.144.32/27 3708 | 40.90.144.64/26 3709 | 40.90.144.128/26 3710 | 40.90.144.192/27 3711 | 40.90.144.224/27 3712 | 40.90.145.0/27 3713 | 40.90.145.32/27 3714 | 40.90.145.64/27 3715 | 40.90.145.160/27 3716 | 40.90.145.192/27 3717 | 40.90.145.224/27 3718 | 40.90.146.0/28 3719 | 40.90.146.16/28 3720 | 40.90.146.32/27 3721 | 40.90.146.64/26 3722 | 40.90.146.128/27 3723 | 40.90.146.160/27 3724 | 40.90.146.192/27 3725 | 40.90.146.224/27 3726 | 40.90.147.0/27 3727 | 40.90.147.32/27 3728 | 40.90.147.64/27 3729 | 40.90.147.96/27 3730 | 40.90.147.128/26 3731 | 40.90.147.192/27 3732 | 40.90.147.224/27 3733 | 40.90.148.0/26 3734 | 40.90.148.64/27 3735 | 40.90.148.96/27 3736 | 40.90.148.128/27 3737 | 40.90.148.160/28 3738 | 40.90.148.176/28 3739 | 40.90.148.192/27 3740 | 40.90.148.224/27 3741 | 40.90.149.0/27 3742 | 40.90.149.32/27 3743 | 40.90.149.64/27 3744 | 40.90.149.96/27 3745 | 40.90.149.128/25 3746 | 40.90.150.0/27 3747 | 40.90.150.32/27 3748 | 40.90.150.64/27 3749 | 40.90.150.96/27 3750 | 40.90.150.128/25 3751 | 40.90.151.0/26 3752 | 40.90.151.64/27 3753 | 40.90.151.96/27 3754 | 40.90.151.128/28 3755 | 40.90.151.144/28 3756 | 40.90.151.160/27 3757 | 40.90.151.224/27 3758 | 40.90.152.0/25 3759 | 40.90.152.128/27 3760 | 40.90.152.160/27 3761 | 40.90.152.192/27 3762 | 40.90.152.224/27 3763 | 40.90.153.0/26 3764 | 40.90.153.64/27 3765 | 40.90.153.96/27 3766 | 40.90.153.128/25 3767 | 40.90.154.0/26 3768 | 40.90.154.64/26 3769 | 40.90.154.128/26 3770 | 40.90.154.192/26 3771 | 40.90.155.0/26 3772 | 40.90.155.64/26 3773 | 40.90.155.128/26 3774 | 40.90.155.192/26 3775 | 40.90.156.0/26 3776 | 40.90.156.64/27 3777 | 40.90.156.96/27 3778 | 40.90.156.128/26 3779 | 40.90.156.192/26 3780 | 40.90.157.0/27 3781 | 40.90.157.32/27 3782 | 40.90.157.64/26 3783 | 40.90.157.128/26 3784 | 40.90.157.192/27 3785 | 40.90.157.224/27 3786 | 40.90.158.0/26 3787 | 40.90.158.64/26 3788 | 40.90.158.128/25 3789 | 40.90.159.0/24 3790 | 40.90.160.0/19 3791 | 40.90.192.0/19 3792 | 40.90.224.0/19 3793 | 40.91.0.0/22 3794 | 40.91.4.0/22 3795 | 40.91.12.0/28 3796 | 40.91.12.16/28 3797 | 40.91.12.32/28 3798 | 40.91.12.48/28 3799 | 40.91.12.64/26 3800 | 40.91.12.128/28 3801 | 40.91.12.160/27 3802 | 40.91.12.208/28 3803 | 40.91.12.240/28 3804 | 40.91.13.0/28 3805 | 40.91.13.64/27 3806 | 40.91.13.96/28 3807 | 40.91.13.128/27 3808 | 40.91.13.240/28 3809 | 40.91.14.0/24 3810 | 40.91.16.0/22 3811 | 40.91.20.0/22 3812 | 40.91.24.0/22 3813 | 40.91.28.0/22 3814 | 40.91.32.0/22 3815 | 40.91.64.0/18 3816 | 40.91.160.0/19 3817 | 40.91.192.0/18 3818 | 40.93.0.0/23 3819 | 40.93.2.0/24 3820 | 40.93.4.0/24 3821 | 40.96.0.0/16 3822 | 40.97.0.0/16 3823 | 40.98.0.0/16 3824 | 40.99.0.0/16 3825 | 40.100.0.0/16 3826 | 40.101.0.0/16 3827 | 40.102.0.0/16 3828 | 40.103.0.0/16 3829 | 40.104.0.0/16 3830 | 40.105.0.0/16 3831 | 40.107.0.0/16 3832 | 40.108.0.0/16 3833 | 40.109.0.0/16 3834 | 40.110.0.0/16 3835 | 40.112.36.0/25 3836 | 40.112.36.128/25 3837 | 40.112.37.0/26 3838 | 40.112.37.64/26 3839 | 40.112.37.128/26 3840 | 40.112.37.192/26 3841 | 40.112.38.192/26 3842 | 40.112.39.0/25 3843 | 40.112.39.128/26 3844 | 40.112.48.0/20 3845 | 40.112.64.0/19 3846 | 40.112.96.0/19 3847 | 40.112.128.0/17 3848 | 40.113.0.0/18 3849 | 40.113.64.0/19 3850 | 40.113.96.0/19 3851 | 40.113.128.0/18 3852 | 40.113.192.0/18 3853 | 40.114.0.0/17 3854 | 40.114.128.0/17 3855 | 40.115.0.0/18 3856 | 40.115.64.0/19 3857 | 40.115.96.0/19 3858 | 40.115.128.0/17 3859 | 40.116.0.0/16 3860 | 40.117.0.0/19 3861 | 40.117.32.0/19 3862 | 40.117.64.0/18 3863 | 40.117.128.0/17 3864 | 40.118.0.0/17 3865 | 40.118.128.0/17 3866 | 40.119.0.0/18 3867 | 40.119.64.0/22 3868 | 40.119.68.0/22 3869 | 40.119.72.0/22 3870 | 40.119.76.0/22 3871 | 40.119.80.0/22 3872 | 40.119.84.0/22 3873 | 40.119.92.0/22 3874 | 40.119.96.0/22 3875 | 40.119.104.0/22 3876 | 40.119.108.0/22 3877 | 40.119.128.0/19 3878 | 40.119.160.0/19 3879 | 40.119.192.0/18 3880 | 40.120.0.0/20 3881 | 40.120.16.0/20 3882 | 40.120.32.0/19 3883 | 40.120.64.0/18 3884 | 40.121.0.0/16 3885 | 40.122.0.0/20 3886 | 40.122.16.0/20 3887 | 40.122.32.0/19 3888 | 40.122.64.0/18 3889 | 40.122.128.0/17 3890 | 40.123.0.0/17 3891 | 40.123.128.0/22 3892 | 40.123.192.0/19 3893 | 40.123.224.0/20 3894 | 40.123.240.0/20 3895 | 40.124.0.0/16 3896 | 40.125.0.0/19 3897 | 40.125.32.0/19 3898 | 40.125.64.0/18 3899 | 40.126.0.0/24 3900 | 40.126.1.0/24 3901 | 40.126.2.0/24 3902 | 40.126.3.0/24 3903 | 40.126.4.0/24 3904 | 40.126.5.0/24 3905 | 40.126.6.0/24 3906 | 40.126.7.0/24 3907 | 40.126.8.0/24 3908 | 40.126.9.0/24 3909 | 40.126.10.0/25 3910 | 40.126.10.128/25 3911 | 40.126.11.0/25 3912 | 40.126.11.128/25 3913 | 40.126.12.0/25 3914 | 40.126.12.128/25 3915 | 40.126.13.0/25 3916 | 40.126.13.128/25 3917 | 40.126.14.0/25 3918 | 40.126.14.128/25 3919 | 40.126.15.0/25 3920 | 40.126.15.128/25 3921 | 40.126.16.0/25 3922 | 40.126.16.128/25 3923 | 40.126.17.0/25 3924 | 40.126.17.128/25 3925 | 40.126.18.0/25 3926 | 40.126.18.128/25 3927 | 40.126.19.0/25 3928 | 40.126.19.128/25 3929 | 40.126.20.0/25 3930 | 40.126.20.128/25 3931 | 40.126.21.0/24 3932 | 40.126.22.0/24 3933 | 40.126.23.0/24 3934 | 40.126.24.0/24 3935 | 40.126.25.0/24 3936 | 40.126.26.0/24 3937 | 40.126.27.0/24 3938 | 40.126.28.0/24 3939 | 40.126.29.0/24 3940 | 40.126.30.0/24 3941 | 40.126.31.0/24 3942 | 40.126.32.0/24 3943 | 40.126.33.0/24 3944 | 40.126.34.0/24 3945 | 40.126.35.0/24 3946 | 40.126.36.0/24 3947 | 40.126.37.0/24 3948 | 40.126.38.0/24 3949 | 40.126.39.0/24 3950 | 40.126.40.0/24 3951 | 40.126.41.0/24 3952 | 40.126.42.0/24 3953 | 40.126.43.0/24 3954 | 40.126.44.0/24 3955 | 40.126.45.0/24 3956 | 40.126.46.0/24 3957 | 40.126.47.0/24 3958 | 40.126.48.0/24 3959 | 40.126.49.0/24 3960 | 40.126.50.0/24 3961 | 40.126.51.0/24 3962 | 40.126.52.0/24 3963 | 40.126.55.0/24 3964 | 40.126.56.0/24 3965 | 40.126.57.0/24 3966 | 40.126.58.0/24 3967 | 40.126.59.0/24 3968 | 40.126.60.0/24 3969 | 40.126.61.0/26 3970 | 40.126.61.64/26 3971 | 40.126.61.128/26 3972 | 40.126.61.192/26 3973 | 40.126.128.0/18 3974 | 40.126.192.0/24 3975 | 40.126.193.0/24 3976 | 40.126.194.0/24 3977 | 40.126.195.0/24 3978 | 40.126.197.0/24 3979 | 40.126.198.0/24 3980 | 40.126.200.0/24 3981 | 40.126.201.0/24 3982 | 40.126.207.0/24 3983 | 40.126.208.0/20 3984 | 40.126.224.0/19 3985 | 40.127.0.0/19 3986 | 40.127.64.0/19 3987 | 40.127.96.0/20 3988 | 40.127.128.0/17 3989 | 42.159.34.0/27 3990 | 42.159.38.0/23 3991 | 42.159.162.0/27 3992 | 42.159.166.0/23 3993 | 51.11.0.0/18 3994 | 51.11.64.0/19 3995 | 51.11.96.0/19 3996 | 51.11.128.0/18 3997 | 51.11.192.0/18 3998 | 51.13.0.0/17 3999 | 51.13.128.0/19 4000 | 51.103.0.0/17 4001 | 51.103.128.0/18 4002 | 51.104.0.0/19 4003 | 51.104.32.0/19 4004 | 51.104.64.0/18 4005 | 51.104.128.0/18 4006 | 51.104.192.0/18 4007 | 51.105.0.0/18 4008 | 51.105.64.0/20 4009 | 51.105.80.0/21 4010 | 51.105.88.0/21 4011 | 51.105.96.0/19 4012 | 51.105.128.0/17 4013 | 51.107.0.0/18 4014 | 51.107.64.0/19 4015 | 51.107.96.0/19 4016 | 51.107.128.0/21 4017 | 51.107.136.0/21 4018 | 51.107.144.0/20 4019 | 51.107.160.0/20 4020 | 51.107.192.0/21 4021 | 51.107.200.0/21 4022 | 51.107.208.0/20 4023 | 51.107.224.0/20 4024 | 51.107.240.0/20 4025 | 51.116.0.0/18 4026 | 51.116.64.0/19 4027 | 51.116.96.0/19 4028 | 51.116.128.0/18 4029 | 51.116.192.0/21 4030 | 51.116.200.0/21 4031 | 51.116.208.0/20 4032 | 51.116.224.0/19 4033 | 51.120.0.0/17 4034 | 51.120.128.0/18 4035 | 51.120.192.0/20 4036 | 51.120.208.0/21 4037 | 51.120.216.0/21 4038 | 51.120.224.0/21 4039 | 51.120.240.0/20 4040 | 51.124.0.0/17 4041 | 51.124.128.0/18 4042 | 51.132.0.0/18 4043 | 51.132.64.0/18 4044 | 51.132.128.0/17 4045 | 51.136.0.0/16 4046 | 51.137.0.0/17 4047 | 51.137.128.0/18 4048 | 51.137.192.0/18 4049 | 51.138.0.0/17 4050 | 51.138.128.0/19 4051 | 51.138.160.0/21 4052 | 51.138.192.0/19 4053 | 51.140.0.0/17 4054 | 51.140.128.0/18 4055 | 51.140.192.0/18 4056 | 51.141.0.0/17 4057 | 51.141.128.0/27 4058 | 51.141.128.32/27 4059 | 51.141.128.64/26 4060 | 51.141.128.128/25 4061 | 51.141.129.0/27 4062 | 51.141.129.32/27 4063 | 51.141.129.64/26 4064 | 51.141.129.128/26 4065 | 51.141.129.192/26 4066 | 51.141.130.0/25 4067 | 51.141.132.0/24 4068 | 51.141.133.0/24 4069 | 51.141.134.0/24 4070 | 51.141.135.0/24 4071 | 51.141.136.0/22 4072 | 51.141.156.0/22 4073 | 51.141.160.0/19 4074 | 51.141.192.0/18 4075 | 51.142.0.0/17 4076 | 51.142.128.0/17 4077 | 51.143.0.0/17 4078 | 51.143.128.0/18 4079 | 51.143.192.0/21 4080 | 51.143.200.0/28 4081 | 51.143.201.0/24 4082 | 51.143.208.0/20 4083 | 51.143.224.0/19 4084 | 51.144.0.0/16 4085 | 51.145.0.0/17 4086 | 51.145.128.0/17 4087 | 52.96.11.0/24 4088 | 52.101.0.0/22 4089 | 52.101.4.0/22 4090 | 52.101.16.0/22 4091 | 52.101.20.0/22 4092 | 52.102.128.0/24 4093 | 52.102.129.0/24 4094 | 52.102.158.0/24 4095 | 52.102.159.0/24 4096 | 52.103.0.0/24 4097 | 52.103.1.0/24 4098 | 52.103.2.0/24 4099 | 52.103.3.0/24 4100 | 52.103.128.0/24 4101 | 52.103.129.0/24 4102 | 52.108.0.0/21 4103 | 52.108.16.0/21 4104 | 52.108.24.0/21 4105 | 52.108.32.0/22 4106 | 52.108.36.0/22 4107 | 52.108.40.0/23 4108 | 52.108.42.0/23 4109 | 52.108.44.0/23 4110 | 52.108.46.0/23 4111 | 52.108.48.0/23 4112 | 52.108.50.0/23 4113 | 52.108.52.0/23 4114 | 52.108.54.0/23 4115 | 52.108.56.0/21 4116 | 52.108.68.0/23 4117 | 52.108.70.0/23 4118 | 52.108.72.0/24 4119 | 52.108.73.0/24 4120 | 52.108.74.0/24 4121 | 52.108.75.0/24 4122 | 52.108.76.0/24 4123 | 52.108.77.0/24 4124 | 52.108.78.0/24 4125 | 52.108.79.0/24 4126 | 52.108.80.0/24 4127 | 52.108.81.0/24 4128 | 52.108.82.0/24 4129 | 52.108.83.0/24 4130 | 52.108.84.0/24 4131 | 52.108.85.0/24 4132 | 52.108.86.0/24 4133 | 52.108.87.0/24 4134 | 52.108.88.0/24 4135 | 52.108.89.0/24 4136 | 52.108.90.0/24 4137 | 52.108.91.0/24 4138 | 52.108.92.0/24 4139 | 52.108.93.0/24 4140 | 52.108.94.0/24 4141 | 52.108.95.0/24 4142 | 52.108.96.0/24 4143 | 52.108.97.0/24 4144 | 52.108.98.0/24 4145 | 52.108.99.0/24 4146 | 52.108.100.0/23 4147 | 52.108.102.0/23 4148 | 52.108.104.0/24 4149 | 52.108.105.0/24 4150 | 52.108.106.0/23 4151 | 52.108.108.0/23 4152 | 52.108.110.0/24 4153 | 52.108.111.0/24 4154 | 52.108.112.0/24 4155 | 52.108.113.0/24 4156 | 52.108.116.0/24 4157 | 52.108.137.0/24 4158 | 52.108.138.0/24 4159 | 52.108.165.0/24 4160 | 52.108.166.0/23 4161 | 52.108.168.0/23 4162 | 52.108.170.0/24 4163 | 52.108.171.0/24 4164 | 52.108.172.0/23 4165 | 52.108.174.0/23 4166 | 52.108.176.0/24 4167 | 52.108.177.0/24 4168 | 52.108.178.0/24 4169 | 52.108.179.0/24 4170 | 52.108.180.0/24 4171 | 52.108.181.0/24 4172 | 52.108.182.0/24 4173 | 52.108.183.0/24 4174 | 52.108.184.0/24 4175 | 52.108.185.0/24 4176 | 52.108.186.0/24 4177 | 52.108.187.0/24 4178 | 52.108.188.0/24 4179 | 52.108.189.0/24 4180 | 52.108.190.0/24 4181 | 52.108.191.0/24 4182 | 52.108.192.0/24 4183 | 52.108.193.0/24 4184 | 52.108.194.0/24 4185 | 52.108.195.0/24 4186 | 52.108.196.0/24 4187 | 52.108.197.0/24 4188 | 52.108.198.0/24 4189 | 52.108.199.0/24 4190 | 52.108.200.0/24 4191 | 52.108.201.0/24 4192 | 52.108.202.0/24 4193 | 52.108.203.0/24 4194 | 52.108.204.0/23 4195 | 52.108.206.0/23 4196 | 52.108.208.0/21 4197 | 52.108.216.0/22 4198 | 52.108.220.0/23 4199 | 52.108.222.0/23 4200 | 52.108.224.0/23 4201 | 52.108.226.0/23 4202 | 52.108.228.0/23 4203 | 52.108.230.0/23 4204 | 52.108.232.0/23 4205 | 52.108.234.0/23 4206 | 52.108.236.0/22 4207 | 52.108.240.0/21 4208 | 52.108.248.0/21 4209 | 52.109.0.0/22 4210 | 52.109.4.0/22 4211 | 52.109.8.0/22 4212 | 52.109.12.0/22 4213 | 52.109.16.0/22 4214 | 52.109.20.0/22 4215 | 52.109.24.0/22 4216 | 52.109.28.0/22 4217 | 52.109.32.0/22 4218 | 52.109.36.0/22 4219 | 52.109.40.0/22 4220 | 52.109.44.0/22 4221 | 52.109.48.0/22 4222 | 52.109.52.0/22 4223 | 52.109.56.0/22 4224 | 52.109.60.0/22 4225 | 52.109.64.0/22 4226 | 52.109.68.0/22 4227 | 52.109.72.0/22 4228 | 52.109.76.0/22 4229 | 52.109.86.0/23 4230 | 52.109.88.0/22 4231 | 52.109.92.0/22 4232 | 52.109.96.0/22 4233 | 52.109.100.0/23 4234 | 52.109.102.0/23 4235 | 52.109.104.0/23 4236 | 52.109.108.0/22 4237 | 52.109.112.0/22 4238 | 52.109.116.0/22 4239 | 52.109.120.0/22 4240 | 52.109.124.0/22 4241 | 52.109.128.0/22 4242 | 52.109.132.0/22 4243 | 52.109.136.0/22 4244 | 52.109.140.0/22 4245 | 52.109.144.0/23 4246 | 52.109.150.0/23 4247 | 52.109.152.0/23 4248 | 52.109.156.0/23 4249 | 52.109.158.0/23 4250 | 52.109.160.0/23 4251 | 52.109.162.0/23 4252 | 52.111.194.0/24 4253 | 52.111.197.0/24 4254 | 52.111.198.0/24 4255 | 52.111.202.0/24 4256 | 52.111.203.0/24 4257 | 52.111.204.0/24 4258 | 52.111.205.0/24 4259 | 52.111.206.0/24 4260 | 52.111.224.0/24 4261 | 52.111.225.0/24 4262 | 52.111.226.0/24 4263 | 52.111.227.0/24 4264 | 52.111.228.0/24 4265 | 52.111.229.0/24 4266 | 52.111.230.0/24 4267 | 52.111.231.0/24 4268 | 52.111.232.0/24 4269 | 52.111.233.0/24 4270 | 52.111.234.0/24 4271 | 52.111.235.0/24 4272 | 52.111.236.0/24 4273 | 52.111.237.0/24 4274 | 52.111.238.0/24 4275 | 52.111.239.0/24 4276 | 52.111.240.0/24 4277 | 52.111.241.0/24 4278 | 52.111.242.0/24 4279 | 52.111.243.0/24 4280 | 52.111.244.0/24 4281 | 52.111.245.0/24 4282 | 52.111.246.0/24 4283 | 52.111.247.0/24 4284 | 52.111.248.0/24 4285 | 52.111.249.0/24 4286 | 52.111.250.0/24 4287 | 52.111.251.0/24 4288 | 52.111.252.0/24 4289 | 52.111.253.0/24 4290 | 52.111.254.0/24 4291 | 52.111.255.0/24 4292 | 52.112.14.0/23 4293 | 52.112.17.0/24 4294 | 52.112.18.0/23 4295 | 52.112.24.0/21 4296 | 52.112.71.0/24 4297 | 52.112.76.0/22 4298 | 52.112.83.0/24 4299 | 52.112.97.0/24 4300 | 52.112.98.0/23 4301 | 52.112.104.0/24 4302 | 52.112.105.0/24 4303 | 52.112.106.0/23 4304 | 52.112.108.0/24 4305 | 52.112.109.0/24 4306 | 52.112.110.0/23 4307 | 52.112.112.0/24 4308 | 52.112.113.0/24 4309 | 52.112.114.0/24 4310 | 52.112.115.0/24 4311 | 52.112.116.0/24 4312 | 52.112.117.0/24 4313 | 52.112.118.0/24 4314 | 52.112.144.0/20 4315 | 52.112.190.0/24 4316 | 52.112.191.0/24 4317 | 52.112.197.0/24 4318 | 52.112.200.0/22 4319 | 52.112.216.0/21 4320 | 52.112.229.0/24 4321 | 52.112.230.0/24 4322 | 52.112.231.0/24 4323 | 52.112.232.0/24 4324 | 52.112.233.0/24 4325 | 52.112.236.0/24 4326 | 52.112.237.0/24 4327 | 52.112.238.0/24 4328 | 52.112.240.0/20 4329 | 52.113.9.0/24 4330 | 52.113.13.0/24 4331 | 52.113.14.0/24 4332 | 52.113.15.0/24 4333 | 52.113.16.0/20 4334 | 52.113.37.0/24 4335 | 52.113.40.0/21 4336 | 52.113.48.0/20 4337 | 52.113.72.0/22 4338 | 52.113.76.0/23 4339 | 52.113.78.0/23 4340 | 52.113.83.0/24 4341 | 52.113.88.0/22 4342 | 52.113.96.0/22 4343 | 52.113.100.0/24 4344 | 52.113.101.0/24 4345 | 52.113.102.0/24 4346 | 52.113.103.0/24 4347 | 52.113.104.0/24 4348 | 52.113.105.0/24 4349 | 52.113.108.0/24 4350 | 52.113.109.0/24 4351 | 52.113.110.0/23 4352 | 52.113.112.0/20 4353 | 52.113.128.0/24 4354 | 52.113.129.0/24 4355 | 52.113.130.0/24 4356 | 52.113.131.0/24 4357 | 52.113.132.0/24 4358 | 52.113.133.0/24 4359 | 52.113.134.0/24 4360 | 52.113.136.0/21 4361 | 52.113.144.0/21 4362 | 52.113.160.0/19 4363 | 52.113.192.0/24 4364 | 52.113.193.0/24 4365 | 52.113.198.0/24 4366 | 52.113.199.0/24 4367 | 52.113.200.0/22 4368 | 52.113.204.0/24 4369 | 52.113.205.0/24 4370 | 52.113.206.0/24 4371 | 52.113.207.0/24 4372 | 52.113.208.0/20 4373 | 52.113.224.0/19 4374 | 52.114.0.0/21 4375 | 52.114.8.0/21 4376 | 52.114.16.0/22 4377 | 52.114.20.0/22 4378 | 52.114.24.0/22 4379 | 52.114.28.0/22 4380 | 52.114.32.0/22 4381 | 52.114.36.0/22 4382 | 52.114.40.0/22 4383 | 52.114.44.0/22 4384 | 52.114.48.0/22 4385 | 52.114.52.0/23 4386 | 52.114.54.0/23 4387 | 52.114.56.0/23 4388 | 52.114.58.0/23 4389 | 52.114.60.0/23 4390 | 52.114.64.0/21 4391 | 52.114.72.0/22 4392 | 52.114.76.0/22 4393 | 52.114.80.0/22 4394 | 52.114.84.0/22 4395 | 52.114.88.0/22 4396 | 52.114.92.0/22 4397 | 52.114.96.0/21 4398 | 52.114.104.0/22 4399 | 52.114.108.0/22 4400 | 52.114.116.0/22 4401 | 52.114.120.0/22 4402 | 52.114.128.0/22 4403 | 52.114.132.0/22 4404 | 52.114.136.0/21 4405 | 52.114.144.0/22 4406 | 52.114.148.0/22 4407 | 52.114.152.0/21 4408 | 52.114.160.0/22 4409 | 52.114.164.0/22 4410 | 52.114.168.0/22 4411 | 52.114.172.0/22 4412 | 52.114.176.0/22 4413 | 52.114.180.0/22 4414 | 52.114.184.0/23 4415 | 52.114.186.0/23 4416 | 52.114.192.0/23 4417 | 52.114.194.0/23 4418 | 52.114.196.0/22 4419 | 52.114.200.0/22 4420 | 52.114.216.0/22 4421 | 52.114.224.0/24 4422 | 52.114.226.0/24 4423 | 52.114.228.0/24 4424 | 52.114.230.0/24 4425 | 52.114.231.0/24 4426 | 52.114.232.0/24 4427 | 52.114.233.0/24 4428 | 52.114.234.0/24 4429 | 52.114.236.0/24 4430 | 52.114.238.0/24 4431 | 52.114.240.0/24 4432 | 52.114.241.0/24 4433 | 52.114.242.0/24 4434 | 52.114.244.0/24 4435 | 52.114.248.0/22 4436 | 52.114.252.0/22 4437 | 52.115.0.0/21 4438 | 52.115.8.0/22 4439 | 52.115.16.0/21 4440 | 52.115.24.0/22 4441 | 52.115.32.0/22 4442 | 52.115.36.0/23 4443 | 52.115.38.0/24 4444 | 52.115.39.0/24 4445 | 52.115.40.0/22 4446 | 52.115.44.0/23 4447 | 52.115.46.0/24 4448 | 52.115.47.0/24 4449 | 52.115.48.0/22 4450 | 52.115.52.0/23 4451 | 52.115.54.0/24 4452 | 52.115.55.0/24 4453 | 52.115.56.0/22 4454 | 52.115.60.0/23 4455 | 52.115.62.0/23 4456 | 52.115.64.0/22 4457 | 52.115.68.0/22 4458 | 52.115.72.0/22 4459 | 52.115.76.0/22 4460 | 52.115.80.0/22 4461 | 52.115.84.0/22 4462 | 52.115.88.0/22 4463 | 52.115.96.0/24 4464 | 52.115.97.0/24 4465 | 52.115.98.0/24 4466 | 52.115.99.0/24 4467 | 52.115.100.0/22 4468 | 52.115.104.0/23 4469 | 52.115.128.0/21 4470 | 52.115.136.0/22 4471 | 52.115.140.0/22 4472 | 52.115.144.0/20 4473 | 52.115.160.0/19 4474 | 52.115.192.0/19 4475 | 52.120.0.0/19 4476 | 52.120.32.0/19 4477 | 52.120.64.0/19 4478 | 52.120.96.0/19 4479 | 52.120.128.0/21 4480 | 52.120.136.0/21 4481 | 52.120.144.0/21 4482 | 52.120.152.0/22 4483 | 52.120.156.0/24 4484 | 52.120.157.0/24 4485 | 52.120.158.0/23 4486 | 52.120.160.0/19 4487 | 52.120.192.0/20 4488 | 52.120.208.0/20 4489 | 52.120.224.0/20 4490 | 52.120.240.0/20 4491 | 52.121.0.0/21 4492 | 52.121.16.0/21 4493 | 52.121.24.0/21 4494 | 52.121.32.0/22 4495 | 52.121.36.0/22 4496 | 52.121.40.0/21 4497 | 52.121.48.0/20 4498 | 52.121.64.0/20 4499 | 52.121.80.0/22 4500 | 52.121.84.0/23 4501 | 52.121.88.0/21 4502 | 52.121.96.0/22 4503 | 52.121.100.0/22 4504 | 52.121.104.0/23 4505 | 52.121.106.0/23 4506 | 52.121.108.0/22 4507 | 52.121.116.0/22 4508 | 52.121.120.0/23 4509 | 52.125.128.0/22 4510 | 52.125.132.0/22 4511 | 52.125.136.0/24 4512 | 52.125.137.0/24 4513 | 52.125.138.0/23 4514 | 52.125.140.0/23 4515 | 52.136.0.0/22 4516 | 52.136.4.0/22 4517 | 52.136.8.0/21 4518 | 52.136.16.0/24 4519 | 52.136.17.0/24 4520 | 52.136.18.0/24 4521 | 52.136.19.0/24 4522 | 52.136.20.0/24 4523 | 52.136.21.0/24 4524 | 52.136.22.0/24 4525 | 52.136.23.0/24 4526 | 52.136.24.0/24 4527 | 52.136.25.0/24 4528 | 52.136.26.0/24 4529 | 52.136.27.0/24 4530 | 52.136.28.0/24 4531 | 52.136.29.0/24 4532 | 52.136.30.0/24 4533 | 52.136.31.0/24 4534 | 52.136.32.0/19 4535 | 52.136.64.0/18 4536 | 52.136.128.0/18 4537 | 52.136.192.0/18 4538 | 52.137.0.0/18 4539 | 52.137.64.0/18 4540 | 52.137.128.0/17 4541 | 52.138.0.0/18 4542 | 52.138.64.0/20 4543 | 52.138.80.0/21 4544 | 52.138.88.0/21 4545 | 52.138.96.0/19 4546 | 52.138.128.0/17 4547 | 52.139.0.0/18 4548 | 52.139.64.0/18 4549 | 52.139.128.0/18 4550 | 52.139.192.0/18 4551 | 52.140.0.0/18 4552 | 52.140.64.0/18 4553 | 52.140.128.0/18 4554 | 52.140.192.0/18 4555 | 52.141.0.0/18 4556 | 52.141.64.0/18 4557 | 52.141.128.0/18 4558 | 52.141.192.0/19 4559 | 52.141.224.0/20 4560 | 52.141.240.0/20 4561 | 52.142.0.0/18 4562 | 52.142.64.0/18 4563 | 52.142.128.0/18 4564 | 52.142.192.0/18 4565 | 52.143.0.0/18 4566 | 52.143.64.0/18 4567 | 52.143.128.0/18 4568 | 52.143.192.0/24 4569 | 52.143.193.0/24 4570 | 52.143.194.0/24 4571 | 52.143.195.0/24 4572 | 52.143.196.0/24 4573 | 52.143.197.0/24 4574 | 52.143.198.0/24 4575 | 52.143.199.0/24 4576 | 52.143.200.0/23 4577 | 52.143.202.0/24 4578 | 52.143.203.0/24 4579 | 52.143.204.0/23 4580 | 52.143.206.0/24 4581 | 52.143.207.0/24 4582 | 52.143.208.0/24 4583 | 52.143.209.0/24 4584 | 52.143.210.0/24 4585 | 52.143.211.0/24 4586 | 52.143.212.0/23 4587 | 52.143.214.0/24 4588 | 52.143.215.0/24 4589 | 52.143.216.0/23 4590 | 52.143.218.0/24 4591 | 52.143.219.0/24 4592 | 52.143.221.0/24 4593 | 52.143.222.0/23 4594 | 52.143.224.0/19 4595 | 52.146.0.0/17 4596 | 52.146.128.0/17 4597 | 52.147.0.0/19 4598 | 52.147.32.0/19 4599 | 52.147.64.0/19 4600 | 52.147.96.0/19 4601 | 52.147.128.0/19 4602 | 52.147.160.0/19 4603 | 52.147.192.0/18 4604 | 52.148.0.0/18 4605 | 52.148.64.0/18 4606 | 52.148.128.0/18 4607 | 52.148.192.0/18 4608 | 52.149.0.0/18 4609 | 52.149.64.0/18 4610 | 52.149.128.0/17 4611 | 52.150.0.0/17 4612 | 52.150.128.0/17 4613 | 52.151.0.0/18 4614 | 52.151.64.0/18 4615 | 52.151.128.0/17 4616 | 52.152.0.0/17 4617 | 52.152.128.0/17 4618 | 52.153.0.0/18 4619 | 52.153.64.0/18 4620 | 52.153.128.0/18 4621 | 52.153.192.0/18 4622 | 52.154.0.0/18 4623 | 52.154.64.0/18 4624 | 52.154.128.0/17 4625 | 52.155.0.0/19 4626 | 52.155.32.0/19 4627 | 52.155.64.0/19 4628 | 52.155.96.0/19 4629 | 52.155.128.0/17 4630 | 52.156.0.0/19 4631 | 52.156.32.0/19 4632 | 52.156.64.0/18 4633 | 52.156.128.0/19 4634 | 52.156.160.0/19 4635 | 52.156.192.0/18 4636 | 52.157.0.0/18 4637 | 52.157.64.0/18 4638 | 52.157.128.0/17 4639 | 52.158.0.0/17 4640 | 52.158.128.0/19 4641 | 52.158.160.0/20 4642 | 52.158.176.0/20 4643 | 52.158.192.0/19 4644 | 52.158.224.0/19 4645 | 52.159.0.0/18 4646 | 52.159.64.0/19 4647 | 52.159.128.0/17 4648 | 52.160.0.0/16 4649 | 52.161.0.0/16 4650 | 52.162.0.0/16 4651 | 52.163.0.0/16 4652 | 52.164.0.0/16 4653 | 52.165.0.0/19 4654 | 52.165.32.0/20 4655 | 52.165.48.0/28 4656 | 52.165.49.0/24 4657 | 52.165.56.0/21 4658 | 52.165.64.0/19 4659 | 52.165.96.0/21 4660 | 52.165.104.0/25 4661 | 52.165.104.128/26 4662 | 52.165.128.0/17 4663 | 52.166.0.0/16 4664 | 52.167.0.0/16 4665 | 52.168.0.0/16 4666 | 52.169.0.0/16 4667 | 52.170.0.0/16 4668 | 52.171.0.0/16 4669 | 52.172.0.0/17 4670 | 52.172.128.0/17 4671 | 52.173.0.0/16 4672 | 52.174.0.0/16 4673 | 52.175.0.0/17 4674 | 52.175.128.0/18 4675 | 52.175.192.0/18 4676 | 52.176.0.0/17 4677 | 52.176.128.0/19 4678 | 52.176.160.0/21 4679 | 52.176.176.0/20 4680 | 52.176.192.0/19 4681 | 52.176.224.0/24 4682 | 52.176.225.0/24 4683 | 52.176.232.0/21 4684 | 52.176.240.0/20 4685 | 52.177.0.0/16 4686 | 52.178.0.0/17 4687 | 52.178.128.0/17 4688 | 52.179.0.0/17 4689 | 52.179.128.0/17 4690 | 52.180.0.0/17 4691 | 52.180.128.0/19 4692 | 52.180.160.0/20 4693 | 52.180.176.0/21 4694 | 52.180.184.0/27 4695 | 52.180.184.32/28 4696 | 52.180.185.0/24 4697 | 52.182.128.0/17 4698 | 52.183.0.0/17 4699 | 52.183.128.0/18 4700 | 52.183.192.0/18 4701 | 52.184.0.0/17 4702 | 52.184.128.0/19 4703 | 52.184.160.0/21 4704 | 52.184.168.0/28 4705 | 52.184.168.16/28 4706 | 52.184.168.32/28 4707 | 52.184.168.80/28 4708 | 52.184.168.96/27 4709 | 52.184.168.128/28 4710 | 52.184.169.0/24 4711 | 52.184.170.0/24 4712 | 52.184.176.0/20 4713 | 52.184.192.0/18 4714 | 52.185.0.0/19 4715 | 52.185.32.0/20 4716 | 52.185.48.0/21 4717 | 52.185.56.0/26 4718 | 52.185.56.64/27 4719 | 52.185.56.96/28 4720 | 52.185.56.112/28 4721 | 52.185.56.128/27 4722 | 52.185.56.160/28 4723 | 52.185.64.0/19 4724 | 52.185.96.0/20 4725 | 52.185.112.0/26 4726 | 52.185.112.64/27 4727 | 52.185.112.96/27 4728 | 52.185.120.0/21 4729 | 52.185.128.0/18 4730 | 52.185.192.0/18 4731 | 52.186.0.0/16 4732 | 52.187.0.0/17 4733 | 52.187.128.0/18 4734 | 52.187.192.0/18 4735 | 52.188.0.0/16 4736 | 52.189.0.0/17 4737 | 52.189.128.0/18 4738 | 52.189.192.0/18 4739 | 52.190.0.0/17 4740 | 52.190.128.0/17 4741 | 52.191.0.0/17 4742 | 52.191.128.0/18 4743 | 52.191.192.0/18 4744 | 52.224.0.0/16 4745 | 52.225.0.0/17 4746 | 52.225.128.0/21 4747 | 52.225.136.0/27 4748 | 52.225.136.32/28 4749 | 52.225.136.48/28 4750 | 52.225.136.64/28 4751 | 52.225.137.0/24 4752 | 52.225.144.0/20 4753 | 52.225.160.0/19 4754 | 52.225.192.0/18 4755 | 52.226.0.0/16 4756 | 52.228.0.0/17 4757 | 52.228.128.0/17 4758 | 52.229.0.0/18 4759 | 52.229.64.0/18 4760 | 52.229.128.0/17 4761 | 52.230.0.0/17 4762 | 52.230.128.0/17 4763 | 52.231.0.0/17 4764 | 52.231.128.0/17 4765 | 52.232.0.0/17 4766 | 52.232.128.0/21 4767 | 52.232.136.0/21 4768 | 52.232.144.0/24 4769 | 52.232.145.0/24 4770 | 52.232.146.0/24 4771 | 52.232.147.0/24 4772 | 52.232.148.0/24 4773 | 52.232.149.0/24 4774 | 52.232.150.0/24 4775 | 52.232.151.0/24 4776 | 52.232.152.0/24 4777 | 52.232.153.0/24 4778 | 52.232.154.0/24 4779 | 52.232.155.0/24 4780 | 52.232.156.0/24 4781 | 52.232.157.0/24 4782 | 52.232.158.0/24 4783 | 52.232.159.0/24 4784 | 52.232.160.0/19 4785 | 52.232.192.0/18 4786 | 52.233.0.0/18 4787 | 52.233.64.0/18 4788 | 52.233.128.0/17 4789 | 52.234.0.0/17 4790 | 52.234.128.0/17 4791 | 52.235.0.0/18 4792 | 52.235.64.0/18 4793 | 52.236.0.0/17 4794 | 52.236.128.0/17 4795 | 52.237.0.0/18 4796 | 52.237.64.0/18 4797 | 52.237.128.0/18 4798 | 52.237.192.0/18 4799 | 52.238.0.0/18 4800 | 52.238.192.0/18 4801 | 52.239.0.0/17 4802 | 52.239.128.0/24 4803 | 52.239.129.0/24 4804 | 52.239.130.0/23 4805 | 52.239.132.0/23 4806 | 52.239.134.0/24 4807 | 52.239.135.0/26 4808 | 52.239.135.64/26 4809 | 52.239.135.128/26 4810 | 52.239.135.192/26 4811 | 52.239.136.0/22 4812 | 52.239.140.0/22 4813 | 52.239.144.0/23 4814 | 52.239.146.0/23 4815 | 52.239.148.0/27 4816 | 52.239.148.64/26 4817 | 52.239.148.128/25 4818 | 52.239.149.0/24 4819 | 52.239.150.0/23 4820 | 52.239.152.0/22 4821 | 52.239.156.0/24 4822 | 52.239.157.0/25 4823 | 52.239.157.128/26 4824 | 52.239.157.192/27 4825 | 52.239.157.224/27 4826 | 52.239.158.0/23 4827 | 52.239.160.0/22 4828 | 52.239.164.0/25 4829 | 52.239.164.128/26 4830 | 52.239.164.192/26 4831 | 52.239.165.0/26 4832 | 52.239.165.160/27 4833 | 52.239.165.192/26 4834 | 52.239.167.0/24 4835 | 52.239.168.0/22 4836 | 52.239.172.0/22 4837 | 52.239.176.128/25 4838 | 52.239.177.0/27 4839 | 52.239.177.32/27 4840 | 52.239.177.64/26 4841 | 52.239.177.128/25 4842 | 52.239.178.0/23 4843 | 52.239.180.0/22 4844 | 52.239.184.0/25 4845 | 52.239.184.128/27 4846 | 52.239.184.160/28 4847 | 52.239.184.176/28 4848 | 52.239.184.192/27 4849 | 52.239.184.224/27 4850 | 52.239.185.0/28 4851 | 52.239.185.32/27 4852 | 52.239.185.64/27 4853 | 52.239.186.0/24 4854 | 52.239.187.0/25 4855 | 52.239.187.128/25 4856 | 52.239.188.0/24 4857 | 52.239.189.0/24 4858 | 52.239.190.0/25 4859 | 52.239.190.128/26 4860 | 52.239.190.192/26 4861 | 52.239.192.0/25 4862 | 52.239.192.128/27 4863 | 52.239.192.160/27 4864 | 52.239.192.192/26 4865 | 52.239.193.0/24 4866 | 52.239.194.0/24 4867 | 52.239.195.0/24 4868 | 52.239.196.0/24 4869 | 52.239.197.0/24 4870 | 52.239.198.0/25 4871 | 52.239.198.128/27 4872 | 52.239.198.160/27 4873 | 52.239.198.192/26 4874 | 52.239.199.0/24 4875 | 52.239.200.0/23 4876 | 52.239.202.0/24 4877 | 52.239.203.0/24 4878 | 52.239.204.0/24 4879 | 52.239.205.0/24 4880 | 52.239.206.0/24 4881 | 52.239.207.0/27 4882 | 52.239.207.32/28 4883 | 52.239.207.64/26 4884 | 52.239.207.128/26 4885 | 52.239.207.192/26 4886 | 52.239.208.0/23 4887 | 52.239.210.0/23 4888 | 52.239.212.0/23 4889 | 52.239.214.0/23 4890 | 52.239.216.0/23 4891 | 52.239.218.0/23 4892 | 52.239.220.0/23 4893 | 52.239.222.0/23 4894 | 52.239.224.0/24 4895 | 52.239.225.0/24 4896 | 52.239.226.0/24 4897 | 52.239.227.0/24 4898 | 52.239.228.0/23 4899 | 52.239.230.0/24 4900 | 52.239.231.0/24 4901 | 52.239.232.0/25 4902 | 52.239.232.128/25 4903 | 52.239.233.0/25 4904 | 52.239.233.128/25 4905 | 52.239.234.0/23 4906 | 52.239.236.0/23 4907 | 52.239.238.0/24 4908 | 52.239.239.0/24 4909 | 52.239.240.0/24 4910 | 52.239.241.0/24 4911 | 52.239.242.0/23 4912 | 52.239.244.0/23 4913 | 52.239.246.0/23 4914 | 52.239.248.0/24 4915 | 52.239.249.0/24 4916 | 52.239.250.0/24 4917 | 52.239.251.0/24 4918 | 52.239.252.0/24 4919 | 52.239.253.0/24 4920 | 52.239.254.0/23 4921 | 52.240.0.0/17 4922 | 52.240.128.0/17 4923 | 52.241.0.0/16 4924 | 52.242.0.0/18 4925 | 52.242.64.0/18 4926 | 52.242.128.0/17 4927 | 52.243.32.0/19 4928 | 52.243.64.0/18 4929 | 52.245.8.0/22 4930 | 52.245.12.0/22 4931 | 52.245.16.0/22 4932 | 52.245.20.0/22 4933 | 52.245.24.0/22 4934 | 52.245.28.0/22 4935 | 52.245.32.0/22 4936 | 52.245.36.0/22 4937 | 52.245.40.0/22 4938 | 52.245.44.0/24 4939 | 52.245.45.0/25 4940 | 52.245.45.128/28 4941 | 52.245.45.144/28 4942 | 52.245.45.160/27 4943 | 52.245.45.192/26 4944 | 52.245.46.0/27 4945 | 52.245.46.32/28 4946 | 52.245.46.48/28 4947 | 52.245.46.64/28 4948 | 52.245.46.80/28 4949 | 52.245.46.96/28 4950 | 52.245.46.112/28 4951 | 52.245.46.128/28 4952 | 52.245.46.160/27 4953 | 52.245.46.192/26 4954 | 52.245.47.0/24 4955 | 52.245.48.0/22 4956 | 52.245.52.0/22 4957 | 52.245.56.0/22 4958 | 52.245.60.0/22 4959 | 52.245.64.0/22 4960 | 52.245.68.0/24 4961 | 52.245.69.0/27 4962 | 52.245.69.32/27 4963 | 52.245.69.64/27 4964 | 52.245.69.96/28 4965 | 52.245.69.144/28 4966 | 52.245.69.160/27 4967 | 52.245.69.192/26 4968 | 52.245.70.0/23 4969 | 52.245.72.0/22 4970 | 52.245.76.0/22 4971 | 52.245.80.0/22 4972 | 52.245.84.0/22 4973 | 52.245.88.0/22 4974 | 52.245.92.0/22 4975 | 52.245.96.0/22 4976 | 52.245.100.0/22 4977 | 52.245.104.0/22 4978 | 52.245.108.0/22 4979 | 52.245.112.0/22 4980 | 52.245.116.0/22 4981 | 52.245.120.0/22 4982 | 52.245.124.0/22 4983 | 52.246.0.0/17 4984 | 52.246.128.0/20 4985 | 52.246.152.0/21 4986 | 52.246.160.0/19 4987 | 52.246.192.0/18 4988 | 52.247.0.0/17 4989 | 52.247.192.0/18 4990 | 52.248.0.0/17 4991 | 52.248.128.0/17 4992 | 52.249.0.0/18 4993 | 52.249.64.0/19 4994 | 52.249.128.0/17 4995 | 52.250.0.0/17 4996 | 52.250.128.0/18 4997 | 52.250.192.0/18 4998 | 52.251.0.0/17 4999 | 52.252.0.0/17 5000 | 52.252.128.0/17 5001 | 52.253.0.0/18 5002 | 52.253.64.0/20 5003 | 52.253.80.0/20 5004 | 52.253.96.0/19 5005 | 52.253.128.0/20 5006 | 52.253.148.0/23 5007 | 52.253.150.0/23 5008 | 52.253.152.0/23 5009 | 52.253.154.0/23 5010 | 52.253.156.0/22 5011 | 52.253.160.0/24 5012 | 52.253.161.0/24 5013 | 52.253.162.0/23 5014 | 52.253.165.0/24 5015 | 52.253.166.0/24 5016 | 52.253.167.0/24 5017 | 52.253.168.0/24 5018 | 52.253.169.0/24 5019 | 52.253.170.0/23 5020 | 52.253.172.0/24 5021 | 52.253.173.0/24 5022 | 52.253.174.0/24 5023 | 52.253.175.0/24 5024 | 52.253.176.0/24 5025 | 52.253.177.0/24 5026 | 52.253.178.0/24 5027 | 52.253.179.0/24 5028 | 52.253.180.0/24 5029 | 52.253.181.0/24 5030 | 52.253.185.0/24 5031 | 52.253.186.0/24 5032 | 52.253.191.0/24 5033 | 52.253.196.0/24 5034 | 52.253.197.0/24 5035 | 52.253.224.0/21 5036 | 52.253.232.0/21 5037 | 52.254.0.0/18 5038 | 52.254.64.0/19 5039 | 52.254.96.0/20 5040 | 52.254.112.0/21 5041 | 52.254.120.0/21 5042 | 52.254.128.0/17 5043 | 52.255.0.0/19 5044 | 52.255.32.0/19 5045 | 52.255.64.0/18 5046 | 52.255.128.0/17 5047 | 64.4.8.0/24 5048 | 64.4.22.64/26 5049 | 64.4.54.0/24 5050 | 65.52.0.0/19 5051 | 65.52.32.0/21 5052 | 65.52.45.0/24 5053 | 65.52.48.0/20 5054 | 65.52.64.0/20 5055 | 65.52.104.0/24 5056 | 65.52.106.0/24 5057 | 65.52.108.0/23 5058 | 65.52.110.0/24 5059 | 65.52.111.0/24 5060 | 65.52.112.0/20 5061 | 65.52.128.0/19 5062 | 65.52.160.0/19 5063 | 65.52.192.0/19 5064 | 65.52.224.0/21 5065 | 65.52.232.0/21 5066 | 65.52.240.0/21 5067 | 65.52.248.0/21 5068 | 65.54.19.128/27 5069 | 65.54.54.32/27 5070 | 65.54.55.160/27 5071 | 65.54.55.224/27 5072 | 65.54.62.0/25 5073 | 65.54.74.0/23 5074 | 65.54.80.0/20 5075 | 65.54.165.0/25 5076 | 65.55.22.32/27 5077 | 65.55.32.128/28 5078 | 65.55.32.192/27 5079 | 65.55.32.224/28 5080 | 65.55.33.176/28 5081 | 65.55.33.192/28 5082 | 65.55.35.192/27 5083 | 65.55.39.128/25 5084 | 65.55.44.8/29 5085 | 65.55.44.16/28 5086 | 65.55.44.32/27 5087 | 65.55.44.64/27 5088 | 65.55.44.96/28 5089 | 65.55.44.112/28 5090 | 65.55.44.128/27 5091 | 65.55.51.0/24 5092 | 65.55.60.176/29 5093 | 65.55.60.188/30 5094 | 65.55.78.128/25 5095 | 65.55.83.128/27 5096 | 65.55.86.0/23 5097 | 65.55.88.0/24 5098 | 65.55.94.0/25 5099 | 65.55.105.0/26 5100 | 65.55.105.96/27 5101 | 65.55.105.160/27 5102 | 65.55.105.192/27 5103 | 65.55.105.224/27 5104 | 65.55.106.0/26 5105 | 65.55.106.64/27 5106 | 65.55.106.128/26 5107 | 65.55.106.192/28 5108 | 65.55.106.208/28 5109 | 65.55.106.224/28 5110 | 65.55.106.240/28 5111 | 65.55.107.0/28 5112 | 65.55.107.48/28 5113 | 65.55.107.64/27 5114 | 65.55.107.96/27 5115 | 65.55.108.0/24 5116 | 65.55.109.0/24 5117 | 65.55.110.0/24 5118 | 65.55.113.64/26 5119 | 65.55.120.0/24 5120 | 65.55.121.128/27 5121 | 65.55.126.0/25 5122 | 65.55.127.0/24 5123 | 65.55.144.0/23 5124 | 65.55.146.0/24 5125 | 65.55.169.0/24 5126 | 65.55.174.0/25 5127 | 65.55.181.128/25 5128 | 65.55.207.0/24 5129 | 65.55.209.0/25 5130 | 65.55.209.128/26 5131 | 65.55.209.192/26 5132 | 65.55.210.0/24 5133 | 65.55.211.0/27 5134 | 65.55.211.32/27 5135 | 65.55.212.0/27 5136 | 65.55.212.128/25 5137 | 65.55.213.0/27 5138 | 65.55.213.64/26 5139 | 65.55.213.128/26 5140 | 65.55.217.0/24 5141 | 65.55.218.0/24 5142 | 65.55.219.0/27 5143 | 65.55.219.32/27 5144 | 65.55.219.64/26 5145 | 65.55.219.128/25 5146 | 65.55.233.0/27 5147 | 65.55.250.0/24 5148 | 65.55.252.0/24 5149 | 66.119.157.0/25 5150 | 66.119.157.192/26 5151 | 66.119.158.0/25 5152 | 70.37.0.0/21 5153 | 70.37.8.0/22 5154 | 70.37.16.0/20 5155 | 70.37.32.0/20 5156 | 70.37.48.0/20 5157 | 70.37.64.0/18 5158 | 70.37.128.0/23 5159 | 70.37.142.0/23 5160 | 70.37.150.128/25 5161 | 70.37.151.64/27 5162 | 70.37.151.128/25 5163 | 70.37.159.0/24 5164 | 70.37.160.0/21 5165 | 91.190.216.0/24 5166 | 91.190.218.0/24 5167 | 94.245.68.0/22 5168 | 94.245.82.0/23 5169 | 94.245.84.0/24 5170 | 94.245.86.0/24 5171 | 94.245.88.0/21 5172 | 94.245.104.0/21 5173 | 94.245.113.160/27 5174 | 94.245.114.2/31 5175 | 94.245.114.34/31 5176 | 94.245.117.96/27 5177 | 94.245.117.128/25 5178 | 94.245.118.0/27 5179 | 94.245.118.66/31 5180 | 94.245.118.98/31 5181 | 94.245.118.130/31 5182 | 94.245.120.64/26 5183 | 94.245.120.128/28 5184 | 94.245.122.0/24 5185 | 94.245.123.144/28 5186 | 94.245.123.176/28 5187 | 102.37.0.0/20 5188 | 102.37.16.0/21 5189 | 102.37.24.0/23 5190 | 102.37.32.0/19 5191 | 102.37.64.0/21 5192 | 102.37.72.0/21 5193 | 102.37.96.0/19 5194 | 102.133.0.0/18 5195 | 102.133.64.0/19 5196 | 102.133.96.0/20 5197 | 102.133.112.0/28 5198 | 102.133.120.0/21 5199 | 102.133.128.0/18 5200 | 102.133.192.0/19 5201 | 102.133.224.0/20 5202 | 102.133.240.0/25 5203 | 102.133.240.128/26 5204 | 102.133.248.0/21 5205 | 104.40.0.0/17 5206 | 104.40.128.0/17 5207 | 104.41.0.0/18 5208 | 104.41.64.0/18 5209 | 104.41.128.0/19 5210 | 104.41.160.0/19 5211 | 104.41.192.0/18 5212 | 104.42.0.0/16 5213 | 104.43.0.0/17 5214 | 104.43.128.0/17 5215 | 104.44.88.0/27 5216 | 104.44.88.32/27 5217 | 104.44.88.64/27 5218 | 104.44.88.96/27 5219 | 104.44.88.128/27 5220 | 104.44.88.160/27 5221 | 104.44.88.192/27 5222 | 104.44.88.224/27 5223 | 104.44.89.0/27 5224 | 104.44.89.32/27 5225 | 104.44.89.64/27 5226 | 104.44.89.96/27 5227 | 104.44.89.128/27 5228 | 104.44.89.160/27 5229 | 104.44.89.192/27 5230 | 104.44.89.224/27 5231 | 104.44.90.0/27 5232 | 104.44.90.32/27 5233 | 104.44.90.64/26 5234 | 104.44.90.128/27 5235 | 104.44.90.160/27 5236 | 104.44.90.192/27 5237 | 104.44.90.224/27 5238 | 104.44.91.0/27 5239 | 104.44.91.32/27 5240 | 104.44.91.64/27 5241 | 104.44.91.96/27 5242 | 104.44.91.128/27 5243 | 104.44.91.160/27 5244 | 104.44.91.192/27 5245 | 104.44.91.224/27 5246 | 104.44.92.0/27 5247 | 104.44.92.32/27 5248 | 104.44.92.64/27 5249 | 104.44.92.96/27 5250 | 104.44.92.128/27 5251 | 104.44.92.160/27 5252 | 104.44.92.192/27 5253 | 104.44.92.224/27 5254 | 104.44.93.0/27 5255 | 104.44.93.32/27 5256 | 104.44.93.64/27 5257 | 104.44.93.96/27 5258 | 104.44.93.128/27 5259 | 104.44.93.160/27 5260 | 104.44.93.192/27 5261 | 104.44.93.224/27 5262 | 104.44.94.0/28 5263 | 104.44.94.16/28 5264 | 104.44.94.32/28 5265 | 104.44.94.48/28 5266 | 104.44.94.64/28 5267 | 104.44.94.80/28 5268 | 104.44.94.96/28 5269 | 104.44.94.112/28 5270 | 104.44.94.128/28 5271 | 104.44.94.144/28 5272 | 104.44.94.160/27 5273 | 104.44.94.192/28 5274 | 104.44.94.208/28 5275 | 104.44.94.224/27 5276 | 104.44.95.0/28 5277 | 104.44.95.16/28 5278 | 104.44.95.32/28 5279 | 104.44.95.48/28 5280 | 104.44.95.64/28 5281 | 104.44.95.80/28 5282 | 104.44.95.96/28 5283 | 104.44.95.112/28 5284 | 104.44.95.128/27 5285 | 104.44.95.160/27 5286 | 104.44.95.192/28 5287 | 104.44.95.208/28 5288 | 104.44.95.224/28 5289 | 104.44.95.240/28 5290 | 104.44.128.0/18 5291 | 104.45.0.0/18 5292 | 104.45.64.0/20 5293 | 104.45.80.0/20 5294 | 104.45.96.0/19 5295 | 104.45.128.0/18 5296 | 104.45.192.0/20 5297 | 104.45.208.0/20 5298 | 104.45.224.0/19 5299 | 104.46.0.0/21 5300 | 104.46.8.0/21 5301 | 104.46.24.0/22 5302 | 104.46.28.0/24 5303 | 104.46.29.0/24 5304 | 104.46.30.0/23 5305 | 104.46.32.0/19 5306 | 104.46.64.0/19 5307 | 104.46.96.0/19 5308 | 104.46.160.0/19 5309 | 104.46.192.0/20 5310 | 104.46.208.0/20 5311 | 104.46.224.0/20 5312 | 104.47.0.0/17 5313 | 104.47.128.0/18 5314 | 104.47.200.0/21 5315 | 104.47.208.0/23 5316 | 104.47.210.0/23 5317 | 104.47.212.0/23 5318 | 104.47.214.0/23 5319 | 104.47.216.64/26 5320 | 104.47.218.0/23 5321 | 104.47.220.0/22 5322 | 104.47.224.0/20 5323 | 104.146.0.0/15 5324 | 104.208.0.0/19 5325 | 104.208.32.0/20 5326 | 104.208.48.0/20 5327 | 104.208.64.0/18 5328 | 104.208.128.0/17 5329 | 104.209.0.0/18 5330 | 104.209.64.0/20 5331 | 104.209.80.0/20 5332 | 104.209.128.0/17 5333 | 104.210.0.0/20 5334 | 104.210.32.0/19 5335 | 104.210.64.0/18 5336 | 104.210.128.0/19 5337 | 104.210.176.0/20 5338 | 104.210.192.0/19 5339 | 104.211.0.0/18 5340 | 104.211.64.0/18 5341 | 104.211.128.0/18 5342 | 104.211.192.0/18 5343 | 104.214.0.0/17 5344 | 104.214.128.0/19 5345 | 104.214.160.0/19 5346 | 104.214.192.0/18 5347 | 104.215.0.0/18 5348 | 104.215.64.0/18 5349 | 104.215.128.0/17 5350 | 111.221.16.0/21 5351 | 111.221.24.0/21 5352 | 111.221.64.160/27 5353 | 111.221.66.0/25 5354 | 111.221.67.0/25 5355 | 111.221.69.128/25 5356 | 111.221.70.0/25 5357 | 111.221.71.0/25 5358 | 111.221.76.96/27 5359 | 111.221.76.128/25 5360 | 111.221.77.0/26 5361 | 111.221.78.0/23 5362 | 111.221.80.0/20 5363 | 111.221.96.0/20 5364 | 111.221.112.0/21 5365 | 111.221.127.112/28 5366 | 131.253.12.16/28 5367 | 131.253.12.40/29 5368 | 131.253.12.48/29 5369 | 131.253.12.160/28 5370 | 131.253.12.176/28 5371 | 131.253.12.192/28 5372 | 131.253.12.208/28 5373 | 131.253.12.224/30 5374 | 131.253.12.228/30 5375 | 131.253.12.248/29 5376 | 131.253.13.0/28 5377 | 131.253.13.16/29 5378 | 131.253.13.24/29 5379 | 131.253.13.32/28 5380 | 131.253.13.48/28 5381 | 131.253.13.72/29 5382 | 131.253.13.80/29 5383 | 131.253.13.88/30 5384 | 131.253.13.96/30 5385 | 131.253.13.100/30 5386 | 131.253.13.104/30 5387 | 131.253.13.128/27 5388 | 131.253.14.4/30 5389 | 131.253.14.8/31 5390 | 131.253.14.16/28 5391 | 131.253.14.32/27 5392 | 131.253.14.64/29 5393 | 131.253.14.96/27 5394 | 131.253.14.128/27 5395 | 131.253.14.160/27 5396 | 131.253.14.192/29 5397 | 131.253.14.208/28 5398 | 131.253.14.224/28 5399 | 131.253.14.248/29 5400 | 131.253.15.8/29 5401 | 131.253.15.16/28 5402 | 131.253.15.32/27 5403 | 131.253.15.192/28 5404 | 131.253.15.208/28 5405 | 131.253.15.224/27 5406 | 131.253.24.0/28 5407 | 131.253.24.160/27 5408 | 131.253.24.192/26 5409 | 131.253.25.0/24 5410 | 131.253.27.0/24 5411 | 131.253.34.224/27 5412 | 131.253.35.128/26 5413 | 131.253.35.192/26 5414 | 131.253.36.128/26 5415 | 131.253.36.224/27 5416 | 131.253.38.0/27 5417 | 131.253.38.32/27 5418 | 131.253.38.128/26 5419 | 131.253.38.224/27 5420 | 131.253.40.0/28 5421 | 131.253.40.16/28 5422 | 131.253.40.32/28 5423 | 131.253.40.48/29 5424 | 131.253.40.64/28 5425 | 131.253.40.80/28 5426 | 131.253.40.96/27 5427 | 131.253.40.128/27 5428 | 131.253.40.160/28 5429 | 131.253.40.192/26 5430 | 131.253.41.0/24 5431 | 131.253.132.0/25 5432 | 131.253.138.128/25 5433 | 131.253.140.128/25 5434 | 131.253.141.128/25 5435 | 132.245.0.0/24 5436 | 134.170.0.0/25 5437 | 134.170.80.64/28 5438 | 134.170.192.0/21 5439 | 134.170.220.0/23 5440 | 134.170.222.0/24 5441 | 134.177.0.0/16 5442 | 137.116.0.0/18 5443 | 137.116.64.0/19 5444 | 137.116.96.0/22 5445 | 137.116.112.0/20 5446 | 137.116.128.0/19 5447 | 137.116.160.0/20 5448 | 137.116.176.0/21 5449 | 137.116.184.0/21 5450 | 137.116.192.0/19 5451 | 137.116.224.0/19 5452 | 137.117.0.0/19 5453 | 137.117.32.0/19 5454 | 137.117.64.0/18 5455 | 137.117.128.0/17 5456 | 137.135.0.0/18 5457 | 137.135.64.0/18 5458 | 137.135.128.0/17 5459 | 138.91.0.0/20 5460 | 138.91.16.0/20 5461 | 138.91.32.0/20 5462 | 138.91.48.0/20 5463 | 138.91.64.0/19 5464 | 138.91.96.0/19 5465 | 138.91.128.0/17 5466 | 157.55.2.128/26 5467 | 157.55.3.0/24 5468 | 157.55.7.128/26 5469 | 157.55.8.64/26 5470 | 157.55.8.144/28 5471 | 157.55.9.128/25 5472 | 157.55.10.160/29 5473 | 157.55.10.176/28 5474 | 157.55.10.192/26 5475 | 157.55.11.0/25 5476 | 157.55.11.128/25 5477 | 157.55.12.64/26 5478 | 157.55.12.128/26 5479 | 157.55.13.64/26 5480 | 157.55.13.128/26 5481 | 157.55.24.0/21 5482 | 157.55.37.0/24 5483 | 157.55.38.0/24 5484 | 157.55.39.0/24 5485 | 157.55.40.128/25 5486 | 157.55.43.32/27 5487 | 157.55.45.128/25 5488 | 157.55.46.0/27 5489 | 157.55.46.64/26 5490 | 157.55.46.128/27 5491 | 157.55.47.0/24 5492 | 157.55.48.0/24 5493 | 157.55.49.0/24 5494 | 157.55.50.0/25 5495 | 157.55.51.224/28 5496 | 157.55.55.0/27 5497 | 157.55.55.32/28 5498 | 157.55.55.100/30 5499 | 157.55.55.104/29 5500 | 157.55.55.136/29 5501 | 157.55.55.144/29 5502 | 157.55.55.152/29 5503 | 157.55.55.160/28 5504 | 157.55.55.176/29 5505 | 157.55.55.200/29 5506 | 157.55.55.216/29 5507 | 157.55.55.228/30 5508 | 157.55.55.232/29 5509 | 157.55.55.240/28 5510 | 157.55.56.0/27 5511 | 157.55.59.128/25 5512 | 157.55.60.224/27 5513 | 157.55.61.0/24 5514 | 157.55.62.96/27 5515 | 157.55.62.128/27 5516 | 157.55.64.0/20 5517 | 157.55.80.0/21 5518 | 157.55.103.0/27 5519 | 157.55.103.32/27 5520 | 157.55.103.128/25 5521 | 157.55.106.0/26 5522 | 157.55.106.128/25 5523 | 157.55.107.0/24 5524 | 157.55.108.0/23 5525 | 157.55.110.0/23 5526 | 157.55.115.0/25 5527 | 157.55.130.0/25 5528 | 157.55.133.160/27 5529 | 157.55.136.0/21 5530 | 157.55.144.64/26 5531 | 157.55.145.0/25 5532 | 157.55.145.192/27 5533 | 157.55.147.0/27 5534 | 157.55.151.0/28 5535 | 157.55.151.192/27 5536 | 157.55.152.128/25 5537 | 157.55.153.0/27 5538 | 157.55.153.64/26 5539 | 157.55.153.224/28 5540 | 157.55.154.64/27 5541 | 157.55.154.128/25 5542 | 157.55.155.0/25 5543 | 157.55.157.128/25 5544 | 157.55.158.0/23 5545 | 157.55.160.0/20 5546 | 157.55.176.0/20 5547 | 157.55.192.0/21 5548 | 157.55.200.0/22 5549 | 157.55.204.2/31 5550 | 157.55.204.34/31 5551 | 157.55.204.128/25 5552 | 157.55.206.0/23 5553 | 157.55.208.0/21 5554 | 157.55.224.128/25 5555 | 157.55.225.0/25 5556 | 157.55.225.160/27 5557 | 157.55.225.224/27 5558 | 157.55.227.128/27 5559 | 157.55.227.192/26 5560 | 157.55.229.0/25 5561 | 157.55.229.128/27 5562 | 157.55.229.160/27 5563 | 157.55.231.32/27 5564 | 157.55.232.0/27 5565 | 157.55.232.128/26 5566 | 157.55.234.0/24 5567 | 157.55.235.64/27 5568 | 157.55.238.0/25 5569 | 157.55.238.128/27 5570 | 157.55.248.0/21 5571 | 157.56.0.0/16 5572 | 168.61.0.0/19 5573 | 168.61.32.0/20 5574 | 168.61.48.0/21 5575 | 168.61.56.0/21 5576 | 168.61.64.0/20 5577 | 168.61.80.0/20 5578 | 168.61.96.0/19 5579 | 168.61.128.0/25 5580 | 168.61.128.128/28 5581 | 168.61.128.160/27 5582 | 168.61.128.192/26 5583 | 168.61.129.0/25 5584 | 168.61.129.128/26 5585 | 168.61.129.208/28 5586 | 168.61.129.224/27 5587 | 168.61.130.64/26 5588 | 168.61.130.128/25 5589 | 168.61.131.0/26 5590 | 168.61.131.128/25 5591 | 168.61.132.0/26 5592 | 168.61.136.0/21 5593 | 168.61.144.0/20 5594 | 168.61.160.0/19 5595 | 168.61.208.0/20 5596 | 168.62.0.0/19 5597 | 168.62.32.0/19 5598 | 168.62.64.0/19 5599 | 168.62.96.0/19 5600 | 168.62.128.0/19 5601 | 168.62.160.0/19 5602 | 168.62.192.0/19 5603 | 168.62.224.0/19 5604 | 168.63.0.0/19 5605 | 168.63.32.0/19 5606 | 168.63.64.0/20 5607 | 168.63.80.0/21 5608 | 168.63.88.0/23 5609 | 168.63.90.0/24 5610 | 168.63.91.0/26 5611 | 168.63.92.0/22 5612 | 168.63.96.0/19 5613 | 168.63.128.0/24 5614 | 168.63.129.0/28 5615 | 168.63.129.32/27 5616 | 168.63.129.64/26 5617 | 168.63.129.128/25 5618 | 168.63.130.0/23 5619 | 168.63.132.0/22 5620 | 168.63.136.0/21 5621 | 168.63.148.0/22 5622 | 168.63.152.0/22 5623 | 168.63.156.0/24 5624 | 168.63.160.0/19 5625 | 168.63.192.0/19 5626 | 168.63.224.0/19 5627 | 191.232.0.0/23 5628 | 191.232.2.64/26 5629 | 191.232.2.128/25 5630 | 191.232.16.0/21 5631 | 191.232.32.0/19 5632 | 191.232.80.96/27 5633 | 191.232.83.0/27 5634 | 191.232.83.32/27 5635 | 191.232.83.64/27 5636 | 191.232.138.0/23 5637 | 191.232.140.0/24 5638 | 191.232.160.0/19 5639 | 191.232.192.0/18 5640 | 191.233.0.0/21 5641 | 191.233.8.0/21 5642 | 191.233.16.0/20 5643 | 191.233.32.0/20 5644 | 191.233.48.0/21 5645 | 191.233.64.0/19 5646 | 191.233.96.0/20 5647 | 191.233.112.0/21 5648 | 191.233.128.0/20 5649 | 191.233.144.0/20 5650 | 191.233.160.0/19 5651 | 191.233.192.0/18 5652 | 191.234.2.0/23 5653 | 191.234.6.0/24 5654 | 191.234.8.0/21 5655 | 191.234.16.0/20 5656 | 191.234.32.0/19 5657 | 191.234.76.0/23 5658 | 191.234.128.0/18 5659 | 191.234.224.0/19 5660 | 191.235.0.0/20 5661 | 191.235.32.0/19 5662 | 191.235.64.0/18 5663 | 191.235.128.0/18 5664 | 191.235.192.0/22 5665 | 191.235.196.0/22 5666 | 191.235.200.0/21 5667 | 191.235.208.0/20 5668 | 191.235.224.0/20 5669 | 191.235.240.0/21 5670 | 191.235.248.0/23 5671 | 191.235.250.0/25 5672 | 191.235.255.0/24 5673 | 191.236.0.0/18 5674 | 191.236.64.0/18 5675 | 191.236.128.0/18 5676 | 191.236.192.0/18 5677 | 191.237.0.0/17 5678 | 191.237.128.0/18 5679 | 191.237.192.0/23 5680 | 191.237.194.0/24 5681 | 191.237.195.0/24 5682 | 191.237.196.0/24 5683 | 191.237.200.0/21 5684 | 191.237.208.0/20 5685 | 191.237.224.0/21 5686 | 191.237.232.0/22 5687 | 191.237.236.0/24 5688 | 191.237.238.0/24 5689 | 191.237.240.0/23 5690 | 191.237.248.0/21 5691 | 191.238.0.0/18 5692 | 191.238.64.0/23 5693 | 191.238.66.0/23 5694 | 191.238.68.0/24 5695 | 191.238.70.0/23 5696 | 191.238.80.0/21 5697 | 191.238.88.0/22 5698 | 191.238.92.0/23 5699 | 191.238.96.0/19 5700 | 191.238.128.0/21 5701 | 191.238.144.0/20 5702 | 191.238.160.0/19 5703 | 191.238.192.0/19 5704 | 191.238.224.0/19 5705 | 191.239.0.0/18 5706 | 191.239.64.0/19 5707 | 191.239.96.0/20 5708 | 191.239.112.0/20 5709 | 191.239.160.0/19 5710 | 191.239.192.0/22 5711 | 191.239.200.0/22 5712 | 191.239.204.0/22 5713 | 191.239.208.0/20 5714 | 191.239.224.0/20 5715 | 191.239.240.0/20 5716 | 193.149.64.0/21 5717 | 193.149.72.0/21 5718 | 193.149.80.0/21 5719 | 193.149.88.0/21 5720 | 198.180.97.0/25 5721 | 198.180.97.128/26 5722 | 199.30.16.0/24 5723 | 199.30.18.0/23 5724 | 199.30.20.0/24 5725 | 199.30.22.0/24 5726 | 199.30.24.0/23 5727 | 199.30.27.0/25 5728 | 199.30.27.144/28 5729 | 199.30.27.160/27 5730 | 199.30.28.64/26 5731 | 199.30.28.128/25 5732 | 199.30.29.0/24 5733 | 199.30.31.0/25 5734 | 199.30.31.192/26 5735 | 204.79.180.0/24 5736 | 204.231.197.0/24 5737 | 206.191.224.0/19 5738 | 207.46.4.128/25 5739 | 207.46.5.0/24 5740 | 207.46.7.128/27 5741 | 207.46.13.0/24 5742 | 207.46.50.128/28 5743 | 207.46.51.64/26 5744 | 207.46.57.0/25 5745 | 207.46.57.128/25 5746 | 207.46.58.128/25 5747 | 207.46.59.64/27 5748 | 207.46.63.64/27 5749 | 207.46.63.128/25 5750 | 207.46.67.160/27 5751 | 207.46.67.192/27 5752 | 207.46.70.0/24 5753 | 207.46.72.0/27 5754 | 207.46.77.224/28 5755 | 207.46.87.0/24 5756 | 207.46.89.16/28 5757 | 207.46.95.32/27 5758 | 207.46.100.0/24 5759 | 207.46.101.128/26 5760 | 207.46.126.0/24 5761 | 207.46.128.0/19 5762 | 207.46.163.0/24 5763 | 207.46.193.192/28 5764 | 207.46.193.224/27 5765 | 207.46.198.0/25 5766 | 207.46.198.128/25 5767 | 207.46.200.96/27 5768 | 207.46.200.176/28 5769 | 207.46.202.128/28 5770 | 207.46.203.128/27 5771 | 207.46.205.0/24 5772 | 207.46.206.0/23 5773 | 207.46.224.0/20 5774 | 207.68.174.40/29 5775 | 207.68.174.48/29 5776 | 207.68.174.184/29 5777 | 207.68.174.192/28 5778 | 207.68.174.208/28 5779 | 209.240.212.0/23 5780 | 213.199.128.0/20 5781 | 213.199.148.0/23 5782 | 213.199.154.0/24 5783 | 213.199.174.0/25 5784 | 213.199.177.0/26 5785 | 213.199.179.0/27 5786 | 213.199.180.32/28 5787 | 213.199.180.96/27 5788 | 213.199.180.128/26 5789 | 213.199.180.192/27 5790 | 213.199.182.128/25 5791 | 213.199.183.0/24 5792 | 216.32.180.0/24 5793 | 216.32.181.0/24 5794 | -------------------------------------------------------------------------------- /bipupdate/lst/aipupdate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ------------------------------------ 3 | # AllowIP for Reverse Squid 4 | # https://unix.stackexchange.com/questions/550796/bash-to-launching-multiple-queries-with-xargs 5 | # ------------------------------------ 6 | # used: host -t a / or / dig +short -f 7 | # dig example.com +nostats +nocomments +nocmd 8 | 9 | # Language spa-eng 10 | cm1=("This process can take a long time. Be patient..." "Este proceso puede tardar mucho tiempo. Sea paciente...") 11 | cm2=("Downloading Allow URLs..." "Descargando Allow URLs...") 12 | cm3=("Debugging AllowIP..." "Depurando AllowIP...") 13 | cm4=("Copy Allow IP to Squid and eliminate the conflicts" "Copie Allow IP a Squid y elimine los conflictos") 14 | test "${LANG:0:2}" == "en" 15 | en=$? 16 | 17 | clear 18 | #echo -e "\n" 19 | echo "AllowIP Project" 20 | echo "${cm1[${en}]}" 21 | 22 | # VARIABLES 23 | wip=$(pwd)/allowip.txt 24 | reorganize="sort -t . -k 1,1n -k 2,2n -k 3,3n -k 4,4n" 25 | wgetd='wget -q -c --no-check-certificate --retry-connrefused --timeout=10 --tries=4' 26 | 27 | # DOWNLOAD URLS 28 | echo "${cm2[${en}]}" 29 | function intacls() { 30 | $wgetd "$1" -O - | sed '/^$/d; /#/d' | sed 's:^\.::' | sort -u >>urls 31 | } 32 | intacls 'https://raw.githubusercontent.com/maravento/blackweb/master/bwupdate/lst/allowurls.txt' && sleep 1 33 | #intacls 'https://raw.githubusercontent.com/maravento/blackweb/master/bwupdate/lst/remote.txt' && sleep 1 34 | 35 | # DEBBUGGING Allow WhiteIP (CIDR) 36 | echo "${cm3[${en}]}" 37 | pp="100" 38 | cat urls | xargs -I {} -P "$pp" bash -c 'for sub in "" "www." "ftp."; do host -t a "${sub}{}" ; done ' | grep "has address" | awk '{ print $4 }' >out 39 | # add iana 40 | # cat iana.txt out > outfile.tmp && mv outfile.tmp out 41 | # add teamviewer ips 42 | #cat tw.txt >> out 43 | # reorganize 44 | cat out | $reorganize | uniq >"$wip" 45 | 46 | # END 47 | echo "${bip07[${en}]}" 48 | echo "AllowIP Done: $(date)" 49 | notify-send "AllowIP Update Done" "$(date)" -i checkbox 50 | -------------------------------------------------------------------------------- /bipupdate/lst/blackcidr.txt: -------------------------------------------------------------------------------- 1 | 9.9.9.0/16 2 | 13.32.0.0/15 3 | 13.224.0.0/14 4 | 13.248.0.0/14 5 | 54.192.0.0/16 6 | 65.49.0.0/17 7 | 72.21.80.0/20 8 | 72.52.64.0/18 9 | 74.82.0.0/18 10 | 118.165.0.0/16 11 | 192.16.0.0/18 12 | 204.107.140.0/24 13 | -------------------------------------------------------------------------------- /bipupdate/lst/dns.txt: -------------------------------------------------------------------------------- 1 | # Public DNS Server List IPv4 2 | # DNS Socket for Squid 3 | 0.0.0.0 4 | # Cloudflare 5 | 1.1.1.1 6 | 1.0.0.1 7 | # Google 8 | 8.8.8.8 9 | 8.8.4.4 10 | # Quad9 11 | 9.9.9.9 12 | 149.112.112.112 13 | # CleanBrowsing 14 | 185.228.168.168 15 | 185.228.169.168 16 | # OpenDNS Home 17 | 208.67.222.222 18 | 208.67.220.220 19 | # Alternate DNS 20 | 76.76.19.19 21 | 76.223.122.150 22 | # Control D 23 | 76.76.2.0 24 | 76.76.10.0 25 | # AdGuard DNS 26 | 176.103.130.130 27 | 176.103.130.131 28 | # Comodo Secure DNS 29 | 8.26.56.26 30 | 8.20.247.20 31 | # Verisign 32 | 64.6.64.6 33 | 64.6.65.6 34 | # OpenNIC 35 | 216.87.84.211 36 | 23.90.4.6 37 | # Yandex DNS 38 | 77.88.8.8 39 | 77.88.8.1 40 | 77.88.8.88 41 | 77.88.8.2 42 | 77.88.8.7 43 | 77.88.8.3 44 | # DNS.Watch 45 | 84.200.69.80 46 | 84.200.70.40 47 | # Level 3 48 | 209.244.0.3 49 | 209.244.0.4 50 | # Oracle Dyn 51 | 216.146.35.35 52 | 216.146.36.36 53 | # UncensoredDNS 54 | 91.239.100.100 55 | 89.233.43.71 56 | # Neustar Security Services 57 | 156.154.70.5 58 | 156.157.71.5 59 | # GreenTeamDNS 60 | 81.218.119.11 61 | 209.88.198.133 62 | # SafeDNS 63 | 195.46.39.39 64 | 195.46.39.40 65 | # Hurricane Electric 66 | 74.82.42.42 67 | -------------------------------------------------------------------------------- /bipupdate/lst/iana.txt: -------------------------------------------------------------------------------- 1 | 0.0.0.0/8 2 | 10.0.0.0/8 3 | 100.64.0.0/10 4 | 127.0.0.0/8 5 | 169.254.0.0/16 6 | 172.16.0.0/12 7 | 192.0.0.0/24 8 | 192.0.2.0/24 9 | 192.168.0.0/16 10 | 198.18.0.0/15 11 | 198.51.100.0/24 12 | 203.0.113.0/24 13 | 224.0.0.0/4 14 | 240.0.0.0/4 15 | -------------------------------------------------------------------------------- /bipupdate/tools/cidr2ip.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | def ip2int(ip): 3 | ip = [int(p) for p in ip.split(".")] 4 | return ip[0] << 24 | ip[1] << 16 | ip[2] << 8 | ip[3] 5 | 6 | def int2ip(i): 7 | return "{0}.{1}.{2}.{3}".format( 8 | i >> 24 & 0xff, 9 | i >> 16 & 0xff, 10 | i >> 8 & 0xff, 11 | i & 0xff) 12 | 13 | def toRange(ip): 14 | if "-" in ip: 15 | ip1, ip2 = ip.split("-") 16 | return [int2ip(i) for i in range(ip2int(ip1), ip2int(ip2)+1)] 17 | elif "/" in ip: 18 | ip1, mask = ip.split("/") 19 | ip1 = ip2int(ip1) 20 | # netmask 21 | netmask = ip2int('255.255.255.255') << (32 - int(mask)) 22 | broadcast = ip2int('255.255.255.255') >> int(mask) | ip1 23 | network = ip1 & netmask 24 | return [int2ip(i) for i in range(ip1, broadcast)] 25 | else: 26 | return [ip] 27 | 28 | if __name__ == '__main__': 29 | import sys 30 | 31 | if len(sys.argv) < 2: 32 | print("Error: falta archivo") 33 | exit(1) 34 | 35 | try: 36 | 37 | lines = open(sys.argv[1]).readlines() 38 | ips = [] 39 | 40 | for line in lines: 41 | if line.startswith("#"): continue 42 | for ip in toRange(line.strip()): 43 | print(ip) 44 | 45 | exit(0) 46 | except Exception as e: 47 | print("Error: File \"%s\" doesn't exist" % sys.argv[1]) 48 | exit(1) 49 | -------------------------------------------------------------------------------- /bipupdate/tools/debugbip.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | a=set(line.strip().lower() for line in open('blackip.txt').readlines()) 3 | b=set(line.strip().lower() for line in open('debugip').readlines()) 4 | open("outip", "w").write("\n".join(a.difference(b))) 5 | -------------------------------------------------------------------------------- /blackip.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maravento/blackip/a4f6a229ffc930685deb5c7248dcc10333c8e47b/blackip.tar.gz -------------------------------------------------------------------------------- /checksum.md5: -------------------------------------------------------------------------------- 1 | b9b848236a168fc5bc549f03ac4caea0 blackip.txt 2 | --------------------------------------------------------------------------------