├── LICENSE └── domains ├── alexa ├── apple ├── huawei ├── roku ├── samsung ├── sonos ├── windows └── xiaomi /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 NextDNS 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /domains/alexa: -------------------------------------------------------------------------------- 1 | data.alexa.com 2 | 3 | device-metrics-us.amazon.com 4 | device-metrics-us-2.amazon.com 5 | -------------------------------------------------------------------------------- /domains/apple: -------------------------------------------------------------------------------- 1 | acfeedbackws.icloud.com 2 | api-adservices.apple.com 3 | books-analytics-events.apple.com 4 | books-analytics-events.news.apple-dns.net 5 | dzc-metrics.mzstatic.com 6 | feedbackws.icloud.com 7 | iadsdk.apple.com 8 | metrics.apple.com 9 | metrics.icloud.com 10 | metrics.mzstatic.com 11 | notes-analytics-events.apple.com 12 | notes-analytics-events.news.apple-dns.net 13 | securemetrics.apple.com 14 | securemvt.apple.com 15 | stocks-analytics-events.apple.com 16 | stocks-analytics-events.news.apple-dns.net 17 | supportmetrics.apple.com 18 | weather-analytics-events.apple.com 19 | weather-analytics-events.news.apple-dns.net 20 | -------------------------------------------------------------------------------- /domains/huawei: -------------------------------------------------------------------------------- 1 | datacollector-dra.dt.dbankcloud.cn 2 | datacollector-dra.dt.hicloud.com 3 | datacollector-drcn.dt.dbankcloud.cn 4 | datacollector-drcn.dt.hicloud.com 5 | datacollector-dre.dt.dbankcloud.cn 6 | datacollector-dre.dt.hicloud.com 7 | datacollector-drru.dt.dbankcloud.ru 8 | datacollector-drru.dt.hicloud.com 9 | 10 | grs.dbankcloud.asia 11 | grs.dbankcloud.cn 12 | grs.dbankcloud.com 13 | grs.dbankcloud.eu 14 | grs.hicloud.com 15 | grs.platform.dbankcloud.ru 16 | 17 | metrics-dra.dt.dbankcloud.cn 18 | metrics-dra.dt.hicloud.com 19 | metrics-drcn.dt.hicloud.com 20 | metrics-dre.data.dbankcloud.cn 21 | metrics-dre.dt.dbankcloud.cn 22 | metrics.data.hicloud.com 23 | metrics.dt.dbankcloud.cn 24 | metrics.dt.hicloud.com 25 | metrics1-drcn.dt.dbankcloud.cn 26 | metrics1.data.dbankcloud.cn 27 | metrics1.data.hicloud.com 28 | metrics2.data.hicloud.com 29 | metrics3.data.hicloud.com 30 | metrics4.data.hicloud.com 31 | metrics5.data.hicloud.com 32 | metrics5.dt.dbankcloud.ru 33 | metrics6.dt.hicloud.com 34 | 35 | logservice-dra.platform.hicloud.com 36 | logservice-dre.platform.dbankcloud.cn 37 | logservice-dre.platform.hicloud.com 38 | logservice-drru.dt.hicloud.com 39 | logservice.hicloud.com 40 | logservice1.hicloud.com 41 | -------------------------------------------------------------------------------- /domains/roku: -------------------------------------------------------------------------------- 1 | logs.roku.com 2 | -------------------------------------------------------------------------------- /domains/samsung: -------------------------------------------------------------------------------- 1 | nmetrics.samsung.com 2 | insights.samsung.com 3 | analytics.samsungknox.com 4 | bigdata.ssp.samsung.com 5 | -------------------------------------------------------------------------------- /domains/sonos: -------------------------------------------------------------------------------- 1 | msmetrics.ws.sonos.com 2 | msmetrics-test.ws.sonos.com 3 | -------------------------------------------------------------------------------- /domains/windows: -------------------------------------------------------------------------------- 1 | # Connected User Experiences and Telemetry 2 | vortex-win.data.microsoft.com 3 | vortex.data.microsoft.com 4 | vortex.data.microsoft.com.akadns.net 5 | vortex-sandbox.data.microsoft.com 6 | 7 | # Unclassified 8 | telemetry.microsoft.com 9 | telemetry.urs.microsoft.com 10 | choice.microsoft.com 11 | redir.metaservices.microsoft.com 12 | settings-sandbox.data.microsoft.com 13 | settings-win.data.microsoft.com 14 | telemetry.appex.bing.net 15 | watson.live.com 16 | watson.microsoft.com 17 | feedback.search.microsoft.com 18 | feedback.windows.com 19 | corp.sts.microsoft.com 20 | diagnostics.support.microsoft.com 21 | i1.services.social.microsoft.com 22 | cache.datamart.windows.com 23 | diagnostics.support.microsoft.com 24 | spynet2.microsoft.com 25 | spynetalt.microsoft.com 26 | 27 | # Office Telemetry 28 | onecollector.cloudapp.aria.akadns.net 29 | prod.nexusrules.live.com.akadns.net 30 | -------------------------------------------------------------------------------- /domains/xiaomi: -------------------------------------------------------------------------------- 1 | sa.api.intl.miui.com 2 | 3 | data.mistat.xiaomi.com 4 | data.mistat.intl.xiaomi.com 5 | data.mistat.india.xiaomi.com 6 | data.mistat.rus.xiaomi.com 7 | 8 | tracking.miui.com 9 | tracking.intl.miui.com 10 | tracking.india.miui.com 11 | tracking.rus.miui.com 12 | --------------------------------------------------------------------------------