├── bun.lockb ├── wrangler.toml ├── package.json ├── tsconfig.json ├── .github └── workflows │ ├── scan.yaml │ ├── obfuscate.yaml │ └── cf.yml ├── .gitignore ├── README.md ├── helper └── proxyip.ts ├── kvProxyList.json ├── _worker.js └── proxyList.txt /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoolVPN-ID/Nautica/HEAD/bun.lockb -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- 1 | name = "nautica" 2 | main = "_worker.js" 3 | compatibility_date = "2024-09-23" 4 | compatibility_flags = ["nodejs_compat_v2"] 5 | 6 | [unsafe.metadata.observability] 7 | enabled = true 8 | 9 | [observability.logs] 10 | enabled = true 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nautica", 3 | "version": "1.0.0", 4 | "license": "ISC", 5 | "type": "module", 6 | "devDependencies": { 7 | "@types/bun": "latest" 8 | }, 9 | "peerDependencies": { 10 | "typescript": "^5.0.0" 11 | }, 12 | "dependencies": { 13 | "@types/node": "^22.10.2", 14 | "javascript-obfuscator": "^4.1.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | // Enable latest features 4 | "lib": ["ESNext", "DOM"], 5 | "target": "ESNext", 6 | "module": "ESNext", 7 | "moduleDetection": "force", 8 | "jsx": "react-jsx", 9 | "allowJs": true, 10 | 11 | // Bundler mode 12 | "moduleResolution": "bundler", 13 | "allowImportingTsExtensions": true, 14 | "verbatimModuleSyntax": true, 15 | "noEmit": true, 16 | 17 | // Best practices 18 | "strict": true, 19 | "skipLibCheck": true, 20 | "noFallthroughCasesInSwitch": true, 21 | 22 | // Some stricter flags (disabled by default) 23 | "noUnusedLocals": false, 24 | "noUnusedParameters": false, 25 | "noPropertyAccessFromIndexSignature": false 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /.github/workflows/scan.yaml: -------------------------------------------------------------------------------- 1 | name: Proxy Scanner 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: "0 */6 * * *" 7 | 8 | jobs: 9 | scanner: 10 | runs-on: ubuntu-latest 11 | concurrency: 12 | group: proxy-scan 13 | 14 | steps: 15 | - uses: actions/checkout@v3 16 | with: 17 | token: ${{ secrets.GIT_TOKEN }} 18 | - name: Use Bun 19 | uses: oven-sh/setup-bun@v2 20 | - name: Start Scan 21 | run: | 22 | bun install && bun run ./helper/proxyip.ts 23 | - name: Publish Result 24 | if: ${{ success() }} 25 | run: | 26 | git config --global user.name "Github Actions" 27 | git config --global user.email "actions@github.com" 28 | git add . 29 | git commit -m "Update proxyip" 30 | git push origin main --force 31 | -------------------------------------------------------------------------------- /.github/workflows/obfuscate.yaml: -------------------------------------------------------------------------------- 1 | name: Obfuscate Code 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | paths: 7 | - "_worker.js" 8 | jobs: 9 | scanner: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/checkout@v3 14 | with: 15 | token: ${{ secrets.GIT_TOKEN }} 16 | - name: Use Bun 17 | uses: oven-sh/setup-bun@v2 18 | - name: Obfuscate 19 | run: | 20 | bun install 21 | bunx javascript-obfuscator _worker.js --output worker.js \ 22 | --compact true \ 23 | --control-flow-flattening true \ 24 | --control-flow-flattening-threshold 1 \ 25 | --dead-code-injection true \ 26 | --dead-code-injection-threshold 1 \ 27 | --identifier-names-generator hexadecimal \ 28 | --rename-globals true \ 29 | --string-array true \ 30 | --string-array-encoding 'rc4' \ 31 | --string-array-threshold 1 \ 32 | --transform-object-keys true \ 33 | --unicode-escape-sequence true 34 | - name: Publish Result 35 | if: ${{ success() }} 36 | run: | 37 | git config --global user.name "Github Actions" 38 | git config --global user.email "actions@github.com" 39 | git add worker.js 40 | git commit -m "Upload obfuscated worker" 41 | git push origin main --force 42 | -------------------------------------------------------------------------------- /.github/workflows/cf.yml: -------------------------------------------------------------------------------- 1 | name: ⛅ CF Worker 2 | on: 3 | # docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow 4 | # docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#workflow_dispatch 5 | # docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#onworkflow_dispatchinputs 6 | workflow_dispatch: 7 | # github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/ 8 | # docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs 9 | inputs: 10 | # docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_dispatchinputs 11 | environment: 12 | description: 'wrangler env to deploy to' 13 | required: true 14 | default: 'prod' 15 | type: choice 16 | options: 17 | - dev 18 | - prod 19 | - one 20 | commit: 21 | description: 'git tip commit to deploy' 22 | default: 'main' 23 | required: true 24 | 25 | env: 26 | GIT_REF: ${{ github.event.inputs.commit || github.ref }} 27 | # default is 'dev' which is really empty/no env 28 | WORKERS_ENV: '' 29 | 30 | jobs: 31 | deploy: 32 | name: 🚀 Deploy worker 33 | runs-on: ubuntu-latest 34 | timeout-minutes: 60 35 | steps: 36 | - name: Checkout 37 | uses: actions/checkout@v3.3.0 38 | with: 39 | ref: ${{ env.GIT_REF }} 40 | fetch-depth: 0 41 | 42 | - name: 🛸 Env? 43 | # 'dev' env deploys to default WORKERS_ENV, which is, '' (an empty string) 44 | if: github.event.inputs.environment == 'prod' || github.event.inputs.environment == 'one' 45 | run: | 46 | echo "WORKERS_ENV=${WENV}" >> $GITHUB_ENV 47 | echo "COMMIT_SHA=${COMMIT_SHA}" >> $GITHUB_ENV 48 | shell: bash 49 | env: 50 | WENV: ${{ github.event.inputs.environment }} 51 | COMMIT_SHA: ${{ github.sha }} 52 | 53 | - name: 🎱 Tag? 54 | # docs.github.com/en/actions/learn-github-actions/contexts#github-context 55 | if: github.ref_type == 'tag' 56 | run: | 57 | echo "WORKERS_ENV=${WENV}" >> $GITHUB_ENV 58 | echo "COMMIT_SHA=${COMMIT_SHA}" >> $GITHUB_ENV 59 | shell: bash 60 | env: 61 | # tagged deploys always deploy to prod 62 | WENV: 'prod' 63 | COMMIT_SHA: ${{ github.sha }} 64 | 65 | # npm (and node16) are installed by wrangler-action in a pre-job setup 66 | - name: 🏗 Get dependencies 67 | run: npm i 68 | 69 | - name: 📚 Wrangler publish 70 | # github.com/cloudflare/wrangler-action 71 | uses: cloudflare/wrangler-action@2.0.0 72 | with: 73 | apiToken: ${{ secrets.CF_API_TOKEN }} 74 | # input overrides env-defaults, regardless 75 | environment: ${{ env.WORKERS_ENV }} 76 | env: 77 | CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} 78 | GIT_COMMIT_ID: ${{ env.GIT_REF }} 79 | 80 | - name: 🎤 Notice 81 | run: | 82 | echo "::notice::Deployed to ${WORKERS_ENV} / ${GIT_REF} @ ${COMMIT_SHA}" 83 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore 2 | 3 | # Logs 4 | 5 | logs 6 | _.log 7 | npm-debug.log_ 8 | yarn-debug.log* 9 | yarn-error.log* 10 | lerna-debug.log* 11 | .pnpm-debug.log* 12 | 13 | # Caches 14 | 15 | .cache 16 | 17 | # Diagnostic reports (https://nodejs.org/api/report.html) 18 | 19 | report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json 20 | 21 | # Runtime data 22 | 23 | pids 24 | _.pid 25 | _.seed 26 | *.pid.lock 27 | 28 | # Directory for instrumented libs generated by jscoverage/JSCover 29 | 30 | lib-cov 31 | 32 | # Coverage directory used by tools like istanbul 33 | 34 | coverage 35 | *.lcov 36 | 37 | # nyc test coverage 38 | 39 | .nyc_output 40 | 41 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 42 | 43 | .grunt 44 | 45 | # Bower dependency directory (https://bower.io/) 46 | 47 | bower_components 48 | 49 | # node-waf configuration 50 | 51 | .lock-wscript 52 | 53 | # Compiled binary addons (https://nodejs.org/api/addons.html) 54 | 55 | build/Release 56 | 57 | # Dependency directories 58 | 59 | node_modules/ 60 | jspm_packages/ 61 | 62 | # Snowpack dependency directory (https://snowpack.dev/) 63 | 64 | web_modules/ 65 | 66 | # TypeScript cache 67 | 68 | *.tsbuildinfo 69 | 70 | # Optional npm cache directory 71 | 72 | .npm 73 | 74 | # Optional eslint cache 75 | 76 | .eslintcache 77 | 78 | # Optional stylelint cache 79 | 80 | .stylelintcache 81 | 82 | # Microbundle cache 83 | 84 | .rpt2_cache/ 85 | .rts2_cache_cjs/ 86 | .rts2_cache_es/ 87 | .rts2_cache_umd/ 88 | 89 | # Optional REPL history 90 | 91 | .node_repl_history 92 | 93 | # Output of 'npm pack' 94 | 95 | *.tgz 96 | 97 | # Yarn Integrity file 98 | 99 | .yarn-integrity 100 | 101 | # dotenv environment variable files 102 | 103 | .env 104 | .env.development.local 105 | .env.test.local 106 | .env.production.local 107 | .env.local 108 | 109 | # parcel-bundler cache (https://parceljs.org/) 110 | 111 | .parcel-cache 112 | 113 | # Next.js build output 114 | 115 | .next 116 | out 117 | 118 | # Nuxt.js build / generate output 119 | 120 | .nuxt 121 | dist 122 | 123 | # Gatsby files 124 | 125 | # Comment in the public line in if your project uses Gatsby and not Next.js 126 | 127 | # https://nextjs.org/blog/next-9-1#public-directory-support 128 | 129 | # public 130 | 131 | # vuepress build output 132 | 133 | .vuepress/dist 134 | 135 | # vuepress v2.x temp and cache directory 136 | 137 | .temp 138 | 139 | # Docusaurus cache and generated files 140 | 141 | .docusaurus 142 | 143 | # Serverless directories 144 | 145 | .serverless/ 146 | 147 | # FuseBox cache 148 | 149 | .fusebox/ 150 | 151 | # DynamoDB Local files 152 | 153 | .dynamodb/ 154 | 155 | # TernJS port file 156 | 157 | .tern-port 158 | 159 | # Stores VSCode versions used for testing VSCode extensions 160 | 161 | .vscode-test 162 | 163 | # yarn v2 164 | 165 | .yarn/cache 166 | .yarn/unplugged 167 | .yarn/build-state.yml 168 | .yarn/install-state.gz 169 | .pnp.* 170 | 171 | # IntelliJ based IDEs 172 | .idea 173 | 174 | # Finder (MacOS) folder config 175 | .DS_Store 176 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to Nautica 2 | 3 | Sebuah repository serverless tunnel studi kasus Indonesia 4 | 5 | > ## NOTES.md 6 | > 7 | > Kamu tidak perlu membayar untuk menggunakan kode dalam repository/layanan ini. 8 | > Kalau kamu membayar kepada siapapun, berarti kamu terkena scam. 9 | 10 | # Fitur 11 | 12 | - [x] Otomatis split protocol VLESS, Trojan, dan Shadowsocks 13 | - [x] Reverse proxy 14 | - [x] Cache daftar proxy 15 | - [x] Support TCP dan DoH 16 | - [x] Transport Websocket CDN dan SNI 17 | - [x] KV proxy key (proxy berdasarkan country) 18 | - [x] Pagination 19 | - [x] Tampilan web bagus dan minimalis (Menurut saya) 20 | - [x] Dark mode 21 | - [x] Auto check (ping) akun 22 | - [x] Ambil akun dalam beberapa format (link, clash, sing-box, dll) 23 | - [x] Registrasi wildcard 24 | - [x] Menambahkan filter 25 | - [x] Negara `&cc=ID,SG,...` 26 | - [x] Subscription API 27 | - [x] Country Code `&cc=ID,SG,JP,KR,...` 28 | - [x] Format `&format=clash` (raw, clash, sfa, bfr, v2ray) 29 | - [x] Limit `&limit=10` 30 | - [x] VPN `&vpn=vless,trojan,ss` 31 | - [x] Port `&port=443,80` 32 | - [x] Domain `&domain=zoom.us` 33 | - [x] Tombol `Deploy to workers` untuk instant deployment 34 | 35 | # Todo (Belum Selesai) 36 | 37 | - [x] Lebih efisien (Partial) (I hate Javascript btw, jadi males buat benerin) 38 | - [ ] Skema URL shadowsocks 39 | 40 | Kode ini masih perlu banyak perbaikan, jadi silahkan berkontribusi dan berikan PR kalian! 41 | 42 | # Catatan 43 | 44 | - Harus UUID v4 Variant 2 45 | - Gunakan security `none` 46 | - Gunakan DoH di aplikasi VPN kalian jika tidak bisa browsing atau membuka website 47 | - Contoh DoH `https://8.8.8.8/dns-query` 48 | 49 | # Cara Deploy 50 | 51 | ## Instant 52 | 53 | Klik tombol di bawah 54 | [![Deploy to Cloudflare Workers](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/FoolVPN-ID/Nautica) 55 | 56 | ## Manual 57 | 58 | 1. Buat akun cloudflare 59 | 2. Buat worker 60 | 3. Copy kode dari `_worker.js` ke editor cloudflare worker 61 | 4. (Optional) Masukkan link daftar proxy kalian ke dalam environemnt variable `PROXY_BANK_URL` 62 | 5. (Optional) Masukkan link target reverse proxy ke environment variable `REVERSE_PROXY_TARGET` 63 | 6. Deploy 64 | 7. Buka `https://DOMAIN_WORKER_KALIAN/sub` 65 | 66 | - Contoh daftar proxy [proxyList.txt](https://raw.githubusercontent.com/dickymuliafiqri/Nautica/refs/heads/main/proxyList.txt) 67 | - Contoh reverse proxy [example.com](https://example.com) 68 | 69 | ## Cara Aktivasi API 70 | 71 | Salah satu fungsi API adalah agar kalian bisa melihat dan menambahkan subdomain wildcards ke workers. 72 | 73 | Berikut cara aktivasinya: 74 | 75 | 1. Masuk ke halaman editor workers yang sudah kalian buat 76 | 2. Isi `variable` dari baris ke 4-9 sesuai dengan key yang kalian miliki 77 | 3. Deploy 78 | 79 | ### Aktivasi Wildcard (Custom Domain) 80 | 81 | 1. Selesaikan langkah [Aktivasi API](#cara-aktivasi-api) 82 | 2. Isi variable `rootDomain` dengan domain utama kalian 83 | - Contoh: Domain workers `nautica.foolvpn.me`, berarti domain utamanya adalah `foolvpn.me` 84 | 3. Isi variable `serviceName` dengan nama workers kalian 85 | - Contoh: Domain workers `nautica.foolvpn.me`, berarti nama workersnya adalah `nautica` 86 | 4. Buat custom domain di pengaturan workers dengan kombinasi `serviceName`.`rootDomain` 87 | - Contoh: `nautica.foolvpn.me` 88 | 89 | # Endpoint 90 | 91 | - `/` -> Halaman utama reverse proxy 92 | - `/sub/:page` -> Halaman sub/list akun 93 | - `/api/v1/sub` -> Subscription link, [Queries](#fitur) 94 | 95 | # Footnote 96 | 97 | - Hal aneh lain yang saya kerjakan [FoolVPN](https://t.me/foolvpn) 98 | - Tanya-tanya -> [Telegram](https://t.me/d_fordlalatina) 99 | -------------------------------------------------------------------------------- /helper/proxyip.ts: -------------------------------------------------------------------------------- 1 | import tls from "tls"; 2 | 3 | interface ProxyStruct { 4 | address: string; 5 | port: number; 6 | country: string; 7 | org: string; 8 | } 9 | 10 | interface ProxyTestResult { 11 | error: boolean; 12 | message?: string; 13 | result?: { 14 | proxy: string; 15 | proxyip: boolean; 16 | ip: string; 17 | port: number; 18 | delay: number; 19 | country: string; 20 | asOrganization: string; 21 | }; 22 | } 23 | 24 | let myGeoIpString: any = null; 25 | 26 | const KV_PAIR_PROXY_FILE = "./kvProxyList.json"; 27 | const RAW_PROXY_LIST_FILE = "./rawProxyList.txt"; 28 | const PROXY_LIST_FILE = "./proxyList.txt"; 29 | const IP_RESOLVER_DOMAIN = "myip.ipeek.workers.dev"; 30 | const IP_RESOLVER_PATH = "/"; 31 | const CONCURRENCY = 99; 32 | 33 | const CHECK_QUEUE: string[] = []; 34 | 35 | async function sendRequest(host: string, path: string, proxy: any = null) { 36 | return new Promise((resolve, reject) => { 37 | const options = { 38 | host: proxy ? proxy.host : host, 39 | port: proxy ? proxy.port : 443, 40 | servername: host, 41 | }; 42 | 43 | const socket = tls.connect(options, () => { 44 | const request = 45 | `GET ${path} HTTP/1.1\r\n` + `Host: ${host}\r\n` + `User-Agent: Mozilla/5.0\r\n` + `Connection: close\r\n\r\n`; 46 | socket.write(request); 47 | }); 48 | 49 | let responseBody = ""; 50 | 51 | const timeout = setTimeout(() => { 52 | socket.destroy(); 53 | reject(new Error("socket timeout")); 54 | }, 5000); 55 | 56 | socket.on("data", (data) => (responseBody += data.toString())); 57 | socket.on("end", () => { 58 | clearTimeout(timeout); 59 | const body = responseBody.split("\r\n\r\n")[1] || ""; 60 | resolve(body); 61 | }); 62 | socket.on("error", (error) => { 63 | // console.log(error); 64 | reject(error); 65 | }); 66 | }); 67 | } 68 | 69 | export async function checkProxy(proxyAddress: string, proxyPort: number): Promise { 70 | let result: ProxyTestResult = { 71 | message: "Unknown error", 72 | error: true, 73 | }; 74 | 75 | const proxyInfo = { host: proxyAddress, port: proxyPort }; 76 | 77 | try { 78 | const start = new Date().getTime(); 79 | const [ipinfo, myip] = await Promise.all([ 80 | sendRequest(IP_RESOLVER_DOMAIN, IP_RESOLVER_PATH, proxyInfo), 81 | myGeoIpString == null ? sendRequest(IP_RESOLVER_DOMAIN, IP_RESOLVER_PATH, null) : myGeoIpString, 82 | ]); 83 | const finish = new Date().getTime(); 84 | 85 | // Save local geoip 86 | if (myGeoIpString == null) myGeoIpString = myip; 87 | 88 | const parsedIpInfo = JSON.parse(ipinfo as string); 89 | const parsedMyIp = JSON.parse(myip as string); 90 | 91 | if (parsedIpInfo.ip && parsedIpInfo.ip !== parsedMyIp.ip) { 92 | result = { 93 | error: false, 94 | result: { 95 | proxy: proxyAddress, 96 | port: proxyPort, 97 | proxyip: true, 98 | delay: finish - start, 99 | ...parsedIpInfo, 100 | }, 101 | }; 102 | } 103 | } catch (error: any) { 104 | result.message = error.message; 105 | } 106 | 107 | return result; 108 | } 109 | 110 | // async function checkProxy(proxyAddress: string, proxyPort: number): Promise { 111 | // const controller = new AbortController(); 112 | // setTimeout(() => controller.abort(), 5000); 113 | 114 | // try { 115 | // const res = await Bun.fetch(IP_RESOLVER_DOMAIN + `?ip=${proxyAddress}:${proxyPort}`, { 116 | // signal: controller.signal, 117 | // }); 118 | 119 | // if (res.status == 200) { 120 | // return { 121 | // error: false, 122 | // result: await res.json(), 123 | // }; 124 | // } else { 125 | // throw new Error(res.statusText); 126 | // } 127 | // } catch (e: any) { 128 | // return { 129 | // error: true, 130 | // message: e.message, 131 | // }; 132 | // } 133 | // } 134 | 135 | async function readProxyList(): Promise { 136 | const proxyList: ProxyStruct[] = []; 137 | 138 | const proxyListString = (await Bun.file(RAW_PROXY_LIST_FILE).text()).split("\n"); 139 | for (const proxy of proxyListString) { 140 | const [address, port, country, org] = proxy.split(","); 141 | proxyList.push({ 142 | address, 143 | port: parseInt(port), 144 | country, 145 | org, 146 | }); 147 | } 148 | 149 | return proxyList; 150 | } 151 | 152 | (async () => { 153 | const proxyList = await readProxyList(); 154 | const proxyChecked: string[] = []; 155 | const uniqueRawProxies: string[] = []; 156 | const activeProxyList: string[] = []; 157 | const kvPair: any = {}; 158 | 159 | let proxySaved = 0; 160 | 161 | for (let i = 0; i < proxyList.length; i++) { 162 | const proxy = proxyList[i]; 163 | const proxyKey = `${proxy.address}:${proxy.port}`; 164 | if (!proxyChecked.includes(proxyKey)) { 165 | proxyChecked.push(proxyKey); 166 | try { 167 | uniqueRawProxies.push(`${proxy.address},${proxy.port},${proxy.country},${proxy.org.replaceAll(/[+]/g, " ")}`); 168 | } catch (e: any) { 169 | continue; 170 | } 171 | } else { 172 | continue; 173 | } 174 | 175 | CHECK_QUEUE.push(proxyKey); 176 | checkProxy(proxy.address, proxy.port) 177 | .then((res) => { 178 | if (!res.error && res.result?.proxyip === true && res.result.country) { 179 | activeProxyList.push( 180 | `${res.result?.proxy},${res.result?.port},${res.result?.country},${res.result?.asOrganization}` 181 | ); 182 | 183 | if (kvPair[res.result.country] == undefined) kvPair[res.result.country] = []; 184 | if (kvPair[res.result.country].length < 10) { 185 | kvPair[res.result.country].push(`${res.result.proxy}:${res.result.port}`); 186 | } 187 | 188 | proxySaved += 1; 189 | console.log(`[${i}/${proxyList.length}] Proxy disimpan:`, proxySaved); 190 | } 191 | }) 192 | .finally(() => { 193 | CHECK_QUEUE.pop(); 194 | }); 195 | 196 | while (CHECK_QUEUE.length >= CONCURRENCY) { 197 | await Bun.sleep(1); 198 | } 199 | } 200 | 201 | // Waiting for all process to be completed 202 | while (CHECK_QUEUE.length) { 203 | await Bun.sleep(1); 204 | } 205 | 206 | uniqueRawProxies.sort(sortByCountry); 207 | activeProxyList.sort(sortByCountry); 208 | 209 | await Bun.write(KV_PAIR_PROXY_FILE, JSON.stringify(kvPair, null, " ")); 210 | await Bun.write(RAW_PROXY_LIST_FILE, uniqueRawProxies.join("\n")); 211 | await Bun.write(PROXY_LIST_FILE, activeProxyList.join("\n")); 212 | 213 | console.log(`Waktu proses: ${(Bun.nanoseconds() / 1000000000).toFixed(2)} detik`); 214 | process.exit(0); 215 | })(); 216 | 217 | function sortByCountry(a: string, b: string) { 218 | a = a.split(",")[2]; 219 | b = b.split(",")[2]; 220 | 221 | return a.localeCompare(b); 222 | } 223 | -------------------------------------------------------------------------------- /kvProxyList.json: -------------------------------------------------------------------------------- 1 | { 2 | "AM": [ 3 | "2.56.204.183:443", 4 | "2.56.206.114:2053", 5 | "2.56.205.182:8443", 6 | "2.56.205.182:2053", 7 | "2.56.206.114:8443", 8 | "213.159.76.175:443", 9 | "213.159.76.202:2053", 10 | "213.159.76.202:8443", 11 | "2.56.206.64:443" 12 | ], 13 | "AE": [ 14 | "152.32.181.246:44070", 15 | "139.185.50.5:14594", 16 | "84.235.245.18:34501", 17 | "193.123.81.105:443", 18 | "193.123.90.82:12648", 19 | "139.185.34.131:443", 20 | "217.195.200.138:443", 21 | "176.97.67.38:443", 22 | "176.97.66.175:443" 23 | ], 24 | "DE": [ 25 | "212.113.106.40:8443", 26 | "212.113.106.40:2053", 27 | "91.108.241.5:2053", 28 | "193.124.92.170:443", 29 | "195.133.64.185:443", 30 | "91.107.189.69:6956", 31 | "91.107.134.186:2083", 32 | "49.13.155.5:8081", 33 | "91.107.181.133:6956", 34 | "128.140.11.25:25690" 35 | ], 36 | "IN": [ 37 | "216.10.243.159:443", 38 | "172.232.112.240:587", 39 | "146.56.48.138:23010", 40 | "148.113.43.228:2053", 41 | "148.113.43.228:8443", 42 | "152.70.75.80:15805", 43 | "134.195.137.107:22473", 44 | "152.70.76.104:46000", 45 | "172.105.62.71:2443", 46 | "20.235.105.146:443" 47 | ], 48 | "AT": [ 49 | "94.228.169.108:443" 50 | ], 51 | "US": [ 52 | "159.100.198.106:443", 53 | "206.201.196.122:443", 54 | "199.59.229.178:443", 55 | "172.82.16.38:25122", 56 | "172.82.16.38:27043", 57 | "172.82.16.38:27061", 58 | "172.82.16.38:25953", 59 | "172.82.16.38:30387", 60 | "147.75.236.96:443", 61 | "172.82.16.38:31005" 62 | ], 63 | "AU": [ 64 | "125.7.24.251:443", 65 | "152.67.101.72:23010", 66 | "152.69.174.99:25248", 67 | "170.64.152.77:7443", 68 | "192.9.190.80:23862", 69 | "130.162.193.183:15401", 70 | "192.9.183.128:45673", 71 | "45.77.236.204:443" 72 | ], 73 | "BE": [ 74 | "34.22.190.30:443", 75 | "95.164.62.196:443" 76 | ], 77 | "BG": [ 78 | "185.82.218.224:9443", 79 | "185.82.218.224:8443", 80 | "185.82.218.224:443", 81 | "213.183.63.71:53811", 82 | "213.183.63.71:57743", 83 | "78.128.127.89:443", 84 | "91.215.153.85:443", 85 | "94.156.35.144:18836" 86 | ], 87 | "CA": [ 88 | "140.238.158.238:443", 89 | "140.238.158.238:8080", 90 | "213.255.209.207:443", 91 | "213.255.209.189:443", 92 | "150.230.27.23:16504", 93 | "148.113.204.36:8443", 94 | "148.113.204.36:2053", 95 | "172.105.26.112:2443", 96 | "192.18.159.164:36545", 97 | "192.18.150.121:27620" 98 | ], 99 | "CH": [ 100 | "91.90.193.24:443", 101 | "176.10.125.114:443", 102 | "91.245.225.69:443", 103 | "185.195.69.119:8443", 104 | "45.85.93.21:443", 105 | "185.195.69.119:2053", 106 | "179.43.156.113:13338", 107 | "38.180.85.203:443", 108 | "179.43.190.20:8443", 109 | "179.43.190.20:2053" 110 | ], 111 | "LV": [ 112 | "185.237.219.169:443", 113 | "138.124.182.204:443", 114 | "103.231.73.153:443", 115 | "185.135.86.89:8443", 116 | "185.237.218.134:8443", 117 | "185.242.106.215:443", 118 | "185.237.218.134:2053", 119 | "185.242.107.80:443", 120 | "185.242.106.162:2053", 121 | "185.8.60.108:443" 122 | ], 123 | "BR": [ 124 | "144.22.144.168:4242", 125 | "144.22.204.102:50317", 126 | "146.235.59.153:8443", 127 | "146.235.59.153:2053", 128 | "38.180.79.9:443", 129 | "132.226.163.224:8443", 130 | "168.75.92.141:28053", 131 | "132.226.163.224:2053", 132 | "147.45.116.50:24443", 133 | "38.180.78.255:443" 134 | ], 135 | "HK": [ 136 | "156.230.12.71:443", 137 | "192.131.142.161:46639", 138 | "43.132.244.52:21415", 139 | "103.247.28.240:37211", 140 | "118.141.64.192:36619", 141 | "141.11.91.67:8080", 142 | "154.16.10.34:8080", 143 | "156.254.114.120:30011", 144 | "156.255.90.175:8443", 145 | "156.255.90.175:2053" 146 | ], 147 | "CY": [ 148 | "91.223.208.217:443" 149 | ], 150 | "CZ": [ 151 | "81.91.214.85:443", 152 | "81.91.214.162:443" 153 | ], 154 | "NL": [ 155 | "194.58.39.80:443", 156 | "45.155.249.66:443", 157 | "109.237.98.57:443", 158 | "193.33.153.240:443", 159 | "217.144.189.127:443", 160 | "5.182.86.15:443", 161 | "79.137.194.255:443", 162 | "79.137.205.248:443", 163 | "85.192.29.136:443", 164 | "85.192.60.129:443" 165 | ], 166 | "FR": [ 167 | "94.23.171.114:2053", 168 | "94.23.171.114:8443", 169 | "45.85.146.60:443", 170 | "89.208.97.163:443", 171 | "194.24.161.146:4090", 172 | "89.117.57.4:2053", 173 | "94.23.167.24:2053", 174 | "178.33.161.186:2053", 175 | "178.33.161.196:8443", 176 | "178.33.161.186:8443" 177 | ], 178 | "FI": [ 179 | "37.27.17.144:22222", 180 | "185.188.181.49:443", 181 | "95.217.134.104:443", 182 | "194.53.54.30:443", 183 | "91.149.254.138:443", 184 | "65.109.202.208:2053", 185 | "65.109.181.192:4475", 186 | "65.109.202.208:8443", 187 | "185.188.181.14:443", 188 | "135.181.195.12:443" 189 | ], 190 | "GB": [ 191 | "213.165.88.177:443", 192 | "109.61.95.21:8080", 193 | "185.66.164.51:443", 194 | "51.89.128.93:44004", 195 | "51.89.128.93:12122", 196 | "95.179.236.51:443", 197 | "213.1.145.50:443", 198 | "198.244.169.93:12122", 199 | "198.244.169.93:44004", 200 | "45.61.138.147:443" 201 | ], 202 | "DK": [ 203 | "89.28.236.243:443" 204 | ], 205 | "EE": [ 206 | "37.252.5.75:443", 207 | "5.101.180.145:443", 208 | "45.129.199.232:443" 209 | ], 210 | "ES": [ 211 | "34.175.202.195:443", 212 | "91.149.242.110:443", 213 | "176.97.72.18:443", 214 | "185.114.72.119:24780", 215 | "103.45.245.208:2053", 216 | "185.114.73.166:8443", 217 | "103.45.245.208:8443", 218 | "185.114.73.166:2053", 219 | "185.114.72.31:8443", 220 | "185.114.72.31:2053" 221 | ], 222 | "PL": [ 223 | "146.59.19.208:8443", 224 | "146.59.19.208:2053", 225 | "54.37.235.201:443", 226 | "91.239.148.133:443", 227 | "91.239.148.53:443", 228 | "188.116.40.37:443", 229 | "91.239.148.53:42053", 230 | "70.34.244.250:12531", 231 | "185.188.147.79:443", 232 | "70.34.244.250:27000" 233 | ], 234 | "HU": [ 235 | "46.183.186.57:443" 236 | ], 237 | "ID": [ 238 | "43.218.77.16:1443", 239 | "43.218.77.16:443", 240 | "103.6.207.108:8080", 241 | "36.95.152.58:12137" 242 | ], 243 | "IE": [ 244 | "54.229.164.147:2053", 245 | "63.32.194.15:8443" 246 | ], 247 | "IL": [ 248 | "212.80.205.244:2053", 249 | "77.91.69.141:2053", 250 | "212.80.205.244:8443", 251 | "94.131.114.50:81", 252 | "77.91.69.141:8443", 253 | "77.91.69.51:2053", 254 | "77.91.69.51:8443" 255 | ], 256 | "IT": [ 257 | "212.237.30.220:443", 258 | "80.211.231.169:443", 259 | "129.152.2.127:1488", 260 | "38.180.22.20:1001", 261 | "188.213.168.52:443", 262 | "87.120.237.36:81", 263 | "185.47.172.172:8443", 264 | "94.177.199.119:2053", 265 | "185.247.184.186:2053", 266 | "185.247.184.186:8443" 267 | ], 268 | "JP": [ 269 | "138.2.10.217:27446", 270 | "217.142.230.253:587", 271 | "138.2.32.76:15821", 272 | "158.101.146.3:44872", 273 | "140.83.57.114:25965", 274 | "138.2.10.149:45638", 275 | "158.101.152.6:2919", 276 | "45.76.198.248:443", 277 | "103.238.129.215:42734", 278 | "150.230.5.34:45681" 279 | ], 280 | "KR": [ 281 | "121.139.174.91:30023", 282 | "129.154.54.67:19567", 283 | "158.247.250.157:81", 284 | "64.110.70.205:23022", 285 | "144.24.87.69:50001", 286 | "146.56.140.79:22561", 287 | "146.56.140.79:44699", 288 | "112.187.98.56:30036", 289 | "217.142.138.61:37914", 290 | "152.67.197.197:19120" 291 | ], 292 | "KZ": [ 293 | "80.90.183.75:8443", 294 | "45.82.14.221:443", 295 | "213.148.10.177:443", 296 | "91.200.151.172:443", 297 | "38.180.37.102:8443", 298 | "80.90.183.75:2053", 299 | "213.148.1.150:2053", 300 | "103.106.3.238:443", 301 | "94.131.2.187:2053", 302 | "95.164.114.50:8443" 303 | ], 304 | "LT": [ 305 | "195.238.126.52:443" 306 | ], 307 | "TR": [ 308 | "185.234.66.91:443", 309 | "94.131.123.74:443", 310 | "45.89.52.247:443", 311 | "185.219.134.25:31564", 312 | "185.39.204.55:2053", 313 | "188.132.129.84:8443", 314 | "185.8.129.187:443", 315 | "185.8.129.187:2096", 316 | "188.132.129.199:8443", 317 | "188.132.129.199:2053" 318 | ], 319 | "MD": [ 320 | "194.156.67.85:2053", 321 | "109.185.236.240:443", 322 | "194.156.67.85:8443", 323 | "45.140.146.80:2053", 324 | "45.67.229.128:81", 325 | "45.140.146.80:8443", 326 | "5.181.158.96:443", 327 | "45.86.86.53:443", 328 | "91.208.206.103:443", 329 | "91.208.162.68:443" 330 | ], 331 | "MX": [ 332 | "140.84.178.238:23010", 333 | "201.149.15.14:21585" 334 | ], 335 | "MY": [ 336 | "38.60.193.247:13300" 337 | ], 338 | "MU": [ 339 | "41.76.42.118:443", 340 | "41.76.42.116:443" 341 | ], 342 | "SE": [ 343 | "212.113.100.65:443", 344 | "147.45.76.247:443", 345 | "193.188.21.181:443", 346 | "46.226.161.37:443", 347 | "89.22.232.119:443", 348 | "31.25.29.199:443", 349 | "51.20.99.157:443", 350 | "45.82.80.96:443", 351 | "172.232.157.252:8443", 352 | "172.234.96.64:8443" 353 | ], 354 | "UA": [ 355 | "82.118.22.141:8443", 356 | "82.118.22.141:2053", 357 | "91.218.212.223:443" 358 | ], 359 | "RO": [ 360 | "45.67.34.89:8443", 361 | "194.68.44.27:81", 362 | "185.225.17.233:2053", 363 | "185.104.181.228:443", 364 | "185.225.17.233:8443", 365 | "45.67.34.74:2053", 366 | "94.131.119.136:81", 367 | "94.131.119.50:2053", 368 | "185.39.30.67:2053" 369 | ], 370 | "PT": [ 371 | "45.159.251.8:81" 372 | ], 373 | "RS": [ 374 | "38.180.100.80:443" 375 | ], 376 | "RU": [ 377 | "109.120.189.103:1488", 378 | "82.97.249.34:8443", 379 | "82.97.249.34:2053", 380 | "141.105.70.114:443", 381 | "147.45.245.15:443", 382 | "176.109.106.61:8443", 383 | "147.45.147.212:2053", 384 | "147.45.175.165:8443", 385 | "147.45.147.212:8443", 386 | "176.124.222.142:8443" 387 | ], 388 | "SG": [ 389 | "47.74.254.191:8900", 390 | "129.150.58.86:57621", 391 | "213.35.108.135:12596", 392 | "178.128.80.43:443", 393 | "138.2.89.238:43254", 394 | "146.235.18.248:45137", 395 | "194.127.193.240:50791", 396 | "47.236.119.190:51342", 397 | "129.150.49.58:18650", 398 | "129.150.36.188:53435" 399 | ], 400 | "TH": [ 401 | "45.144.167.46:19816", 402 | "171.103.164.62:30921", 403 | "171.103.232.58:20475" 404 | ], 405 | "TW": [ 406 | "210.61.97.241:81" 407 | ], 408 | "VN": [ 409 | "152.32.255.24:587", 410 | "103.15.90.134:49678" 411 | ] 412 | } -------------------------------------------------------------------------------- /_worker.js: -------------------------------------------------------------------------------- 1 | import { connect } from "cloudflare:sockets"; 2 | 3 | // Variables 4 | let serviceName = ""; 5 | let APP_DOMAIN = ""; 6 | 7 | let prxIP = ""; 8 | let cachedPrxList = []; 9 | 10 | // Constant 11 | const horse = "dHJvamFu"; 12 | const flash = "dm1lc3M="; 13 | const v2 = "djJyYXk="; 14 | const neko = "Y2xhc2g="; 15 | 16 | const PORTS = [443, 80]; 17 | const PROTOCOLS = [atob(horse), atob(flash), "ss"]; 18 | const SUB_PAGE_URL = "https://foolvpn.web.id/nautica"; 19 | const KV_PRX_URL = "https://raw.githubusercontent.com/FoolVPN-ID/Nautica/refs/heads/main/kvProxyList.json"; 20 | const PRX_BANK_URL = "https://raw.githubusercontent.com/FoolVPN-ID/Nautica/refs/heads/main/proxyList.txt"; 21 | const DNS_SERVER_ADDRESS = "8.8.8.8"; 22 | const DNS_SERVER_PORT = 53; 23 | const RELAY_SERVER_UDP = { 24 | host: "udp-relay.hobihaus.space", // Kontribusi atau cek relay publik disini: https://hub.docker.com/r/kelvinzer0/udp-relay 25 | port: 7300, 26 | }; 27 | const PRX_HEALTH_CHECK_API = "https://id1.foolvpn.web.id/api/v1/check"; 28 | const CONVERTER_URL = "https://api.foolvpn.web.id/convert"; 29 | const WS_READY_STATE_OPEN = 1; 30 | const WS_READY_STATE_CLOSING = 2; 31 | const CORS_HEADER_OPTIONS = { 32 | "Access-Control-Allow-Origin": "*", 33 | "Access-Control-Allow-Methods": "GET,HEAD,POST,OPTIONS", 34 | "Access-Control-Max-Age": "86400", 35 | }; 36 | 37 | async function getKVPrxList(kvPrxUrl = KV_PRX_URL) { 38 | if (!kvPrxUrl) { 39 | throw new Error("No URL Provided!"); 40 | } 41 | 42 | const kvPrx = await fetch(kvPrxUrl); 43 | if (kvPrx.status == 200) { 44 | return await kvPrx.json(); 45 | } else { 46 | return {}; 47 | } 48 | } 49 | 50 | async function getPrxList(prxBankUrl = PRX_BANK_URL) { 51 | /** 52 | * Format: 53 | * 54 | * ,,, 55 | * Contoh: 56 | * 1.1.1.1,443,SG,Cloudflare Inc. 57 | */ 58 | if (!prxBankUrl) { 59 | throw new Error("No URL Provided!"); 60 | } 61 | 62 | const prxBank = await fetch(prxBankUrl); 63 | if (prxBank.status == 200) { 64 | const text = (await prxBank.text()) || ""; 65 | 66 | const prxString = text.split("\n").filter(Boolean); 67 | cachedPrxList = prxString 68 | .map((entry) => { 69 | const [prxIP, prxPort, country, org] = entry.split(","); 70 | return { 71 | prxIP: prxIP || "Unknown", 72 | prxPort: prxPort || "Unknown", 73 | country: country || "Unknown", 74 | org: org || "Unknown Org", 75 | }; 76 | }) 77 | .filter(Boolean); 78 | } 79 | 80 | return cachedPrxList; 81 | } 82 | 83 | async function reverseWeb(request, target, targetPath) { 84 | const targetUrl = new URL(request.url); 85 | const targetChunk = target.split(":"); 86 | 87 | targetUrl.hostname = targetChunk[0]; 88 | targetUrl.port = targetChunk[1]?.toString() || "443"; 89 | targetUrl.pathname = targetPath || targetUrl.pathname; 90 | 91 | const modifiedRequest = new Request(targetUrl, request); 92 | 93 | modifiedRequest.headers.set("X-Forwarded-Host", request.headers.get("Host")); 94 | 95 | const response = await fetch(modifiedRequest); 96 | 97 | const newResponse = new Response(response.body, response); 98 | for (const [key, value] of Object.entries(CORS_HEADER_OPTIONS)) { 99 | newResponse.headers.set(key, value); 100 | } 101 | newResponse.headers.set("X-Proxied-By", "Cloudflare Worker"); 102 | 103 | return newResponse; 104 | } 105 | 106 | export default { 107 | async fetch(request, env, ctx) { 108 | try { 109 | const url = new URL(request.url); 110 | APP_DOMAIN = url.hostname; 111 | serviceName = APP_DOMAIN.split(".")[0]; 112 | 113 | const upgradeHeader = request.headers.get("Upgrade"); 114 | 115 | // Handle prx client 116 | if (upgradeHeader === "websocket") { 117 | const prxMatch = url.pathname.match(/^\/(.+[:=-]\d+)$/); 118 | 119 | if (url.pathname.length == 3 || url.pathname.match(",")) { 120 | // Contoh: /ID, /SG, dll 121 | const prxKeys = url.pathname.replace("/", "").toUpperCase().split(","); 122 | const prxKey = prxKeys[Math.floor(Math.random() * prxKeys.length)]; 123 | const kvPrx = await getKVPrxList(); 124 | 125 | prxIP = kvPrx[prxKey][Math.floor(Math.random() * kvPrx[prxKey].length)]; 126 | 127 | return await websocketHandler(request); 128 | } else if (prxMatch) { 129 | prxIP = prxMatch[1]; 130 | return await websocketHandler(request); 131 | } 132 | } 133 | 134 | if (url.pathname.startsWith("/sub")) { 135 | return Response.redirect(SUB_PAGE_URL + `?host=${APP_DOMAIN}`, 301); 136 | } else if (url.pathname.startsWith("/check")) { 137 | const target = url.searchParams.get("target").split(":"); 138 | const result = await checkPrxHealth(target[0], target[1] || "443"); 139 | 140 | return new Response(JSON.stringify(result), { 141 | status: 200, 142 | headers: { 143 | ...CORS_HEADER_OPTIONS, 144 | "Content-Type": "application/json", 145 | }, 146 | }); 147 | } else if (url.pathname.startsWith("/api/v1")) { 148 | const apiPath = url.pathname.replace("/api/v1", ""); 149 | 150 | if (apiPath.startsWith("/sub")) { 151 | const filterCC = url.searchParams.get("cc")?.split(",") || []; 152 | const filterPort = url.searchParams.get("port")?.split(",") || PORTS; 153 | const filterVPN = url.searchParams.get("vpn")?.split(",") || PROTOCOLS; 154 | const filterLimit = parseInt(url.searchParams.get("limit")) || 10; 155 | const filterFormat = url.searchParams.get("format") || "raw"; 156 | const fillerDomain = url.searchParams.get("domain") || APP_DOMAIN; 157 | 158 | const prxBankUrl = url.searchParams.get("prx-list") || env.PRX_BANK_URL; 159 | const prxList = await getPrxList(prxBankUrl) 160 | .then((prxs) => { 161 | // Filter CC 162 | if (filterCC.length) { 163 | return prxs.filter((prx) => filterCC.includes(prx.country)); 164 | } 165 | return prxs; 166 | }) 167 | .then((prxs) => { 168 | // shuffle result 169 | shuffleArray(prxs); 170 | return prxs; 171 | }); 172 | 173 | const uuid = crypto.randomUUID(); 174 | const result = []; 175 | for (const prx of prxList) { 176 | const uri = new URL(`${atob(horse)}://${fillerDomain}`); 177 | uri.searchParams.set("encryption", "none"); 178 | uri.searchParams.set("type", "ws"); 179 | uri.searchParams.set("host", APP_DOMAIN); 180 | 181 | for (const port of filterPort) { 182 | for (const protocol of filterVPN) { 183 | if (result.length >= filterLimit) break; 184 | 185 | uri.protocol = protocol; 186 | uri.port = port.toString(); 187 | if (protocol == "ss") { 188 | uri.username = btoa(`none:${uuid}`); 189 | uri.searchParams.set( 190 | "plugin", 191 | `${atob(v2)}-plugin${port == 80 ? "" : ";tls"};mux=0;mode=websocket;path=/${prx.prxIP}-${ 192 | prx.prxPort 193 | };host=${APP_DOMAIN}` 194 | ); 195 | } else { 196 | uri.username = uuid; 197 | } 198 | 199 | uri.searchParams.set("security", port == 443 ? "tls" : "none"); 200 | uri.searchParams.set("sni", port == 80 && protocol == atob(flash) ? "" : APP_DOMAIN); 201 | uri.searchParams.set("path", `/${prx.prxIP}-${prx.prxPort}`); 202 | 203 | uri.hash = `${result.length + 1} ${getFlagEmoji(prx.country)} ${prx.org} WS ${ 204 | port == 443 ? "TLS" : "NTLS" 205 | } [${serviceName}]`; 206 | result.push(uri.toString()); 207 | } 208 | } 209 | } 210 | 211 | let finalResult = ""; 212 | switch (filterFormat) { 213 | case "raw": 214 | finalResult = result.join("\n"); 215 | break; 216 | case atob(v2): 217 | finalResult = btoa(result.join("\n")); 218 | break; 219 | case atob(neko): 220 | case "sfa": 221 | case "bfr": 222 | const res = await fetch(CONVERTER_URL, { 223 | method: "POST", 224 | body: JSON.stringify({ 225 | url: result.join(","), 226 | format: filterFormat, 227 | template: "cf", 228 | }), 229 | }); 230 | if (res.status == 200) { 231 | finalResult = await res.text(); 232 | } else { 233 | return new Response(res.statusText, { 234 | status: res.status, 235 | headers: { 236 | ...CORS_HEADER_OPTIONS, 237 | }, 238 | }); 239 | } 240 | break; 241 | } 242 | 243 | return new Response(finalResult, { 244 | status: 200, 245 | headers: { 246 | ...CORS_HEADER_OPTIONS, 247 | }, 248 | }); 249 | } else if (apiPath.startsWith("/myip")) { 250 | return new Response( 251 | JSON.stringify({ 252 | ip: 253 | request.headers.get("cf-connecting-ipv6") || 254 | request.headers.get("cf-connecting-ip") || 255 | request.headers.get("x-real-ip"), 256 | colo: request.headers.get("cf-ray")?.split("-")[1], 257 | ...request.cf, 258 | }), 259 | { 260 | headers: { 261 | ...CORS_HEADER_OPTIONS, 262 | }, 263 | } 264 | ); 265 | } 266 | } 267 | 268 | const targetReversePrx = env.REVERSE_PRX_TARGET || "example.com"; 269 | return await reverseWeb(request, targetReversePrx); 270 | } catch (err) { 271 | return new Response(`An error occurred: ${err.toString()}`, { 272 | status: 500, 273 | headers: { 274 | ...CORS_HEADER_OPTIONS, 275 | }, 276 | }); 277 | } 278 | }, 279 | }; 280 | 281 | async function websocketHandler(request) { 282 | const webSocketPair = new WebSocketPair(); 283 | const [client, webSocket] = Object.values(webSocketPair); 284 | 285 | webSocket.accept(); 286 | 287 | let addressLog = ""; 288 | let portLog = ""; 289 | const log = (info, event) => { 290 | console.log(`[${addressLog}:${portLog}] ${info}`, event || ""); 291 | }; 292 | const earlyDataHeader = request.headers.get("sec-websocket-protocol") || ""; 293 | 294 | const readableWebSocketStream = makeReadableWebSocketStream(webSocket, earlyDataHeader, log); 295 | 296 | let remoteSocketWrapper = { 297 | value: null, 298 | }; 299 | let isDNS = false; 300 | 301 | readableWebSocketStream 302 | .pipeTo( 303 | new WritableStream({ 304 | async write(chunk, controller) { 305 | if (isDNS) { 306 | return handleUDPOutbound( 307 | DNS_SERVER_ADDRESS, 308 | DNS_SERVER_PORT, 309 | chunk, 310 | webSocket, 311 | null, 312 | log, 313 | RELAY_SERVER_UDP 314 | ); 315 | } 316 | if (remoteSocketWrapper.value) { 317 | const writer = remoteSocketWrapper.value.writable.getWriter(); 318 | await writer.write(chunk); 319 | writer.releaseLock(); 320 | return; 321 | } 322 | 323 | const protocol = await protocolSniffer(chunk); 324 | let protocolHeader; 325 | 326 | if (protocol === atob(horse)) { 327 | protocolHeader = readHorseHeader(chunk); 328 | } else if (protocol === atob(flash)) { 329 | protocolHeader = readFlashHeader(chunk); 330 | } else if (protocol === "ss") { 331 | protocolHeader = readSsHeader(chunk); 332 | } else { 333 | throw new Error("Unknown Protocol!"); 334 | } 335 | 336 | addressLog = protocolHeader.addressRemote; 337 | portLog = `${protocolHeader.portRemote} -> ${protocolHeader.isUDP ? "UDP" : "TCP"}`; 338 | 339 | if (protocolHeader.hasError) { 340 | throw new Error(protocolHeader.message); 341 | } 342 | 343 | if (protocolHeader.isUDP) { 344 | if (protocolHeader.portRemote === 53) { 345 | isDNS = true; 346 | return handleUDPOutbound( 347 | DNS_SERVER_ADDRESS, 348 | DNS_SERVER_PORT, 349 | chunk, 350 | webSocket, 351 | protocolHeader.version, 352 | log, 353 | RELAY_SERVER_UDP 354 | ); 355 | } 356 | 357 | return handleUDPOutbound( 358 | protocolHeader.addressRemote, 359 | protocolHeader.portRemote, 360 | chunk, 361 | webSocket, 362 | protocolHeader.version, 363 | log, 364 | RELAY_SERVER_UDP 365 | ); 366 | } 367 | 368 | handleTCPOutBound( 369 | remoteSocketWrapper, 370 | protocolHeader.addressRemote, 371 | protocolHeader.portRemote, 372 | protocolHeader.rawClientData, 373 | webSocket, 374 | protocolHeader.version, 375 | log 376 | ); 377 | }, 378 | close() { 379 | log(`readableWebSocketStream is close`); 380 | }, 381 | abort(reason) { 382 | log(`readableWebSocketStream is abort`, JSON.stringify(reason)); 383 | }, 384 | }) 385 | ) 386 | .catch((err) => { 387 | log("readableWebSocketStream pipeTo error", err); 388 | }); 389 | 390 | return new Response(null, { 391 | status: 101, 392 | webSocket: client, 393 | }); 394 | } 395 | 396 | async function protocolSniffer(buffer) { 397 | if (buffer.byteLength >= 62) { 398 | const horseDelimiter = new Uint8Array(buffer.slice(56, 60)); 399 | if (horseDelimiter[0] === 0x0d && horseDelimiter[1] === 0x0a) { 400 | if (horseDelimiter[2] === 0x01 || horseDelimiter[2] === 0x03 || horseDelimiter[2] === 0x7f) { 401 | if (horseDelimiter[3] === 0x01 || horseDelimiter[3] === 0x03 || horseDelimiter[3] === 0x04) { 402 | return atob(horse); 403 | } 404 | } 405 | } 406 | } 407 | 408 | const flashDelimiter = new Uint8Array(buffer.slice(1, 17)); 409 | // Hanya mendukung UUID v4 410 | if (arrayBufferToHex(flashDelimiter).match(/^[0-9a-f]{8}[0-9a-f]{4}4[0-9a-f]{3}[89ab][0-9a-f]{3}[0-9a-f]{12}$/i)) { 411 | return atob(flash); 412 | } 413 | 414 | return "ss"; // default 415 | } 416 | 417 | async function handleTCPOutBound( 418 | remoteSocket, 419 | addressRemote, 420 | portRemote, 421 | rawClientData, 422 | webSocket, 423 | responseHeader, 424 | log 425 | ) { 426 | async function connectAndWrite(address, port) { 427 | const tcpSocket = connect({ 428 | hostname: address, 429 | port: port, 430 | }); 431 | remoteSocket.value = tcpSocket; 432 | log(`connected to ${address}:${port}`); 433 | const writer = tcpSocket.writable.getWriter(); 434 | await writer.write(rawClientData); 435 | writer.releaseLock(); 436 | 437 | return tcpSocket; 438 | } 439 | 440 | async function retry() { 441 | const tcpSocket = await connectAndWrite( 442 | prxIP.split(/[:=-]/)[0] || addressRemote, 443 | prxIP.split(/[:=-]/)[1] || portRemote 444 | ); 445 | tcpSocket.closed 446 | .catch((error) => { 447 | console.log("retry tcpSocket closed error", error); 448 | }) 449 | .finally(() => { 450 | safeCloseWebSocket(webSocket); 451 | }); 452 | remoteSocketToWS(tcpSocket, webSocket, responseHeader, null, log); 453 | } 454 | 455 | const tcpSocket = await connectAndWrite(addressRemote, portRemote); 456 | 457 | remoteSocketToWS(tcpSocket, webSocket, responseHeader, retry, log); 458 | } 459 | 460 | async function handleUDPOutbound(targetAddress, targetPort, dataChunk, webSocket, responseHeader, log, relay) { 461 | try { 462 | let protocolHeader = responseHeader; 463 | 464 | const tcpSocket = connect({ 465 | hostname: relay.host, 466 | port: relay.port, 467 | }); 468 | 469 | const header = `udp:${targetAddress}:${targetPort}`; 470 | const headerBuffer = new TextEncoder().encode(header); 471 | const separator = new Uint8Array([0x7c]); 472 | const relayMessage = new Uint8Array(headerBuffer.length + separator.length + dataChunk.byteLength); 473 | relayMessage.set(headerBuffer, 0); 474 | relayMessage.set(separator, headerBuffer.length); 475 | relayMessage.set(new Uint8Array(dataChunk), headerBuffer.length + separator.length); 476 | 477 | const writer = tcpSocket.writable.getWriter(); 478 | await writer.write(relayMessage); 479 | writer.releaseLock(); 480 | 481 | await tcpSocket.readable.pipeTo( 482 | new WritableStream({ 483 | async write(chunk) { 484 | if (webSocket.readyState === WS_READY_STATE_OPEN) { 485 | if (protocolHeader) { 486 | webSocket.send(await new Blob([protocolHeader, chunk]).arrayBuffer()); 487 | protocolHeader = null; 488 | } else { 489 | webSocket.send(chunk); 490 | } 491 | } 492 | }, 493 | close() { 494 | log(`UDP connection to ${targetAddress} closed`); 495 | }, 496 | abort(reason) { 497 | console.error(`UDP connection aborted due to ${reason}`); 498 | }, 499 | }) 500 | ); 501 | } catch (e) { 502 | console.error(`Error while handling UDP outbound: ${e.message}`); 503 | } 504 | } 505 | 506 | function makeReadableWebSocketStream(webSocketServer, earlyDataHeader, log) { 507 | let readableStreamCancel = false; 508 | const stream = new ReadableStream({ 509 | start(controller) { 510 | webSocketServer.addEventListener("message", (event) => { 511 | if (readableStreamCancel) { 512 | return; 513 | } 514 | const message = event.data; 515 | controller.enqueue(message); 516 | }); 517 | webSocketServer.addEventListener("close", () => { 518 | safeCloseWebSocket(webSocketServer); 519 | if (readableStreamCancel) { 520 | return; 521 | } 522 | controller.close(); 523 | }); 524 | webSocketServer.addEventListener("error", (err) => { 525 | log("webSocketServer has error"); 526 | controller.error(err); 527 | }); 528 | const { earlyData, error } = base64ToArrayBuffer(earlyDataHeader); 529 | if (error) { 530 | controller.error(error); 531 | } else if (earlyData) { 532 | controller.enqueue(earlyData); 533 | } 534 | }, 535 | 536 | pull(controller) {}, 537 | cancel(reason) { 538 | if (readableStreamCancel) { 539 | return; 540 | } 541 | log(`ReadableStream was canceled, due to ${reason}`); 542 | readableStreamCancel = true; 543 | safeCloseWebSocket(webSocketServer); 544 | }, 545 | }); 546 | 547 | return stream; 548 | } 549 | 550 | function readSsHeader(ssBuffer) { 551 | const view = new DataView(ssBuffer); 552 | 553 | const addressType = view.getUint8(0); 554 | let addressLength = 0; 555 | let addressValueIndex = 1; 556 | let addressValue = ""; 557 | 558 | switch (addressType) { 559 | case 1: 560 | addressLength = 4; 561 | addressValue = new Uint8Array(ssBuffer.slice(addressValueIndex, addressValueIndex + addressLength)).join("."); 562 | break; 563 | case 3: 564 | addressLength = new Uint8Array(ssBuffer.slice(addressValueIndex, addressValueIndex + 1))[0]; 565 | addressValueIndex += 1; 566 | addressValue = new TextDecoder().decode(ssBuffer.slice(addressValueIndex, addressValueIndex + addressLength)); 567 | break; 568 | case 4: 569 | addressLength = 16; 570 | const dataView = new DataView(ssBuffer.slice(addressValueIndex, addressValueIndex + addressLength)); 571 | const ipv6 = []; 572 | for (let i = 0; i < 8; i++) { 573 | ipv6.push(dataView.getUint16(i * 2).toString(16)); 574 | } 575 | addressValue = ipv6.join(":"); 576 | break; 577 | default: 578 | return { 579 | hasError: true, 580 | message: `Invalid addressType for SS: ${addressType}`, 581 | }; 582 | } 583 | 584 | if (!addressValue) { 585 | return { 586 | hasError: true, 587 | message: `Destination address empty, address type is: ${addressType}`, 588 | }; 589 | } 590 | 591 | const portIndex = addressValueIndex + addressLength; 592 | const portBuffer = ssBuffer.slice(portIndex, portIndex + 2); 593 | const portRemote = new DataView(portBuffer).getUint16(0); 594 | return { 595 | hasError: false, 596 | addressRemote: addressValue, 597 | addressType: addressType, 598 | portRemote: portRemote, 599 | rawDataIndex: portIndex + 2, 600 | rawClientData: ssBuffer.slice(portIndex + 2), 601 | version: null, 602 | isUDP: portRemote == 53, 603 | }; 604 | } 605 | 606 | function readFlashHeader(buffer) { 607 | const version = new Uint8Array(buffer.slice(0, 1)); 608 | let isUDP = false; 609 | 610 | const optLength = new Uint8Array(buffer.slice(17, 18))[0]; 611 | 612 | const cmd = new Uint8Array(buffer.slice(18 + optLength, 18 + optLength + 1))[0]; 613 | if (cmd === 1) { 614 | } else if (cmd === 2) { 615 | isUDP = true; 616 | } else { 617 | return { 618 | hasError: true, 619 | message: `command ${cmd} is not supported`, 620 | }; 621 | } 622 | const portIndex = 18 + optLength + 1; 623 | const portBuffer = buffer.slice(portIndex, portIndex + 2); 624 | const portRemote = new DataView(portBuffer).getUint16(0); 625 | 626 | let addressIndex = portIndex + 2; 627 | const addressBuffer = new Uint8Array(buffer.slice(addressIndex, addressIndex + 1)); 628 | 629 | const addressType = addressBuffer[0]; 630 | let addressLength = 0; 631 | let addressValueIndex = addressIndex + 1; 632 | let addressValue = ""; 633 | switch (addressType) { 634 | case 1: // For IPv4 635 | addressLength = 4; 636 | addressValue = new Uint8Array(buffer.slice(addressValueIndex, addressValueIndex + addressLength)).join("."); 637 | break; 638 | case 2: // For Domain 639 | addressLength = new Uint8Array(buffer.slice(addressValueIndex, addressValueIndex + 1))[0]; 640 | addressValueIndex += 1; 641 | addressValue = new TextDecoder().decode(buffer.slice(addressValueIndex, addressValueIndex + addressLength)); 642 | break; 643 | case 3: // For IPv6 644 | addressLength = 16; 645 | const dataView = new DataView(buffer.slice(addressValueIndex, addressValueIndex + addressLength)); 646 | const ipv6 = []; 647 | for (let i = 0; i < 8; i++) { 648 | ipv6.push(dataView.getUint16(i * 2).toString(16)); 649 | } 650 | addressValue = ipv6.join(":"); 651 | break; 652 | default: 653 | return { 654 | hasError: true, 655 | message: `invild addressType is ${addressType}`, 656 | }; 657 | } 658 | if (!addressValue) { 659 | return { 660 | hasError: true, 661 | message: `addressValue is empty, addressType is ${addressType}`, 662 | }; 663 | } 664 | 665 | return { 666 | hasError: false, 667 | addressRemote: addressValue, 668 | addressType: addressType, 669 | portRemote: portRemote, 670 | rawDataIndex: addressValueIndex + addressLength, 671 | rawClientData: buffer.slice(addressValueIndex + addressLength), 672 | version: new Uint8Array([version[0], 0]), 673 | isUDP: isUDP, 674 | }; 675 | } 676 | 677 | function readHorseHeader(buffer) { 678 | const dataBuffer = buffer.slice(58); 679 | if (dataBuffer.byteLength < 6) { 680 | return { 681 | hasError: true, 682 | message: "invalid request data", 683 | }; 684 | } 685 | 686 | let isUDP = false; 687 | const view = new DataView(dataBuffer); 688 | const cmd = view.getUint8(0); 689 | if (cmd == 3) { 690 | isUDP = true; 691 | } else if (cmd != 1) { 692 | throw new Error("Unsupported command type!"); 693 | } 694 | 695 | let addressType = view.getUint8(1); 696 | let addressLength = 0; 697 | let addressValueIndex = 2; 698 | let addressValue = ""; 699 | switch (addressType) { 700 | case 1: // For IPv4 701 | addressLength = 4; 702 | addressValue = new Uint8Array(dataBuffer.slice(addressValueIndex, addressValueIndex + addressLength)).join("."); 703 | break; 704 | case 3: // For Domain 705 | addressLength = new Uint8Array(dataBuffer.slice(addressValueIndex, addressValueIndex + 1))[0]; 706 | addressValueIndex += 1; 707 | addressValue = new TextDecoder().decode(dataBuffer.slice(addressValueIndex, addressValueIndex + addressLength)); 708 | break; 709 | case 4: // For IPv6 710 | addressLength = 16; 711 | const dataView = new DataView(dataBuffer.slice(addressValueIndex, addressValueIndex + addressLength)); 712 | const ipv6 = []; 713 | for (let i = 0; i < 8; i++) { 714 | ipv6.push(dataView.getUint16(i * 2).toString(16)); 715 | } 716 | addressValue = ipv6.join(":"); 717 | break; 718 | default: 719 | return { 720 | hasError: true, 721 | message: `invalid addressType is ${addressType}`, 722 | }; 723 | } 724 | 725 | if (!addressValue) { 726 | return { 727 | hasError: true, 728 | message: `address is empty, addressType is ${addressType}`, 729 | }; 730 | } 731 | 732 | const portIndex = addressValueIndex + addressLength; 733 | const portBuffer = dataBuffer.slice(portIndex, portIndex + 2); 734 | const portRemote = new DataView(portBuffer).getUint16(0); 735 | return { 736 | hasError: false, 737 | addressRemote: addressValue, 738 | addressType: addressType, 739 | portRemote: portRemote, 740 | rawDataIndex: portIndex + 4, 741 | rawClientData: dataBuffer.slice(portIndex + 4), 742 | version: null, 743 | isUDP: isUDP, 744 | }; 745 | } 746 | 747 | async function remoteSocketToWS(remoteSocket, webSocket, responseHeader, retry, log) { 748 | let header = responseHeader; 749 | let hasIncomingData = false; 750 | await remoteSocket.readable 751 | .pipeTo( 752 | new WritableStream({ 753 | start() {}, 754 | async write(chunk, controller) { 755 | hasIncomingData = true; 756 | if (webSocket.readyState !== WS_READY_STATE_OPEN) { 757 | controller.error("webSocket.readyState is not open, maybe close"); 758 | } 759 | if (header) { 760 | webSocket.send(await new Blob([header, chunk]).arrayBuffer()); 761 | header = null; 762 | } else { 763 | webSocket.send(chunk); 764 | } 765 | }, 766 | close() { 767 | log(`remoteConnection!.readable is close with hasIncomingData is ${hasIncomingData}`); 768 | }, 769 | abort(reason) { 770 | console.error(`remoteConnection!.readable abort`, reason); 771 | }, 772 | }) 773 | ) 774 | .catch((error) => { 775 | console.error(`remoteSocketToWS has exception `, error.stack || error); 776 | safeCloseWebSocket(webSocket); 777 | }); 778 | if (hasIncomingData === false && retry) { 779 | log(`retry`); 780 | retry(); 781 | } 782 | } 783 | 784 | function safeCloseWebSocket(socket) { 785 | try { 786 | if (socket.readyState === WS_READY_STATE_OPEN || socket.readyState === WS_READY_STATE_CLOSING) { 787 | socket.close(); 788 | } 789 | } catch (error) { 790 | console.error("safeCloseWebSocket error", error); 791 | } 792 | } 793 | 794 | async function checkPrxHealth(prxIP, prxPort) { 795 | const req = await fetch(`${PRX_HEALTH_CHECK_API}?ip=${prxIP}:${prxPort}`); 796 | return await req.json(); 797 | } 798 | 799 | // Helpers 800 | function base64ToArrayBuffer(base64Str) { 801 | if (!base64Str) { 802 | return { error: null }; 803 | } 804 | try { 805 | base64Str = base64Str.replace(/-/g, "+").replace(/_/g, "/"); 806 | const decode = atob(base64Str); 807 | const arryBuffer = Uint8Array.from(decode, (c) => c.charCodeAt(0)); 808 | return { earlyData: arryBuffer.buffer, error: null }; 809 | } catch (error) { 810 | return { error }; 811 | } 812 | } 813 | 814 | function arrayBufferToHex(buffer) { 815 | return [...new Uint8Array(buffer)].map((x) => x.toString(16).padStart(2, "0")).join(""); 816 | } 817 | 818 | function shuffleArray(array) { 819 | let currentIndex = array.length; 820 | 821 | // While there remain elements to shuffle... 822 | while (currentIndex != 0) { 823 | // Pick a remaining element... 824 | let randomIndex = Math.floor(Math.random() * currentIndex); 825 | currentIndex--; 826 | 827 | // And swap it with the current element. 828 | [array[currentIndex], array[randomIndex]] = [array[randomIndex], array[currentIndex]]; 829 | } 830 | } 831 | 832 | function reverse(s) { 833 | return s.split("").reverse().join(""); 834 | } 835 | 836 | function getFlagEmoji(isoCode) { 837 | const codePoints = isoCode 838 | .toUpperCase() 839 | .split("") 840 | .map((char) => 127397 + char.charCodeAt(0)); 841 | return String.fromCodePoint(...codePoints); 842 | } 843 | -------------------------------------------------------------------------------- /proxyList.txt: -------------------------------------------------------------------------------- 1 | 152.32.181.246,44070,AE,UCLOUD INFORMATION TECHNOLOGY (HK) LIMITED 2 | 139.185.50.5,14594,AE,Oracle Corporation 3 | 84.235.245.18,34501,AE,Oracle Svenska AB 4 | 193.123.81.105,443,AE,Oracle Corporation 5 | 193.123.90.82,12648,AE,Oracle Corporation 6 | 139.185.34.131,443,AE,Oracle Corporation 7 | 217.195.200.138,443,AE,G-Core Labs Customer assignment 8 | 176.97.67.38,443,AE,3nt solutions LLP 9 | 176.97.66.175,443,AE,3nt solutions LLP 10 | 2.56.204.183,443,AM,Proitlab LLC 11 | 2.56.206.114,2053,AM,Proitlab LLC 12 | 2.56.205.182,8443,AM,Proitlab LLC 13 | 2.56.205.182,2053,AM,Proitlab LLC 14 | 2.56.206.114,8443,AM,Proitlab LLC 15 | 213.159.76.175,443,AM,WorkTitans B.V. 16 | 213.159.76.202,2053,AM,WorkTitans B.V. 17 | 213.159.76.202,8443,AM,WorkTitans B.V. 18 | 2.56.206.64,443,AM,Proitlab LLC 19 | 94.228.169.108,443,AT,Aeza International LTD 20 | 125.7.24.251,443,AU,Macquarie Telecom 21 | 152.67.101.72,23010,AU,Oracle Public Cloud 22 | 152.69.174.99,25248,AU,Oracle Corporation 23 | 170.64.152.77,7443,AU,DigitalOcean, LLC 24 | 192.9.190.80,23862,AU,Oracle Corporation 25 | 130.162.193.183,15401,AU,Oracle Public Cloud 26 | 192.9.183.128,45673,AU,Oracle Corporation 27 | 45.77.236.204,443,AU,Vultr Holdings, LLC 28 | 34.22.190.30,443,BE,Google LLC 29 | 95.164.62.196,443,BE,WorkTitans B.V. 30 | 185.82.218.224,9443,BG,ITLDC EU2.SOF Datacenter Network 31 | 185.82.218.224,8443,BG,ITLDC EU2.SOF Datacenter Network 32 | 185.82.218.224,443,BG,ITLDC EU2.SOF Datacenter Network 33 | 213.183.63.71,53811,BG,Melbikomas UAB 34 | 213.183.63.71,57743,BG,Melbikomas UAB 35 | 78.128.127.89,443,BG,DA International Group Ltd. 36 | 91.215.153.85,443,BG,Friendhosting LTD 37 | 94.156.35.144,18836,BG,Belcloud LTD 38 | 144.22.144.168,4242,BR,Oracle Corporation 39 | 144.22.204.102,50317,BR,Oracle Corporation 40 | 146.235.59.153,8443,BR,Oracle Corporation 41 | 146.235.59.153,2053,BR,Oracle Corporation 42 | 38.180.79.9,443,BR,3NT SOLUTIONS LLP 43 | 132.226.163.224,8443,BR,Oracle Public Cloud 44 | 168.75.92.141,28053,BR,Oracle Corporation 45 | 132.226.163.224,2053,BR,Oracle Public Cloud 46 | 147.45.116.50,24443,BR,GLOBAL CONNECTIVITY SOLUTIONS LLP 47 | 38.180.78.255,443,BR,3NT SOLUTIONS LLP 48 | 156.154.245.83,443,BR,Vercara, LLC 49 | 140.238.158.238,443,CA,Oracle Public Cloud 50 | 140.238.158.238,8080,CA,Oracle Public Cloud 51 | 213.255.209.207,443,CA,Cloud Web Manage 52 | 213.255.209.189,443,CA,Cloud Web Manage 53 | 150.230.27.23,16504,CA,Oracle Corporation 54 | 148.113.204.36,8443,CA,OVH Hosting, Inc. 55 | 148.113.204.36,2053,CA,OVH Hosting, Inc. 56 | 172.105.26.112,2443,CA,Linode 57 | 192.18.159.164,36545,CA,Oracle Corporation 58 | 192.18.150.121,27620,CA,Oracle Corporation 59 | 172.98.207.58,443,CA,CENTRILOGICCANADA 60 | 192.99.252.243,2053,CA,OVH SAS 61 | 172.93.32.131,23077,CA,Cluster Logic Inc 62 | 209.200.246.130,443,CA,REGXA LLC 63 | 3.97.173.206,80,CA,Securly, Inc 64 | 35.182.7.190,443,CA,Securly, Inc 65 | 35.183.163.195,80,CA,Securly, Inc 66 | 35.183.163.195,443,CA,Securly, Inc 67 | 35.182.7.190,80,CA,Securly, Inc 68 | 69.28.83.244,443,CA,Atlantic.Net - Toronto, LLC. 69 | 69.28.82.253,443,CA,Atlantic.Net - Toronto, LLC. 70 | 64.21.191.164,443,CA,N6 Cloud inc. 71 | 91.194.11.78,81,CA,DGTL TECH UK LLP 72 | 89.251.9.4,15466,CA,Deployish Limited 73 | 91.90.193.24,443,CH,Friendhosting LTD 74 | 176.10.125.114,443,CH,Datasource AG 75 | 91.245.225.69,443,CH,GLB Bulut Teknolojisi Limited Sirketi 76 | 185.195.69.119,8443,CH,Datasource AG 77 | 45.85.93.21,443,CH,Internet Utilities Europe and Asia Limited 78 | 185.195.69.119,2053,CH,Datasource AG 79 | 179.43.156.113,13338,CH,PRIVATE LAYER INC 80 | 38.180.85.203,443,CH,3NT SOLUTIONS LLP 81 | 179.43.190.20,8443,CH,PRIVATE LAYER INC 82 | 179.43.190.20,2053,CH,PRIVATE LAYER INC 83 | 185.195.69.200,8443,CH,Datasource AG 84 | 194.135.22.181,443,CH,GLB Bulut Teknolojisi Limited Sirketi 85 | 185.195.69.200,2053,CH,Datasource AG 86 | 185.195.69.209,2053,CH,Datasource AG 87 | 194.87.97.6,2053,CH,GLB Bulut Teknolojisi Limited Sirketi 88 | 194.87.97.6,8443,CH,GLB Bulut Teknolojisi Limited Sirketi 89 | 38.180.84.46,443,CH,3NT SOLUTIONS LLP 90 | 45.95.232.115,2053,CH,GLOBAL CONNECTIVITY SOLUTIONS LLP 91 | 45.85.93.96,443,CH,Internet Utilities Europe and Asia Limited 92 | 45.90.58.58,81,CH,Green Floid LLC 93 | 45.85.93.83,443,CH,Internet Utilities Europe and Asia Limited 94 | 45.95.232.18,2053,CH,GLOBAL CONNECTIVITY SOLUTIONS LLP 95 | 45.85.93.49,443,CH,Internet Utilities Europe and Asia Limited 96 | 45.95.232.18,8443,CH,GLOBAL CONNECTIVITY SOLUTIONS LLP 97 | 91.192.102.55,443,CH,Datasource AG 98 | 91.192.102.170,8443,CH,Datasource AG 99 | 91.192.102.170,2053,CH,Datasource AG 100 | 45.95.232.236,2053,CH,GLOBAL CONNECTIVITY SOLUTIONS LLP 101 | 91.245.225.79,8443,CH,GLB Bulut Teknolojisi Limited Sirketi 102 | 91.245.225.79,2053,CH,GLB Bulut Teknolojisi Limited Sirketi 103 | 94.131.12.56,443,CH,WorkTitans B.V. 104 | 94.247.42.207,443,CH,servinga GmbH 105 | 95.183.51.10,8443,CH,Solar Communications GmbH 106 | 95.183.51.10,2053,CH,Solar Communications GmbH 107 | 104.244.78.95,2083,CH,BuyVM 108 | 46.8.158.69,2053,CH,Datacamp Limited 109 | 91.223.208.217,443,CY,CLOUDLAYER8 LIMITED 110 | 81.91.214.85,443,CZ,OvaNet, a.s. 111 | 81.91.214.162,443,CZ,OvaNet, a.s. 112 | 212.113.106.40,8443,DE,Aeza International LTD 113 | 212.113.106.40,2053,DE,Aeza International LTD 114 | 91.108.241.5,2053,DE,Aeza International LTD 115 | 193.124.92.170,443,DE,GLB Bulut Teknolojisi Limited Sirketi 116 | 195.133.64.185,443,DE,Cloud Hosting Solutions, Limited. 117 | 91.107.189.69,6956,DE,Hetzner Online GmbH 118 | 91.107.134.186,2083,DE,Hetzner Online GmbH 119 | 49.13.155.5,8081,DE,Hetzner Online GmbH 120 | 91.107.181.133,6956,DE,Hetzner Online GmbH 121 | 128.140.11.25,25690,DE,Hetzner Online GmbH 122 | 91.107.157.253,26484,DE,Hetzner Online GmbH 123 | 159.69.92.30,443,DE,Hetzner Online GmbH 124 | 91.107.157.253,33894,DE,Hetzner Online GmbH 125 | 91.107.166.26,2053,DE,Hetzner Online GmbH 126 | 91.107.166.26,8888,DE,Hetzner Online GmbH 127 | 91.107.145.203,20400,DE,Hetzner Online GmbH 128 | 91.107.145.203,37607,DE,Hetzner Online GmbH 129 | 91.107.145.203,37561,DE,Hetzner Online GmbH 130 | 91.107.143.27,4090,DE,Hetzner Online GmbH 131 | 91.107.134.254,36521,DE,Hetzner Online GmbH 132 | 91.107.134.254,45603,DE,Hetzner Online GmbH 133 | 91.107.134.254,49222,DE,Hetzner Online GmbH 134 | 141.147.10.210,8881,DE,Oracle Corporation 135 | 89.169.54.138,443,DE,Aeza International LTD 136 | 157.245.27.205,443,DE,DigitalOcean, LLC 137 | 104.248.17.101,443,DE,DigitalOcean, LLC 138 | 54.38.159.25,443,DE,OVH GmbH 139 | 57.129.14.105,2053,DE,OVH GmbH 140 | 51.195.47.42,2053,DE,OVH GmbH 141 | 46.101.243.68,443,DE,DigitalOcean, LLC 142 | 57.129.47.3,2053,DE,OVH GmbH 143 | 51.195.100.247,2053,DE,OVH GmbH 144 | 51.195.46.211,2053,DE,OVH GmbH 145 | 51.195.44.3,2053,DE,OVH GmbH 146 | 57.129.15.103,2053,DE,OVH GmbH 147 | 18.184.55.249,443,DE,A100 ROW GmbH 148 | 3.67.25.193,443,DE,A100 ROW GmbH 149 | 18.184.27.249,443,DE,A100 ROW GmbH 150 | 18.197.218.69,443,DE,A100 ROW GmbH 151 | 45.76.82.192,443,DE,Vultr Holdings, LLC 152 | 5.61.39.183,443,DE,IROKO Networks Corporation 153 | 45.138.72.141,443,DE,GTELCOM LLC 154 | 37.1.195.124,443,DE,IROKO Networks Corporation 155 | 37.1.194.138,443,DE,IROKO Networks Corporation 156 | 45.157.233.83,3108,DE,dataforest GmbH 157 | 194.87.199.135,443,DE,Cloud Hosting Solutions, Limited. 158 | 80.76.32.165,443,DE,FIRST SERVER LIMITED 159 | 80.76.32.12,443,DE,FIRST SERVER LIMITED 160 | 37.120.186.205,2087,DE,netcup GmbH 161 | 31.172.70.222,443,DE,www.fornex.com, Fornex Hosting S.L. 162 | 5.187.7.200,21821,DE,www.fornex.com, Fornex Hosting S.L. 163 | 31.172.72.83,443,DE,Fornex Hosting S.L. 164 | 185.78.76.253,443,DE,nuxt.cloud hosting provider 165 | 116.202.195.240,2079,DE,HOS-300816 166 | 142.132.140.130,452,DE,Hetzner Online GmbH 167 | 91.107.178.91,22074,DE,Hetzner Online GmbH 168 | 142.132.140.130,444,DE,Hetzner Online GmbH 169 | 142.132.140.130,447,DE,Hetzner Online GmbH 170 | 142.132.140.130,454,DE,Hetzner Online GmbH 171 | 142.132.140.130,449,DE,Hetzner Online GmbH 172 | 142.132.140.130,443,DE,Hetzner Online GmbH 173 | 142.132.140.130,446,DE,Hetzner Online GmbH 174 | 142.132.140.130,448,DE,Hetzner Online GmbH 175 | 142.132.140.130,456,DE,Hetzner Online GmbH 176 | 142.132.140.130,445,DE,Hetzner Online GmbH 177 | 142.132.140.130,453,DE,Hetzner Online GmbH 178 | 91.107.177.114,14444,DE,Hetzner Online GmbH 179 | 88.198.18.246,8443,DE,HOS-512604 180 | 5.61.32.232,433,DE,IROKO Networks Corporation 181 | 91.107.166.111,2053,DE,Hetzner Online GmbH 182 | 91.107.131.10,14362,DE,Hetzner Online GmbH 183 | 162.55.168.133,2086,DE,Hetzner Online GmbH 184 | 91.107.166.111,8888,DE,Hetzner Online GmbH 185 | 116.203.99.143,40000,DE,Hetzner Online GmbH 186 | 78.46.234.136,2087,DE,Hetzner Online GmbH 187 | 78.46.234.136,2053,DE,Hetzner Online GmbH 188 | 139.162.191.98,2096,DE,Linode, LLC 189 | 139.162.145.35,2053,DE,139.162.0.0/16 190 | 45.84.196.33,65513,DE,24fire GmbH 191 | 77.223.215.167,443,DE,Ethernet Servers 192 | 5.39.249.146,443,DE,ahbr company limited 193 | 88.99.252.146,443,DE,Hetzner Online GmbH 194 | 5.230.44.233,443,DE,GHOSTnet Network used for VPS Hosting Services 195 | 167.235.242.114,443,DE,Hetzner Online GmbH 196 | 91.149.223.242,443,DE,Baxet Group Inc. 197 | 213.226.68.142,443,DE,Melbikomas UAB 198 | 193.226.77.245,443,DE,M247 LTD Frankfurt Infrastructure 199 | 194.39.204.118,65535,DE,Webhosting24 GmbH 200 | 195.234.62.215,443,DE,G-Core Labs Customer assignment 201 | 5.230.44.117,16771,DE,GHOSTnet Network used for VPS Hosting Services 202 | 157.90.119.128,2096,DE,Hetzner Online GmbH 203 | 185.66.165.51,443,DE,Perfecto Mobile UK Ltd (/24 used in Germany) 204 | 45.147.228.249,443,DE,aurologic GmbH 205 | 207.154.235.176,2053,DE,DigitalOcean, LLC 206 | 207.154.235.176,8443,DE,DigitalOcean, LLC 207 | 45.154.207.101,443,DE,oneprovider.com - Frankfurt Infrastructure 208 | 159.100.29.39,8081,DE,firstcolo GmbH 209 | 51.195.45.34,8443,DE,OVH GmbH 210 | 51.195.45.34,2053,DE,OVH GmbH 211 | 159.100.9.253,2053,DE,UltaHost Inc 212 | 159.69.180.122,2053,DE,Hetzner Online GmbH 213 | 159.69.180.122,8443,DE,Hetzner Online GmbH 214 | 157.230.127.100,8443,DE,DigitalOcean, LLC 215 | 185.94.29.46,2015,DE,dataforest GmbH 216 | 157.230.127.100,2053,DE,DigitalOcean, LLC 217 | 94.159.98.23,2053,DE,H2.NEXUS Frankfurt Network 218 | 159.100.9.253,8443,DE,UltaHost Inc 219 | 80.66.85.115,2053,DE,Germany, Frankfurt 220 | 80.66.85.115,8443,DE,Germany, Frankfurt 221 | 109.120.150.30,2053,DE,Aeza International LTD 222 | 116.203.58.165,443,DE,Hetzner Online GmbH 223 | 130.61.107.238,8443,DE,Oracle Public Cloud 224 | 135.125.191.180,2053,DE,OVH GmbH 225 | 135.125.191.180,8443,DE,OVH GmbH 226 | 135.125.234.160,2053,DE,OVH GmbH 227 | 135.125.232.253,2053,DE,OVH GmbH 228 | 135.125.234.160,8443,DE,OVH GmbH 229 | 135.125.232.253,8443,DE,OVH GmbH 230 | 138.201.155.233,2053,DE,Hetzner Online GmbH 231 | 139.162.133.162,27936,DE,139.162.0.0/16 232 | 139.162.133.162,11285,DE,139.162.0.0/16 233 | 139.162.133.162,20091,DE,139.162.0.0/16 234 | 139.162.133.162,24461,DE,139.162.0.0/16 235 | 139.162.133.162,15675,DE,139.162.0.0/16 236 | 139.162.133.162,15458,DE,139.162.0.0/16 237 | 139.162.133.162,25657,DE,139.162.0.0/16 238 | 139.162.133.162,17001,DE,139.162.0.0/16 239 | 139.162.133.162,11511,DE,139.162.0.0/16 240 | 139.162.133.162,26896,DE,139.162.0.0/16 241 | 139.162.133.162,31804,DE,139.162.0.0/16 242 | 139.162.133.162,25351,DE,139.162.0.0/16 243 | 139.162.133.162,34956,DE,139.162.0.0/16 244 | 139.162.133.162,32856,DE,139.162.0.0/16 245 | 139.162.133.162,36075,DE,139.162.0.0/16 246 | 139.162.133.162,42779,DE,139.162.0.0/16 247 | 139.162.133.162,31956,DE,139.162.0.0/16 248 | 139.162.133.162,36355,DE,139.162.0.0/16 249 | 139.162.133.162,48805,DE,139.162.0.0/16 250 | 139.162.133.162,56661,DE,139.162.0.0/16 251 | 139.162.133.162,52982,DE,139.162.0.0/16 252 | 139.162.133.162,58990,DE,139.162.0.0/16 253 | 139.162.133.162,34842,DE,139.162.0.0/16 254 | 139.162.133.162,51241,DE,139.162.0.0/16 255 | 139.162.133.162,42865,DE,139.162.0.0/16 256 | 139.162.133.162,58148,DE,139.162.0.0/16 257 | 139.162.133.162,54591,DE,139.162.0.0/16 258 | 139.162.133.162,46785,DE,139.162.0.0/16 259 | 139.162.133.162,41419,DE,139.162.0.0/16 260 | 139.59.152.149,2053,DE,DigitalOcean, LLC 261 | 139.59.152.149,8443,DE,DigitalOcean, LLC 262 | 141.95.127.227,8443,DE,OVH GmbH 263 | 141.95.127.227,2053,DE,OVH GmbH 264 | 141.95.127.112,8443,DE,OVH GmbH 265 | 142.132.165.86,2053,DE,Hetzner Online GmbH 266 | 142.132.178.99,443,DE,Hetzner Online GmbH 267 | 147.45.196.240,2053,DE,nuxt.cloud hosting provider 268 | 147.45.196.240,8443,DE,nuxt.cloud hosting provider 269 | 147.45.197.119,443,DE,nuxt.cloud hosting provider 270 | 150.230.146.170,2053,DE,Oracle Corporation 271 | 158.180.49.11,2053,DE,oracle 272 | 158.180.49.11,8443,DE,oracle 273 | 162.19.158.37,2053,DE,HostiMan Hosting 274 | 162.19.158.37,8443,DE,HostiMan Hosting 275 | 162.19.226.175,2053,DE,OVH GmbH 276 | 162.19.242.212,2053,DE,OVH GmbH 277 | 162.19.243.46,2053,DE,OVH GmbH 278 | 162.19.226.175,8443,DE,OVH GmbH 279 | 162.19.243.46,8443,DE,OVH GmbH 280 | 162.19.242.215,2053,DE,OVH GmbH 281 | 162.19.242.215,8443,DE,OVH GmbH 282 | 162.19.254.98,2053,DE,OVH GmbH 283 | 162.19.247.5,2053,DE,OVH GmbH 284 | 162.19.246.187,2053,DE,OVH GmbH 285 | 162.19.252.222,2053,DE,OVH GmbH 286 | 162.19.243.52,2053,DE,OVH GmbH 287 | 162.19.253.47,8443,DE,OVH GmbH 288 | 162.19.253.47,2053,DE,OVH GmbH 289 | 162.19.247.245,443,DE,OVH GmbH 290 | 162.19.246.187,8443,DE,OVH GmbH 291 | 162.19.243.52,8443,DE,OVH GmbH 292 | 162.19.254.52,8443,DE,OVH GmbH 293 | 162.19.252.123,8443,DE,OVH GmbH 294 | 162.19.253.192,8443,DE,OVH GmbH 295 | 162.19.254.52,2053,DE,OVH GmbH 296 | 162.19.253.192,2053,DE,OVH GmbH 297 | 162.19.252.123,2053,DE,OVH GmbH 298 | 162.19.254.49,8443,DE,OVH GmbH 299 | 162.19.254.49,2053,DE,OVH GmbH 300 | 167.99.140.246,2053,DE,DigitalOcean, LLC 301 | 18.156.209.101,443,DE,A100 ROW GmbH 302 | 18.185.254.189,443,DE,Amazon Data Services Ireland Ltd 303 | 18.159.105.97,443,DE,Amazon Data Services Ireland Ltd 304 | 18.193.131.26,443,DE,A100 ROW GmbH 305 | 18.192.93.64,443,DE,A100 ROW GmbH 306 | 18.198.227.161,443,DE,Amazon Data Services Ireland Ltd 307 | 18.196.70.197,443,DE,Amazon Data Services Ireland Ltd 308 | 185.103.252.54,2053,DE,FIRST SERVER LIMITED 309 | 185.125.102.167,8443,DE,Aeza International LTD 310 | 185.247.118.7,443,DE,O.M.C. COMPUTERS & COMMUNICATIONS LTD 311 | 185.233.80.60,2053,DE,FIRST SERVER LIMITED 312 | 185.94.166.203,2053,DE,GTELCOM LLC 313 | 185.78.76.63,2053,DE,nuxt.cloud hosting provider 314 | 185.254.97.252,1013,DE,dataforest GmbH 315 | 185.254.97.252,2013,DE,dataforest GmbH 316 | 193.24.209.103,8443,DE,Layer7 Networks GmbH 317 | 193.37.70.98,2053,DE,Cloud Hosting Solutions, Limited. 318 | 194.180.188.253,2053,DE,HOSTKEY B.V. 319 | 193.37.70.98,8443,DE,Cloud Hosting Solutions, Limited. 320 | 193.33.153.151,443,DE,Aeza International LTD 321 | 194.164.59.222,443,DE,IONOS SE 322 | 194.180.188.253,8443,DE,HOSTKEY B.V. 323 | 194.28.224.99,443,DE,Cloud Hosting Solutions, Limited. 324 | 194.58.33.218,443,DE,nuxt.cloud hosting provider 325 | 194.58.33.103,443,DE,nuxt.cloud hosting provider 326 | 194.76.173.245,2053,DE,IPXO 327 | 194.76.173.6,2053,DE,IPXO 328 | 194.9.6.32,48484,DE,dataforest GmbH 329 | 195.201.231.143,443,DE,Hetzner Online GmbH 330 | 195.206.242.141,2053,DE,LV FIRSTCLOUD 331 | 2.59.134.242,2002,DE,dataforest GmbH 332 | 195.54.33.164,443,DE,TK Rustelekom LLC 333 | 212.113.116.93,443,DE,Aeza International LTD 334 | 217.110.20.141,443,DE,Colt DC 335 | 217.160.216.30,443,DE,IONOS SE 336 | 23.88.112.241,8443,DE,Hetzner Online GmbH 337 | 3.68.31.54,443,DE,A100 ROW GmbH 338 | 3.68.62.122,443,DE,A100 ROW GmbH 339 | 3.127.55.133,443,DE,Amazon Data Services Ireland Ltd 340 | 3.66.115.225,443,DE,A100 ROW GmbH 341 | 3.69.0.8,443,DE,Amazon Data Services Ireland Ltd 342 | 3.67.232.136,443,DE,A100 ROW GmbH 343 | 3.73.6.186,2053,DE,A100 ROW GmbH 344 | 31.172.71.51,444,DE,www.fornex.com, Fornex Hosting S.L. 345 | 35.157.240.237,443,DE,Amazon Data Services Ireland Ltd 346 | 37.120.186.205,2083,DE,netcup GmbH 347 | 37.221.125.147,2053,DE,WorkTitans B.V. 348 | 45.135.165.245,443,DE,GLB Bulut Teknolojisi Limited Sirketi 349 | 45.157.233.83,3107,DE,dataforest GmbH 350 | 49.12.243.75,2053,DE,Hetzner Online GmbH 351 | 49.12.243.75,8443,DE,Hetzner Online GmbH 352 | 49.13.230.198,8080,DE,Hetzner Online GmbH 353 | 49.13.234.155,443,DE,Hetzner Online GmbH 354 | 51.195.102.180,2053,DE,OVH GmbH 355 | 51.195.100.92,2053,DE,OVH GmbH 356 | 51.195.102.134,2053,DE,OVH GmbH 357 | 51.195.119.195,2053,DE,OVH GmbH 358 | 51.195.102.180,8443,DE,OVH GmbH 359 | 51.195.116.16,8443,DE,OVH GmbH 360 | 51.195.100.92,8443,DE,OVH GmbH 361 | 51.195.119.175,2053,DE,OVH GmbH 362 | 51.195.118.15,2053,DE,OVH GmbH 363 | 51.195.116.16,2053,DE,OVH GmbH 364 | 51.195.119.65,2053,DE,OVH GmbH 365 | 51.195.102.49,2053,DE,OVH GmbH 366 | 51.195.117.115,2053,DE,OVH GmbH 367 | 51.195.119.195,8443,DE,OVH GmbH 368 | 51.195.119.78,2053,DE,OVH GmbH 369 | 51.195.119.77,2053,DE,OVH GmbH 370 | 51.195.119.76,2053,DE,OVH GmbH 371 | 51.195.119.65,8443,DE,OVH GmbH 372 | 51.195.40.4,2053,DE,OVH GmbH 373 | 51.195.42.173,2053,DE,OVH GmbH 374 | 51.195.42.9,2053,DE,OVH GmbH 375 | 51.195.41.72,8443,DE,OVH GmbH 376 | 51.195.42.9,8443,DE,OVH GmbH 377 | 51.195.119.76,8443,DE,OVH GmbH 378 | 51.195.40.4,8443,DE,OVH GmbH 379 | 51.195.41.72,2053,DE,OVH GmbH 380 | 51.195.44.192,8443,DE,OVH GmbH 381 | 51.195.43.174,8443,DE,OVH GmbH 382 | 51.195.45.137,2053,DE,OVH GmbH 383 | 51.195.43.174,2053,DE,OVH GmbH 384 | 51.195.44.192,2053,DE,OVH GmbH 385 | 51.38.98.202,443,DE,OVH GmbH 386 | 51.75.65.24,8443,DE,OVH GmbH 387 | 51.75.65.24,2053,DE,OVH GmbH 388 | 51.75.74.138,8443,DE,OVH GmbH 389 | 51.75.75.109,8443,DE,OVH GmbH 390 | 51.75.73.20,2053,DE,OVH GmbH 391 | 51.75.70.204,2053,DE,OVH GmbH 392 | 51.75.70.204,8443,DE,OVH GmbH 393 | 51.75.70.31,2053,DE,OVH GmbH 394 | 51.75.74.138,2053,DE,OVH GmbH 395 | 51.75.75.109,2053,DE,OVH GmbH 396 | 51.75.70.31,8443,DE,OVH GmbH 397 | 51.75.75.132,2053,DE,OVH GmbH 398 | 51.75.75.132,8443,DE,OVH GmbH 399 | 51.75.77.148,8443,DE,OVH GmbH 400 | 54.37.73.185,8443,DE,OVH GmbH 401 | 54.37.73.185,2053,DE,OVH GmbH 402 | 57.129.16.33,8443,DE,OVH GmbH 403 | 57.129.16.168,8443,DE,OVH GmbH 404 | 57.129.16.72,8443,DE,OVH GmbH 405 | 57.129.5.105,2053,DE,OVH GmbH 406 | 57.129.16.72,2053,DE,OVH GmbH 407 | 57.129.16.33,2053,DE,OVH GmbH 408 | 57.129.5.105,8443,DE,OVH GmbH 409 | 57.129.5.108,2053,DE,OVH GmbH 410 | 57.129.5.128,2053,DE,OVH GmbH 411 | 57.129.5.108,8443,DE,OVH GmbH 412 | 57.129.5.70,8443,DE,OVH GmbH 413 | 57.129.5.70,2053,DE,OVH GmbH 414 | 77.221.148.189,443,DE,Aeza International LTD 415 | 77.221.157.32,443,DE,Aeza International LTD 416 | 77.81.138.100,2053,DE,IPHOSTER OU 417 | 77.81.138.93,2053,DE,IPHOSTER OU 418 | 79.137.204.189,443,DE,AEZA GROUP Ltd 419 | 81.95.4.189,443,DE,F3 Netze e.V. 420 | 85.209.195.61,8443,DE,WorkTitans B.V. 421 | 85.209.195.61,2053,DE,WorkTitans B.V. 422 | 87.251.87.36,443,DE,nuxt.cloud hosting provider 423 | 87.251.87.111,443,DE,nuxt.cloud hosting provider 424 | 87.251.88.104,2053,DE,Cloud Hosting Solutions, Limited. 425 | 89.168.68.57,8443,DE,Oracle Svenska AB 426 | 89.168.68.57,2053,DE,Oracle Svenska AB 427 | 89.208.107.154,2053,DE,AEZA GROUP Ltd 428 | 89.208.97.224,8443,DE,Aeza International LTD 429 | 91.107.140.10,8080,DE,Hetzner Online GmbH 430 | 91.107.142.138,8080,DE,Hetzner Online GmbH 431 | 91.107.142.237,8080,DE,Hetzner Online GmbH 432 | 91.107.157.253,43801,DE,Hetzner Online GmbH 433 | 91.107.157.253,20531,DE,Hetzner Online GmbH 434 | 91.227.40.125,8443,DE,MVPS LTD 435 | 91.228.154.170,8443,DE,www.fornex.com, Fornex Hosting S.L. 436 | 95.179.164.162,8443,DE,Vultr Holdings, LLC 437 | 95.164.89.124,2053,DE,WorkTitans B.V. 438 | 195.245.239.128,2053,DE,Snowd Security OU 439 | 37.1.194.237,2053,DE,IROKO Networks Corporation 440 | 92.246.139.197,2053,DE,Aeza International LTD 441 | 93.183.94.78,6379,DE,OVH GmbH 442 | 109.120.185.29,443,DE,Aeza International LTD 443 | 77.91.78.97,2053,DE,HyperCore LTD 444 | 77.91.70.171,2053,DE,HyperCore LTD 445 | 217.144.186.102,2053,DE,Aeza International LTD 446 | 217.144.188.147,2053,DE,Aeza International LTD 447 | 217.144.186.237,2053,DE,Aeza International LTD 448 | 77.91.78.15,8443,DE,HyperCore LTD 449 | 77.91.78.15,2053,DE,HyperCore LTD 450 | 77.91.70.242,2053,DE,HyperCore LTD 451 | 79.137.206.57,2053,DE,Aeza International LTD 452 | 91.103.140.198,2053,DE,Aeza International LTD 453 | 31.214.175.108,8443,DE,Hetzner Online GmbH 454 | 85.198.11.18,8899,DE,Hetzner Online GmbH 455 | 89.169.13.12,443,DE,SERV.HOST GROUP LTD 456 | 89.169.13.242,443,DE,SERV.HOST GROUP LTD 457 | 89.169.13.214,443,DE,SERV.HOST GROUP LTD 458 | 109.120.134.15,443,DE,Aeza International LTD 459 | 89.169.35.188,443,DE,Aeza International LTD 460 | 77.221.137.133,443,DE,Aeza International LTD 461 | 46.226.165.169,443,DE,Aeza International LTD 462 | 85.193.92.242,8443,DE,Timeweb, LLP 463 | 85.193.92.242,2053,DE,Timeweb, LLP 464 | 85.193.95.23,8443,DE,Timeweb, LLP 465 | 85.193.95.220,2053,DE,Timeweb, LLP 466 | 85.193.95.23,2053,DE,Timeweb, LLP 467 | 85.193.95.220,8443,DE,Timeweb, LLP 468 | 81.200.154.2,2053,DE,Timeweb, LLP 469 | 90.156.228.74,2053,DE,Timeweb, LLP 470 | 90.156.228.74,8443,DE,Timeweb, LLP 471 | 217.25.91.145,8443,DE,Timeweb, LLP 472 | 217.25.91.145,2053,DE,Timeweb, LLP 473 | 95.140.157.183,8443,DE,lease for Timeweb 474 | 92.51.36.219,2053,DE,Timeweb, LLP 475 | 92.51.36.219,8443,DE,Timeweb, LLP 476 | 89.19.211.109,8443,DE,Timeweb, LLP 477 | 95.140.154.101,8443,DE,lease for Timeweb 478 | 95.140.154.101,2053,DE,lease for Timeweb 479 | 194.35.119.135,2053,DE,Timeweb, LLP 480 | 194.35.119.135,8443,DE,Timeweb, LLP 481 | 194.35.119.49,8443,DE,Timeweb, LLP 482 | 217.151.229.156,8443,DE,Timeweb, LLP 483 | 217.151.229.156,2053,DE,Timeweb, LLP 484 | 5.44.47.67,2053,DE,Timeweb, LLP 485 | 5.44.47.67,8443,DE,Timeweb, LLP 486 | 81.200.154.2,8443,DE,Timeweb, LLP 487 | 95.140.157.183,2053,DE,lease for Timeweb 488 | 193.233.114.58,2053,DE,Aeza International LTD 489 | 193.233.114.58,8443,DE,Aeza International LTD 490 | 193.233.115.226,8443,DE,Aeza International LTD 491 | 193.233.115.79,2053,DE,Aeza International LTD 492 | 193.233.115.226,2053,DE,Aeza International LTD 493 | 193.233.115.79,8443,DE,Aeza International LTD 494 | 147.45.77.214,443,DE,Aeza International LTD 495 | 109.120.132.113,2053,DE,Aeza International LTD 496 | 109.120.134.133,443,DE,Aeza International LTD 497 | 109.120.132.113,8443,DE,Aeza International LTD 498 | 109.120.135.91,8443,DE,Aeza International LTD 499 | 109.120.135.91,2053,DE,Aeza International LTD 500 | 147.45.72.32,8443,DE,Aeza International LTD 501 | 147.45.72.36,8443,DE,Aeza International LTD 502 | 185.230.143.122,2053,DE,Aeza International LTD 503 | 193.188.21.83,8443,DE,Aeza International LTD 504 | 193.188.21.83,2053,DE,Aeza International LTD 505 | 212.113.101.250,2053,DE,Aeza International LTD 506 | 77.221.143.56,8443,DE,Aeza International LTD 507 | 77.221.143.56,2053,DE,Aeza International LTD 508 | 77.221.143.81,2053,DE,Aeza International LTD 509 | 77.91.85.46,8443,DE,Aeza International LTD 510 | 77.91.86.3,2053,DE,Aeza International LTD 511 | 89.22.234.0,2053,DE,Aeza International LTD 512 | 89.22.236.161,2053,DE,Aeza International LTD 513 | 91.184.240.243,443,DE,Aeza International LTD 514 | 94.228.164.233,8443,DE,Pronet LLC 515 | 147.45.73.233,2053,DE,Aeza International LTD 516 | 77.91.86.3,8443,DE,Aeza International LTD 517 | 89.28.236.243,443,DK,Seven Digital Network Services LLC 518 | 37.252.5.75,443,EE,IROKO Networks Corporation 519 | 5.101.180.145,443,EE,Network for hosting services 520 | 45.129.199.232,443,EE,BlueVPS OU 521 | 34.175.202.195,443,ES,Google LLC 522 | 91.149.242.110,443,ES,BG-NETWORK 523 | 176.97.72.18,443,ES,IROKO Networks Corporation 524 | 185.114.72.119,24780,ES,FIRST SERVER LIMITED 525 | 103.45.245.208,2053,ES,O.M.C. COMPUTERS & COMMUNICATIONS LTD 526 | 185.114.73.166,8443,ES,FIRST SERVER LIMITED 527 | 103.45.245.208,8443,ES,O.M.C. COMPUTERS & COMMUNICATIONS LTD 528 | 185.114.73.166,2053,ES,FIRST SERVER LIMITED 529 | 185.114.72.31,8443,ES,FIRST SERVER LIMITED 530 | 185.114.72.31,2053,ES,FIRST SERVER LIMITED 531 | 185.231.204.173,81,ES,WorkTitans B.V. 532 | 193.17.183.157,8443,ES,JaJoJoo Madrid Region 533 | 193.17.183.157,2053,ES,JaJoJoo Madrid Region 534 | 2.56.221.72,81,ES,G-Core Labs Customer assignment 535 | 194.87.45.19,2053,ES,GLOBAL CONNECTIVITY SOLUTIONS LLP 536 | 212.227.144.37,8443,ES,IONOS SE 537 | 194.87.45.19,8443,ES,GLOBAL CONNECTIVITY SOLUTIONS LLP 538 | 45.86.229.28,443,ES,BlueVPS OU 539 | 212.227.90.142,443,ES,IONOS SE 540 | 95.85.89.70,81,ES,G-Core Labs Customer assignment 541 | 93.93.119.91,443,ES,ARSYS INTERNET S.L.U. 542 | 185.231.204.186,443,ES,WorkTitans B.V. 543 | 37.27.17.144,22222,FI,Hetzner Online GmbH 544 | 185.188.181.49,443,FI,I-SERVERS LTD 545 | 95.217.134.104,443,FI,Hetzner Online GmbH 546 | 194.53.54.30,443,FI,PSERVERS Enterprise Network 547 | 91.149.254.138,443,FI,Baxet Group Inc. 548 | 65.109.202.208,2053,FI,Hetzner Online GmbH 549 | 65.109.181.192,4475,FI,Hetzner Online GmbH 550 | 65.109.202.208,8443,FI,Hetzner Online GmbH 551 | 185.188.181.14,443,FI,PSERVERS Enterprise Network 552 | 135.181.195.12,443,FI,Hetzner Online GmbH 553 | 65.109.210.122,32795,FI,Hetzner Online GmbH 554 | 45.138.73.83,443,FI,FIRST SERVER LIMITED 555 | 46.8.237.3,443,FI,CGI GLOBAL LIMITED 556 | 65.109.190.54,2021,FI,Hetzner Online GmbH 557 | 65.108.209.46,443,FI,Hetzner Online GmbH 558 | 65.109.206.21,8443,FI,Hetzner Online GmbH 559 | 185.102.136.128,443,FI,FIRST SERVER LIMITED 560 | 95.217.25.18,2095,FI,Hetzner Online GmbH 561 | 193.84.2.58,8443,FI,HOSTKEY B.V. 562 | 135.181.210.228,443,FI,Hetzner Online GmbH 563 | 65.109.192.28,12216,FI,Hetzner Online GmbH 564 | 135.181.34.150,443,FI,Hetzner Online GmbH 565 | 65.109.192.28,57286,FI,Hetzner Online GmbH 566 | 65.109.209.200,2095,FI,Hetzner Online GmbH 567 | 193.109.84.39,443,FI,PSERVERS Enterprise Network 568 | 37.27.38.42,443,FI,Hetzner Online GmbH 569 | 193.124.180.241,443,FI,PSERVERS Enterprise Network 570 | 77.221.144.210,443,FI,New Hosting Technologies LLC 571 | 79.137.248.111,443,FI,Aeza International LTD 572 | 135.181.197.230,2053,FI,Hetzner Online GmbH 573 | 135.181.151.136,2053,FI,Hetzner Online GmbH 574 | 135.181.151.136,9443,FI,Hetzner Online GmbH 575 | 135.181.250.100,2053,FI,Hetzner Online GmbH 576 | 135.181.250.100,8443,FI,Hetzner Online GmbH 577 | 135.181.30.234,2053,FI,Hetzner Online GmbH 578 | 139.28.221.213,48004,FI,PSERVERS Enterprise Network 579 | 139.28.220.16,2053,FI,PSERVERS Enterprise Network 580 | 185.104.250.207,8443,FI,PSERVERS Enterprise Network 581 | 185.105.118.126,2053,FI,PSERVERS Enterprise Network 582 | 185.104.250.207,2053,FI,PSERVERS Enterprise Network 583 | 185.105.118.126,8443,FI,PSERVERS Enterprise Network 584 | 185.17.2.103,8443,FI,PSERVERS Enterprise Network 585 | 185.17.2.108,2053,FI,PSERVERS Enterprise Network 586 | 185.112.82.28,443,FI,Creanova 587 | 185.188.181.187,443,FI,PSERVERS Enterprise Network 588 | 185.17.2.103,2053,FI,PSERVERS Enterprise Network 589 | 185.188.181.214,443,FI,PSERVERS Enterprise Network 590 | 185.17.2.108,8443,FI,PSERVERS Enterprise Network 591 | 185.252.144.185,8443,FI,FIRST SERVER LIMITED 592 | 185.252.144.185,2053,FI,FIRST SERVER LIMITED 593 | 185.40.7.224,443,FI,FIRST SERVER LIMITED 594 | 185.94.167.181,8443,FI,PSERVERS Enterprise Network 595 | 185.94.167.181,2053,FI,PSERVERS Enterprise Network 596 | 188.130.206.93,2053,FI,CGI GLOBAL LIMITED 597 | 193.124.190.40,8443,FI,FIRST SERVER LIMITED 598 | 188.130.154.234,2053,FI,CGI GLOBAL LIMITED 599 | 188.130.154.234,8443,FI,CGI GLOBAL LIMITED 600 | 193.124.190.40,2053,FI,FIRST SERVER LIMITED 601 | 193.164.155.27,8443,FI,as56971 network 602 | 193.233.112.252,8443,FI,Partner Hosting LTD 603 | 193.164.155.27,2053,FI,as56971 network 604 | 194.180.189.36,443,FI,HOSTKEY B.V. 605 | 194.53.54.84,2053,FI,PSERVERS Enterprise Network 606 | 195.26.230.99,2053,FI,undefined 607 | 194.53.54.84,8443,FI,PSERVERS Enterprise Network 608 | 195.26.230.99,8443,FI,undefined 609 | 212.237.219.99,443,FI,HOSTKEY B.V. 610 | 23.164.240.143,8443,FI,Baxet Group Inc. 611 | 23.164.240.143,2053,FI,Baxet Group Inc. 612 | 35.228.168.221,443,FI,Google LLC 613 | 35.217.24.30,2053,FI,Google LLC 614 | 35.217.24.30,8443,FI,Google LLC 615 | 37.27.184.127,2053,FI,Hetzner Online GmbH 616 | 37.27.15.83,8443,FI,Hetzner Online GmbH 617 | 37.27.91.126,443,FI,Hetzner Online GmbH 618 | 37.27.6.95,8443,FI,Hetzner Online GmbH 619 | 37.27.6.95,2053,FI,Hetzner Online GmbH 620 | 37.27.85.102,443,FI,Hetzner Online GmbH 621 | 45.138.73.136,8443,FI,FIRST SERVER LIMITED 622 | 45.138.73.136,2053,FI,FIRST SERVER LIMITED 623 | 45.156.22.52,2053,FI,as56971 network 624 | 45.159.249.141,2053,FI,WorkTitans B.V. 625 | 45.156.22.150,587,FI,as56971 network 626 | 45.156.22.114,443,FI,as56971 network 627 | 46.8.228.208,8443,FI,CGI GLOBAL LIMITED 628 | 45.159.249.141,8443,FI,WorkTitans B.V. 629 | 46.8.228.185,443,FI,CGI GLOBAL LIMITED 630 | 46.8.228.182,8443,FI,CGI GLOBAL LIMITED 631 | 46.8.238.49,2053,FI,CGI GLOBAL LIMITED 632 | 46.8.228.182,2053,FI,CGI GLOBAL LIMITED 633 | 46.8.238.49,8443,FI,CGI GLOBAL LIMITED 634 | 65.108.149.250,2053,FI,Hetzner Online GmbH 635 | 5.181.20.165,81,FI,WorkTitans B.V. 636 | 65.108.149.250,8443,FI,Hetzner Online GmbH 637 | 65.108.245.196,443,FI,Hetzner Online GmbH 638 | 65.109.161.254,8443,FI,Hetzner Online GmbH 639 | 65.109.15.37,8443,FI,Hetzner Online GmbH 640 | 65.109.15.37,2053,FI,Hetzner Online GmbH 641 | 65.109.161.254,2053,FI,Hetzner Online GmbH 642 | 65.109.12.58,8443,FI,Hetzner Online GmbH 643 | 65.109.12.58,2053,FI,Hetzner Online GmbH 644 | 65.109.184.193,2086,FI,Hetzner Online GmbH 645 | 65.109.186.249,2053,FI,Hetzner Online GmbH 646 | 65.109.191.244,2053,FI,Hetzner Online GmbH 647 | 65.109.201.6,8443,FI,Hetzner Online GmbH 648 | 45.156.22.237,2053,FI,as56971 network 649 | 45.156.22.237,8443,FI,as56971 network 650 | 65.109.201.6,2053,FI,Hetzner Online GmbH 651 | 65.109.210.191,8443,FI,Hetzner Online GmbH 652 | 65.109.209.55,2053,FI,Hetzner Online GmbH 653 | 65.109.209.85,2053,FI,Hetzner Online GmbH 654 | 65.109.210.191,2053,FI,Hetzner Online GmbH 655 | 65.109.211.85,2053,FI,Hetzner Online GmbH 656 | 45.159.249.160,8443,FI,WorkTitans B.V. 657 | 45.159.249.160,2053,FI,WorkTitans B.V. 658 | 65.109.211.85,3030,FI,Hetzner Online GmbH 659 | 65.109.227.138,2053,FI,Hetzner Online GmbH 660 | 66.151.34.227,2053,FI,HOSTKEY B.V. 661 | 78.153.139.87,2053,FI,GLOBAL CONNECTIVITY SOLUTIONS LLP 662 | 66.151.34.227,8443,FI,HOSTKEY B.V. 663 | 77.221.144.41,8443,FI,New Hosting Technologies LLC 664 | 94.131.100.225,2053,FI,WorkTitans B.V. 665 | 94.131.100.136,2053,FI,WorkTitans B.V. 666 | 95.164.113.130,443,FI,WorkTitans B.V. 667 | 92.42.102.73,8443,FI,1Cent Host 668 | 95.182.99.128,8443,FI,CGI GLOBAL LIMITED 669 | 95.182.99.23,2053,FI,CGI GLOBAL LIMITED 670 | 95.182.99.23,8443,FI,CGI GLOBAL LIMITED 671 | 95.182.99.128,2053,FI,CGI GLOBAL LIMITED 672 | 87.239.251.30,2053,FI,FIRST SERVER LIMITED 673 | 95.216.148.189,8443,FI,Hetzner Online GmbH 674 | 95.216.148.189,2053,FI,Hetzner Online GmbH 675 | 95.216.140.177,443,FI,Hetzner Online GmbH 676 | 95.216.215.126,2053,FI,Hetzner Online GmbH 677 | 95.216.215.126,8443,FI,Hetzner Online GmbH 678 | 95.217.186.94,9443,FI,Hetzner Online GmbH 679 | 95.217.195.186,2053,FI,Hetzner Online GmbH 680 | 95.217.186.94,2053,FI,Hetzner Online GmbH 681 | 95.217.184.234,8443,FI,Hetzner Online GmbH 682 | 95.217.184.234,2053,FI,Hetzner Online GmbH 683 | 95.217.195.186,8443,FI,Hetzner Online GmbH 684 | 217.144.188.147,8443,FI,Aeza International LTD 685 | 91.108.241.188,443,FI,Aeza International LTD 686 | 176.124.206.60,8443,FI,Aeza International LTD 687 | 87.239.251.30,8443,FI,FIRST SERVER LIMITED 688 | 94.23.171.114,2053,FR,OVH SAS 689 | 94.23.171.114,8443,FR,OVH SAS 690 | 45.85.146.60,443,FR,Contabo GmbH 691 | 89.208.97.163,443,FR,Aeza International LTD 692 | 194.24.161.146,4090,FR,Layer7 Networks GmbH 693 | 89.117.57.4,2053,FR,IPXO 694 | 94.23.167.24,2053,FR,OVH SAS 695 | 178.33.161.186,2053,FR,OVH SAS 696 | 178.33.161.196,8443,FR,OVH SAS 697 | 178.33.161.186,8443,FR,OVH SAS 698 | 178.33.161.196,2053,FR,OVH SAS 699 | 188.165.137.201,2053,FR,OVH SAS 700 | 163.172.89.158,81,FR,Scaleway Dedibox - Paris, France 701 | 152.228.191.232,443,FR,SEVIN Jacques 702 | 88.218.76.170,443,FR,RackNerd, LLC 703 | 91.121.54.50,700,FR,OVH SAS 704 | 141.94.220.64,2053,FR,OVH SAS 705 | 45.95.173.22,443,FR,Mo's Operations GmbH 706 | 137.74.198.216,8443,FR,OVH SAS 707 | 141.94.220.64,8443,FR,OVH SAS 708 | 141.94.221.230,8443,FR,OVH SAS 709 | 146.59.153.77,8443,FR,OVH SAS 710 | 141.94.221.79,8443,FR,OVH SAS 711 | 88.218.78.34,443,FR,RACKNERD-FR 712 | 146.59.153.77,2053,FR,OVH SAS 713 | 141.94.221.230,2053,FR,OVH SAS 714 | 162.19.65.172,8443,FR,OVH SAS 715 | 162.19.65.172,2053,FR,OVH SAS 716 | 141.94.70.24,8443,FR,OVH SAS 717 | 141.94.70.24,2053,FR,OVH SAS 718 | 146.70.88.123,2053,FR,M247 LTD Paris Infrastructure 719 | 141.94.205.22,8443,FR,OVH SAS 720 | 141.94.205.22,2053,FR,OVH SAS 721 | 146.70.88.123,8443,FR,M247 LTD Paris Infrastructure 722 | 87.98.235.174,2053,FR,OVH SAS 723 | 88.218.76.250,8443,FR,RACKNERD-FR 724 | 54.37.64.120,2053,FR,OVH SAS 725 | 151.80.57.36,8443,FR,OVH SAS 726 | 54.37.64.120,8443,FR,OVH SAS 727 | 87.98.235.174,8443,FR,OVH SAS 728 | 88.218.76.250,2053,FR,RACKNERD-FR 729 | 162.19.24.169,2053,FR,OVH SAS 730 | 162.19.24.169,8443,FR,OVH SAS 731 | 51.178.37.179,8443,FR,OVH SAS 732 | 94.23.74.37,2053,FR,OVH SAS 733 | 151.80.57.36,2053,FR,OVH SAS 734 | 54.36.98.241,2053,FR,OVH SAS 735 | 51.178.37.179,2053,FR,OVH SAS 736 | 94.23.74.37,8443,FR,OVH SAS 737 | 141.94.70.243,2053,FR,OVH SAS 738 | 178.32.137.165,8443,FR,OVH SAS 739 | 141.94.68.216,8443,FR,OVH SAS 740 | 141.94.207.218,2053,FR,OVH SAS 741 | 51.178.82.214,2053,FR,OVH SAS 742 | 178.32.137.165,2053,FR,OVH SAS 743 | 51.178.82.214,8443,FR,OVH SAS 744 | 141.94.204.212,8443,FR,OVH SAS 745 | 141.94.204.212,2053,FR,OVH SAS 746 | 141.94.221.25,8443,FR,OVH SAS 747 | 51.178.83.50,2053,FR,OVH SAS 748 | 141.94.221.25,2053,FR,OVH SAS 749 | 51.83.40.171,2053,FR,OVH SAS 750 | 141.94.68.216,2053,FR,OVH SAS 751 | 94.23.144.99,8443,FR,OVH SAS 752 | 51.83.40.171,8443,FR,OVH SAS 753 | 141.94.207.218,8443,FR,OVH SAS 754 | 141.94.63.242,2053,FR,HostiMan Hosting 755 | 51.178.83.50,8443,FR,OVH SAS 756 | 94.23.144.99,2053,FR,OVH SAS 757 | 141.94.63.242,8443,FR,HostiMan Hosting 758 | 141.94.68.157,8443,FR,OVH SAS 759 | 141.94.204.68,2053,FR,OVH SAS 760 | 141.94.68.157,2053,FR,OVH SAS 761 | 141.94.223.237,2053,FR,OVH SAS 762 | 141.94.204.68,8443,FR,OVH SAS 763 | 141.94.223.237,8443,FR,OVH SAS 764 | 141.95.161.241,2053,FR,OVH SAS 765 | 141.95.161.241,8443,FR,OVH SAS 766 | 188.165.26.180,8443,FR,OVH SAS 767 | 141.94.205.129,8443,FR,OVH SAS 768 | 141.94.205.129,2053,FR,OVH SAS 769 | 162.19.65.2,2053,FR,OVH SAS 770 | 141.94.206.218,8443,FR,OVH SAS 771 | 141.94.206.218,2053,FR,OVH SAS 772 | 51.178.83.65,8443,FR,OVH SAS 773 | 188.165.26.180,2053,FR,OVH SAS 774 | 51.178.83.65,2053,FR,OVH SAS 775 | 162.19.65.2,8443,FR,OVH SAS 776 | 141.94.220.21,8443,FR,OVH SAS 777 | 95.182.96.30,2053,FR,CGI GLOBAL LIMITED 778 | 141.94.220.21,2053,FR,OVH SAS 779 | 158.178.193.78,82,FR,Cloudflare, Inc. 780 | 51.178.39.34,2053,FR,OVH SAS 781 | 95.182.96.30,8443,FR,CGI GLOBAL LIMITED 782 | 141.94.220.157,2053,FR,OVH SAS 783 | 185.120.59.207,2053,FR,Baykov Ilya Sergeevich 784 | 94.23.147.217,2053,FR,OVH SAS 785 | 51.178.39.34,8443,FR,OVH SAS 786 | 5.196.27.246,2053,FR,OVH SAS 787 | 51.178.80.153,8443,FR,OVH SAS 788 | 141.94.220.157,8443,FR,OVH SAS 789 | 5.196.27.246,8443,FR,OVH SAS 790 | 185.120.59.207,8443,FR,Baykov Ilya Sergeevich 791 | 51.178.80.153,2053,FR,OVH SAS 792 | 94.23.147.217,8443,FR,OVH SAS 793 | 94.23.153.168,8443,FR,OVH SAS 794 | 146.59.153.201,2053,FR,OVH SAS 795 | 88.218.77.42,2053,FR,RACKNERD-FR 796 | 88.218.78.162,8443,FR,RACKNERD-FR 797 | 146.59.153.201,8443,FR,OVH SAS 798 | 151.80.57.196,2053,FR,OVH SAS 799 | 94.23.153.168,2053,FR,OVH SAS 800 | 88.218.77.42,8443,FR,RACKNERD-FR 801 | 151.80.57.196,8443,FR,OVH SAS 802 | 37.187.225.21,8443,FR,OVH SAS 803 | 94.23.168.201,2053,FR,OVH SAS 804 | 95.182.97.147,8443,FR,CGI GLOBAL LIMITED 805 | 95.182.97.147,2053,FR,CGI GLOBAL LIMITED 806 | 37.187.225.21,2053,FR,OVH SAS 807 | 51.159.6.227,8443,FR,Scaleway 808 | 94.23.168.201,8443,FR,OVH SAS 809 | 54.36.103.135,2053,FR,OVH SAS 810 | 188.165.1.138,8443,FR,OVH SAS 811 | 54.36.103.135,8443,FR,OVH SAS 812 | 94.23.167.32,2053,FR,OVH SAS 813 | 94.23.167.32,8443,FR,OVH SAS 814 | 5.196.13.217,8443,FR,OVH SAS 815 | 141.94.223.220,2053,FR,OVH SAS 816 | 51.159.6.227,2053,FR,Scaleway 817 | 188.165.1.138,2053,FR,OVH SAS 818 | 5.196.13.217,2053,FR,OVH SAS 819 | 51.210.96.119,8443,FR,OVH SAS 820 | 51.210.96.119,2053,FR,OVH SAS 821 | 141.94.223.220,443,FR,OVH SAS 822 | 141.95.193.15,8443,FR,OVH SAS 823 | 94.23.147.223,8443,FR,OVH SAS 824 | 193.70.0.78,2053,FR,OVH SAS 825 | 95.182.96.14,2053,FR,CGI GLOBAL LIMITED 826 | 94.23.147.223,2053,FR,OVH SAS 827 | 193.70.0.78,8443,FR,OVH SAS 828 | 141.95.193.15,2053,FR,OVH SAS 829 | 141.95.159.211,8443,FR,OVH SAS 830 | 141.95.159.211,2053,FR,OVH SAS 831 | 146.59.225.232,2053,FR,OVH SAS 832 | 95.182.96.14,8443,FR,CGI GLOBAL LIMITED 833 | 51.178.81.223,8443,FR,OVH SAS 834 | 54.36.100.7,8443,FR,OVH SAS 835 | 94.23.164.46,8443,FR,OVH SAS 836 | 54.36.100.7,2053,FR,OVH SAS 837 | 51.178.81.163,2053,FR,OVH SAS 838 | 146.59.225.232,8443,FR,OVH SAS 839 | 94.23.164.46,2053,FR,OVH SAS 840 | 51.178.81.163,8443,FR,OVH SAS 841 | 51.178.81.223,2053,FR,OVH SAS 842 | 188.130.207.158,8443,FR,CGI GLOBAL LIMITED 843 | 188.130.207.158,2053,FR,CGI GLOBAL LIMITED 844 | 141.94.221.240,8443,FR,OVH SAS 845 | 141.94.221.240,2053,FR,OVH SAS 846 | 5.196.13.49,2053,FR,OVH SAS 847 | 5.196.13.49,8443,FR,OVH SAS 848 | 87.98.235.90,8443,FR,OVH SAS 849 | 135.125.123.246,5432,FR,OVH SAS 850 | 87.98.235.90,2053,FR,OVH SAS 851 | 51.91.100.173,2053,FR,OVH SAS 852 | 51.210.96.182,8443,FR,OVH SAS 853 | 51.210.96.182,2053,FR,OVH SAS 854 | 141.94.220.57,8443,FR,OVH SAS 855 | 141.94.220.57,2053,FR,OVH SAS 856 | 141.95.149.52,2053,FR,OVH SAS 857 | 188.165.2.84,2053,FR,OVH SAS 858 | 193.70.0.150,2053,FR,OVH SAS 859 | 141.95.149.52,8443,FR,OVH SAS 860 | 141.94.222.33,8443,FR,OVH SAS 861 | 188.165.2.84,8443,FR,OVH SAS 862 | 141.94.221.26,2053,FR,OVH SAS 863 | 94.23.72.40,2053,FR,OVH SAS 864 | 141.94.222.33,2053,FR,OVH SAS 865 | 54.37.64.97,8443,FR,OVH SAS 866 | 193.70.0.150,8443,FR,OVH SAS 867 | 54.37.64.97,2053,FR,OVH SAS 868 | 94.23.72.40,8443,FR,OVH SAS 869 | 141.94.221.119,8443,FR,OVH SAS 870 | 141.94.206.222,8443,FR,OVH SAS 871 | 141.94.206.222,2053,FR,OVH SAS 872 | 141.94.222.3,2053,FR,OVH SAS 873 | 141.94.221.163,8443,FR,OVH SAS 874 | 141.94.221.163,2053,FR,OVH SAS 875 | 141.94.222.3,8443,FR,OVH SAS 876 | 141.94.222.46,8443,FR,OVH SAS 877 | 141.94.222.46,2053,FR,OVH SAS 878 | 193.42.62.215,2053,FR,Mo's Operations GmbH 879 | 193.42.62.215,8443,FR,Mo's Operations GmbH 880 | 141.94.221.119,2053,FR,OVH SAS 881 | 213.156.138.192,40778,FR,G-Core Labs Customer assignment 882 | 92.222.22.40,2053,FR,OVH SAS 883 | 46.8.224.219,2053,FR,CGI GLOBAL LIMITED 884 | 92.222.22.40,8443,FR,OVH SAS 885 | 46.8.224.219,8443,FR,CGI GLOBAL LIMITED 886 | 144.24.195.115,23010,FR,Oracle Corp UK Ltd 887 | 141.94.207.7,8443,FR,OVH SAS 888 | 178.32.42.230,8443,FR,OVH SAS 889 | 141.94.222.188,8443,FR,OVH SAS 890 | 141.94.207.7,2053,FR,OVH SAS 891 | 141.94.222.188,2053,FR,OVH SAS 892 | 141.94.68.162,8443,FR,OVH SAS 893 | 188.165.137.201,8443,FR,OVH SAS 894 | 178.32.42.230,2053,FR,OVH SAS 895 | 141.94.221.241,2053,FR,OVH SAS 896 | 141.94.68.162,2053,FR,OVH SAS 897 | 141.94.222.73,8443,FR,OVH SAS 898 | 141.94.222.73,2053,FR,OVH SAS 899 | 162.19.24.253,2053,FR,OVH SAS 900 | 141.94.205.248,2053,FR,OVH SAS 901 | 141.94.205.248,8443,FR,OVH SAS 902 | 141.94.221.241,8443,FR,OVH SAS 903 | 162.19.24.253,8443,FR,OVH SAS 904 | 141.94.222.105,8443,FR,OVH SAS 905 | 141.94.222.105,2053,FR,OVH SAS 906 | 141.94.204.206,2053,FR,OVH SAS 907 | 141.94.204.206,8443,FR,OVH SAS 908 | 141.94.204.167,2053,FR,OVH SAS 909 | 141.94.204.167,8443,FR,OVH SAS 910 | 141.145.199.188,443,FR,Oracle Corporation 911 | 141.94.206.137,8443,FR,OVH SAS 912 | 141.94.205.63,8443,FR,OVH SAS 913 | 141.145.216.142,2087,FR,Oracle Corporation 914 | 141.94.206.26,8443,FR,OVH SAS 915 | 141.94.205.63,2053,FR,OVH SAS 916 | 141.94.206.26,2053,FR,OVH SAS 917 | 141.94.206.137,2053,FR,OVH SAS 918 | 141.94.220.168,2053,FR,OVH SAS 919 | 141.94.220.168,8443,FR,OVH SAS 920 | 141.94.221.2,8443,FR,OVH SAS 921 | 141.94.221.79,2053,FR,OVH SAS 922 | 141.94.221.78,8443,FR,OVH SAS 923 | 141.94.221.2,2053,FR,OVH SAS 924 | 141.94.223.24,8443,FR,OVH SAS 925 | 141.94.223.24,2053,FR,OVH SAS 926 | 141.94.223.93,8443,FR,OVH SAS 927 | 141.94.223.93,2053,FR,OVH SAS 928 | 141.94.70.243,8443,FR,OVH SAS 929 | 158.178.206.197,8443,FR,Oracle Corporation 930 | 158.178.206.197,2053,FR,Oracle Corporation 931 | 162.19.66.26,2053,FR,OVH SAS 932 | 162.19.64.105,2053,FR,OVH SAS 933 | 162.19.25.13,2053,FR,OVH SAS 934 | 162.19.66.26,8443,FR,OVH SAS 935 | 162.19.66.30,8443,FR,OVH SAS 936 | 162.19.66.30,2053,FR,OVH SAS 937 | 178.32.58.147,443,FR,OVH Ltd 938 | 188.165.54.172,8443,FR,OVH SAS 939 | 188.165.54.172,2053,FR,OVH SAS 940 | 188.165.26.178,8443,FR,OVH SAS 941 | 188.165.26.178,2053,FR,OVH SAS 942 | 37.187.54.16,2053,FR,OVH SAS 943 | 37.187.98.185,443,FR,OVH SAS 944 | 37.187.54.16,8443,FR,OVH SAS 945 | 45.112.195.46,2053,FR,Jules Durand--Arnaudet 946 | 45.63.114.83,443,FR,Vultr Holdings, LLC 947 | 51.178.83.212,8443,FR,OVH SAS 948 | 51.38.224.25,8443,FR,OVH SAS 949 | 51.38.227.72,8443,FR,OVH SAS 950 | 51.38.227.155,2053,FR,OVH SAS 951 | 51.254.6.14,443,FR,OVH SAS 952 | 51.38.224.25,2053,FR,OVH SAS 953 | 51.38.48.18,2053,FR,OVH SAS 954 | 51.38.226.4,8443,FR,OVH SAS 955 | 51.38.227.155,8443,FR,OVH SAS 956 | 51.38.48.190,8443,FR,OVH SAS 957 | 51.38.225.63,2053,FR,OVH SAS 958 | 51.38.48.18,8443,FR,OVH SAS 959 | 51.38.49.187,8443,FR,OVH SAS 960 | 51.38.226.4,2053,FR,OVH SAS 961 | 51.38.48.190,2053,FR,OVH SAS 962 | 51.38.49.187,2053,FR,OVH SAS 963 | 51.38.48.27,8443,FR,OVH SAS 964 | 51.38.51.190,2053,FR,OVH SAS 965 | 51.38.48.91,2053,FR,OVH SAS 966 | 51.38.50.52,8443,FR,OVH SAS 967 | 51.38.48.91,8443,FR,OVH SAS 968 | 51.38.227.72,2053,FR,OVH SAS 969 | 51.38.44.17,443,FR,OVH SAS 970 | 51.38.48.27,2053,FR,OVH SAS 971 | 51.38.51.73,2053,FR,OVH SAS 972 | 51.83.45.59,8443,FR,OVH SAS 973 | 51.38.49.23,8443,FR,OVH SAS 974 | 51.83.45.59,2053,FR,OVH SAS 975 | 51.38.51.14,8443,FR,OVH SAS 976 | 51.38.50.211,2053,FR,OVH SAS 977 | 51.38.51.236,8443,FR,OVH SAS 978 | 51.38.48.228,2053,FR,OVH SAS 979 | 51.38.51.14,2053,FR,OVH SAS 980 | 51.38.49.23,2053,FR,OVH SAS 981 | 51.38.50.211,8443,FR,OVH SAS 982 | 51.38.50.52,2053,FR,OVH SAS 983 | 51.38.51.190,8443,FR,OVH SAS 984 | 51.38.51.236,2053,FR,OVH SAS 985 | 54.37.64.126,2053,FR,OVH SAS 986 | 54.37.64.126,8443,FR,OVH SAS 987 | 54.37.64.148,2053,FR,OVH SAS 988 | 82.64.152.55,20304,FR,Free SAS 989 | 54.37.64.148,8443,FR,OVH SAS 990 | 87.98.237.23,8443,FR,OVH SAS 991 | 89.168.43.31,8443,FR,Oracle Svenska AB 992 | 89.168.43.31,2053,FR,Oracle Svenska AB 993 | 87.98.237.23,2053,FR,OVH SAS 994 | 92.222.24.127,8443,FR,OVH SAS 995 | 92.222.24.127,2053,FR,OVH SAS 996 | 94.23.153.167,2053,FR,OVH SAS 997 | 94.23.169.3,8443,FR,OVH SAS 998 | 94.23.169.3,2053,FR,OVH SAS 999 | 94.23.153.167,8443,FR,OVH SAS 1000 | 213.165.88.177,443,GB,IONOS SE 1001 | 109.61.95.21,8080,GB,Datacamp Limited 1002 | 185.66.164.51,443,GB,Perfecto Mobile UK LTD 1003 | 51.89.128.93,44004,GB,OVH Ltd 1004 | 51.89.128.93,12122,GB,OVH Ltd 1005 | 95.179.236.51,443,GB,11 Hanbury St 1006 | 213.1.145.50,443,GB,BT-R101-TEST 1007 | 198.244.169.93,12122,GB,OVH Ltd 1008 | 198.244.169.93,44004,GB,OVH Ltd 1009 | 45.61.138.147,443,GB,BL Networks GB 1010 | 159.65.94.176,8080,GB,DigitalOcean, LLC 1011 | 103.13.208.242,443,GB,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1012 | 3.9.223.59,443,GB,Securly, Inc 1013 | 3.9.223.59,80,GB,Securly, Inc 1014 | 35.176.229.223,443,GB,Securly, Inc 1015 | 35.176.229.223,80,GB,Securly, Inc 1016 | 109.169.76.23,443,GB,IOMART MANAGED SERVICES LIMITED 1017 | 104.128.190.209,443,GB,SAB001 1018 | 132.145.65.20,9931,GB,Cloudflare London, LLC 1019 | 138.68.141.220,2053,GB,DigitalOcean, LLC 1020 | 130.185.249.22,8080,GB,DA International Group Ltd. 1021 | 138.68.141.220,8443,GB,DigitalOcean, LLC 1022 | 142.93.37.152,2086,GB,DigitalOcean, LLC 1023 | 141.147.85.167,8443,GB,Oracle Corporation 1024 | 142.93.37.152,8880,GB,DigitalOcean, LLC 1025 | 172.236.30.225,443,GB,Linode 1026 | 178.62.17.85,443,GB,DigitalOcean, LLC 1027 | 18.170.77.148,443,GB,Amazon Data Services UK 1028 | 194.146.24.199,2053,GB,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1029 | 185.245.83.41,31687,GB,CLOUVIDER Virtual Machines 1030 | 194.146.24.199,8443,GB,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1031 | 198.244.235.173,179,GB,OVH Ltd 1032 | 194.146.123.241,443,GB,Deployish Limited 1033 | 51.89.148.203,44004,GB,OVH Ltd 1034 | 51.89.148.203,12122,GB,OVH Ltd 1035 | 62.112.221.177,6633,GB,G-Core Labs Customer assignment 1036 | 67.226.223.172,80,GB,Securly, Inc 1037 | 67.226.223.75,80,GB,Securly, Inc 1038 | 91.149.238.88,443,GB,Baxet Group Inc. 1039 | 91.149.202.142,443,GB,BG-NETWORK 1040 | 91.199.32.191,2053,GB,HR SYSHEAD 1041 | 94.131.122.145,2053,GB,WorkTitans B.V. 1042 | 94.131.122.72,443,GB,WorkTitans B.V. 1043 | 156.230.12.71,443,HK,263 Global Communication Limited 1044 | 192.131.142.161,46639,HK,LEASEWEB HONG KONG LIMITED 1045 | 43.132.244.52,21415,HK,6 COLLYER QUAY 1046 | 103.247.28.240,37211,HK,VMISS Inc. 1047 | 118.141.64.192,36619,HK,HGC Global Communications Limited 1048 | 141.11.91.67,8080,HK,HYTRON NETWORK HK 1049 | 154.16.10.34,8080,HK,Digital Energy Technologies Limited 1050 | 156.254.114.120,30011,HK,StepGo Limited 1051 | 156.255.90.175,8443,HK,StepGo Limited 1052 | 156.255.90.175,2053,HK,StepGo Limited 1053 | 192.252.182.52,7602,HK,Integen, Inc 1054 | 2.56.91.89,2053,HK,ihc.hk vps in Hong Kong 1055 | 2.56.91.89,8443,HK,ihc.hk vps in Hong Kong 1056 | 210.6.207.42,18622,HK,Hong Kong Broadband Network Ltd 1057 | 221.125.10.8,57537,HK,HGC Global Communications Limited 1058 | 36.50.90.241,35951,HK,IoT Innovation Technologies Company Limited 1059 | 36.50.90.241,47790,HK,IoT Innovation Technologies Company Limited 1060 | 43.154.124.136,26666,HK,6 COLLYER QUAY 1061 | 45.149.186.112,8080,HK,AKILE LTD 1062 | 43.252.41.204,2443,HK,CommuniLink Internet Ltd. 1063 | 46.232.122.240,8000,HK,undefined 1064 | 47.76.218.163,443,HK,Alibaba Cloud - HK 1065 | 58.176.95.46,443,HK,Hong Kong Broadband Network Ltd 1066 | 8.218.245.116,42805,HK,Alibaba Cloud (Singapore) Private Limited 1067 | 8.218.245.116,49701,HK,Alibaba Cloud (Singapore) Private Limited 1068 | 8.218.245.116,41528,HK,Alibaba Cloud (Singapore) Private Limited 1069 | 85.208.104.34,8080,HK,Internet Utilities Europe and Asia Limited 1070 | 46.183.186.57,443,HU,EDIS Infrastructure in Hungary 1071 | 43.218.77.16,1443,ID,Amazon.com, Inc. 1072 | 43.218.77.16,443,ID,Amazon.com, Inc. 1073 | 103.6.207.108,8080,ID,PT Pusat Media Indonesia 1074 | 36.95.152.58,12137,ID,PT Telekomunikasi Indonesia 1075 | 54.229.164.147,2053,IE,Amazon.com, Inc. 1076 | 63.32.194.15,8443,IE,Amazon Data Services Ireland Limited 1077 | 212.80.205.244,2053,IL,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1078 | 77.91.69.141,2053,IL,Webhost LLC 1079 | 212.80.205.244,8443,IL,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1080 | 94.131.114.50,81,IL,WorkTitans B.V. 1081 | 77.91.69.141,8443,IL,Webhost LLC 1082 | 77.91.69.51,2053,IL,Webhost LLC 1083 | 77.91.69.51,8443,IL,Webhost LLC 1084 | 216.10.243.159,443,IN,P.D.R Solutions FZC 1085 | 172.232.112.240,587,IN,Linode 1086 | 146.56.48.138,23010,IN,Oracle Corporation , Global software solutions , California , USA 1087 | 148.113.43.228,2053,IN,OVHTECH R&D (INDIA) PRIVATE LIMITED 1088 | 148.113.43.228,8443,IN,OVHTECH R&D (INDIA) PRIVATE LIMITED 1089 | 152.70.75.80,15805,IN,Oracle Corporation 1090 | 134.195.137.107,22473,IN,ReadyDedis, LLC 1091 | 152.70.76.104,46000,IN,Oracle Corporation 1092 | 172.105.62.71,2443,IN,Linode 1093 | 20.235.105.146,443,IN,Microsoft Corporation 1094 | 212.237.30.220,443,IT,Aruba S.p.A. - Cloud Services Farm2 1095 | 80.211.231.169,443,IT,Aruba S.p.A. - Cloud Services Farm2 1096 | 129.152.2.127,1488,IT,Oracle Corporation 1097 | 38.180.22.20,1001,IT,3NT SOLUTIONS LLP 1098 | 188.213.168.52,443,IT,Aruba S.p.A. - Cloud Services Farm2 1099 | 87.120.237.36,81,IT,G-Core Labs S.A. 1100 | 185.47.172.172,8443,IT,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1101 | 94.177.199.119,2053,IT,Aruba S.p.A. - Cloud Services Farm2 1102 | 185.247.184.186,2053,IT,GLOBAL INTERNET SOLUTIONS LLC 1103 | 185.247.184.186,8443,IT,GLOBAL INTERNET SOLUTIONS LLC 1104 | 77.81.234.27,8443,IT,Aruba S.p.A. - Cloud Services Farm2 1105 | 94.177.199.119,8443,IT,Aruba S.p.A. - Cloud Services Farm2 1106 | 77.81.234.27,2053,IT,Aruba S.p.A. - Cloud Services Farm2 1107 | 138.2.10.217,27446,JP,Oracle Corporation 1108 | 217.142.230.253,587,JP,Oracle Corporation 1109 | 138.2.32.76,15821,JP,Oracle Corporation 1110 | 158.101.146.3,44872,JP,Oracle Public Cloud 1111 | 140.83.57.114,25965,JP,imported inetnum object for OCPL-1 1112 | 138.2.10.149,45638,JP,Oracle Corporation 1113 | 158.101.152.6,2919,JP,Oracle Public Cloud 1114 | 45.76.198.248,443,JP,Vultr Holdings, LLC 1115 | 103.238.129.215,42734,JP,ByteVirt LLC 1116 | 150.230.5.34,45681,JP,Oracle Corporation 1117 | 141.147.144.15,13357,JP,Oracle Corporation 1118 | 141.147.183.49,29876,JP,Oracle Corporation 1119 | 138.2.12.103,14453,JP,Cloudflare London, LLC 1120 | 139.162.102.152,7002,JP,Akamai Connected Cloud / Linode 1121 | 150.230.214.172,16957,JP,Oracle Corporation 1122 | 152.69.199.70,8443,JP,Oracle Corporation 1123 | 149.28.21.106,443,JP,Vultr Holdings, LLC 1124 | 141.147.178.249,37043,JP,Oracle Corporation 1125 | 140.83.57.20,13118,JP,imported inetnum object for OCPL-1 1126 | 152.70.82.101,18650,JP,Oracle Corporation 1127 | 138.2.59.96,10129,JP,Oracle Corporation 1128 | 18.183.158.211,443,JP,Amazon Data Services Japan 1129 | 138.2.49.197,587,JP,Oracle Corporation 1130 | 150.230.204.21,10243,JP,Oracle Corporation 1131 | 217.142.250.195,587,JP,Oracle Corporation 1132 | 158.101.154.245,47001,JP,Oracle Public Cloud 1133 | 3.112.21.102,443,JP,Amazon Data Services Japan 1134 | 138.2.48.109,26412,JP,Oracle Corporation 1135 | 168.138.197.147,12345,JP,Oracle Public Cloud 1136 | 45.77.25.6,27854,JP,Vultr Holdings, LLC 1137 | 45.77.25.6,48828,JP,Vultr Holdings, LLC 1138 | 147.45.49.164,24443,JP,GLOBAL CONNECTIVITY SOLUTIONS LLP 1139 | 45.11.1.118,44004,JP,CEGRGO-DigitalVM LLC - Tokyo 1140 | 103.75.118.144,2053,JP,Oneprovider.com - Japan Infrastructure 1141 | 103.106.228.126,2053,JP,oneprovider.com - Tokyo Infrastructure 1142 | 131.186.63.89,11655,JP,Oracle Public Cloud 1143 | 138.2.18.82,8880,JP,Oracle Corporation 1144 | 138.3.222.124,46209,JP,Oracle Network Information Services 1145 | 140.238.37.103,14782,JP,Oracle Public Cloud 1146 | 140.83.57.183,22735,JP,imported inetnum object for OCPL-1 1147 | 140.83.59.158,15805,JP,imported inetnum object for OCPL-1 1148 | 141.147.152.229,23333,JP,Oracle Corporation 1149 | 141.147.147.180,443,JP,Oracle Corporation 1150 | 141.147.161.249,51037,JP,Oracle Corporation 1151 | 152.69.192.40,57005,JP,Oracle Corporation 1152 | 158.101.146.3,54516,JP,Oracle Public Cloud 1153 | 168.138.192.16,54584,JP,Oracle Public Cloud 1154 | 168.138.198.7,27560,JP,Oracle Public Cloud 1155 | 168.138.46.115,43138,JP,Oracle Public Cloud 1156 | 168.138.46.67,443,JP,Oracle Public Cloud 1157 | 185.18.222.208,2053,JP,Jurgita Jurgaitiene trading as LOCOTORPI 1158 | 217.142.236.93,443,JP,Oracle Svenska AB 1159 | 38.180.28.163,8443,JP,3NT SOLUTIONS LLP 1160 | 38.180.28.163,2053,JP,3NT SOLUTIONS LLP 1161 | 43.133.10.236,33405,JP,6 COLLYER QUAY 1162 | 45.76.192.129,24434,JP,Vultr Holdings, LLC 1163 | 64.110.104.30,443,JP,Oracle Corporation 1164 | 121.139.174.91,30023,KR,KT 1165 | 129.154.54.67,19567,KR,Oracle Corporation 1166 | 158.247.250.157,81,KR,The Constant Company, LLC 1167 | 64.110.70.205,23022,KR,Oracle Corporation 1168 | 144.24.87.69,50001,KR,Oracle Corporation 1169 | 146.56.140.79,22561,KR,Cloudflare London, LLC 1170 | 146.56.140.79,44699,KR,Cloudflare London, LLC 1171 | 112.187.98.56,30036,KR,Jeonnambonbujang 1172 | 217.142.138.61,37914,KR,Oracle Svenska AB 1173 | 152.67.197.197,19120,KR,Oracle Public Cloud 1174 | 146.56.182.217,54266,KR,Oracle Corporation , Global software solutions , California , USA 1175 | 146.56.99.255,56789,KR,Oracle Corporation , Global software solutions , California , USA 1176 | 129.154.48.176,36355,KR,Oracle Corporation 1177 | 193.122.126.64,53777,KR,Oracle Public Cloud 1178 | 152.69.229.175,22558,KR,Oracle Corporation 1179 | 144.24.84.212,49888,KR,Oracle Corp UK Ltd 1180 | 131.186.24.124,587,KR,Oracle Public Cloud 1181 | 132.226.21.116,6056,KR,Oracle Public Cloud 1182 | 138.2.122.197,39863,KR,Oracle Corporation 1183 | 132.145.88.82,38066,KR,Oracle Public Cloud 1184 | 129.154.223.89,15800,KR,Oracle Corporation 1185 | 152.67.211.114,58337,KR,Oracle Public Cloud 1186 | 140.238.5.75,13644,KR,Oracle Public Cloud 1187 | 132.145.84.148,39567,KR,Oracle Public Cloud 1188 | 123.143.9.5,14041,KR,LG Uplus 1189 | 131.186.18.212,28887,KR,Oracle Corporation 1190 | 152.70.89.135,587,KR,Oracle Corporation 1191 | 115.40.240.254,37594,KR,HVGyeongnam 1192 | 121.165.101.69,19413,KR,Korea Telecom 1193 | 121.181.106.59,50003,KR,Korea Telecom 1194 | 146.56.140.79,20309,KR,Cloudflare, Inc. 1195 | 211.248.226.118,50003,KR,Korea Telecom 1196 | 52.141.25.42,443,KR,Microsoft Corporation 1197 | 59.15.182.92,30017,KR,Sudogwonseobubonbu 1198 | 59.19.168.33,11195,KR,Korea Telecom 1199 | 121.147.109.100,50003,KR,Korea Telecom 1200 | 80.90.183.75,8443,KZ,lease for Timeweb 1201 | 45.82.14.221,443,KZ,Dmitry Vorozhtsov 1202 | 213.148.10.177,443,KZ,Modern Server Solutions LLP 1203 | 91.200.151.172,443,KZ,Dmitry Vorozhtsov 1204 | 38.180.37.102,8443,KZ,3NT SOLUTIONS LLP 1205 | 80.90.183.75,2053,KZ,lease for Timeweb 1206 | 213.148.1.150,2053,KZ,Modern Server Solutions LLP 1207 | 103.106.3.238,443,KZ,WorkTitans B.V. 1208 | 94.131.2.187,2053,KZ,WorkTitans B.V. 1209 | 95.164.114.50,8443,KZ,WorkTitans B.V. 1210 | 45.80.208.126,8081,KZ,G-Core Labs Customer assignment 1211 | 86.104.73.185,443,KZ,WorkTitans B.V. 1212 | 195.238.126.52,443,LT,Melbikomas UAB 1213 | 185.237.219.169,443,LV,Friendhosting LTD 1214 | 138.124.182.204,443,LV,Baykov Ilya Sergeevich 1215 | 103.231.73.153,443,LV,WorkTitans B.V. 1216 | 185.135.86.89,8443,LV,Melbikomas UAB 1217 | 185.237.218.134,8443,LV,Friendhosting LTD 1218 | 185.242.106.215,443,LV,Veesp datacenter clients 1219 | 185.237.218.134,2053,LV,Friendhosting LTD 1220 | 185.242.107.80,443,LV,SIA VEESP 1221 | 185.242.106.162,2053,LV,Veesp datacenter clients 1222 | 185.8.60.108,443,LV,CloudHosting Data Center 1223 | 185.242.106.50,443,LV,Veesp datacenter clients 1224 | 185.8.60.113,443,LV,CloudHosting Data Center 1225 | 188.253.18.111,443,LV,SIA VEESP 1226 | 192.144.39.33,443,LV,SIA Serverum 1227 | 193.124.22.168,2053,LV,Baxet Group Inc. 1228 | 193.124.22.168,8443,LV,Baxet Group Inc. 1229 | 195.123.212.222,2053,LV,Green Floid LLC 1230 | 195.123.212.222,8443,LV,Green Floid LLC 1231 | 195.135.252.139,443,LV,SIA VEESP 1232 | 195.123.212.250,443,LV,IPv6 services for dedicated servers and VDS/VPS 1233 | 195.123.211.204,81,LV,Green Floid LLC 1234 | 195.135.252.148,2053,LV,SIA VEESP 1235 | 195.135.252.244,443,LV,SIA VEESP 1236 | 195.135.252.27,8443,LV,SIA VEESP 1237 | 195.135.253.47,8443,LV,SIA VEESP 1238 | 195.135.253.29,443,LV,SIA VEESP 1239 | 195.20.208.151,2053,LV,Friendhosting LTD 1240 | 195.135.253.47,2053,LV,SIA VEESP 1241 | 195.135.255.199,443,LV,SIA VEESP 1242 | 216.173.68.7,433,LV,SIA VEESP 1243 | 216.173.70.192,443,LV,SIA VEESP 1244 | 216.173.70.80,443,LV,SIA VEESP 1245 | 216.173.71.220,8443,LV,SIA VEESP 1246 | 31.128.33.253,443,LV,Cloudflare London, LLC 1247 | 216.173.71.171,443,LV,SIA VEESP 1248 | 31.128.35.216,8443,LV,Beget LLC 1249 | 37.128.204.4,2053,LV,SIA VEESP 1250 | 31.128.34.61,2053,LV,Beget LLC 1251 | 37.128.204.4,8443,LV,SIA VEESP 1252 | 31.128.34.61,8443,LV,Beget LLC 1253 | 31.128.35.216,2053,LV,Beget LLC 1254 | 31.128.34.77,2053,LV,Beget LLC 1255 | 37.128.207.111,443,LV,SIA VEESP 1256 | 37.128.206.80,8443,LV,SIA VEESP 1257 | 37.128.207.235,443,LV,SIA VEESP 1258 | 37.128.207.179,443,LV,SIA VEESP 1259 | 46.32.184.137,2053,LV,SIA VEESP 1260 | 46.32.184.64,443,LV,SIA VEESP 1261 | 46.32.185.253,2053,LV,SIA VEESP 1262 | 46.32.184.75,443,LV,SIA VEESP 1263 | 46.32.185.253,8443,LV,SIA VEESP 1264 | 5.34.209.139,2053,LV,SIA VEESP 1265 | 46.32.187.228,443,LV,SIA VEESP 1266 | 5.34.209.18,2053,LV,SIA VEESP 1267 | 5.34.209.105,2053,LV,SIA VEESP 1268 | 5.34.208.44,2053,LV,SIA VEESP 1269 | 5.34.209.105,8443,LV,SIA VEESP 1270 | 5.34.209.231,2053,LV,SIA VEESP 1271 | 5.34.209.18,8443,LV,SIA VEESP 1272 | 5.34.209.219,2053,LV,SIA VEESP 1273 | 5.34.209.219,8443,LV,SIA VEESP 1274 | 5.34.212.179,8443,LV,SIA VEESP 1275 | 5.34.211.29,8443,LV,SIA VEESP 1276 | 5.34.209.231,8443,LV,SIA VEESP 1277 | 5.34.211.194,2053,LV,SIA VEESP 1278 | 5.34.211.94,443,LV,SIA VEESP 1279 | 5.34.211.194,8443,LV,SIA VEESP 1280 | 62.192.174.228,2053,LV,SERVA ONE LTD 1281 | 62.192.174.170,8443,LV,SERVA ONE LTD 1282 | 62.192.174.175,8443,LV,SERVA ONE LTD 1283 | 62.192.174.175,2053,LV,SERVA ONE LTD 1284 | 62.192.174.170,2053,LV,SERVA ONE LTD 1285 | 77.73.71.196,443,LV,SIA VEESP 1286 | 80.233.248.56,2053,LV,PostMet Ltd. 1287 | 91.197.1.21,443,LV,SIA VEESP 1288 | 91.197.3.168,2053,LV,SIA VEESP 1289 | 91.197.1.93,8443,LV,SIA VEESP 1290 | 91.197.0.117,8443,LV,SIA VEESP 1291 | 91.197.3.157,443,LV,SIA VEESP 1292 | 91.197.3.168,8443,LV,SIA VEESP 1293 | 91.197.0.63,443,LV,SIA VEESP 1294 | 94.158.219.198,443,LV,SIA VEESP 1295 | 194.156.67.85,2053,MD,FOXCLOUD COMMUNICATIONS SRL 1296 | 109.185.236.240,443,MD,JSC Moldtelecom S.A. 1297 | 194.156.67.85,8443,MD,FOXCLOUD COMMUNICATIONS SRL 1298 | 45.140.146.80,2053,MD,WorkTitans B.V. 1299 | 45.67.229.128,81,MD,WorkTitans B.V. 1300 | 45.140.146.80,8443,MD,WorkTitans B.V. 1301 | 5.181.158.96,443,MD,MivoCloud SRL 1302 | 45.86.86.53,443,MD,ALEXHOST SRL 1303 | 91.208.206.103,443,MD,ALEXHOST SRL 1304 | 91.208.162.68,443,MD,ALEXHOST SRL 1305 | 41.76.42.118,443,MU,Mauritius Telecom Ltd 1306 | 41.76.42.116,443,MU,Mauritius Telecom Ltd 1307 | 140.84.178.238,23010,MX,Oracle Corporation 1308 | 201.149.15.14,21585,MX,Megacable Comunicaciones de Mexico, S.A. de C.V. 1309 | 38.60.193.247,13300,MY,Kaopu Cloud HK Limited 1310 | 194.58.39.80,443,NL,Reliable Communications s.r.o. 1311 | 45.155.249.66,443,NL,servinga GmbH 1312 | 109.237.98.57,443,NL,Aeza International LTD 1313 | 193.33.153.240,443,NL,Aeza International LTD 1314 | 217.144.189.127,443,NL,Aeza International LTD 1315 | 5.182.86.15,443,NL,Aeza International LTD 1316 | 79.137.194.255,443,NL,Aeza International LTD 1317 | 79.137.205.248,443,NL,Aeza International LTD 1318 | 85.192.29.136,443,NL,Aeza International LTD 1319 | 85.192.60.129,443,NL,Aeza International LTD 1320 | 89.208.105.126,443,NL,Aeza International LTD 1321 | 91.184.242.155,443,NL,Aeza International LTD 1322 | 91.184.242.63,443,NL,Aeza International LTD 1323 | 91.184.242.46,443,NL,Aeza International LTD 1324 | 51.15.47.222,3443,NL,Scaleway 1325 | 185.126.225.58,443,NL,THOMAS FAMILY INVESTMENTS LIMITED 1326 | 94.241.174.229,443,NL,Timeweb, LLP 1327 | 81.31.245.122,443,NL,Timeweb, LLP 1328 | 178.253.23.199,8443,NL,TimeWeb 1329 | 88.218.248.195,443,NL,GLB Bulut Teknolojisi Limited Sirketi 1330 | 194.0.194.237,14181,NL,Serverio technologijos MB 1331 | 194.0.194.222,443,NL,Serverio technologijos MB 1332 | 103.106.1.2,443,NL,WorkTitans B.V. 1333 | 89.110.118.149,443,NL,Amsterdam, Netherlands 1334 | 86.107.197.161,443,NL,MVPS LTD 1335 | 93.113.171.31,443,NL,Baxet Group Inc. 1336 | 146.190.30.138,443,NL,DigitalOcean, LLC 1337 | 77.238.231.179,443,NL,SERVERS TECH FZCO 1338 | 212.34.153.65,443,NL,Amsterdam, Netherlands 1339 | 188.227.86.12,30718,NL,ITGLOBAL.COM NL B.V. 1340 | 89.110.126.196,443,NL,Amsterdam, Netherlands 1341 | 37.1.204.28,443,NL,IROKO Networks Corporation 1342 | 2.59.183.197,443,NL,SERVA ONE LTD 1343 | 66.151.42.104,443,NL,undefined 1344 | 81.22.132.183,443,NL,Internet Utilities Europe and Asia Limited 1345 | 46.8.231.125,443,NL,CGI GLOBAL LIMITED 1346 | 185.223.93.86,443,NL,This range is used for dynamic customer pools. 1347 | 147.45.135.207,443,NL,Timeweb, LLP 1348 | 138.124.30.8,443,NL,Baykov Ilya Sergeevich 1349 | 66.151.42.239,443,NL,undefined 1350 | 82.115.7.15,6000,NL,SIA VEESP 1351 | 212.22.74.89,443,NL,Baykov Ilya Sergeevich 1352 | 185.103.255.196,443,NL,FIRST SERVER LIMITED 1353 | 185.130.225.64,443,NL,Cloudflare London, LLC 1354 | 174.138.8.21,443,NL,DigitalOcean, LLC 1355 | 81.22.132.44,443,NL,Internet Utilities Europe and Asia Limited 1356 | 194.147.33.13,443,NL,FORTIS 1357 | 68.183.10.184,8443,NL,DigitalOcean, LLC 1358 | 213.183.51.8,443,NL,Melbicom infrastructure 1359 | 5.39.219.35,443,NL,HOSTKEY B.V. 1360 | 195.123.219.254,1445,NL,Green Floid LLC 1361 | 89.110.104.192,443,NL,Amsterdam, Netherlands 1362 | 46.17.97.246,433,NL,HOSTKEY B.V. 1363 | 81.22.132.136,443,NL,Internet Utilities Europe and Asia Limited 1364 | 77.238.237.179,443,NL,SERVERS TECH FZCO 1365 | 77.238.226.178,443,NL,SERVERS TECH FZCO 1366 | 109.107.164.231,443,NL,Amsterdam, Netherlands 1367 | 212.34.151.174,443,NL,Amsterdam, Netherlands 1368 | 193.32.178.156,50025,NL,Baykov Ilya Sergeevich 1369 | 37.48.90.120,443,NL,LeaseWeb Netherlands B.V. 1370 | 88.210.9.239,443,NL,Cloudflare London, LLC 1371 | 37.1.202.160,443,NL,IROKO Networks Corporation 1372 | 88.210.11.164,22284,NL,Amsterdam, Netherlands 1373 | 213.183.51.219,443,NL,Melbicom infrastructure 1374 | 103.45.247.67,443,NL,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1375 | 89.110.80.121,443,NL,Amsterdam, Netherlands 1376 | 82.115.6.111,443,NL,SIA VEESP 1377 | 5.35.70.49,443,NL,Amsterdam, Netherlands 1378 | 185.94.164.72,443,NL,FIRST SERVER LIMITED 1379 | 185.94.165.207,443,NL,FIRST SERVER LIMITED 1380 | 88.210.11.164,22285,NL,Amsterdam, Netherlands 1381 | 5.180.182.128,443,NL,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1382 | 194.26.232.203,443,NL,Podaon SIA 1383 | 195.133.75.35,443,NL,Baykov Ilya Sergeevich 1384 | 185.94.165.167,443,NL,FIRST SERVER LIMITED 1385 | 194.164.34.104,433,NL,Amsterdam, Netherlands 1386 | 45.144.232.86,443,NL,Baykov Ilya Sergeevich 1387 | 2.59.183.26,443,NL,SERVA ONE LTD 1388 | 2.59.183.77,443,NL,SERVA ONE LTD 1389 | 46.8.229.48,443,NL,as56971 network 1390 | 195.58.50.233,443,NL,Baykov Ilya Sergeevich 1391 | 81.22.132.245,443,NL,Internet Utilities Europe and Asia Limited 1392 | 91.201.112.15,443,NL,Amsterdam, Netherlands 1393 | 194.147.33.188,443,NL,FORTIS 1394 | 147.45.167.197,443,NL,Timeweb, LLP 1395 | 194.147.115.132,443,NL,IT-DELUX ltd. 1396 | 89.110.120.197,443,NL,Amsterdam, Netherlands 1397 | 31.172.74.123,443,NL,www.fornex.com, Fornex Hosting S.L. 1398 | 146.103.33.57,443,NL,Brander Group Inc 1399 | 94.103.95.115,443,NL,Amsterdam, Netherlands 1400 | 37.1.206.30,443,NL,IROKO Networks Corporation 1401 | 207.174.30.74,443,NL,IPFB LLC 1402 | 185.233.203.134,443,NL,FIRST SERVER LIMITED 1403 | 2.59.183.181,443,NL,SERVA ONE LTD 1404 | 185.233.203.134,43735,NL,FIRST SERVER LIMITED 1405 | 89.150.35.129,443,NL,CLODO CLOUD SERVICE CO. L.L.C 1406 | 146.103.33.38,443,NL,Brander Group Inc 1407 | 89.42.142.79,443,NL,SERVA ONE LTD 1408 | 212.111.88.212,443,NL,Amsterdam, Netherlands 1409 | 188.215.229.74,8443,NL,365 Group LLC 1410 | 185.36.143.166,443,NL,Brainoza OU 1411 | 89.110.78.173,443,NL,SERVERS TECH FZCO 1412 | 89.110.123.23,443,NL,Amsterdam, Netherlands 1413 | 89.110.79.248,443,NL,Amsterdam, Netherlands 1414 | 23.108.217.103,443,NL,Servers.com B.V. 1415 | 83.217.211.239,443,NL,Baykov Ilya Sergeevich 1416 | 166.1.201.179,443,NL,Baxet Group Inc. 1417 | 147.45.50.181,8080,NL,GLOBAL CONNECTIVITY SOLUTIONS LLP 1418 | 2.59.183.233,444,NL,SERVA ONE LTD 1419 | 46.17.102.93,443,NL,HOSTKEY B.V. 1420 | 194.58.44.69,443,NL,RCS Technologies FZE LLC 1421 | 2.59.183.219,443,NL,Internet Utilities Europe and Asia Limited 1422 | 89.110.108.46,443,NL,Amsterdam, Netherlands 1423 | 89.110.68.158,443,NL,Amsterdam, Netherlands 1424 | 185.229.225.229,443,NL,Kamatera Inc 1425 | 31.44.2.57,443,NL,ITGLOBAL.COM NL B.V. 1426 | 89.110.100.110,443,NL,Amsterdam, Netherlands 1427 | 109.107.167.104,443,NL,Amsterdam, Netherlands 1428 | 212.193.1.208,443,NL,Baxet Group Inc. 1429 | 195.200.17.63,443,NL,Amsterdam, Netherlands 1430 | 195.58.50.134,443,NL,Baykov Ilya Sergeevich 1431 | 194.26.232.141,443,NL,Podaon SIA 1432 | 103.90.73.117,443,NL,CLODO CLOUD SERVICE CO. L.L.C 1433 | 213.166.71.40,443,NL,Podaon SIA 1434 | 89.110.125.45,443,NL,Amsterdam, Netherlands 1435 | 109.107.187.20,443,NL,Amsterdam, Netherlands 1436 | 181.41.194.176,15565,NL,RACK400.com - Netherlands Infrastructure 1437 | 178.208.77.253,443,NL,Iron Hosting Centre Ltd., London, UK 1438 | 185.220.204.87,443,NL,O.M.C. COMPUTERS & COMMUNICATIONS LTD 1439 | 212.34.149.185,443,NL,Amsterdam, Netherlands 1440 | 77.238.241.143,443,NL,SERVERS TECH FZCO 1441 | 185.130.225.218,14006,NL,HOSTKEY B.V. 1442 | 80.76.35.73,443,NL,FIRST SERVER LIMITED 1443 | 185.130.225.218,443,NL,HOSTKEY B.V. 1444 | 185.94.164.160,443,NL,FIRST SERVER LIMITED 1445 | 93.113.171.95,443,NL,Baxet Group Inc. 1446 | 64.227.75.160,443,NL,DigitalOcean, LLC 1447 | 88.210.11.67,443,NL,Amsterdam, Netherlands 1448 | 163.5.207.235,443,NL,SERVA ONE LTD 1449 | 2.59.183.210,443,NL,SERVA ONE LTD 1450 | 195.133.38.227,443,NL,NKtelecom INC 1451 | 45.88.67.65,443,NL,Baykov Ilya Sergeevich 1452 | 109.107.166.23,443,NL,Amsterdam, Netherlands 1453 | 79.132.139.52,443,NL,www.fornex.com, Fornex Hosting S.L. 1454 | 168.100.9.81,443,NL,BL Networks 1455 | 38.180.133.83,443,NL,3NT SOLUTIONS LLP 1456 | 193.3.168.163,443,NL,Podaon SIA 1457 | 212.192.215.7,443,NL,Baxet Group Inc. 1458 | 147.45.145.101,443,NL,Timeweb, LLP 1459 | 93.183.91.227,443,NL,Amsterdam, Netherlands 1460 | 206.166.251.92,443,NL,BL Networks 1461 | 185.246.155.198,443,NL,Melbikomas UAB 1462 | 77.238.233.156,9443,NL,SERVERS TECH FZCO 1463 | 194.164.33.236,443,NL,Amsterdam, Netherlands 1464 | 86.107.197.239,443,NL,MVPS LTD 1465 | 109.107.165.225,443,NL,Amsterdam, Netherlands 1466 | 89.110.67.172,443,NL,Amsterdam, Netherlands 1467 | 194.147.115.149,443,NL,IT-DELUX ltd. 1468 | 194.246.82.213,443,NL,Amsterdam, Netherlands 1469 | 194.164.35.86,443,NL,Amsterdam, Netherlands 1470 | 46.17.102.9,443,NL,Cloudflare London, LLC 1471 | 5.45.66.11,443,NL,IROKO Networks Corporation 1472 | 194.87.62.139,443,NL,Baykov Ilya Sergeevich 1473 | 194.164.32.32,443,NL,Amsterdam, Netherlands 1474 | 178.208.79.242,1443,NL,Iron Hosting Centre Ltd., London, UK 1475 | 93.183.88.35,443,NL,Amsterdam, Netherlands 1476 | 2.59.38.46,443,NL,DataWeb Global Group B.V. 1477 | 2.59.183.140,443,NL,SERVA ONE LTD 1478 | 5.255.105.253,443,NL,The Infrastructure Group B.V. 1479 | 94.142.137.72,443,NL,FIRST SERVER LIMITED 1480 | 146.0.73.202,443,NL,HOSTKEY B.V. 1481 | 185.23.238.76,443,NL,Individual Entrepreneur Anton Levin 1482 | 195.133.39.185,443,NL,Individual Entrepreneur Anton Levin 1483 | 45.82.176.46,443,NL,Podaon SIA 1484 | 89.110.121.61,443,NL,Amsterdam, Netherlands 1485 | 92.118.169.4,56149,NL,Baykov Ilya Sergeevich 1486 | 45.43.90.169,443,NL,FIRST SERVER LIMITED 1487 | 93.183.124.129,443,NL,Amsterdam, Netherlands 1488 | 185.94.164.107,443,NL,FIRST SERVER LIMITED 1489 | 213.183.51.71,443,NL,Melbicom infrastructure 1490 | 193.160.96.232,443,NL,FiberXpress BV 1491 | 66.151.42.224,443,NL,undefined 1492 | 31.207.45.106,58221,NL,HOSTKEY B.V. 1493 | 194.58.68.74,443,NL,Baxet Group Inc. 1494 | 193.160.96.234,443,NL,FiberXpress BV 1495 | 176.222.55.163,443,NL,HOSTKEY B.V. 1496 | 89.110.69.27,443,NL,Amsterdam, Netherlands 1497 | 93.183.88.193,443,NL,Amsterdam, Netherlands 1498 | 77.238.228.3,443,NL,SERVERS TECH FZCO 1499 | 212.111.89.16,443,NL,Amsterdam, Netherlands 1500 | 185.103.255.142,443,NL,FIRST SERVER LIMITED 1501 | 207.174.30.58,443,NL,IPFB LLC 1502 | 77.238.247.93,443,NL,SERVERS TECH FZCO 1503 | 163.5.207.31,443,NL,SERVA ONE LTD 1504 | 185.246.152.79,443,NL,Melbicom infrastructure 1505 | 77.220.214.135,443,NL,Podaon SIA 1506 | 185.18.54.61,1080,NL,www.fornex.com, Fornex Hosting S.L. 1507 | 45.147.199.13,443,NL,Podaon SIA 1508 | 77.238.242.88,443,NL,SERVERS TECH FZCO 1509 | 5.35.69.209,443,NL,Amsterdam, Netherlands 1510 | 185.243.112.197,443,NL,CrownCloud 1511 | 89.110.113.74,443,NL,Amsterdam, Netherlands 1512 | 103.137.249.117,443,NL,CLODO CLOUD SERVICE CO. L.L.C 1513 | 31.207.47.231,443,NL,HOSTKEY B.V. 1514 | 195.200.16.44,443,NL,Amsterdam, Netherlands 1515 | 89.110.66.154,443,NL,Amsterdam, Netherlands 1516 | 109.120.158.198,443,NL,Digital City FZE 1517 | 185.244.49.38,443,NL,AdminVPS OOO 1518 | 185.198.166.182,443,NL,Friendhosting LTD 1519 | 212.192.215.163,443,NL,Baxet Group Inc. 1520 | 82.115.5.199,443,NL,SIA VEESP 1521 | 80.76.34.190,443,NL,FIRST SERVER LIMITED 1522 | 185.103.255.245,443,NL,FIRST SERVER LIMITED 1523 | 194.54.157.81,443,NL,WEISS HOSTING GROUP S.R.L. 1524 | 89.35.131.5,443,NL,RCS Technologies FZE LLC 1525 | 2.59.183.114,443,NL,SERVA ONE LTD 1526 | 185.209.161.104,443,NL,It Hosting Group 1527 | 193.37.68.164,443,NL,Individual Entrepreneur Anton Levin 1528 | 212.34.152.224,443,NL,Amsterdam, Netherlands 1529 | 176.222.55.17,443,NL,HOSTKEY B.V. 1530 | 185.94.165.218,443,NL,FIRST SERVER LIMITED 1531 | 206.189.99.40,433,NL,DigitalOcean, LLC 1532 | 163.5.207.124,443,NL,SERVA ONE LTD 1533 | 103.102.228.113,443,NL,Individual Entrepreneur Anton Levin 1534 | 45.88.76.184,443,NL,Podaon SIA 1535 | 77.238.253.245,443,NL,SERVERS TECH FZCO 1536 | 185.213.211.29,443,NL,Podaon SIA 1537 | 95.179.140.212,443,NL,JW Lucasweg 35 1538 | 89.110.107.69,443,NL,Amsterdam, Netherlands 1539 | 89.42.142.147,443,NL,SERVA ONE LTD 1540 | 77.238.248.80,443,NL,SERVERS TECH FZCO 1541 | 77.246.108.130,443,NL,Amsterdam, Netherlands 1542 | 147.45.173.149,443,NL,Timeweb, LLP 1543 | 13.95.69.133,8443,NL,Microsoft Corporation 1544 | 13.95.69.133,2053,NL,Microsoft Corporation 1545 | 103.90.75.141,2053,NL,CLODO CLOUD SERVICE CO. L.L.C 1546 | 103.90.75.41,8443,NL,CLODO CLOUD SERVICE CO. L.L.C 1547 | 103.90.75.41,2053,NL,CLODO CLOUD SERVICE CO. L.L.C 1548 | 109.107.174.65,8443,NL,Amsterdam, Netherlands 1549 | 109.120.154.233,9995,NL,Iron Hosting Centre LTD 1550 | 146.0.73.211,443,NL,HOSTKEY B.V. 1551 | 146.0.79.28,8443,NL,HOSTKEY B.V. 1552 | 146.190.236.144,443,NL,DigitalOcean, LLC 1553 | 147.45.136.240,443,NL,Timeweb, LLP 1554 | 147.45.111.106,8443,NL,Timeweb, LLP 1555 | 158.101.199.249,8443,NL,Oracle Public Cloud 1556 | 152.70.59.90,8443,NL,Oracle Corporation 1557 | 147.45.170.176,2053,NL,Timeweb, LLP 1558 | 164.92.219.230,2053,NL,DigitalOcean, LLC 1559 | 164.90.194.71,2053,NL,DigitalOcean, LLC 1560 | 176.222.52.253,2053,NL,HOSTKEY B.V. 1561 | 188.116.23.181,2053,NL,IROKO Networks Corporation 1562 | 188.116.21.18,8443,NL,IROKO Networks Corporation 1563 | 192.236.249.102,443,NL,Hostwinds Seattle 1564 | 192.236.193.108,443,NL,Hostwinds Seattle 1565 | 192.236.249.106,443,NL,Hostwinds Seattle 1566 | 192.236.249.105,443,NL,Hostwinds Seattle 1567 | 192.236.249.100,443,NL,Hostwinds Seattle 1568 | 192.236.249.103,443,NL,Hostwinds Seattle 1569 | 192.236.249.101,443,NL,Hostwinds Seattle 1570 | 192.236.249.104,443,NL,Hostwinds Seattle 1571 | 192.236.249.110,443,NL,Hostwinds Seattle 1572 | 192.236.249.111,443,NL,Hostwinds Seattle 1573 | 192.236.249.89,443,NL,Hostwinds Seattle 1574 | 192.236.249.109,443,NL,Hostwinds Seattle 1575 | 192.236.249.88,443,NL,Hostwinds Seattle 1576 | 192.236.249.107,443,NL,Hostwinds Seattle 1577 | 192.236.249.90,443,NL,Hostwinds Seattle 1578 | 192.236.249.94,443,NL,Hostwinds Seattle 1579 | 192.236.249.92,443,NL,Hostwinds Seattle 1580 | 192.236.249.108,443,NL,Hostwinds Seattle 1581 | 192.236.249.99,443,NL,Hostwinds Seattle 1582 | 192.236.249.98,443,NL,Hostwinds Seattle 1583 | 192.236.249.93,443,NL,Hostwinds Seattle 1584 | 192.236.249.97,443,NL,Hostwinds Seattle 1585 | 192.236.249.91,443,NL,Hostwinds Seattle 1586 | 192.236.249.96,443,NL,Hostwinds Seattle 1587 | 192.236.249.95,443,NL,Hostwinds Seattle 1588 | 193.178.172.225,2053,NL,SERVERS TECH FZCO 1589 | 195.200.17.21,8443,NL,Amsterdam, Netherlands 1590 | 195.200.19.246,2053,NL,Amsterdam, Netherlands 1591 | 195.200.19.132,2053,NL,Amsterdam, Netherlands 1592 | 194.87.26.250,443,NL,JSC TIMEWEB 1593 | 195.226.194.222,8443,NL,Snowd Security OU 1594 | 195.200.26.225,443,NL,Amsterdam, Netherlands 1595 | 195.226.194.222,2053,NL,Snowd Security OU 1596 | 195.54.174.216,2053,NL,IROKO Networks Corporation 1597 | 2.59.183.198,443,NL,SERVA ONE LTD 1598 | 212.118.40.20,8443,NL,Amsterdam, Netherlands 1599 | 212.34.146.6,8443,NL,Amsterdam, Netherlands 1600 | 212.34.152.234,8443,NL,Amsterdam, Netherlands 1601 | 23.254.226.110,443,NL,Hostwinds Seattle 1602 | 213.183.59.144,8443,NL,Melbicom infrastructure 1603 | 213.183.51.75,2053,NL,Melbicom infrastructure 1604 | 213.183.59.144,2053,NL,Melbicom infrastructure 1605 | 213.183.61.100,8443,NL,Melbicom infrastructure 1606 | 31.220.42.149,2053,NL,HostHatch Inc 1607 | 31.220.42.149,8443,NL,HostHatch Inc 1608 | 45.133.118.153,443,NL,Hizakura B.V. 1609 | 45.133.117.185,443,NL,Hizakura B.V. 1610 | 45.138.25.67,2053,NL,ITGLOBAL.COM NL B.V. 1611 | 45.120.178.143,8443,NL,WorkTitans B.V. 1612 | 38.180.99.178,8443,NL,3NT SOLUTIONS LLP 1613 | 38.180.99.103,443,NL,3NT SOLUTIONS LLP 1614 | 45.144.29.77,443,NL,WorkTitans B.V. 1615 | 45.91.200.130,8443,NL,Podaon SIA 1616 | 38.180.99.253,8443,NL,3NT SOLUTIONS LLP 1617 | 46.17.102.249,2053,NL,HOSTKEY B.V. 1618 | 46.17.97.207,2053,NL,HOSTKEY B.V. 1619 | 5.255.118.176,443,NL,The Infrastructure Group B.V. 1620 | 46.151.26.63,8443,NL,Amsterdam, Netherlands 1621 | 5.2.67.113,443,NL,The Infrastructure Group B.V. 1622 | 5.255.120.214,8443,NL,The Infrastructure Group B.V. 1623 | 77.238.247.183,2053,NL,SERVERS TECH FZCO 1624 | 77.238.242.168,443,NL,SERVERS TECH FZCO 1625 | 77.238.249.50,2053,NL,SERVERS TECH FZCO 1626 | 77.91.123.143,2053,NL,WorkTitans B.V. 1627 | 80.85.246.195,2053,NL,Amsterdam, Netherlands 1628 | 62.84.102.169,8443,NL,Amsterdam, Netherlands 1629 | 89.110.103.15,2053,NL,Amsterdam, Netherlands 1630 | 89.110.106.199,2053,NL,Amsterdam, Netherlands 1631 | 89.110.108.189,8443,NL,Amsterdam, Netherlands 1632 | 89.110.118.121,8443,NL,Amsterdam, Netherlands 1633 | 85.234.107.140,2053,NL,Timeweb, LLP 1634 | 89.110.120.140,2053,NL,Amsterdam, Netherlands 1635 | 89.110.75.200,2053,NL,Amsterdam, Netherlands 1636 | 89.169.8.105,443,NL,Medvedev Vladislav Olegovich 1637 | 93.183.126.123,8443,NL,Amsterdam, Netherlands 1638 | 94.131.105.101,2053,NL,WorkTitans B.V. 1639 | 89.19.216.153,443,NL,Timeweb, LLP 1640 | 95.142.41.132,443,NL,Cloudflare London, LLC 1641 | 146.185.153.221,8443,NL,Digital Ocean, Inc. 1642 | 77.221.133.147,443,NL,IHC network in Amsterdam, NL (Iron Hosting Centre Ltd., London, UK) 1643 | 146.59.19.208,8443,PL,OVH Sp. z o. o. 1644 | 146.59.19.208,2053,PL,OVH Sp. z o. o. 1645 | 54.37.235.201,443,PL,OVH Sp. z o. o. 1646 | 91.239.148.133,443,PL,SERVA ONE LTD 1647 | 91.239.148.53,443,PL,SERVA ONE LTD 1648 | 188.116.40.37,443,PL,Artnet Sp. z o.o. 1649 | 91.239.148.53,42053,PL,SERVA ONE LTD 1650 | 70.34.244.250,12531,PL,The Constant Company, LLC. 1651 | 185.188.147.79,443,PL,G-Core Labs S.A. 1652 | 70.34.244.250,27000,PL,The Constant Company, LLC 1653 | 91.149.253.249,443,PL,Baxet Group Inc. 1654 | 70.34.244.250,53062,PL,The Constant Company, LLC 1655 | 45.144.48.158,8443,PL,Newserverlife LLC 1656 | 45.144.48.42,8443,PL,Newserverlife LLC 1657 | 77.83.246.133,24443,PL,GLOBAL CONNECTIVITY SOLUTIONS LLP 1658 | 91.149.253.213,8443,PL,BG-NETWORK 1659 | 91.149.253.213,2053,PL,BG-NETWORK 1660 | 31.133.0.143,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1661 | 37.252.6.119,443,PL,IROKO Networks Corporation 1662 | 31.133.0.55,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1663 | 145.239.88.255,2053,PL,OVH VPS WAW 1664 | 145.239.88.255,8443,PL,OVH VPS WAW 1665 | 45.144.48.29,2053,PL,Newserverlife LLC 1666 | 45.144.48.29,8443,PL,Newserverlife LLC 1667 | 31.133.0.135,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1668 | 31.133.0.150,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1669 | 91.239.148.34,443,PL,SERVA ONE LTD 1670 | 80.211.249.68,8443,PL,Aruba S.p.A. - Cloud Services PL1 1671 | 80.211.249.68,2053,PL,Aruba S.p.A. - Cloud Services PL1 1672 | 31.133.0.122,8443,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1673 | 31.133.0.122,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1674 | 80.211.249.240,8443,PL,Aruba S.p.A. - Cloud Services PL1 1675 | 80.211.249.240,2053,PL,Aruba S.p.A. - Cloud Services PL1 1676 | 151.115.61.151,2053,PL,Scaleway - Warsaw, Poland 1677 | 31.133.0.159,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1678 | 31.133.0.167,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1679 | 31.133.0.124,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1680 | 193.124.41.165,8443,PL,Reliable Communications s.r.o. 1681 | 193.124.41.165,2053,PL,Reliable Communications s.r.o. 1682 | 45.144.51.79,8443,PL,Newserverlife LLC 1683 | 77.83.246.153,8443,PL,GLOBAL CONNECTIVITY SOLUTIONS LLP 1684 | 217.12.206.160,81,PL,GREEN FLOID LLC 1685 | 45.144.48.186,8443,PL,Newserverlife LLC 1686 | 70.34.245.176,8443,PL,The Constant Company, LLC 1687 | 70.34.245.176,2053,PL,The Constant Company, LLC 1688 | 31.133.0.133,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1689 | 45.144.48.182,8443,PL,Newserverlife LLC 1690 | 37.252.7.161,8443,PL,IROKO Networks Corporation 1691 | 45.144.48.192,8443,PL,Newserverlife LLC 1692 | 45.144.48.33,8443,PL,Newserverlife LLC 1693 | 37.252.7.161,2053,PL,IROKO Networks Corporation 1694 | 176.105.253.102,8443,PL,BREEZLE LLC 1695 | 80.211.250.20,2053,PL,Aruba S.p.A. - Cloud Services PL1 1696 | 176.105.253.102,2053,PL,BREEZLE LLC 1697 | 31.133.1.8,2053,PL,BARTOSZ WASZAK trading as HOSTEAM S.C. TOMASZ GROSZEWSKI BARTOSZ WASZAK LUKASZ GROSZEWSKI 1698 | 37.252.10.91,443,PL,IROKO Networks Corporation 1699 | 45.144.51.81,443,PL,Newserverlife LLC 1700 | 45.144.49.146,443,PL,Newserverlife LLC 1701 | 77.83.246.153,2053,PL,GLOBAL CONNECTIVITY SOLUTIONS LLP 1702 | 80.211.250.20,8443,PL,Aruba S.p.A. - Cloud Services PL1 1703 | 45.159.251.8,81,PT,WorkTitans B.V. 1704 | 45.67.34.89,8443,RO,WorkTitans B.V. 1705 | 194.68.44.27,81,RO,EDIS IPv6 Infrastructure in Romania 1706 | 185.225.17.233,2053,RO,MivoCloud 1707 | 185.104.181.228,443,RO,DATA NODE SRL 1708 | 185.225.17.233,8443,RO,MivoCloud 1709 | 45.67.34.74,2053,RO,WorkTitans B.V. 1710 | 94.131.119.136,81,RO,WorkTitans B.V. 1711 | 94.131.119.50,2053,RO,WorkTitans B.V. 1712 | 185.39.30.67,2053,RO,Friendhosting LTD 1713 | 38.180.100.80,443,RS,3NT SOLUTIONS LLP 1714 | 109.120.189.103,1488,RU,VK Cloud Solutions 1715 | 82.97.249.34,8443,RU,Timeweb, LLP 1716 | 82.97.249.34,2053,RU,Timeweb, LLP 1717 | 141.105.70.114,443,RU,LLC Server v arendy 1718 | 147.45.245.15,443,RU,JSC TIMEWEB 1719 | 176.109.106.61,8443,RU,Cloud Technologies LLC trading as Cloud.ru 1720 | 147.45.147.212,2053,RU,JSC TIMEWEB 1721 | 147.45.175.165,8443,RU,JSC TIMEWEB 1722 | 147.45.147.212,8443,RU,JSC TIMEWEB 1723 | 176.124.222.142,8443,RU,AEZA GROUP Ltd 1724 | 178.20.46.46,443,RU,VDSINA VDS Hosting 1725 | 185.105.89.125,16092,RU,FIRST SERVER LIMITED 1726 | 176.57.211.166,2053,RU,JSC TIMEWEB 1727 | 176.57.211.166,8443,RU,JSC TIMEWEB 1728 | 178.250.159.120,2053,RU,JSC IOT 1729 | 185.105.117.222,443,RU,PSERVERS Enterprise Network 1730 | 185.128.106.14,51820,RU,FIRST SERVER LIMITED 1731 | 185.211.170.101,8443,RU,JSC TIMEWEB 1732 | 185.211.170.101,2053,RU,JSC TIMEWEB 1733 | 185.254.190.70,8443,RU,LLC Vpsville 1734 | 185.84.162.186,2053,RU,TimeWeb 1735 | 188.225.34.155,443,RU,TimeWeb Ltd. 1736 | 185.84.162.186,8443,RU,TimeWeb 1737 | 193.3.23.128,37424,RU,FOP Hornostay Mykhaylo Ivanovych 1738 | 193.160.209.226,2053,RU,Timeweb.Cloud LLC 1739 | 194.67.204.158,2053,RU,PSERVERS Enterprise Network 1740 | 194.87.252.135,2053,RU,Baykov Ilya Sergeevich 1741 | 194.87.252.135,8443,RU,Baykov Ilya Sergeevich 1742 | 194.67.204.158,8443,RU,PSERVERS Enterprise Network 1743 | 194.87.190.57,2053,RU,JSC TIMEWEB 1744 | 194.87.190.57,8443,RU,JSC TIMEWEB 1745 | 213.159.208.88,2053,RU,JSC Datacenter 1746 | 213.226.126.183,2053,RU,JSC TIMEWEB 1747 | 213.226.126.183,8443,RU,JSC TIMEWEB 1748 | 31.128.36.148,2053,RU,Beget LLC 1749 | 31.129.48.222,8443,RU,Selectel Network 1750 | 31.129.42.100,2053,RU,Selectel Network 1751 | 31.128.37.116,2053,RU,Beget LLC 1752 | 31.128.37.116,8443,RU,Beget LLC 1753 | 31.129.49.103,443,RU,Selectel Network 1754 | 31.129.48.139,443,RU,Selectel Network 1755 | 31.129.48.222,2053,RU,Selectel Network 1756 | 45.135.135.131,4433,RU,LLC Baxet 1757 | 45.95.203.214,8443,RU,FIRST SERVER LIMITED 1758 | 45.95.203.214,2053,RU,FIRST SERVER LIMITED 1759 | 46.17.43.237,54596,RU,LLC BAXET 1760 | 46.229.212.218,2053,RU,JSC TIMEWEB 1761 | 51.250.15.177,8443,RU,Yandex.Cloud LLC 1762 | 46.229.212.218,8443,RU,JSC TIMEWEB 1763 | 51.250.15.177,2053,RU,Yandex.Cloud LLC 1764 | 77.223.96.158,443,RU,Selectel Network 1765 | 77.73.69.96,2053,RU,veesp.com clients 1766 | 77.223.96.232,443,RU,Selectel Network 1767 | 77.73.69.96,8443,RU,veesp.com clients 1768 | 81.200.158.206,8443,RU,JSC TIMEWEB 1769 | 82.148.30.224,443,RU,Selectel Network 1770 | 82.97.254.184,2053,RU,Timeweb, LLP 1771 | 85.193.91.193,2053,RU,JSC TIMEWEB 1772 | 85.193.91.193,8443,RU,JSC TIMEWEB 1773 | 85.198.109.79,2053,RU,Hosting technology LTD 1774 | 89.110.89.229,2053,RU,Hosting technology LTD 1775 | 85.198.109.79,8443,RU,Hosting technology LTD 1776 | 89.110.89.229,8443,RU,Hosting technology LTD 1777 | 89.111.172.106,2053,RU,Domain names registrar REG.RU, Ltd 1778 | 89.111.172.106,8443,RU,Domain names registrar REG.RU, Ltd 1779 | 89.248.207.37,443,RU,Selectel Network 1780 | 92.38.152.30,2053,RU,EdgeCenter LLC 1781 | 92.241.18.106,443,RU,JSC Svyazinform 1782 | 90.156.211.232,8443,RU,JSC TIMEWEB 1783 | 94.103.183.229,2053,RU,FOP Hornostay Mykhaylo Ivanovych 1784 | 92.38.152.30,8443,RU,EdgeCenter LLC 1785 | 94.142.139.93,443,RU,PSERVERS Enterprise Network 1786 | 94.242.53.158,8443,RU,SIA VEESP 1787 | 94.242.53.158,2053,RU,SIA VEESP 1788 | 95.163.240.24,8443,RU,Reg.Ru Hosting 1789 | 95.163.242.122,2053,RU,Domain names registrar REG.RU, Ltd 1790 | 95.46.1.22,8443,RU,Stolica Telecom Ltd. 1791 | 95.46.1.22,2053,RU,Stolica Telecom Ltd. 1792 | 95.163.242.122,8443,RU,Domain names registrar REG.RU, Ltd 1793 | 95.171.21.193,443,RU,Universum bit Ltd. 1794 | 85.30.217.230,25146,RU,NCNET Broadband customers 1795 | 45.139.184.183,2053,RU,LLC Vpsville 1796 | 45.139.184.183,8443,RU,LLC Vpsville 1797 | 212.113.100.65,443,SE,Aeza International LTD 1798 | 147.45.76.247,443,SE,Aeza International LTD 1799 | 193.188.21.181,443,SE,Aeza International LTD 1800 | 46.226.161.37,443,SE,Aeza International LTD 1801 | 89.22.232.119,443,SE,Aeza International LTD 1802 | 31.25.29.199,443,SE,Aeza International LTD 1803 | 51.20.99.157,443,SE,A100 ROW Inc 1804 | 45.82.80.96,443,SE,Internetport Sweden AB 1805 | 172.232.157.252,8443,SE,Linode 1806 | 172.234.96.64,8443,SE,Linode 1807 | 77.221.143.39,443,SE,Aeza International LTD 1808 | 129.151.198.3,2053,SE,Oracle Corporation 1809 | 158.179.206.143,443,SE,oracle 1810 | 172.232.157.252,2053,SE,Linode 1811 | 178.73.220.132,443,SE,Swedish Infra 1812 | 45.153.187.209,8443,SE,MVPS LTD 1813 | 45.153.187.209,2053,SE,MVPS LTD 1814 | 78.40.117.49,2053,SE,ALEXHOST SRL 1815 | 78.40.117.65,2053,SE,ALEXHOST SRL 1816 | 78.40.117.186,2053,SE,ALEXHOST SRL 1817 | 78.40.116.136,2053,SE,ALEXHOST SRL 1818 | 47.74.254.191,8900,SG,Alibaba Cloud - SG 1819 | 129.150.58.86,57621,SG,Oracle Corporation 1820 | 213.35.108.135,12596,SG,Oracle Svenska AB 1821 | 178.128.80.43,443,SG,DigitalOcean, LLC 1822 | 138.2.89.238,43254,SG,Oracle Corporation 1823 | 146.235.18.248,45137,SG,Oracle Corporation 1824 | 194.127.193.240,50791,SG,Greencloud LLC 1825 | 47.236.119.190,51342,SG,Alibaba Cloud LLC 1826 | 129.150.49.58,18650,SG,Oracle Corporation 1827 | 129.150.36.188,53435,SG,Oracle Corporation 1828 | 194.127.193.124,24467,SG,Greencloud LLC 1829 | 138.2.95.61,1111,SG,Oracle Corporation 1830 | 168.138.170.211,53702,SG,Oracle Public Cloud 1831 | 45.32.100.46,13802,SG,Vultr Holdings, LLC 1832 | 8.219.1.169,443,SG,Alibaba Cloud (Singapore) Private Limited 1833 | 8.222.220.81,25435,SG,Alibaba Cloud (Singapore) Private Limited 1834 | 45.76.183.217,49292,SG,Vultr Holdings, LLC 1835 | 51.79.158.58,8443,SG,OVH Singapore PTE. LTD 1836 | 8.219.58.164,57373,SG,Alibaba Cloud (Singapore) Private Limited 1837 | 194.36.178.36,8443,SG,FIRST SERVER LIMITED 1838 | 91.192.81.154,2053,SG,Melbikomas UAB 1839 | 104.248.145.216,443,SG,DigitalOcean, LLC 1840 | 138.2.69.236,23334,SG,Oracle Corporation 1841 | 146.235.19.79,28983,SG,Oracle Corporation 1842 | 143.42.66.91,443,SG,M1 LIMITED 1843 | 164.52.2.100,443,SG,UCUL-SG 1844 | 164.52.2.98,443,SG,UCUL-SG 1845 | 164.52.2.99,443,SG,UCUL-SG 1846 | 168.138.165.174,443,SG,Oracle Public Cloud 1847 | 168.138.171.70,23280,SG,Oracle Public Cloud 1848 | 194.36.178.36,2053,SG,FIRST SERVER LIMITED 1849 | 185.81.28.95,30503,SG,AKILE LTD 1850 | 194.36.179.5,2053,SG,FIRST SERVER LIMITED 1851 | 194.36.179.17,2053,SG,FIRST SERVER LIMITED 1852 | 194.36.179.17,8443,SG,FIRST SERVER LIMITED 1853 | 213.35.100.31,47112,SG,Oracle Svenska AB 1854 | 31.192.238.71,2053,SG,PDK LLC 1855 | 31.192.238.71,8443,SG,PDK LLC 1856 | 43.156.116.194,443,SG,6 COLLYER QUAY 1857 | 43.156.181.203,443,SG,16 COLLYER QUAY 1858 | 43.128.95.84,38091,SG,6 COLLYER QUAY 1859 | 51.79.158.58,2053,SG,OVH Singapore PTE. LTD 1860 | 5.34.176.119,81,SG,Green Floid LLC 1861 | 13.250.131.37,443,SG,Amazon Data Services Singapore 1862 | 45.144.167.46,19816,TH,ReadyIDC Co., Ltd. 1863 | 171.103.164.62,30921,TH,True Internet Co., Ltd. 1864 | 171.103.232.58,20475,TH,True Internet Co., Ltd. 1865 | 185.234.66.91,443,TR,WorkTitans B.V. 1866 | 94.131.123.74,443,TR,WorkTitans B.V. 1867 | 45.89.52.247,443,TR,WorkTitans B.V. 1868 | 185.219.134.25,31564,TR,hostigger_datacenter_TR 1869 | 185.39.204.55,2053,TR,GLOBAL CONNECTIVITY SOLUTIONS LLP 1870 | 188.132.129.84,8443,TR,ULTAHOST HOSTING VE VERI MERKEZI LTD. STI. 1871 | 185.8.129.187,443,TR,Cloudflare London, LLC 1872 | 185.8.129.187,2096,TR,Cloudflare London, LLC 1873 | 188.132.129.199,8443,TR,ULTAHOST HOSTING VE VERI MERKEZI LTD. STI. 1874 | 188.132.129.199,2053,TR,ULTAHOST HOSTING VE VERI MERKEZI LTD. STI. 1875 | 185.8.129.187,2083,TR,Cloudflare London, LLC 1876 | 185.8.129.187,2053,TR,Cloudflare London, LLC 1877 | 188.132.129.84,2053,TR,ULTAHOST HOSTING VE VERI MERKEZI LTD. STI. 1878 | 188.132.192.195,2053,TR,TradeZone LLC 1879 | 188.132.192.194,2053,TR,TradeZone LLC 1880 | 188.132.192.190,2053,TR,TradeZone LLC 1881 | 195.16.74.240,81,TR,WorkTitans B.V. 1882 | 62.133.63.149,2083,TR,GLOBAL CONNECTIVITY SOLUTIONS LLP 1883 | 62.3.12.185,443,TR,WorkTitans B.V. 1884 | 83.217.9.110,24443,TR,GLOBAL CONNECTIVITY SOLUTIONS LLP 1885 | 89.207.12.80,8443,TR,Star of Bosphorus Bilgi Teknolojiler San ve Tic A.S. 1886 | 104.239.87.213,2053,TR,Baxet Group Inc. 1887 | 104.239.87.213,8443,TR,Baxet Group Inc. 1888 | 210.61.97.241,81,TW,Chunghwa Telecom Co.,Ltd. 1889 | 82.118.22.141,8443,UA,GREEN FLOID LLC 1890 | 82.118.22.141,2053,UA,GREEN FLOID LLC 1891 | 91.218.212.223,443,UA,TOV 'Dream Line Holding' 1892 | 159.100.198.106,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1893 | 206.201.196.122,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1894 | 199.59.229.178,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1895 | 172.82.16.38,25122,US,OLink Cloud LLC 1896 | 172.82.16.38,27043,US,OLink Cloud LLC 1897 | 172.82.16.38,27061,US,OLink Cloud LLC 1898 | 172.82.16.38,25953,US,OLink Cloud LLC 1899 | 172.82.16.38,30387,US,OLink Cloud LLC 1900 | 147.75.236.96,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1901 | 172.82.16.38,31005,US,OLink Cloud LLC 1902 | 172.82.16.38,27053,US,OLink Cloud LLC 1903 | 199.59.231.120,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1904 | 192.158.242.133,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1905 | 103.29.32.103,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1906 | 147.75.230.33,443,US,Aryaka Networks, Inc. 1907 | 147.75.230.160,443,US,Aryaka Networks, Inc. 1908 | 147.75.225.105,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1909 | 159.100.199.200,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1910 | 185.114.78.230,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1911 | 129.213.22.27,11650,US,Oracle Public Cloud 1912 | 155.248.198.56,34488,US,Oracle Public Cloud 1913 | 91.149.239.122,443,US,BG-NETWORK 1914 | 129.153.127.204,20756,US,Oracle Corporation 1915 | 34.83.245.149,443,US,Google LLC 1916 | 64.44.86.201,44759,US,Nexeon Technologies, Inc. 1917 | 129.153.91.86,3701,US,Oracle Corporation 1918 | 129.146.114.239,44039,US,Oracle Corporation 1919 | 192.3.44.158,38613,US,RackNerd LLC 1920 | 63.205.203.251,443,US,AT&T Enterprises, LLC 1921 | 23.95.18.12,18443,US,RackNerd LLC 1922 | 107.173.147.41,36082,US,RackNerd LLC 1923 | 167.179.27.92,443,US,Aryaka Networks Inc, c/o Equinix SV4 255 Caspian Drive Sunnyvale, CA 94089, United States 1924 | 198.46.218.63,27149,US,RackNerd LLC 1925 | 107.172.102.212,20700,US,RackNerd LLC 1926 | 107.173.250.62,444,US,RackNerd LLC 1927 | 23.94.56.111,20338,US,RackNerd LLC 1928 | 23.94.211.148,443,US,RackNerd LLC 1929 | 172.245.226.156,443,US,RackNerd LLC 1930 | 23.95.113.61,443,US,RackNerd LLC 1931 | 23.94.43.51,443,US,RackNerd LLC 1932 | 107.174.63.237,443,US,RackNerd LLC 1933 | 23.94.213.132,27149,US,HostPapa 1934 | 192.210.143.111,28425,US,RackNerd LLC 1935 | 172.245.129.72,27486,US,RackNerd LLC 1936 | 198.46.143.134,8443,US,RackNerd LLC 1937 | 23.94.122.243,29500,US,HostPapa 1938 | 23.94.94.192,42539,US,RackNerd LLC 1939 | 107.175.254.239,39128,US,RackNerd LLC 1940 | 198.46.143.134,443,US,RackNerd LLC 1941 | 192.210.196.158,36414,US,RackNerd LLC 1942 | 67.209.179.237,30419,US,IT7 Networks Inc 1943 | 144.168.56.119,40864,US,IT7 Networks Inc 1944 | 23.105.199.91,21626,US,IT7 Networks Inc 1945 | 172.96.192.109,22503,US,Cluster Logic Inc 1946 | 172.96.194.124,34555,US,Cluster Logic Inc 1947 | 89.208.250.204,28268,US,Cluster Logic Inc 1948 | 97.64.26.142,30840,US,IT7 Networks Inc 1949 | 65.49.195.163,14828,US,IT7 Networks Inc 1950 | 107.182.179.27,2443,US,IT7 Networks Inc 1951 | 95.163.203.38,2053,US,Cluster Logic Inc 1952 | 172.96.192.114,44855,US,IT7 Networks Inc 1953 | 65.49.192.225,58564,US,IT7 Networks Inc 1954 | 144.34.163.149,58431,US,Cluster Logic Inc 1955 | 159.65.162.90,4431,US,DigitalOcean, LLC 1956 | 138.197.9.141,6000,US,DigitalOcean, LLC 1957 | 167.71.243.238,21857,US,DigitalOcean, LLC 1958 | 74.48.50.18,54696,US,MULTACOM CORPORATION 1959 | 74.48.140.177,443,US,MULTACOM CORPORATION 1960 | 148.135.59.174,54824,US,Brander Group Inc. 1961 | 74.48.4.29,37731,US,MULTACOM CORPORATION 1962 | 74.48.77.104,35273,US,MULTACOM CORPORATION 1963 | 72.18.83.132,16232,US,CloudCone, LLC 1964 | 72.18.81.113,15320,US,MULTACOM CORPORATION 1965 | 142.171.156.141,21182,US,MULTACOM CORPORATION 1966 | 74.48.179.37,36460,US,MULTACOM CORPORATION 1967 | 74.48.179.37,32380,US,MULTACOM CORPORATION 1968 | 142.171.166.116,8443,US,MULTACOM CORPORATION 1969 | 74.48.145.83,31556,US,MULTACOM CORPORATION 1970 | 74.48.179.37,10725,US,MULTACOM CORPORATION 1971 | 74.48.179.37,36358,US,MULTACOM CORPORATION 1972 | 74.48.179.37,58184,US,MULTACOM CORPORATION 1973 | 148.135.110.150,48503,US,Brander Group Inc. 1974 | 107.172.218.244,47452,US,RackNerd LLC 1975 | 107.175.245.68,50242,US,RackNerd LLC 1976 | 192.3.155.217,443,US,RackNerd LLC 1977 | 195.123.241.122,50008,US,Total server solutions LLC 1978 | 66.85.139.204,443,US,SECURED SERVERS LLC 1979 | 107.148.20.127,29500,US,PEG-LA 1980 | 45.150.164.179,10369,US,Spartan Host Ltd 1981 | 167.234.216.84,65501,US,Oracle Corporation 1982 | 172.235.49.135,17973,US,Linode 1983 | 152.67.235.3,88,US,Oracle Public Cloud 1984 | 172.83.159.4,16478,US,Spartan Host Ltd 1985 | 172.83.159.4,41389,US,Spartan Host Ltd 1986 | 47.89.150.45,21575,US,Alibaba Cloud - US 1987 | 47.90.140.40,15624,US,Alibaba Cloud - US 1988 | 107.173.147.41,35398,US,RackNerd LLC 1989 | 15.204.10.80,39268,US,OVH US LLC 1990 | 173.249.201.109,54443,US,Tzulo-DJC 1991 | 104.168.176.241,24264,US,Hostwinds LLC. 1992 | 107.173.147.41,27170,US,RackNerd LLC 1993 | 15.204.10.80,24906,US,OVH US LLC 1994 | 15.204.10.80,49404,US,OVH US LLC 1995 | 15.204.10.80,36683,US,OVH US LLC 1996 | 173.249.210.53,17750,US,Tzulo-DJC 1997 | 132.145.217.215,11002,US,Oracle Public Cloud 1998 | 132.145.217.215,11001,US,Oracle Public Cloud 1999 | 193.233.207.35,443,US,Baxet Group Inc. 2000 | 172.82.16.38,25956,US,OLink Cloud LLC 2001 | 150.230.168.70,50479,US,Oracle Corporation 2002 | 67.226.221.104,443,US,Securly, Inc 2003 | 204.110.222.104,80,US,Securly, Inc 2004 | 54.149.11.131,80,US,Amazon Technologies Inc. 2005 | 204.110.223.100,80,US,Securly, Inc 2006 | 204.110.222.104,443,US,Securly, Inc 2007 | 67.226.221.104,80,US,Securly, Inc 2008 | 204.110.223.105,443,US,Securly, Inc 2009 | 204.110.223.105,80,US,Securly, Inc 2010 | 54.202.115.66,80,US,Amazon.com, Inc. 2011 | 67.226.221.102,443,US,Securly, Inc 2012 | 54.193.104.34,80,US,Amazon.com, Inc. 2013 | 204.110.222.106,80,US,Securly, Inc 2014 | 67.226.222.2,80,US,Securly, Inc 2015 | 67.226.220.10,80,US,Securly, Inc 2016 | 67.226.220.10,443,US,Securly, Inc 2017 | 3.101.133.120,80,US,Amazon.com, Inc. 2018 | 18.144.44.213,80,US,Amazon.com, Inc. 2019 | 52.32.90.142,80,US,Amazon Technologies Inc. 2020 | 35.167.93.200,80,US,Amazon.com, Inc. 2021 | 54.176.205.20,80,US,Amazon.com, Inc. 2022 | 18.236.13.188,443,US,Amazon Technologies Inc. 2023 | 52.10.78.7,443,US,Amazon Technologies Inc. 2024 | 67.226.221.100,80,US,Securly, Inc 2025 | 52.10.78.7,80,US,Amazon Technologies Inc. 2026 | 173.249.209.140,42207,US,tzulo, inc. 2027 | 52.41.218.4,443,US,Amazon Technologies Inc. 2028 | 54.203.85.46,80,US,Amazon.com, Inc. 2029 | 35.167.93.200,443,US,Amazon.com, Inc. 2030 | 44.228.63.60,443,US,Amazon.com, Inc. 2031 | 47.253.87.21,52315,US,Alibaba Cloud - US 2032 | 35.185.54.229,27251,US,Google LLC 2033 | 18.236.13.188,80,US,Amazon Technologies Inc. 2034 | 35.185.54.229,27271,US,Google LLC 2035 | 35.185.54.229,27205,US,Google LLC 2036 | 35.185.54.229,27207,US,Google LLC 2037 | 91.149.239.62,443,US,BG-NETWORK 2038 | 15.204.57.47,7267,US,Cloudflare London, LLC 2039 | 91.149.239.206,443,US,BG-NETWORK 2040 | 158.101.39.0,42979,US,Oracle Public Cloud 2041 | 44.227.209.152,443,US,Amazon.com, Inc. 2042 | 141.11.95.10,18443,US,Virtual Machine Solutions LLC 2043 | 67.226.221.102,80,US,Securly, Inc 2044 | 206.223.84.247,443,US,Atlantic Cellular Management Company 2045 | 138.2.235.230,22731,US,Oracle Corporation 2046 | 129.146.6.2,929,US,Oracle Corporation 2047 | 193.32.177.79,443,US,Baykov Ilya Sergeevich 2048 | 52.41.218.4,80,US,Amazon Technologies Inc. 2049 | 44.228.63.60,80,US,Amazon.com, Inc. 2050 | 192.9.135.182,7800,US,Oracle Corporation 2051 | 192.9.228.70,14123,US,Oracle Corporation 2052 | 173.44.141.156,8443,US,Winnebell Network Services 2053 | 104.168.167.197,27213,US,Hostwinds Seattle 2054 | 104.168.58.31,443,US,RackNerd LLC 2055 | 104.168.87.41,16443,US,RackNerd LLC 2056 | 104.207.159.165,8088,US,Vultr Holdings, LLC 2057 | 104.234.50.12,2053,US,Private Customer 2058 | 104.234.50.12,8443,US,Private Customer 2059 | 104.234.50.19,2053,US,Private Customer 2060 | 107.172.159.182,443,US,RackNerd LLC 2061 | 107.172.132.165,43333,US,HostPapa 2062 | 107.173.30.154,27149,US,ColoCrossing 2063 | 129.146.198.253,28443,US,Oracle Corporation 2064 | 129.146.22.121,41913,US,Oracle Corporation 2065 | 129.153.112.108,3966,US,Oracle Corporation 2066 | 129.146.46.164,443,US,Oracle Corporation 2067 | 129.159.37.19,30488,US,Oracle Corporation 2068 | 129.159.84.71,443,US,Oracle Corporation 2069 | 132.226.119.111,24361,US,Oracle Public Cloud 2070 | 138.2.231.58,45638,US,Oracle Corporation 2071 | 138.2.232.156,28163,US,Oracle Corporation 2072 | 139.60.162.153,443,US,HOSTKEY 2073 | 141.148.1.34,38589,US,Oracle Corporation 2074 | 141.148.164.46,57239,US,Oracle Corporation 2075 | 141.148.181.105,38945,US,Oracle Corporation 2076 | 141.148.164.136,34532,US,Oracle Corporation 2077 | 141.148.153.223,36818,US,Oracle Corporation 2078 | 142.171.233.183,443,US,MULTACOM CORPORATION 2079 | 142.171.94.100,9960,US,MULTACOM CORPORATION 2080 | 142.171.85.230,28034,US,MULTACOM CORPORATION 2081 | 146.235.209.40,58869,US,Oracle Corporation 2082 | 142.171.140.152,443,US,MULTACOM CORPORATION 2083 | 148.135.52.250,48993,US,Brander Group Inc. 2084 | 149.248.21.85,11146,US,Vultr Holdings, LLC 2085 | 15.204.205.208,449,US,OVH US LLC 2086 | 15.204.10.80,53089,US,OVH US LLC 2087 | 150.230.33.247,19131,US,Oracle Corporation 2088 | 152.70.113.150,52125,US,Oracle Corporation 2089 | 152.67.248.2,53300,US,Oracle Public Cloud 2090 | 15.204.67.30,2083,US,OVH US LLC 2091 | 152.70.143.175,29187,US,Oracle Corporation 2092 | 154.29.150.2,8080,US,NetLab 2093 | 155.248.193.100,33189,US,Oracle Public Cloud 2094 | 147.135.10.209,443,US,OVH US LLC 2095 | 158.101.11.204,15805,US,Oracle Public Cloud 2096 | 155.248.214.92,52580,US,Oracle Corporation 2097 | 172.235.40.214,36768,US,Linode 2098 | 170.205.38.77,443,US,HostHatch LLC 2099 | 172.82.16.38,27033,US,OLink Cloud LLC 2100 | 172.82.16.38,27050,US,OLink Cloud LLC 2101 | 172.82.16.38,25950,US,OLink Cloud LLC 2102 | 173.249.209.140,32037,US,tzulo, inc. 2103 | 18.207.186.154,443,US,Amazon Technologies Inc. 2104 | 185.106.96.203,11338,US,Sriyaan technology 2105 | 184.169.181.217,443,US,Amazon.com, Inc. 2106 | 18.216.55.100,443,US,Amazon Technologies Inc. 2107 | 18.235.208.126,443,US,Amazon Data Services Northern Virginia 2108 | 192.3.30.175,2053,US,RackNerd LLC 2109 | 192.3.45.148,443,US,RackNerd LLC 2110 | 192.9.145.87,13611,US,Oracle Corporation 2111 | 192.9.138.69,21009,US,Oracle Corporation 2112 | 193.122.195.166,52557,US,Oracle Public Cloud 2113 | 192.9.250.241,443,US,Oracle Corporation 2114 | 20.121.115.188,443,US,Microsoft Corporation 2115 | 192.9.137.193,8443,US,Oracle Corporation 2116 | 204.110.222.125,80,US,Securly, Inc 2117 | 207.211.176.65,13425,US,Oracle Corporation 2118 | 216.128.140.253,26376,US,The Constant Company, LLC 2119 | 213.170.157.1,443,US,RedShield Security Ltd 2120 | 23.94.5.177,443,US,RackNerd LLC 2121 | 23.95.61.179,15160,US,RackNerd LLC 2122 | 34.194.76.43,443,US,Amazon Data Services Northern Virginia 2123 | 34.105.49.234,443,US,Google LLC 2124 | 34.168.95.100,12388,US,Google LLC 2125 | 34.208.221.169,443,US,Amazon.com, Inc. 2126 | 34.82.76.253,443,US,Google LLC 2127 | 34.69.150.180,443,US,Google LLC 2128 | 35.197.23.75,443,US,Google LLC 2129 | 35.247.124.181,443,US,Google LLC 2130 | 35.230.79.26,443,US,Google LLC 2131 | 35.83.185.225,443,US,Amazon.com, Inc. 2132 | 43.130.105.166,65001,US,6 COLLYER QUAY 2133 | 43.130.105.166,65002,US,6 COLLYER QUAY 2134 | 43.153.61.80,40874,US,6 COLLYER QUAY 2135 | 45.146.82.107,35292,US,Aiyun (HK) Network Technology Limited 2136 | 45.151.132.228,19034,US,Spartan Host Ltd 2137 | 45.151.133.125,16478,US,Spartan Host Ltd 2138 | 45.32.131.28,31001,US,The Constant Company, LLC 2139 | 45.42.214.153,443,US,RoyaleHosting BV 2140 | 45.151.133.125,41389,US,Spartan Host Ltd 2141 | 45.76.232.169,22711,US,Vultr Holdings, LLC 2142 | 47.252.4.59,15023,US,Alibaba Cloud - US 2143 | 47.252.4.59,38181,US,Alibaba Cloud - US 2144 | 47.251.70.15,28648,US,Alibaba Cloud - US 2145 | 47.251.95.178,443,US,Alibaba Cloud - US 2146 | 46.17.107.183,443,US,FIRST SERVER LIMITED 2147 | 47.89.150.45,28626,US,Alibaba Cloud - US 2148 | 47.88.15.127,443,US,Alibaba Cloud - US 2149 | 47.89.136.31,36301,US,Alibaba Cloud - US 2150 | 47.90.140.40,44203,US,Alibaba Cloud - US 2151 | 47.90.220.146,59170,US,Alibaba Cloud - US 2152 | 5.8.63.23,443,US,LLC IksFayvIks 2153 | 5.78.114.254,443,US,Hetzner Online GmbH 2154 | 50.228.203.26,443,US,Comcast Cable Communications, LLC 2155 | 50.19.193.95,443,US,Amazon Data Services Northern Virginia 2156 | 51.81.209.21,8443,US,OVH US LLC 2157 | 51.81.209.21,2053,US,OVH US LLC 2158 | 64.176.210.187,443,US,The Constant Company, LLC 2159 | 54.189.161.131,48850,US,Amazon.com, Inc. 2160 | 54.203.85.46,443,US,Amazon.com, Inc. 2161 | 72.13.122.137,443,US,Total Uptime Technologies LLC 2162 | 67.226.222.2,443,US,Securly, Inc 2163 | 74.121.150.129,8443,US,IT7 Networks Inc 2164 | 74.48.46.35,443,US,MULTACOM CORPORATION 2165 | 91.149.239.64,443,US,BG-NETWORK 2166 | 91.149.239.198,443,US,BG-NETWORK 2167 | 96.126.112.12,38298,US,Linode 2168 | 91.149.239.70,443,US,BG-NETWORK 2169 | 95.169.26.188,38557,US,Cluster Logic Inc 2170 | 74.48.221.141,26255,US,MULTACOM CORPORATION 2171 | 74.48.89.211,443,US,MULTACOM CORPORATION 2172 | 152.32.255.24,587,VN,UCLOUD INFORMATION TECHNOLOGY (HK) LIMITED 2173 | 103.15.90.134,49678,VN,TOTHOST SOLUTIONS AND TECHNOLOGIES COMPANY LIMITED --------------------------------------------------------------------------------