├── .github └── workflows │ ├── UpBestIP.py │ └── UpBestIP.yml ├── BestCF ├── bestcfv4.txt ├── bestcfv6.txt ├── ipv4.csv └── ipv6.csv ├── BestGC ├── bestgcv4.txt ├── bestgcv6.txt ├── gcv4.csv └── gcv6.csv ├── BestProxy ├── bestproxy&country.txt ├── bestproxy.txt ├── proxy.csv └── proxy.txt ├── LICENSE ├── README.md ├── bestcf.txt ├── bestproxy.txt └── proxy.txt /.github/workflows/UpBestIP.py: -------------------------------------------------------------------------------- 1 | import os 2 | import requests 3 | 4 | # ------------------------- 配置区 ------------------------- 5 | # 从环境变量中获取 Cloudflare API Token,可以是单个或多个(逗号分割) 6 | cf_tokens_str = os.getenv("CF_TOKENS", "").strip() 7 | if not cf_tokens_str: 8 | raise Exception("环境变量 CF_TOKENS 未设置或为空") 9 | api_tokens = [token.strip() for token in cf_tokens_str.split(",") if token.strip()] 10 | 11 | # 子域名与对应的 IP 列表 URL 配置 12 | # 如果只配置了 v4 则只处理 IPv4;如果同时配置了 v4 与 v6,则分别处理 13 | subdomain_configs = { 14 | "bestcf": { 15 | "v4": "https://raw.githubusercontent.com/ymyuuu/IPDB/refs/heads/main/BestCF/bestcfv4.txt", 16 | "v6": "https://raw.githubusercontent.com/ymyuuu/IPDB/refs/heads/main/BestCF/bestcfv6.txt" 17 | }, 18 | "bestproxy": { 19 | "v4": "https://raw.githubusercontent.com/ymyuuu/IPDB/refs/heads/main/BestProxy/bestproxy.txt" 20 | }, 21 | "bestcfv4": { 22 | "v4": "https://raw.githubusercontent.com/ymyuuu/IPDB/refs/heads/main/BestCF/bestcfv4.txt" 23 | }, 24 | "bestcfv6": { 25 | "v6": "https://raw.githubusercontent.com/ymyuuu/IPDB/refs/heads/main/BestCF/bestcfv6.txt" 26 | }, 27 | # "bestgc": { 28 | # "v4": "https://raw.githubusercontent.com/ymyuuu/IPDB/refs/heads/main/BestGC/bestgcv4.txt", 29 | # "v6": "https://raw.githubusercontent.com/ymyuuu/IPDB/refs/heads/main/BestGC/bestgcv6.txt" 30 | # }, 31 | } 32 | # ----------------------------------------------------------- 33 | 34 | # 固定 DNS 记录类型映射,不作为配置项 35 | dns_record_map = { 36 | "v4": "A", 37 | "v6": "AAAA" 38 | } 39 | 40 | # 获取指定 URL 的 IP 列表,仅返回前两行 41 | def fetch_ip_list(url: str) -> list: 42 | response = requests.get(url) # 发送 GET 请求获取数据 43 | response.raise_for_status() # 检查响应状态,若请求失败则抛出异常 44 | ip_lines = response.text.strip().split('\n') 45 | return ip_lines[:2] # 只返回前两行 46 | 47 | # 获取 Cloudflare 第一个域区的信息,返回 (zone_id, domain) 48 | def fetch_zone_info(api_token: str) -> tuple: 49 | headers = { 50 | "Authorization": f"Bearer {api_token}", # API 认证 51 | "Content-Type": "application/json" 52 | } 53 | response = requests.get("https://api.cloudflare.com/client/v4/zones", headers=headers) 54 | response.raise_for_status() 55 | zones = response.json().get("result", []) 56 | if not zones: 57 | raise Exception("未找到域区信息") 58 | return zones[0]["id"], zones[0]["name"] 59 | 60 | # 统一处理 DNS 记录操作 61 | # operation 参数为 "delete" 或 "add" 62 | def update_dns_record(api_token: str, zone_id: str, subdomain: str, domain: str, dns_type: str, operation: str, ip_list: list = None) -> None: 63 | headers = { 64 | "Authorization": f"Bearer {api_token}", 65 | "Content-Type": "application/json" 66 | } 67 | # 拼接完整记录名称,subdomain 为 "@" 表示根域名 68 | full_record_name = domain if subdomain == "@" else f"{subdomain}.{domain}" 69 | 70 | if operation == "delete": 71 | # 循环删除所有匹配的记录 72 | while True: 73 | query_url = f"https://api.cloudflare.com/client/v4/zones/{zone_id}/dns_records?type={dns_type}&name={full_record_name}" 74 | response = requests.get(query_url, headers=headers) 75 | response.raise_for_status() 76 | records = response.json().get("result", []) 77 | if not records: 78 | break # 无匹配记录则退出 79 | for record in records: 80 | delete_url = f"https://api.cloudflare.com/client/v4/zones/{zone_id}/dns_records/{record['id']}" 81 | del_resp = requests.delete(delete_url, headers=headers) 82 | del_resp.raise_for_status() 83 | print(f"删除 {subdomain} {dns_type} 记录: {record['id']}") 84 | elif operation == "add" and ip_list is not None: 85 | # 针对每个 IP 地址添加新的 DNS 记录 86 | for ip in ip_list: 87 | payload = { 88 | "type": dns_type, 89 | "name": full_record_name, 90 | "content": ip, 91 | "ttl": 1, # 自动 TTL 92 | "proxied": False # 不启用 Cloudflare 代理 93 | } 94 | response = requests.post(f"https://api.cloudflare.com/client/v4/zones/{zone_id}/dns_records", 95 | json=payload, headers=headers) 96 | if response.status_code == 200: 97 | print(f"添加 {subdomain} {dns_type} 记录: {ip}") 98 | else: 99 | print(f"添加 {dns_type} 记录失败: {subdomain} IP {ip} 错误 {response.status_code} {response.text}") 100 | 101 | def main(): 102 | try: 103 | # 针对每个 API Token 进行处理,不直接输出 Token 信息,仅显示序号和域区信息 104 | for idx, token in enumerate(api_tokens, start=1): 105 | print("=" * 50) 106 | print(f"开始处理 API Token #{idx}") 107 | zone_id, domain = fetch_zone_info(token) 108 | print(f"域区 ID: {zone_id} | 域名: {domain}") 109 | 110 | # 遍历所有子域名配置 111 | for subdomain, version_urls in subdomain_configs.items(): 112 | # 针对每个版本(如 v4、v6)分别处理 113 | for version_key, url in version_urls.items(): 114 | dns_type = dns_record_map.get(version_key) 115 | if not dns_type: 116 | continue 117 | ips = fetch_ip_list(url) # 获取 IP 列表(仅前两行) 118 | # 删除旧的 DNS 记录 119 | update_dns_record(token, zone_id, subdomain, domain, dns_type, "delete") 120 | # 添加新的 DNS 记录 121 | if ips: 122 | update_dns_record(token, zone_id, subdomain, domain, dns_type, "add", ips) 123 | else: 124 | print(f"{subdomain} ({dns_type}) 未获取到 IP") 125 | print(f"结束处理 API Token #{idx}") 126 | print("=" * 50 + "\n") 127 | except Exception as err: 128 | print(f"错误: {err}") 129 | 130 | if __name__ == "__main__": 131 | main() 132 | -------------------------------------------------------------------------------- /.github/workflows/UpBestIP.yml: -------------------------------------------------------------------------------- 1 | name: 更新 UpBestIP 2 | 3 | on: 4 | push: 5 | branches: [ main ] 6 | paths: 7 | - "BestCF/bestcfv4.txt" # 监听 BestCF/bestcf.txt 文件的更新 8 | - "BestCF/bestcfv6.txt" # 监听 BestCF/bestcf.txt 文件的更新 9 | - "BestProxy/bestproxy.txt" # 监听 BestProxy/bestproxy.txt 文件的更新 10 | - "BestGC/bestgcv4.txt" # 监听 BestGC/bestgcv4.txt 文件的更新 11 | - "BestGC/bestgcv6.txt" # 监听 BestGC/bestgcv6.txt 文件的更新 12 | workflow_dispatch: # 支持手动触发 13 | 14 | jobs: 15 | UpBestIP: 16 | runs-on: ubuntu-latest 17 | steps: 18 | # 检出仓库代码 19 | - name: 检出代码 20 | uses: actions/checkout@v4 21 | 22 | # 设置 Python 环境 23 | - name: 设置 Python 环境 24 | uses: actions/setup-python@v5 25 | with: 26 | python-version: '3.x' # 可根据需要指定 Python 版本,例如 3.8 27 | 28 | # 安装依赖 29 | - name: 安装依赖 30 | run: pip install requests 31 | 32 | # 运行更新 DNS 的 Python 脚本 33 | - name: 更新 BestIP 34 | run: python .github/workflows/UpBestIP.py 35 | env: 36 | CF_TOKENS: ${{ secrets.CF_TOKENS }} # 从仓库 Secrets 中获取 CF_TOKENS 环境变量 37 | -------------------------------------------------------------------------------- /BestCF/bestcfv4.txt: -------------------------------------------------------------------------------- 1 | 104.16.13.126 2 | 172.67.158.148 3 | 104.16.60.123 4 | 162.159.133.72 5 | 104.21.239.133 6 | 104.16.3.91 7 | 172.67.159.90 8 | 172.67.144.119 9 | 172.67.147.169 10 | 104.16.159.130 11 | -------------------------------------------------------------------------------- /BestCF/bestcfv6.txt: -------------------------------------------------------------------------------- 1 | 2606:4700:0:60:d2e3:41d4:b5f3:101 2 | 2606:4700:0:af44:6674:25cc:ad52:74c5 3 | 2606:4700::e835:ed83:1204:1ec9 4 | 2606:4700:0:60:d244:5293:fc71:a130 5 | 2606:4700::fe:2113:17c:4db2 6 | 2606:4700::dc6e:efe9:3033:8e7f 7 | 2606:4700::9184:998c:49ea 8 | 2606:4700:0:af68:5730:33c:819a:e582 9 | 2606:4700::8b1c:6419 10 | 2606:4700:0:af44:6674:250e:e31b:9a70 11 | -------------------------------------------------------------------------------- /BestCF/ipv4.csv: -------------------------------------------------------------------------------- 1 | IP 地址,已发送,已接收,丢包率,平均延迟,下载速度 (MB/s) 2 | 104.16.13.126,4,4,0.00,172.88,21.06 3 | 172.67.158.148,4,4,0.00,164.87,20.12 4 | 104.16.60.123,4,4,0.00,174.60,20.02 5 | 162.159.133.72,4,4,0.00,171.15,19.62 6 | 104.21.239.133,4,4,0.00,173.28,19.29 7 | 104.16.3.91,4,4,0.00,173.92,19.21 8 | 172.67.159.90,4,4,0.00,175.25,18.90 9 | 172.67.144.119,4,4,0.00,173.11,18.90 10 | 172.67.147.169,4,4,0.00,172.12,18.82 11 | 104.16.159.130,4,4,0.00,173.66,17.18 12 | -------------------------------------------------------------------------------- /BestCF/ipv6.csv: -------------------------------------------------------------------------------- 1 | IP 地址,已发送,已接收,丢包率,平均延迟,下载速度 (MB/s) 2 | 2606:4700:0:60:d2e3:41d4:b5f3:101,4,4,0.00,208.23,18.70 3 | 2606:4700:0:af44:6674:25cc:ad52:74c5,4,4,0.00,207.96,18.40 4 | 2606:4700::e835:ed83:1204:1ec9,4,4,0.00,206.80,18.25 5 | 2606:4700:0:60:d244:5293:fc71:a130,4,4,0.00,209.26,18.11 6 | 2606:4700::fe:2113:17c:4db2,4,4,0.00,209.33,18.08 7 | 2606:4700::dc6e:efe9:3033:8e7f,4,4,0.00,208.22,17.96 8 | 2606:4700::9184:998c:49ea,4,4,0.00,209.37,17.93 9 | 2606:4700:0:af68:5730:33c:819a:e582,4,4,0.00,208.29,17.90 10 | 2606:4700::8b1c:6419,4,4,0.00,208.43,17.60 11 | 2606:4700:0:af44:6674:250e:e31b:9a70,4,4,0.00,209.29,17.59 12 | -------------------------------------------------------------------------------- /BestGC/bestgcv4.txt: -------------------------------------------------------------------------------- 1 | 92.223.78.23 2 | 92.38.170.7 3 | 92.223.120.13 4 | 92.223.63.23 5 | 92.38.170.10 6 | 92.223.120.14 7 | 92.223.63.5 8 | 92.223.120.12 9 | 92.223.120.15 10 | 92.223.63.6 11 | -------------------------------------------------------------------------------- /BestGC/bestgcv6.txt: -------------------------------------------------------------------------------- 1 | 2a03:90c0:111:2801::22 2 | 2405:ec00:fa02::245 3 | 2a03:90c0:111:2801::27 4 | 2a03:90c0:111:2801::4 5 | 2a03:90c0:111:2801::11 6 | 2a03:90c0:111:2801::29 7 | 2a03:90c0:111:2801::8 8 | 2a03:90c0:111:2801::9 9 | 2a03:90c0:111:2801::24 10 | 2a03:90c0:111:2801::26 11 | -------------------------------------------------------------------------------- /BestGC/gcv4.csv: -------------------------------------------------------------------------------- 1 | IP 地址,已发送,已接收,丢包率,平均延迟,下载速度 (MB/s) 2 | 92.223.78.23,4,4,0.00,176.38,17.89 3 | 92.38.170.7,4,4,0.00,195.74,16.65 4 | 92.223.120.13,4,4,0.00,195.91,16.17 5 | 92.223.63.23,4,4,0.00,205.58,14.74 6 | 92.38.170.10,4,4,0.00,207.26,14.53 7 | 92.223.120.14,4,4,0.00,206.31,11.09 8 | 92.223.63.5,4,4,0.00,197.40,11.08 9 | 92.223.120.12,4,4,0.00,182.84,11.00 10 | 92.223.120.15,4,4,0.00,182.90,10.53 11 | 92.223.63.6,4,4,0.00,204.88,10.02 12 | -------------------------------------------------------------------------------- /BestGC/gcv6.csv: -------------------------------------------------------------------------------- 1 | IP 地址,已发送,已接收,丢包率,平均延迟,下载速度 (MB/s) 2 | 2a03:90c0:111:2801::22,4,4,0.00,173.05,18.61 3 | 2405:ec00:fa02::245,4,4,0.00,185.65,17.39 4 | 2a03:90c0:111:2801::27,4,4,0.00,185.94,16.86 5 | 2a03:90c0:111:2801::4,4,4,0.00,179.58,16.61 6 | 2a03:90c0:111:2801::11,4,4,0.00,188.10,16.44 7 | 2a03:90c0:111:2801::29,4,4,0.00,188.94,16.14 8 | 2a03:90c0:111:2801::8,4,4,0.00,189.27,16.08 9 | 2a03:90c0:111:2801::9,4,4,0.00,173.71,15.97 10 | 2a03:90c0:111:2801::24,4,4,0.00,184.37,15.91 11 | 2a03:90c0:111:2801::26,4,4,0.00,185.80,15.75 12 | -------------------------------------------------------------------------------- /BestProxy/bestproxy&country.txt: -------------------------------------------------------------------------------- 1 | 8.222.235.125#SG 2 | 143.47.179.237#NL 3 | 8.212.12.98#HK 4 | 47.242.218.87#HK 5 | 8.222.255.80#SG 6 | 8.222.195.185#SG 7 | 8.222.219.140#SG 8 | 8.222.168.190#SG 9 | 8.222.227.160#SG 10 | 47.74.155.26#SG 11 | 8.222.143.79#SG 12 | 8.222.202.83#SG 13 | 146.56.96.206#KR 14 | 129.154.202.229#KR 15 | 152.70.253.44#KR 16 | 144.24.95.220#KR 17 | 193.123.254.142#KR 18 | 8.219.189.155#SG 19 | 8.219.154.59#SG 20 | 8.219.235.5#SG 21 | 8.219.228.81#SG 22 | 8.219.254.1#SG 23 | 8.219.236.218#SG 24 | 8.219.243.132#SG 25 | 146.56.190.143#KR 26 | 131.186.27.112#KR 27 | 152.70.36.145#KR 28 | 155.248.166.113#JP 29 | 141.147.160.166#JP 30 | 152.67.99.162#AU 31 | 140.238.50.112#JP 32 | 140.238.58.181#JP 33 | 152.67.125.161#AU 34 | 141.144.194.75#NL 35 | 47.254.86.133#US 36 | 141.144.199.177#NL 37 | 141.144.195.224#NL 38 | 132.145.245.100#DE 39 | 129.153.203.62#US 40 | 141.144.197.136#NL 41 | 168.138.165.174#SG 42 | 129.150.53.218#SG 43 | 141.144.203.203#NL 44 | 144.21.38.142#NL 45 | 141.145.205.115#FR 46 | 141.144.196.32#NL 47 | 144.21.62.56#GB 48 | 152.70.53.255#NL 49 | 152.70.59.138#NL 50 | 143.47.190.224#NL 51 | 150.230.146.170#DE 52 | 141.147.71.187#GB 53 | 129.151.198.3#SE 54 | 141.147.85.167#GB 55 | 143.47.251.151#GB 56 | 8.219.97.248#SG 57 | 143.47.250.87#GB 58 | 152.70.54.5#NL 59 | 129.158.198.241#US 60 | 143.47.235.216#GB 61 | 150.230.115.48#GB 62 | 143.47.183.52#NL 63 | 129.159.129.107#IL 64 | 129.159.143.171#IL 65 | 132.226.163.224#BR 66 | 140.238.9.27#KR 67 | 155.248.248.205#IN 68 | 152.67.190.105#IN 69 | -------------------------------------------------------------------------------- /BestProxy/bestproxy.txt: -------------------------------------------------------------------------------- 1 | 8.222.235.125 2 | 143.47.179.237 3 | 8.212.12.98 4 | 47.242.218.87 5 | 8.222.255.80 6 | 8.222.195.185 7 | 8.222.219.140 8 | 8.222.168.190 9 | 8.222.227.160 10 | 47.74.155.26 11 | -------------------------------------------------------------------------------- /BestProxy/proxy.csv: -------------------------------------------------------------------------------- 1 | IP 地址,已发送,已接收,丢包率,平均延迟,下载速度 (MB/s),国家代码 2 | 8.222.235.125,4,4,0.00,95.10,0.39,SG 3 | 143.47.179.237,4,4,0.00,261.53,0.09,NL 4 | 8.212.12.98,4,4,0.00,60.52,0.05,HK 5 | 47.242.218.87,4,4,0.00,60.26,0.00,HK 6 | 8.222.255.80,4,4,0.00,93.11,0.00,SG 7 | 8.222.195.185,4,4,0.00,93.71,0.00,SG 8 | 8.222.219.140,4,4,0.00,94.80,0.00,SG 9 | 8.222.168.190,4,4,0.00,92.18,0.00,SG 10 | 8.222.227.160,4,4,0.00,95.20,0.00,SG 11 | 47.74.155.26,4,4,0.00,95.66,0.00,SG 12 | 8.222.143.79,4,4,0.00,95.76,0.00,SG 13 | 8.222.202.83,4,4,0.00,95.82,0.00,SG 14 | 146.56.96.206,4,4,0.00,103.62,0.00,KR 15 | 129.154.202.229,4,4,0.00,107.42,0.00,KR 16 | 152.70.253.44,4,4,0.00,108.35,0.00,KR 17 | 144.24.95.220,4,4,0.00,108.73,0.00,KR 18 | 193.123.254.142,4,4,0.00,112.84,0.00,KR 19 | 8.219.189.155,4,4,0.00,117.94,0.00,SG 20 | 8.219.154.59,4,4,0.00,121.29,0.00,SG 21 | 8.219.235.5,4,4,0.00,125.00,0.00,SG 22 | 8.219.228.81,4,4,0.00,126.43,0.00,SG 23 | 8.219.254.1,4,4,0.00,130.72,0.00,SG 24 | 8.219.236.218,4,4,0.00,131.54,0.00,SG 25 | 8.219.243.132,4,4,0.00,135.26,0.00,SG 26 | 146.56.190.143,4,4,0.00,136.27,0.00,KR 27 | 131.186.27.112,4,4,0.00,138.59,0.00,KR 28 | 152.70.36.145,4,4,0.00,162.01,0.00,KR 29 | 155.248.166.113,4,4,0.00,184.65,0.00,JP 30 | 141.147.160.166,4,4,0.00,186.11,0.00,JP 31 | 152.67.99.162,4,4,0.00,186.63,0.00,AU 32 | 140.238.50.112,4,4,0.00,187.09,0.00,JP 33 | 140.238.58.181,4,4,0.00,187.31,0.00,JP 34 | 152.67.125.161,4,4,0.00,190.44,0.00,AU 35 | 141.144.194.75,4,4,0.00,204.28,0.00,NL 36 | 47.254.86.133,4,4,0.00,207.65,0.00,US 37 | 141.144.199.177,4,4,0.00,211.29,0.00,NL 38 | 141.144.195.224,4,4,0.00,215.45,0.00,NL 39 | 132.145.245.100,4,4,0.00,218.31,0.00,DE 40 | 129.153.203.62,4,4,0.00,218.73,0.00,US 41 | 141.144.197.136,4,4,0.00,224.26,0.00,NL 42 | 168.138.165.174,4,4,0.00,226.11,0.00,SG 43 | 129.150.53.218,4,4,0.00,228.80,0.00,SG 44 | 141.144.203.203,4,4,0.00,230.04,0.00,NL 45 | 144.21.38.142,4,4,0.00,233.76,0.00,NL 46 | 141.145.205.115,4,4,0.00,238.49,0.00,FR 47 | 141.144.196.32,4,4,0.00,239.76,0.00,NL 48 | 144.21.62.56,4,4,0.00,241.19,0.00,GB 49 | 152.70.53.255,4,4,0.00,243.33,0.00,NL 50 | 152.70.59.138,4,4,0.00,246.80,0.00,NL 51 | 143.47.190.224,4,4,0.00,248.58,0.00,NL 52 | 150.230.146.170,4,4,0.00,251.00,0.00,DE 53 | 141.147.71.187,4,4,0.00,251.24,0.00,GB 54 | 129.151.198.3,4,4,0.00,252.79,0.00,SE 55 | 141.147.85.167,4,4,0.00,256.64,0.00,GB 56 | 143.47.251.151,4,4,0.00,258.02,0.00,GB 57 | 8.219.97.248,4,4,0.00,91.33,0.00,SG 58 | 143.47.250.87,4,4,0.00,270.38,0.00,GB 59 | 152.70.54.5,4,4,0.00,272.93,0.00,NL 60 | 129.158.198.241,4,4,0.00,273.56,0.00,US 61 | 143.47.235.216,4,4,0.00,280.48,0.00,GB 62 | 150.230.115.48,4,4,0.00,287.51,0.00,GB 63 | 143.47.183.52,4,4,0.00,304.15,0.00,NL 64 | 129.159.129.107,4,4,0.00,356.33,0.00,IL 65 | 129.159.143.171,4,4,0.00,357.85,0.00,IL 66 | 132.226.163.224,4,4,0.00,394.89,0.00,BR 67 | 140.238.9.27,4,3,0.25,176.72,0.00,KR 68 | 155.248.248.205,4,2,0.50,370.21,0.00,IN 69 | 152.67.190.105,4,2,0.50,414.37,0.00,IN 70 | -------------------------------------------------------------------------------- /BestProxy/proxy.txt: -------------------------------------------------------------------------------- 1 | 143.47.238.54 2 | 143.47.185.254 3 | 132.226.205.39 4 | 129.154.206.110 5 | 8.222.227.160 6 | 141.147.191.245 7 | 150.230.249.48 8 | 141.144.194.75 9 | 143.47.235.216 10 | 141.148.243.115 11 | 144.21.42.2 12 | 64.110.73.95 13 | 150.230.23.252 14 | 129.154.192.212 15 | 144.21.42.32 16 | 141.147.164.6 17 | 8.219.85.195 18 | 141.147.85.167 19 | 141.144.198.131 20 | 144.24.88.84 21 | 141.148.230.120 22 | 8.212.41.98 23 | 129.158.198.241 24 | 146.56.152.46 25 | 150.230.203.153 26 | 150.230.220.165 27 | 64.110.74.230 28 | 140.83.39.212 29 | 141.147.176.137 30 | 47.254.17.234 31 | 143.47.247.120 32 | 146.56.96.206 33 | 146.56.178.6 34 | 152.67.159.96 35 | 150.230.23.238 36 | 141.148.229.200 37 | 8.219.241.137 38 | 138.2.0.195 39 | 130.162.140.138 40 | 141.147.73.199 41 | 141.147.182.209 42 | 8.222.139.227 43 | 152.70.104.175 44 | 150.230.20.156 45 | 8.222.139.232 46 | 155.248.181.189 47 | 129.154.213.79 48 | 158.101.215.128 49 | 152.70.52.44 50 | 141.144.195.224 51 | 141.147.167.79 52 | 138.2.235.224 53 | 8.222.137.0 54 | 143.47.188.79 55 | 146.56.42.67 56 | 155.248.163.123 57 | 155.248.185.108 58 | 132.226.16.97 59 | 141.147.52.223 60 | 138.2.20.151 61 | 143.47.191.74 62 | 144.21.48.154 63 | 150.230.218.53 64 | 144.21.50.138 65 | 8.222.219.140 66 | 138.2.8.87 67 | 129.154.51.236 68 | 146.56.36.190 69 | 129.154.212.140 70 | 146.56.172.166 71 | 158.101.203.221 72 | 141.148.228.176 73 | 141.144.205.165 74 | 155.248.183.149 75 | 8.219.184.202 76 | 192.9.180.162 77 | 152.70.54.5 78 | 138.2.122.191 79 | 8.219.73.171 80 | 129.153.203.62 81 | 146.56.177.169 82 | 146.56.147.210 83 | 158.101.220.192 84 | 141.147.180.50 85 | 132.226.199.91 86 | 141.148.235.197 87 | 158.180.66.126 88 | 150.230.106.66 89 | 150.230.208.234 90 | 130.162.61.18 91 | 138.2.143.0 92 | 132.226.131.86 93 | 143.47.185.27 94 | 129.151.198.3 95 | 158.101.94.237 96 | 8.219.61.239 97 | 130.162.165.64 98 | 141.148.229.106 99 | 130.162.128.200 100 | 144.24.44.152 101 | 129.154.195.251 102 | 140.238.50.112 103 | 193.123.33.167 104 | 138.2.36.157 105 | 64.110.89.138 106 | 64.110.77.205 107 | 144.21.60.188 108 | 8.218.73.41 109 | 8.222.146.123 110 | 143.47.190.199 111 | 144.24.73.232 112 | 141.148.237.42 113 | 8.219.154.59 114 | 8.219.236.218 115 | 130.162.148.208 116 | 144.24.174.36 117 | 8.219.255.41 118 | 141.147.165.128 119 | 8.219.97.248 120 | 146.56.182.169 121 | 141.148.233.149 122 | 155.248.170.249 123 | 141.147.165.62 124 | 130.61.107.238 125 | 144.21.43.34 126 | 150.230.201.24 127 | 47.57.233.126 128 | 141.147.108.3 129 | 8.219.184.18 130 | 131.186.43.93 131 | 131.186.27.112 132 | 141.148.240.212 133 | 150.230.146.170 134 | 152.70.54.95 135 | 155.248.171.251 136 | 141.147.166.238 137 | 138.2.18.250 138 | 144.21.61.162 139 | 64.110.101.31 140 | 141.147.102.228 141 | 132.145.116.185 142 | 141.147.71.121 143 | 155.248.166.149 144 | 8.213.137.24 145 | 8.219.255.92 146 | 131.186.38.162 147 | 155.248.169.118 148 | 130.162.189.64 149 | 152.70.56.23 150 | 141.148.238.243 151 | 141.148.236.75 152 | 168.138.13.201 153 | 193.122.110.150 154 | 8.210.233.168 155 | 146.56.110.3 156 | 47.254.22.131 157 | 143.47.190.67 158 | 8.219.231.249 159 | 150.230.21.205 160 | 158.180.231.216 161 | 131.186.20.64 162 | 152.70.31.104 163 | 138.3.240.63 164 | 158.101.212.127 165 | 193.123.81.105 166 | 141.148.247.35 167 | 144.24.94.21 168 | 8.222.235.125 169 | 146.56.174.69 170 | 141.144.199.13 171 | 150.230.198.167 172 | 155.248.166.94 173 | 144.24.88.177 174 | 158.101.23.175 175 | 143.47.186.254 176 | 141.147.182.244 177 | 138.3.217.183 178 | 141.148.234.103 179 | 143.47.250.119 180 | 141.147.64.114 181 | 152.67.136.96 182 | 152.70.100.75 183 | 141.148.226.88 184 | 150.230.122.160 185 | 150.230.22.224 186 | 193.123.250.232 187 | 132.226.5.174 188 | 152.70.119.70 189 | 150.230.23.142 190 | 144.24.70.232 191 | 141.148.229.131 192 | 132.226.14.102 193 | 193.123.254.142 194 | 8.219.63.79 195 | 168.138.165.174 196 | 130.162.134.168 197 | 141.148.236.232 198 | 152.67.140.249 199 | 150.230.200.168 200 | 140.83.37.180 201 | 141.148.232.204 202 | 132.145.119.205 203 | 130.61.51.100 204 | 141.148.231.168 205 | 141.147.19.72 206 | 8.219.236.118 207 | 8.219.178.180 208 | 152.70.52.215 209 | 144.21.58.28 210 | 144.21.38.142 211 | 158.101.70.112 212 | 144.21.40.233 213 | 152.70.16.129 214 | 144.24.76.24 215 | 152.70.56.79 216 | 144.24.243.207 217 | 158.180.70.218 218 | 8.219.217.25 219 | 132.226.234.102 220 | 193.123.191.181 221 | 146.56.173.99 222 | 8.219.254.241 223 | 168.138.185.234 224 | 132.226.224.232 225 | 150.230.222.27 226 | 141.147.185.63 227 | 138.2.175.249 228 | 193.123.35.178 229 | 193.122.114.82 230 | 129.154.59.133 231 | 131.186.42.153 232 | 138.2.29.199 233 | 131.186.19.89 234 | 141.144.195.21 235 | 8.219.83.98 236 | 150.230.207.255 237 | 150.230.214.168 238 | 144.21.33.1 239 | 193.123.163.240 240 | 141.147.173.90 241 | 152.70.232.72 242 | 141.144.204.144 243 | 152.67.190.105 244 | 155.248.187.240 245 | 141.147.93.149 246 | 141.147.179.103 247 | 141.147.185.160 248 | 150.230.216.220 249 | 47.242.218.87 250 | 144.24.77.122 251 | 144.21.39.164 252 | 132.145.94.80 253 | 150.230.118.203 254 | 8.219.254.1 255 | 140.238.31.168 256 | 130.162.189.56 257 | 47.253.171.149 258 | 132.145.81.117 259 | 141.148.240.82 260 | 132.145.117.46 261 | 8.219.153.31 262 | 141.147.10.72 263 | 64.110.104.30 264 | 152.70.155.147 265 | 141.144.197.136 266 | 131.186.16.243 267 | 144.21.40.27 268 | 130.162.130.105 269 | 140.238.58.181 270 | 141.147.160.166 271 | 155.248.166.113 272 | 155.248.160.5 273 | 144.21.62.56 274 | 141.147.181.23 275 | 8.210.110.229 276 | 146.56.190.143 277 | 130.162.208.114 278 | 130.162.149.20 279 | 141.148.225.150 280 | 140.238.173.181 281 | 150.230.205.239 282 | 193.123.187.206 283 | 144.21.33.220 284 | 150.230.219.239 285 | 144.21.34.139 286 | 141.147.59.209 287 | 150.230.213.175 288 | 141.148.235.68 289 | 8.222.147.232 290 | 131.186.29.63 291 | 152.67.199.132 292 | 141.147.112.28 293 | 8.218.70.238 294 | 168.138.212.80 295 | 155.248.176.145 296 | 130.162.148.131 297 | 141.147.163.213 298 | 152.70.188.212 299 | 141.144.202.132 300 | 141.144.203.240 301 | 8.222.129.215 302 | 141.147.47.32 303 | 132.145.87.184 304 | 141.147.184.252 305 | 130.162.184.111 306 | 150.230.210.9 307 | 129.159.241.172 308 | 8.222.151.126 309 | 131.186.35.227 310 | 141.147.26.98 311 | 129.154.219.221 312 | 144.24.65.251 313 | 141.147.98.180 314 | 158.178.245.161 315 | 8.222.145.165 316 | 158.101.207.73 317 | 158.180.90.43 318 | 193.123.80.245 319 | 168.138.173.134 320 | 144.21.36.76 321 | 192.9.236.144 322 | 158.101.217.14 323 | 141.147.105.200 324 | 150.230.205.185 325 | 141.144.202.73 326 | 138.2.68.173 327 | 158.101.202.45 328 | 140.238.201.118 329 | 132.145.85.74 330 | 158.101.93.255 331 | 152.67.151.176 332 | 8.222.207.108 333 | 155.248.178.118 334 | 8.219.77.141 335 | 152.70.90.168 336 | 158.180.71.91 337 | 129.154.210.219 338 | 129.154.194.191 339 | 141.147.147.28 340 | 150.230.105.112 341 | 8.222.140.250 342 | 152.67.251.232 343 | 141.145.199.188 344 | 150.230.63.93 345 | 138.3.218.149 346 | 152.70.93.130 347 | 146.56.119.165 348 | 141.145.216.142 349 | 150.230.115.48 350 | 8.219.15.193 351 | 8.219.140.244 352 | 129.154.196.226 353 | 152.67.156.97 354 | 144.24.140.37 355 | 144.24.182.220 356 | 143.47.188.240 357 | 146.56.179.198 358 | 141.148.229.190 359 | 129.154.219.185 360 | 8.222.147.75 361 | 141.147.172.69 362 | 138.2.23.250 363 | 141.144.201.134 364 | 8.219.235.5 365 | 8.219.255.49 366 | 8.222.168.190 367 | 155.248.186.74 368 | 193.123.35.219 369 | 141.148.229.56 370 | 129.146.53.213 371 | 143.47.183.52 372 | 132.226.22.204 373 | 64.110.90.183 374 | 143.47.183.94 375 | 8.219.102.208 376 | 144.21.60.137 377 | 158.101.219.0 378 | 152.70.48.4 379 | 150.230.205.41 380 | 143.47.191.188 381 | 143.47.190.34 382 | 152.70.57.182 383 | 130.61.23.77 384 | 146.56.165.63 385 | 141.147.0.144 386 | 144.21.41.126 387 | 141.147.168.141 388 | 8.219.168.241 389 | 8.219.215.23 390 | 144.21.62.209 391 | 146.56.38.208 392 | 143.47.190.158 393 | 144.24.185.228 394 | 141.148.242.38 395 | 152.70.59.138 396 | 141.147.185.15 397 | 141.148.242.113 398 | 152.67.74.223 399 | 144.21.41.31 400 | 158.101.94.67 401 | 8.220.218.105 402 | 8.222.206.103 403 | 146.56.162.25 404 | 47.242.21.91 405 | 146.56.153.57 406 | 8.219.85.1 407 | 47.245.97.129 408 | 141.144.201.254 409 | 150.230.20.4 410 | 141.144.243.25 411 | 130.162.161.22 412 | 138.3.218.212 413 | 141.144.195.109 414 | 150.230.218.80 415 | 152.70.234.185 416 | 131.186.58.9 417 | 193.122.58.158 418 | 150.230.105.100 419 | 144.21.43.236 420 | 144.21.41.153 421 | 141.148.232.149 422 | 8.220.134.136 423 | 152.70.51.3 424 | 129.154.209.82 425 | 152.69.195.36 426 | 141.147.163.68 427 | 193.123.166.233 428 | 129.154.202.229 429 | 155.248.171.154 430 | 138.2.157.7 431 | 152.67.125.174 432 | 8.210.48.192 433 | 158.101.88.13 434 | 140.238.218.65 435 | 155.248.182.161 436 | 152.70.240.162 437 | 144.24.90.101 438 | 143.47.183.41 439 | 141.147.84.221 440 | 150.230.216.211 441 | 193.123.57.222 442 | 150.230.195.39 443 | 8.219.183.62 444 | 143.47.181.217 445 | 143.47.189.30 446 | 132.226.163.224 447 | 152.70.93.246 448 | 152.70.25.28 449 | 141.147.187.24 450 | 8.219.82.40 451 | 141.147.175.101 452 | 47.243.137.146 453 | 130.162.34.176 454 | 152.70.249.26 455 | 131.186.36.106 456 | 131.186.38.48 457 | 141.147.71.187 458 | 8.222.188.61 459 | 47.242.123.166 460 | 155.248.178.95 461 | 144.21.39.222 462 | 8.222.213.251 463 | 132.226.5.170 464 | 152.67.142.42 465 | 143.47.188.50 466 | 141.148.232.57 467 | 47.90.141.204 468 | 8.219.160.174 469 | 141.148.244.56 470 | 132.145.127.203 471 | 141.144.196.32 472 | 150.230.121.114 473 | 131.186.58.30 474 | 8.222.193.152 475 | 8.219.213.151 476 | 152.70.57.0 477 | 47.253.105.131 478 | 152.70.239.76 479 | 152.70.237.222 480 | 152.67.99.162 481 | 132.226.227.135 482 | 146.56.183.109 483 | 155.248.169.75 484 | 204.216.216.148 485 | 141.148.226.145 486 | 8.222.227.128 487 | 132.226.229.45 488 | 152.67.203.34 489 | 152.70.50.180 490 | 152.70.51.246 491 | 168.138.184.172 492 | 193.123.59.26 493 | 138.2.21.10 494 | 138.2.132.160 495 | 138.2.159.85 496 | 131.186.24.5 497 | 143.47.189.39 498 | 150.230.123.106 499 | 144.22.252.124 500 | 47.254.86.133 501 | 143.47.252.214 502 | 141.147.84.58 503 | 141.148.203.6 504 | 146.56.159.165 505 | 141.144.201.12 506 | 152.67.125.161 507 | 8.222.228.90 508 | 8.222.150.102 509 | 144.21.42.171 510 | 129.159.132.0 511 | 47.57.181.17 512 | 140.238.9.27 513 | 8.219.215.116 514 | 8.219.92.213 515 | 129.159.202.83 516 | 150.136.87.192 517 | 129.154.205.253 518 | 141.148.234.165 519 | 144.21.32.141 520 | 158.180.75.201 521 | 146.56.185.209 522 | 47.57.245.232 523 | 143.47.250.87 524 | 8.222.157.123 525 | 152.70.53.255 526 | 138.2.28.115 527 | 141.148.242.47 528 | 130.162.209.188 529 | 138.2.21.98 530 | 150.230.159.76 531 | 150.230.200.85 532 | 138.2.81.71 533 | 8.222.202.83 534 | 141.148.234.169 535 | 141.147.55.228 536 | 193.123.241.251 537 | 131.186.33.175 538 | 129.159.129.107 539 | 141.147.71.91 540 | 146.56.104.179 541 | 152.70.98.158 542 | 138.2.107.107 543 | 141.148.226.57 544 | 192.18.143.57 545 | 8.219.242.87 546 | 8.212.12.98 547 | 8.222.223.112 548 | 158.101.80.84 549 | 138.2.21.47 550 | 150.230.210.31 551 | 141.144.199.177 552 | 132.226.5.213 553 | 132.226.2.206 554 | 152.70.36.145 555 | 132.226.131.66 556 | 8.219.57.95 557 | 146.56.44.134 558 | 152.70.60.163 559 | 131.186.61.168 560 | 146.56.187.202 561 | 158.101.90.121 562 | 8.219.72.136 563 | 155.248.165.220 564 | 132.145.84.43 565 | 155.248.161.33 566 | 8.219.200.169 567 | 193.123.163.196 568 | 146.56.134.75 569 | 158.101.78.68 570 | 155.248.161.7 571 | 8.219.222.231 572 | 141.148.246.82 573 | 132.226.208.29 574 | 8.222.255.80 575 | 47.74.155.26 576 | 144.24.94.95 577 | 129.150.53.218 578 | 150.230.216.2 579 | 152.70.253.44 580 | 144.24.90.107 581 | 155.248.173.11 582 | 152.67.195.144 583 | 152.70.94.9 584 | 132.226.7.217 585 | 8.222.202.182 586 | 8.222.144.233 587 | 138.2.13.27 588 | 132.145.231.175 589 | 130.162.212.77 590 | 141.147.182.100 591 | 141.148.224.249 592 | 130.162.163.93 593 | 146.56.156.7 594 | 132.226.0.157 595 | 168.138.46.67 596 | 47.242.121.232 597 | 150.230.252.159 598 | 152.70.233.147 599 | 141.147.147.180 600 | 150.230.194.74 601 | 143.47.251.151 602 | 132.226.21.97 603 | 129.154.207.203 604 | 141.145.205.115 605 | 138.2.29.112 606 | 152.69.209.132 607 | 155.248.248.205 608 | 150.230.207.104 609 | 146.56.163.227 610 | 155.248.166.252 611 | 8.219.96.63 612 | 141.148.228.124 613 | 144.21.59.145 614 | 146.56.169.14 615 | 150.230.156.39 616 | 141.144.203.203 617 | 143.47.190.224 618 | 141.147.185.208 619 | 140.83.34.144 620 | 152.70.58.245 621 | 47.251.95.178 622 | 158.180.82.186 623 | 152.70.98.53 624 | 158.101.208.35 625 | 141.148.227.90 626 | 158.101.214.42 627 | 130.61.124.127 628 | 158.101.219.95 629 | 158.101.189.4 630 | 150.230.96.93 631 | 138.2.31.148 632 | 131.186.36.43 633 | 152.70.54.110 634 | 131.186.37.101 635 | 141.148.189.124 636 | 141.148.243.211 637 | 155.248.184.204 638 | 150.230.204.132 639 | 141.147.100.52 640 | 8.222.143.79 641 | 138.2.4.147 642 | 138.2.118.241 643 | 141.148.230.89 644 | 8.219.245.214 645 | 141.147.114.60 646 | 141.148.236.83 647 | 143.47.245.29 648 | 138.3.223.73 649 | 152.70.62.171 650 | 131.186.45.107 651 | 141.148.187.195 652 | 143.47.182.55 653 | 132.226.236.15 654 | 155.248.178.60 655 | 150.230.125.110 656 | 143.47.182.158 657 | 141.148.226.51 658 | 155.248.184.66 659 | 132.226.168.102 660 | 141.148.237.51 661 | 131.186.63.207 662 | 8.219.189.155 663 | 155.248.183.39 664 | 144.24.174.149 665 | 143.47.176.105 666 | 8.222.195.185 667 | 144.24.167.37 668 | 150.230.126.208 669 | 192.9.250.241 670 | 141.144.198.93 671 | 193.123.62.153 672 | 141.144.192.198 673 | 130.162.245.178 674 | 8.212.65.162 675 | 8.222.165.104 676 | 140.238.4.207 677 | 150.230.209.171 678 | 143.47.179.128 679 | 47.254.171.15 680 | 8.217.168.149 681 | 143.47.179.237 682 | 141.144.198.121 683 | 138.3.212.226 684 | 141.148.245.210 685 | 143.47.182.175 686 | 130.162.132.107 687 | 131.186.16.161 688 | 138.2.30.252 689 | 129.150.56.114 690 | 143.47.188.53 691 | 8.222.169.19 692 | 131.186.46.147 693 | 152.70.92.87 694 | 144.21.60.44 695 | 144.24.88.124 696 | 8.219.228.81 697 | 150.230.198.178 698 | 140.83.61.244 699 | 144.24.95.220 700 | 193.122.125.205 701 | 141.147.50.200 702 | 150.230.156.81 703 | 138.2.99.214 704 | 132.145.245.100 705 | 146.56.132.178 706 | 8.212.14.90 707 | 141.147.76.30 708 | 193.122.97.124 709 | 8.219.153.71 710 | 143.47.184.59 711 | 146.56.171.239 712 | 130.162.174.117 713 | 143.47.224.46 714 | 141.147.188.120 715 | 129.159.143.171 716 | 8.219.243.132 717 | 144.21.35.214 718 | 138.2.3.195 719 | 150.230.97.14 720 | 131.186.21.1 721 | 144.24.200.164 722 | 47.74.157.194 723 | 143.47.179.252 724 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Mingyu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IPDB API 2 | 3 | ![Version](https://img.shields.io/badge/version-2.0-blue.svg) 4 | ![License](https://img.shields.io/badge/license-MIT-green.svg) 5 | ![Status](https://img.shields.io/badge/status-active-brightgreen.svg) 6 | 7 | **高性能 IP 地址信息获取服务** 8 | 9 | `https://ipdb.api.030101.xyz` 10 | 11 | --- 12 | 13 | **联系方式** 14 | 15 | [![Telegram](https://img.shields.io/badge/群聊-HeroCore-blue?logo=telegram&logoColor=white)](https://t.me/HeroCore) 16 | [![Telegram](https://img.shields.io/badge/频道-HeroMsg-blue?logo=telegram&logoColor=white)](https://t.me/HeroMsg) 17 | [![Email](https://img.shields.io/badge/邮箱-联系我们-red?logo=gmail&logoColor=white)](mailto:admin@030101.xyz) 18 | 19 | **赞助商** 20 | 21 | [![DigitalVirt](https://img.shields.io/badge/DigitalVirt-云服务-4CAF50?logo=digitalocean&logoColor=white)](https://digitalvirt.com/) 22 | [![YXVM](https://img.shields.io/badge/YXVM-云服务-2196F3?logo=microsoft-azure&logoColor=white)](https://yxvm.com/) 23 | [![NodeSupport](https://img.shields.io/badge/NodeSupport-技术支持-FF9800?logo=node.js&logoColor=white)](https://github.com/NodeSeekDev/NodeSupport) 24 | 25 | --- 26 | 27 | ## API 参数 28 | 29 | ### type `必选` 30 | 31 | 指定要获取的 IP 地址类型,支持多个类型组合(用分号分隔) 32 | 33 | | 类型 | 描述 | 更新频率 | 34 | |------|------|----------| 35 | | `cfv4` | Cloudflare IPv4 地址列表 | 实时 | 36 | | `cfv6` | Cloudflare IPv6 地址列表 | 实时 | 37 | | `proxy` | Cloudflare 反代 IP 地址列表 | 30 分钟 | 38 | | `bestcf` | 优选 Cloudflare 官方 IP | 60 分钟 | 39 | | `bestproxy` | 优选 Cloudflare 反代 IP | 60 分钟 | 40 | 41 | ### country `可选` 42 | 43 | 设置为 `true` 时显示 IP 地理位置信息 44 | 45 | ### down `可选` 46 | 47 | 设置为 `true` 时下载文件而非直接返回内容 48 | 49 | ## 使用示例 50 | 51 | ``` 52 | https://ipdb.api.030101.xyz/?type=bestproxy&country=true 53 | https://ipdb.api.030101.xyz/?type=cfv4;cfv6;proxy 54 | https://ipdb.api.030101.xyz/?type=bestproxy&down=true 55 | ``` 56 | 57 | ## 响应格式 58 | 59 | **基础响应** 60 | ``` 61 | 104.16.132.229 62 | 104.16.133.229 63 | 104.16.134.229 64 | ``` 65 | 66 | **带地区信息** 67 | ``` 68 | 143.47.179.237#NL 69 | 193.123.80.245#AE 70 | 47.74.155.26#SG 71 | ``` 72 | 73 | --- 74 | 75 |
76 | ⚠️ 服务条款与免责声明 77 | 78 | ### 使用限制 79 | - 本服务仅面向非大陆地区用户 80 | - 大陆地区用户使用需自行承担相关法律风险 81 | - 禁止将服务用于违法、攻击等恶意行为 82 | 83 | ### 数据说明 84 | - 数据来源于互联网公开资源和开放数据库 85 | - 我们努力确保数据准确性,但不做绝对保证 86 | - 不同数据源的更新频率可能存在差异 87 | - 用户应自行判断数据的适用性 88 | 89 | ### 责任限制 90 | - 不承担因使用服务导致的任何直接或间接损失 91 | - 不保证服务始终可用,可能因维护等原因中断 92 | - 不对用户违反当地法规的行为承担责任 93 | - 建议用户定期备份重要数据 94 | 95 | **使用本服务即表示您已阅读并同意遵守本条款** 96 | 97 |
98 | 99 | --- 100 | 101 | [![Star History Chart](https://api.star-history.com/svg?repos=ymyuuu/IPDB&type=Date)](https://star-history.com/#ymyuuu/IPDB&Date) 102 | -------------------------------------------------------------------------------- /bestcf.txt: -------------------------------------------------------------------------------- 1 | 198.41.212.130 2 | 190.93.244.201 3 | 104.16.232.223 4 | 188.114.96.125 5 | 104.16.241.229 6 | 104.27.21.118 7 | 190.93.246.67 8 | 104.17.127.110 9 | 198.41.214.141 10 | 188.114.97.144 11 | 104.25.105.1 12 | 190.93.247.169 13 | 104.20.255.53 14 | 104.18.228.35 15 | 104.21.91.19 -------------------------------------------------------------------------------- /bestproxy.txt: -------------------------------------------------------------------------------- 1 | 168.138.165.174 -------------------------------------------------------------------------------- /proxy.txt: -------------------------------------------------------------------------------- 1 | 8.219.145.56 2 | 164.152.17.14 3 | 47.57.233.126 4 | 131.186.22.251 5 | 150.230.106.238 6 | 47.242.21.91 7 | 132.226.134.15 8 | 152.70.59.90 9 | 158.180.74.63 10 | 8.219.198.54 11 | 129.151.198.3 12 | 144.24.140.37 13 | 168.138.216.146 14 | 152.70.71.23 15 | 64.110.101.31 16 | 141.148.224.123 17 | 132.145.54.84 18 | 47.91.18.127 19 | 8.212.48.236 20 | 143.47.178.5 21 | 47.243.137.146 22 | 193.123.61.156 23 | 140.238.218.65 24 | 129.158.210.223 25 | 130.61.83.37 26 | 129.146.46.164 27 | 158.180.71.217 28 | 8.219.165.68 29 | 144.24.200.164 30 | 8.219.62.94 31 | 146.56.138.254 32 | 146.56.175.207 33 | 150.230.44.13 34 | 129.151.104.245 35 | 8.217.58.182 36 | 158.101.141.253 37 | 129.159.241.172 38 | 47.242.121.232 39 | 158.180.231.216 40 | 141.144.230.93 41 | 129.151.237.155 42 | 143.47.182.90 43 | 164.152.34.166 44 | 129.159.143.171 45 | 141.147.17.35 46 | 193.122.124.215 47 | 131.186.25.156 48 | 8.219.51.199 49 | 130.162.174.172 50 | 131.186.26.170 51 | 8.219.203.101 52 | 8.210.250.129 53 | 150.230.146.170 54 | 158.101.220.192 55 | 168.138.177.109 56 | 8.219.206.24 57 | 8.219.112.13 58 | 168.138.13.201 59 | 132.145.53.55 60 | 146.56.41.171 61 | 129.159.202.83 62 | 141.147.83.45 63 | 8.219.11.173 64 | 8.219.96.98 65 | 47.254.171.15 66 | 168.138.185.234 67 | 146.56.129.186 68 | 129.153.7.60 69 | 143.47.245.240 70 | 129.80.216.13 71 | 130.162.189.36 72 | 8.219.134.131 73 | 141.147.60.82 74 | 146.56.131.153 75 | 129.151.254.48 76 | 158.101.200.177 77 | 146.56.38.114 78 | 8.219.192.155 79 | 193.122.202.153 80 | 141.148.244.95 81 | 150.230.22.152 82 | 8.209.37.117 83 | 132.145.229.147 84 | 144.24.243.207 85 | 47.245.110.183 86 | 8.219.1.169 87 | 130.61.124.127 88 | 8.219.118.97 89 | 68.233.127.163 90 | 146.56.154.57 91 | 8.219.116.162 92 | 8.219.58.216 93 | 141.144.204.88 94 | 152.70.49.31 95 | 8.211.34.13 96 | 8.219.207.106 97 | 129.158.224.52 98 | 193.123.38.223 99 | 8.219.97.136 100 | 158.180.71.98 101 | 8.219.195.94 102 | 168.138.220.199 103 | 129.80.82.83 104 | 144.24.182.205 105 | 130.61.23.77 106 | 129.146.240.62 107 | 8.219.119.129 108 | 158.180.83.115 109 | 130.162.145.204 110 | 47.245.118.217 111 | 152.70.89.238 112 | 152.67.190.105 113 | 8.209.45.211 114 | 130.162.37.99 115 | 8.210.233.168 116 | 168.138.46.67 117 | 8.219.83.44 118 | 146.56.188.113 119 | 129.154.201.153 120 | 192.9.139.160 121 | 141.148.224.54 122 | 64.110.89.161 123 | 8.219.171.140 124 | 141.144.253.109 125 | 143.47.176.251 126 | 143.47.235.241 127 | 144.24.185.74 128 | 158.180.89.154 129 | 130.162.170.38 130 | 152.69.209.132 131 | 129.154.197.32 132 | 146.56.137.229 133 | 146.56.161.206 134 | 64.110.79.180 135 | 150.230.113.116 136 | 143.47.226.44 137 | 8.212.41.98 138 | 150.230.107.89 139 | 129.153.136.199 140 | 141.147.49.215 141 | 158.101.221.74 142 | 141.148.203.6 143 | 138.3.218.197 144 | 129.151.204.91 145 | 130.162.231.200 146 | 8.219.154.0 147 | 8.219.166.26 148 | 129.159.25.3 149 | 129.146.221.78 150 | 130.162.133.222 151 | 141.148.241.78 152 | 158.178.235.132 153 | 152.70.63.131 154 | 8.219.128.8 155 | 8.210.110.229 156 | 146.56.188.34 157 | 131.186.61.103 158 | 158.101.206.101 159 | 158.180.73.138 160 | 8.219.89.1 161 | 129.159.84.71 162 | 141.148.242.113 163 | 193.122.102.181 164 | 158.101.214.168 165 | 8.219.151.64 166 | 8.219.93.166 167 | 193.123.80.245 168 | 158.101.207.19 169 | 8.219.86.116 170 | 8.219.197.123 171 | 129.154.207.203 172 | 129.80.237.223 173 | 131.186.33.175 174 | 64.110.85.177 175 | 129.213.178.16 176 | 143.47.252.60 177 | 8.209.37.182 178 | 193.122.62.253 179 | 168.138.149.17 180 | 129.80.57.0 181 | 129.213.136.180 182 | 130.162.36.198 183 | 158.178.242.131 184 | 146.56.173.107 185 | 141.144.204.181 186 | 138.2.36.157 187 | 141.147.47.32 188 | 47.57.14.118 189 | 129.159.132.0 190 | 8.213.235.144 191 | 141.147.117.4 192 | 143.47.237.23 193 | 8.219.145.250 194 | 8.219.186.99 195 | 192.9.236.144 196 | 141.147.165.223 197 | 141.144.201.185 198 | 144.24.167.37 199 | 146.56.162.25 200 | 8.219.120.2 201 | 8.218.70.238 202 | 130.162.231.167 203 | 64.110.101.125 204 | 8.217.168.149 205 | 8.219.81.168 206 | 192.18.134.231 207 | 193.123.37.219 208 | 8.219.189.68 209 | 158.180.95.219 210 | 8.219.63.239 211 | 193.123.164.128 212 | 129.146.209.97 213 | 47.90.141.204 214 | 192.9.137.193 215 | 8.219.3.251 216 | 129.80.99.39 217 | 155.248.164.108 218 | 129.153.30.6 219 | 8.219.89.98 220 | 158.101.130.149 221 | 141.148.243.80 222 | 47.250.135.126 223 | 146.56.135.200 224 | 8.219.191.166 225 | 8.219.191.233 226 | 47.245.105.252 227 | 158.101.217.62 228 | 130.162.37.101 229 | 129.159.221.75 230 | 8.219.8.134 231 | 140.238.201.118 232 | 131.186.25.247 233 | 146.56.171.110 234 | 64.110.104.30 235 | 150.230.123.136 236 | 204.216.216.148 237 | 140.238.58.181 238 | 141.148.230.70 239 | 152.70.60.159 240 | 130.61.72.208 241 | 8.219.96.214 242 | 129.80.14.97 243 | 168.138.165.174 244 | 152.70.55.39 245 | 129.80.177.42 246 | 152.70.123.225 247 | 144.24.182.8 248 | 130.162.254.65 249 | 8.219.170.49 250 | 146.56.44.37 251 | 129.80.21.134 252 | 129.153.16.102 253 | 129.159.93.53 254 | 130.162.250.3 255 | 129.154.53.100 256 | 130.61.201.195 257 | 143.47.183.201 258 | 129.146.16.219 259 | 152.70.155.147 260 | 155.248.196.123 261 | 143.47.185.70 262 | 168.138.212.80 263 | 168.138.90.241 264 | 129.158.198.241 265 | 150.230.63.93 266 | 130.61.196.107 267 | 129.146.243.241 268 | 130.61.193.138 269 | 129.213.130.70 270 | 8.213.137.24 271 | 47.242.218.87 272 | 8.219.89.56 273 | 192.18.130.65 274 | 130.61.169.24 275 | 152.69.199.70 276 | 192.9.250.241 277 | 130.162.129.97 278 | 152.70.56.11 279 | 47.57.6.111 280 | 168.138.50.249 281 | 129.80.13.33 282 | 129.80.173.126 283 | 193.122.114.226 284 | 143.47.229.194 285 | 47.57.188.84 286 | 129.213.202.222 287 | 141.147.39.152 288 | 140.238.173.181 289 | 129.158.35.59 290 | 152.70.22.175 291 | 8.219.88.129 292 | 192.9.146.103 293 | 8.219.136.37 294 | 64.110.75.145 295 | 8.219.87.140 296 | 129.151.225.228 297 | 158.180.230.4 298 | 130.162.61.18 299 | 158.101.202.140 300 | 132.145.232.171 301 | 141.147.98.27 302 | 158.101.218.195 303 | 8.219.4.190 304 | 165.1.79.60 305 | 8.218.110.219 306 | 8.219.139.93 307 | 138.3.252.187 308 | 8.219.94.218 309 | 192.9.177.204 310 | 8.212.14.90 311 | 129.80.27.161 312 | 150.230.7.216 313 | 8.219.168.125 314 | 158.101.214.54 315 | 8.219.8.89 316 | 8.219.120.202 317 | 168.138.212.196 318 | 130.162.144.191 319 | 8.219.89.168 320 | 158.178.245.161 321 | 8.219.170.109 322 | 129.80.244.89 323 | 155.248.248.205 324 | 131.186.17.132 325 | 130.162.138.82 326 | 158.101.212.88 327 | 129.154.214.199 328 | 129.80.26.150 329 | 8.219.79.212 330 | 8.219.90.120 331 | 146.56.146.67 332 | 138.2.140.14 333 | 47.250.149.173 334 | 8.219.95.212 335 | 146.56.137.168 336 | 150.230.20.4 337 | 129.151.148.35 338 | 129.154.202.229 339 | 146.56.103.82 340 | 144.24.175.174 341 | 47.242.123.166 342 | 130.162.255.7 343 | 158.180.82.186 344 | 8.210.32.31 345 | 143.47.236.205 346 | 47.57.13.107 347 | 143.47.176.161 348 | 130.162.135.9 349 | 193.122.117.94 350 | 168.138.220.170 351 | 143.47.190.37 352 | 192.9.180.162 353 | 132.145.91.171 354 | 130.162.152.240 355 | 47.245.127.229 356 | 129.159.192.64 357 | 8.209.45.47 358 | 146.56.176.143 359 | 152.70.21.98 360 | 132.226.163.224 361 | 132.145.64.184 362 | 144.21.35.132 363 | 158.101.215.22 364 | 193.122.125.14 365 | 129.159.129.107 366 | 8.219.73.59 367 | 129.153.233.103 368 | 8.219.208.127 369 | 131.186.27.112 370 | 64.110.89.92 371 | 8.212.44.95 372 | 158.101.201.244 373 | --------------------------------------------------------------------------------