├── LICENSE ├── README.md ├── domains ├── blacklist │ ├── activation.txt │ ├── adservers-and-trackers.txt │ ├── fake-domains.txt │ ├── parking-iranian.txt │ ├── search-blacklist.txt │ └── unwanted-iranian.txt └── whitelist │ ├── duckduckgo.txt │ ├── github.txt │ ├── google.txt │ └── root.txt └── wildcard-domains └── blacklist └── ads-and-trackers.txt /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019-2021 David Refoua 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Additional Undesired Hosts 3 | 4 | [![License](https://img.shields.io/github/license/DRSDavidSoft/additional-hosts?style=flat-square)](https://github.com/DRSDavidSoft/additional-hosts/blob/master/LICENSE) 5 | [![GitHub last commit](https://img.shields.io/github/last-commit/DRSDavidSoft/additional-hosts.svg?style=flat-square)](https://github.com/DRSDavidSoft/additional-hosts/commits/master) 6 | [![GitHub commit activity the past year](https://img.shields.io/github/commit-activity/y/DRSDavidSoft/additional-hosts?style=flat-square)](https://github.com/DRSDavidSoft/additional-hosts/graphs/commit-activity) 7 | [![Github file size](https://img.shields.io/github/repo-size/DRSDavidSoft/additional-hosts?label=total+size&style=flat-square)](github.com/DRSDavidSoft/additional-hosts/hosts/blob/master/hosts) 8 | 9 | ## Introduction 10 | This is a list of categorized domains, with additional entries for wildcard blocking. The domains are documented as to keep a record of what is being blocked or allowed. The primary focus is to maximize blocking unwanted hosts while **guaranteeing** not to break any useful services or legitimate websites. 11 | 12 | Each domain is only added after through research and tests in order to make sure it should be _intentionally blocked_. If you found _any_ domains that shouldn't be on these lists, please feel free to [open an issue](https://github.com/DRSDavidSoft/additional-hosts/issues/new). 13 | 14 | Thanks for reporting issues, and using my lists! ❤️ 15 | 16 | ## Blacklist Domains 17 | | List Title | Description | Download List | 18 | | --------------------------------------- | ------------------------------------------------------------- | --------------------- | 19 | | **Ad and tracker servers** | Blocks advertisement and trackers, and anything inbetween.
Pop Ups, Pop Unders, Gif Banners, Game Ads, Ads CDNs, etc. | [📝 `adservers-and-trackers.txt`](https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt) | 20 | | **Activation servers** | Blocks license verification and software activation.
This list is intended to prevent products from expiring when they detect an invalid license. | [📝 `activation.txt`](https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/activation.txt) | 21 | | **Fake domains** | Blocks copycat, scam and fake domains.
These domains may imitate other well-known websites for various reasons, or promise to provide a functionality that they actually don't do. | [📝 `fake-domains.txt`](https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/fake-domains.txt) | 22 | | **Search blacklist** | Blocks useless, shady and annoying domains from from appearing in search engine results. | [📝 `search-blacklist.txt`](https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/search-blacklist.txt) | 23 | | **Unwanted Iranian domains** | Blocks various regional scams and popups specific to Iranian websites.
e.g. Pop Ups, Fake Download Buttons, Scam Landing Pages, Trackers, etc. | [📝 `unwanted-iranian.txt`](https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/unwanted-iranian.txt) | 24 | 25 | _It is recommended that these lists be used in CNAME, Wildcard blocking mode._ 26 | 27 | **👉 NOTE:** Additional wildcard domains are present in the [📁 `/wildcard-domains/blacklist`](https://github.com/DRSDavidSoft/additional-hosts/tree/master/wildcard-domains/blacklist) directory. 28 | 29 | ## Whitelist Domains 30 | The `whitelist` domains that I use – which are also hand-picked – are being categorized, and _will_ be published under the [📁 `/domains/whitelist`](https://github.com/DRSDavidSoft/additional-hosts/blob/master/domains/whitelist) directory when released. 31 | In the meantime, please contact me if you'd like to receive information about my whitelists. 32 | 33 | ## Format 34 | The lists are provided only in **domains** format at the moment, with the following properties: 35 | 36 | - The `#` or `!` denotes a **comment**, and may come at at the beginning of a line, or after an entry. 37 | - Lines only contain a single hostname. 38 | - The `*` character represents a wild-card (which [**Pi-hole**](https://pi-hole.net/) might _not_ support, but [**DNSCrypt-proxy**](https://dnscrypt.info/) will – which is what I'm using at the moment.) 39 | - All whitespace (including new line, tabs, spaces, etc) should be ignored. 40 | 41 | Other lists can feel free to remove all whitespace and comments from my lists when/if mine are included. 42 | 43 | **👉 NOTE:** If you would like to use my lists as your `/etc/hosts` file, first you would need to convert the domains format to `IPv4` (i.e. `127.0.0.1` or `0.0.0.0`) format. However, since the hosts file does not support wildcard and/or CNAME blocking, I haven't provided this format for download. A conversion is needed (adding the required `0.0.0.0` prefix), before it can be used as a HOSTS file. 44 | 45 | ## Sources 46 | The domain entries on this list are hand-picked, and mainly added by analyzing the traffic generated by the devices I use. I intend to focus on domains related to _both_ websites and mobile apps. This will include the obvious pop-ups and pop-unders, frame-based ads, 3rd party image and video ads, mobile in-app banners -- as well as hidden tracking and other unnecessary bloated spyware that is ususally bundled with common apps that are downloaded, and the websites you visit. 47 | 48 | ## Software 49 | The provided lists are compatible with: 50 | - [** Pi-hole**](https://pi-hole.net/) and/or [** DNScrypt-proxy**](https://simplednscrypt.org/). 51 | - [** Squid**](http://www.squid-cache.org/) proxy ([Windows downloads](http://squid.diladele.com/), [How-to use](http://www.thedumbterminal.co.uk/posts/2005/10/blocking_access_to_sites_when_using_squid.html)) 52 | - [** uBlock Origin**](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and/or [** Adblock Plus**](https://adblockplus.org/download) 53 | - [** AdGuardHome**](https://github.com/AdguardTeam/AdGuardHome#getting-started) 54 | 55 | You can use it on either a server, or using browser extensions, you can filter sites on the client side. 56 | 57 | 🕳 Read **[Olivier Butterbach](https://github.com/obutterbach)**'s excellent post on Medium to set up Pi-hole: 58 | https://medium.com/@obutterbach/unlock-the-full-potential-of-pihole-e795342e0e36 59 | 60 | ## Aggregated lists 61 | The following aggregated lists automatically includes the domains in my lists. You can use the aggregated lists such as: 62 | - **[1Hosts (Pro)](https://github.com/badmojr/1Hosts/tree/master/Pro)** – includes `adservers-and-trackers` and `unwanted-iranian` lists 63 | - **[oisd.nl](https://oisd.nl/?p=dl)** – includes `adservers-and-trackers` and `unwanted-iranian` lists 64 | 65 | I used to use [this](https://github.com/zeffy/dnscrypt-lists/blob/9d776690e901e106ea5707e4c83f73a07ed2470d/script/make_blacklist.py) python script alongside DNScrypt on my VPS instead of running Pi-hole. 66 | 67 | **✍ Note:** You're welcome to use and include my lists in your aggregated lists and redistribute them. Please [tell me](https://github.com/DRSDavidSoft/additional-hosts/issues/new?title=Mention+my+list) if you do so, so I can mention your list here as well. 68 | 69 | ## Sources to use alongside mine 70 | These are some of the other lists that you should _definitely_ be using alongside with mine: 71 | 72 | - [Peter Lowe’s Ad and tracking server list](https://pgl.yoyo.org/adservers/): 73 | `https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext` 74 | - [Dan Pollock’s hosts file](https://someonewhocares.org/hosts/): 75 | `https://someonewhocares.org/hosts/hosts` 76 | - [MVPS HOSTS file](https://winhelp2002.mvps.org/hosts.htm): 77 | `https://winhelp2002.mvps.org/hosts.txt` 78 | - [Steven Black's host file](https://github.com/StevenBlack/hosts): 79 | `https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts` 80 | - [Lightswitch05's Ads and tracking hosts](https://github.com/lightswitch05/hosts): 81 | `https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt` 82 | - [AdAway Hosts](https://github.com/AdAway/AdAway/wiki/HostsSources): 83 | `https://adaway.org/hosts.txt` 84 | - [AdguardDNS](https://adguard-dns.io/en/welcome.html): 85 | `https://v.firebog.net/hosts/AdguardDNS.txt` 86 | - [WaLLy3K's Ads and trackers personal blacklist](https://firebog.net/about): 87 | `https://v.firebog.net/hosts/static/w3kbl.txt` 88 | - [anudeepND's Blacklist](https://github.com/anudeepND/blacklist): 89 | `https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt` 90 | - [EasyList and EasyPrivacy](https://github.com/easylist/easylist): 91 | - `https://v.firebog.net/hosts/Easylist.txt` 92 | - `https://justdomains.github.io/blocklists/lists/easyprivacy-justdomains.txt` 93 | 94 | ## Set-Up / Configuration 95 | I combine my lists with some other lists and generate a final `domains-blacklist.txt` file, that is used on the two servers that I run (one as a redundant). 96 | The source list includes ~1500 links, and resolves to about 80 million records (14 million unique top-level domains). The servers both have **8GBs** of RAM, and for my usecase about ~15% CPU load on average. 97 | 98 | _P.S._ Personally I haven't ran into any major issues blocking this many domains, altough some people consider blocking any amount over >1M domains to be overkill. 99 | 100 | **Here's a diagram of software setup on both of the servers:** 101 | 102 | ``` 103 | ╭────────────────╮ ╭──────────────────╮ 104 | ╔═════════════╗ │ │ │ │ 105 | ║ DoH / DoT ║ │ │ │ │ UDP Tunnel ┌─────────┐ 106 | ║ ║ → │ DNSCrypt-Proxy │ → │ Unbound resolver │ … … … … … … → │ Clients │ 107 | ║ Providers ║ │ │ │ │ └─────────┘ 108 | ╚═════════════╝ │ │ │ │ 109 | ╰────────────────╯ ╰──────────────────╯ 110 | ``` 111 | 112 | The clients can connect over a secure UDP tunnel (e.g. either on Desktop or mobile). 113 | 114 | ## Report domains 115 | If you notice any domains that you believe should be included in my lists, please report it to me [here](issues/new). 116 | 117 | A great deal of care is taken to avoid any type of false positives. However, in the event that you see something legitamate is being blocked, missing content and/or breaking functionality, please report false positives by creating an issue [here](issues/new). 118 | 119 | This could be because the domain names that serve those type of ads could potentially be also used to serve legitimate content, which means blocking them will result in an app or website missing content or losing functionality. 120 | 121 | These lists are personaly used by me, with no side-effects. I have kept the lists short and lightweight, while adding as much as possible to each list. 122 | 123 | ## Updates 124 | In order to get notified of an update, you can mark my repository as "watched". I update this list on a weekly or monthly basis. 125 | 126 | **Subscribe to FilterLists entries**: 127 | - https://filterlists.com/lists/additional-hosts-adservers-and-trackers 128 | - https://filterlists.com/lists/additional-hosts-unwanted-iranian 129 | 130 | ## License 131 | This repository is licensed under MIT License © 2019-2020 David Refoua. All re-distribution of my lists, provided that you credit my name and work, are welcome and encouraged. 132 | -------------------------------------------------------------------------------- /domains/blacklist/activation.txt: -------------------------------------------------------------------------------- 1 | # Adobe 2 | 3dns.adobe.com 3 | 3dns-1.adobe.com 4 | 3dns-2.adobe.com 5 | 3dns-3.adobe.com 6 | 3dns-4.adobe.com 7 | 3dns-5.adobe.com 8 | t3dns.adobe.com 9 | 3dns*.adobe.com 10 | adobe-dns-1.adobe.com 11 | adobe-dns-2.adobe.com 12 | adobe-dns-3.adobe.com 13 | adobe-dns-4.adobe.com 14 | adobe-dns-1.adobe.de 15 | adobe-dns-2.adobe.de 16 | adobe-dns-3.adobe.de 17 | adobe-dns-4.adobe.de 18 | adobe-dns.adobe.de 19 | adobe-dns.adobe.com 20 | adobe.activate.com 21 | adobeereg.com 22 | www.adobeereg.com 23 | ereg.wip.adobe.com 24 | ereg.wip1.adobe.com 25 | ereg.wip2.adobe.com 26 | ereg.wip4.adobe.com 27 | activate.wip.adobe.com 28 | activate.wip1.adobe.com 29 | activate.wip2.adobe.com 30 | activate.wip4.adobe.com 31 | lmlicenses.wip1.adobe.com 32 | lmlicenses.wip2.adobe.com 33 | lmlicenses.wip3.adobe.com 34 | hl2rcv.adobe.com 35 | hlrcv.stage.adobe.com 36 | lm.licenses.adobe.com 37 | lmlicenses.wip4.adobe.com 38 | na1r.services.adobe.com 39 | na2m-pr.licenses.adobe.com 40 | practivate.adobe 41 | practivate.adobe.ipp 42 | practivate.adobe.ntp 43 | tpractivate.adobe.newoa 44 | ood.opsource.net 45 | 209-34-83-73.ood.opsource.net 46 | adobe.tt.omtrdc.net 47 | #wip.adobe.com # The following are disabled as they may interfere 48 | #wip1.adobe.com # when visiting the adobe.com website 49 | #wip2.adobe.com 50 | #wip3.adobe.com 51 | #wip4.adobe.com 52 | activate.adobe.com 53 | practivate.adobe.com 54 | ereg.adobe.com 55 | activate.wip3.adobe.com 56 | ereg.wip3.adobe.com 57 | activate-sea.adobe.com 58 | activate-sea.adobe.de 59 | activate-sjc0.adobe.com 60 | activate-sjc0.adobe.de 61 | activate.adobe.de 62 | activate.wip3.adobe.de 63 | cmdls.adobe.com 64 | #crl.verisign.net 65 | ereg.adobe.de 66 | genuine.adobe.com 67 | hl2rcv.adobe.de 68 | ims-na1-prprod.adobelogin.com 69 | na2m-stg2.licenses.adobe.com 70 | na4r.services.adobe.com 71 | ocsp.spo1.verisign.com 72 | practivate.adobe.de 73 | practivate.adobe.newoa 74 | prod-rel-ffc-ccm.oobesaas.adobe.com 75 | s-2.adobe.com 76 | s-3.adobe.com 77 | tss-geotrust-crl.thawte.com 78 | uds.licenses.adobe.com 79 | 80 | # Adobe wildcard 81 | wwis-dubc1-vip60.adobe.com 82 | wwis-dubc1-vip*.adobe.com 83 | wwis-dubc1-vip*.adobe.de 84 | wwis-dubc1-vip* 85 | practivate.adobe.* 86 | 87 | # Autodesk 88 | autodesk.fi 89 | autodesk.de 90 | autodesk.es 91 | autodesk.ca 92 | autodesk.dk 93 | autodesk.pl 94 | ns1.autodesk.com 95 | ns2.autodesk.com 96 | ns3.autodesk.com 97 | ns4.autodesk.com 98 | ns5.autodesk.com 99 | 126114-app1.autodesk.com 100 | 94175-app1.autodesk.com 101 | 94184-app2.autodesk.com 102 | 96579-lbal1.autodesk.com 103 | acamp.autodesk.com 104 | adeskdi3.autodesk.com 105 | adeskdmzpdc.autodesk.com 106 | adeskgate.autodesk.com 107 | adesknews2.autodesk.com 108 | adeskout.autodesk.com 109 | adsknateur.autodesk.com 110 | amernetlog.autodesk.com 111 | app5.autodesk.com 112 | aprimo-relay1.autodesk.com 113 | aprimo-relay2.autodesk.com 114 | aprimo-relay3.autodesk.com 115 | aprimo-relay4.autodesk.com 116 | autosketch.autodesk.com 117 | blues.autodesk.com 118 | cbuanprd.autodesk.com 119 | cbuanprhcllb.autodesk.com 120 | cbuanqa2lb.autodesk.com 121 | ci3dwsdev-svc.autodesk.com 122 | ci3dwsprd-svc.autodesk.com 123 | ci3dwsstg-svc.autodesk.com 124 | community.autodesk.com 125 | cut.autodesk.com 126 | cvsprd01.autodesk.com 127 | discussion.autodesk.com 128 | eur.autodesk.com 129 | extcidev.autodesk.com 130 | extciqa.autodesk.com 131 | extupg.autodesk.com 132 | ftp-users.autodesk.com 133 | ftp2b.autodesk.com 134 | gisdmzpdc.autodesk.com 135 | hqaribasrf04.autodesk.com 136 | hqmgwww01.autodesk.com 137 | hqmgwww04.autodesk.com 138 | hqmobileweb01.autodesk.com 139 | hqprxsrftrn.autodesk.com 140 | hqpsweb01.autodesk.com 141 | hubdev-svc.autodesk.com 142 | hubprd-svc.autodesk.com 143 | hubstg-svc.autodesk.com 144 | itappprd01-svc.autodesk.com 145 | itappprd02-svc.autodesk.com 146 | its.autodesk.com 147 | jdevextv-new.autodesk.com 148 | jp.autodesk.com 149 | jstgextv-new.autodesk.com 150 | jstgintv-new.autodesk.com 151 | lbsvzw.autodesk.com 152 | lbsvzw1.autodesk.com 153 | lbsvzw2.autodesk.com 154 | library.autodesk.com 155 | liveupdate.autodesk.com 156 | locationservices.autodesk.com 157 | lsctsol04.autodesk.com 158 | mail-relay.autodesk.com 159 | mneprdext-svc.autodesk.com 160 | mut.autodesk.com 161 | nbugma-dmz.autodesk.com 162 | nut.autodesk.com 163 | otw-new.autodesk.com 164 | otwdownloads.autodesk.com 165 | partnercenter.autodesk.com 166 | partnerproducts.autodesk.com 167 | paste.autodesk.com 168 | pedidrq.autodesk.com 169 | pediqrx.autodesk.com 170 | petars1.autodesk.com 171 | petcp11ia-2nat.autodesk.com 172 | petcr12ihsrp2.autodesk.com 173 | phxgciv.autodesk.com 174 | phxgciv_dr.autodesk.com 175 | planix3d.autodesk.com 176 | pointa.autodesk.com 177 | register.autodesk.com 178 | registerallied-pr.autodesk.com 179 | registeronce.autodesk.com 180 | salestraining.autodesk.com 181 | searchnews.autodesk.com 182 | shop.autodesk.com 183 | spamster-bulk.autodesk.com 184 | sswwwp.autodesk.com 185 | trialdownload.autodesk.com 186 | usa.autodesk.com 187 | uspetcr12ie_198.autodesk.com 188 | uspetcr12if.autodesk.com 189 | uspetcr12if_198.autodesk.com 190 | uspetcrs12ia_ib_vlan500_2_hsrp.autodesk.com 191 | uspetcrs12ia_vlan500_2.autodesk.com 192 | uspetcrs12ib_vlan500_2.autodesk.com 193 | uspetne06ia_ib_untrust_dip7.autodesk.com 194 | usrelay.autodesk.com 195 | ussclout1.autodesk.com 196 | vzwlpsrel.autodesk.com 197 | vzwlpstst.autodesk.com 198 | web.autodesk.com 199 | webservices.autodesk.com 200 | wormhole.autodesk.com 201 | www3.autodesk.com 202 | #www.autodesk.com 203 | #autodesk.com 204 | 205 | # ACDSee 206 | acdid.acdsystems.com 207 | 208 | # Acronis 209 | activation.acronis.com 210 | web-api-tih.acronis.com 211 | web-api-tie.acronis.com 212 | web-api-vmp.acronis.com 213 | cloud-rs-us2-acronis.com 214 | cloud-fes-us2-acronis.com 215 | rpc.acronis.com 216 | 217 | # Ashampoo 218 | licenses.ashampoo.com 219 | 220 | # Alcohol 221 | serial.alcohol-soft.com 222 | trial.alcohol-soft.com 223 | 224 | # Avast 225 | ns2.avast.com 226 | pns.avast.com 227 | #avast.com 228 | 229 | # Bandicam 230 | #ssl.bandisoft.com 231 | #cert.bandicam.com 232 | #bandicam.com 233 | 234 | # BartelsMedia ShareMouse 235 | bartelsmedia.com 236 | www.bartelsmedia.com 237 | 238 | # BitSum and Process Lasso 239 | activate.bitsum.com 240 | bitsumactivationserver.com 241 | www.bitsumactivationserver.com 242 | 243 | # BlueSoleil 244 | license.bluesoleil.com 245 | license2.bluesoleil.com 246 | license3.bluesoleil.com 247 | #www.bluesoleil.com 248 | #bluesoleil.com 249 | 250 | # Capture One 251 | activation.phaseone.com 252 | 253 | # Corel 254 | apps.corel.com 255 | product.corel.com 256 | mc.corel.com 257 | origin-mc.corel.com 258 | iws.corel.com 259 | ipm.corel.com 260 | sws.corel.com 261 | dam.corel.com 262 | deploy.akamaitechnologies.com 263 | compute-1.amazonaws.com 264 | dev1.ipm.corel.public.corel.net 265 | 266 | # Connectify Hotspot 267 | activate.connectify.me 268 | updates.connectify.me 269 | d.connectify.me 270 | d1.connectify.me 271 | d2.connectify.me 272 | d3.connectify.me 273 | b.connectify.me 274 | bc.connectify.me 275 | data.connectify.me 276 | news.connectify.me 277 | 278 | # ChrisPC 279 | #chris-pc.com 280 | 281 | # Cyberlink 282 | activation.cyberlink.com 283 | cap.cyberlink.com 284 | 285 | # DAEMON Tools 286 | secure.disc-soft.com 287 | 288 | # CuteFTP 289 | dbregistration.cuteftp.com 290 | 291 | # EaseUS 292 | activation.easeus.com 293 | track.easeus.com 294 | 295 | # Eltima 296 | activate.eltima.com 297 | 298 | # Folder Lock 299 | password-protect-folders.net 300 | 301 | # Deep Freeze 302 | upd.faronicslabs.com 303 | 304 | # HDD Regenerator 305 | dposoft.net 306 | 307 | # HotSpot Shield 308 | #anchorfree.net 309 | #anchorfree.us 310 | #rss2search.com 311 | #delivery.anchorfree.us 312 | techbrowsing.com 313 | box.anchorfree.net 314 | #mefeedia.com 315 | a433.com 316 | #hsselite.com 317 | 318 | # Internet Download Manager 319 | internetdownloadmanager.com 320 | mirror.internetdownloadmanager.com 321 | mirror2.internetdownloadmanager.com 322 | mirror3.internetdownloadmanager.com 323 | registeridm.com 324 | secure.internetdownloadmanager.com 325 | secure.registeridm.com 326 | star.tonec.com 327 | tonec.com 328 | www.internetdownloadmanager.com 329 | www.mirror.internetdownloadmanager.com 330 | www.mirror2.internetdownloadmanager.com 331 | www.mirror3.internetdownloadmanager.com 332 | www.registeridm.com 333 | www.secure.internetdownloadmanager.com 334 | www.tonec.com 335 | 336 | # IObit 337 | asc55.iobit.com 338 | idb.iobit.com 339 | is360.iobit.com 340 | asc.iobit.com 341 | pf.iobit.com 342 | iunins.iobit.com 343 | sd.iobit.com 344 | #iobit.com 345 | 346 | # IsoBuster 347 | isobuster.net 348 | cdrecovery.net 349 | isobuster.com 350 | smart-projects.net 351 | pvh.smart-projects.biz 352 | 353 | # iSkysoft 354 | cbs.iskysoft.com 355 | 356 | # JetBrains IDE 357 | #jetbrains.com 358 | #www.jetbrains.com 359 | #www-weighted.jetbrains.com 360 | #account.jetbrains.com 361 | 362 | # Lumion3D 363 | backup.lumion3d.com 364 | backup.lumion3d.net 365 | license.lumion3d.com 366 | license.lumion3d.net 367 | activate.lumion.net 368 | license.lumiontech.net 369 | 370 | # MacDrive 371 | act2.mediafour.com 372 | 373 | # MalwareBytes 374 | sirius.mwbsys.com 375 | keystone.mwbsys.com 376 | data.service.malwarebytes.org 377 | telemetry.malwarebytes.com 378 | skipittok.com 379 | 380 | # MiniTool Partition Wizard 381 | pas2.partitionwizard.com 382 | pas2.minitool.com 383 | pas2.eofsoft.com 384 | tracking.minitool.com 385 | #partitionwizard.com 386 | #www.partitionwizard.com 387 | 388 | # Newsoftwares USB Block 389 | newsoftwares.net 390 | 391 | # Nikon CaptureNX 392 | sams.nikonimaging.com 393 | 394 | # NCH Software 395 | secure.nch.com.au 396 | 397 | # Piriform 398 | license.piriform.com 399 | secure.piriform.com 400 | ccleaner.com 401 | www.ccleaner.com 402 | 403 | # Red Gate (e.g. .NET Reflector) 404 | licensing.red-gate.com 405 | 406 | # Reallusion 407 | widgetcast.reallusion.com 408 | da.reallusion.com 409 | ctifiles2.reallusion.com 410 | 411 | # Rhinoceros 3D 412 | api.mcneel.com 413 | 414 | # SmartAssembly 415 | sawebservice.red-gate.com 416 | 417 | # Systweak 418 | updateservice1.systweak.com 419 | systemspeedup.systweak.com 420 | #systweak.com 421 | 422 | # Sublime Text 423 | license.sublimehq.com 424 | 425 | # SUPERAntiSpyware 426 | license.superantispyware.com 427 | #superantispyware.com 428 | 429 | # Tableau Desktop 430 | licensing.tableausoftware.com 431 | 432 | # TeamSpeak 433 | accounting.teamspeak.com 434 | backupaccounting.teamspeak.com 435 | ipcheck.teamspeak.com 436 | 437 | # TotalFinder 438 | binaryage-leechgate.herokuapp.com 439 | updates-s3.binaryage.com 440 | 441 | # TechSmith Camtasia Studio 442 | activation.cloud.techsmith.com 443 | oscount.techsmith.com 444 | updater.techsmith.com 445 | camtasiatudi.techsmith.com 446 | tsccloud.cloudapp.net 447 | assets.cloud.techsmith.com 448 | #techsmith.com 449 | 450 | # VideoMakerFX 451 | auth7.videomakerfx.com 452 | 453 | # Wondershare 454 | cbs.wondershare.com 455 | platform.wondershare.com 456 | macplatform.wondershare.com 457 | -------------------------------------------------------------------------------- /domains/blacklist/adservers-and-trackers.txt: -------------------------------------------------------------------------------- 1 | # Google AdWords, AdSense and Analytics 2 | ads.google.com 3 | partner.googleadservices.com 4 | pagead.googlesyndication.com 5 | pagead1.googlesyndication.com 6 | pagead2.googlesyndication.com 7 | pagead3.googlesyndication.com 8 | ade.googlesyndication.com 9 | video-ad-stats.googlesyndication.com 10 | tpc.googlesyndication.com 11 | googlesyndication.com 12 | googleadservices.com 13 | googletagservices.com 14 | google-analytics.com 15 | ssl.google-analytics.com 16 | imageads.googleadservices.com 17 | adservices.google.com 18 | adservice.google.com 19 | adservice.google.com.br 20 | adservice.google.co.uk 21 | adservice.google.it 22 | analytics.google.com 23 | apps5.oingo.com 24 | service.urchin.com 25 | googleadapis.l.google.com 26 | pagead-googlehosted.l.google.com 27 | #googlehosted.l.googleusercontent.com 28 | #redirector.gvt1.com # might break functionality 29 | www.googleadservices.com 30 | www.googletagservices.com 31 | googletagmanager.com 32 | www.googletagmanager.com 33 | app-measurement.com 34 | 35 | # Google DoubleClick Ads 36 | doubleclick.net 37 | ad.doubleclick.net 38 | ad-g.doubleclick.net 39 | ad-ace.doubleclick.net 40 | ad-emea.doubleclick.net 41 | pagead.l.doubleclick.net 42 | pagead46.l.doubleclick.net 43 | adclick.g.doubleclick.net 44 | pubads.g.doubleclick.net 45 | big.g.doubleclick.net 46 | securepubads.g.doubleclick.net 47 | googleads.g.doubleclick.net 48 | googleads4.g.doubleclick.net 49 | cm.g.doubleclick.net 50 | bid.g.doubleclick.net 51 | stats.g.doubleclick.net 52 | partnerad.l.doubleclick.net 53 | 0.fls.doubleclick.net 54 | ad.mo.doubleclick.net 55 | static.doubleclick.net 56 | ebay.doubleclick.net 57 | doubleclick.com 58 | doubleclick.de 59 | doubleclick.ne.jp 60 | doublecklick.net 61 | adclick.g.doublecklick.net 62 | gcdn.2mdn.net 63 | s0.2mdn.net 64 | s1.2mdn.net 65 | m.2mdn.net 66 | twx.2mdn.net 67 | static.2mdn.net 68 | 2mdn.net 69 | s0-2mdn-net.l.google.com 70 | doubleclickbygoogle.com 71 | 72 | # Google AdMob Ads 73 | admob.com 74 | a.admob.com 75 | c.admob.com 76 | p.admob.com 77 | admob.xiaomi.com 78 | api.admob.xiaomi.com 79 | pixel.admobclick.com 80 | tracking.admobsphere.com 81 | media.admob.com 82 | analytics.admob.com 83 | admob.com.akadns.net 84 | admob.biz 85 | admob.co.kr 86 | admob.co.nz 87 | admob.co.uk 88 | admob.de 89 | admob.dk 90 | admob.es 91 | admob.fi 92 | admob.fr 93 | admob.gr 94 | admob.it 95 | admob.jp 96 | admob.kr 97 | admob.mobi 98 | admob.no 99 | admob.pt 100 | admob.sg 101 | admob.tk 102 | admob.tw 103 | admob.vn 104 | www.admob.com.akadns.net 105 | admob-creative.googleusercontent.com 106 | 107 | # YouTube Ads 108 | ads.youtube.com 109 | 110 | # Alexa Metrics 111 | certify-js.alexametrics.com 112 | 113 | # Apple's iAd 114 | iadsdk.apple.com 115 | 116 | # Apple Metrics 117 | metrics.apple.com 118 | metrics.icloud.com 119 | 120 | # Admedo: Self-serve advertising platform (based in London, UK) 121 | admedo.com 122 | l.admedo.com 123 | pj.l.admedo.com 124 | 125 | # Adversal: Self-serve native advertising (based in Indiana, US) 126 | adversal.com 127 | go.adversal.com 128 | go2.adversal.com 129 | go3.adversal.com 130 | 131 | # AdWhirl (formerly Adrollo): iOS Mobile Ad Aggregator (part of AdMob, based in California, US) 132 | adwhirl.com 133 | met.adwhirl.com 134 | mob.adwhirl.com 135 | 136 | # AdColony: Mobile advertising and monetization (based in Los Angeles, California) 137 | adcolony.com 138 | wd.adcolony.com 139 | adc3-launch.adcolony.com 140 | 141 | # Admitad: Affiliate ads network (based in Baden-Wurttemberg, Germany) 142 | admitad.com 143 | 144 | # Adjust Mobile Tracking (based in Berlin, Germany) 145 | adjust.com 146 | atom.adjust.com 147 | events.adjust.com 148 | ulink.adjust.com 149 | view.adjust.com 150 | #app.adjust.com # might break functionality 151 | 152 | # Affle: Mobile marketing platform (based in India) 153 | affle.com 154 | 155 | # BODIS: Domain Monetization (based in Tampa, Florida) 156 | bodis.com 157 | ns1.bodis.com 158 | ns2.bodis.com 159 | 160 | # Braze, Inc. (formerly AppBoy Inc. 2011-2017, based in New York City) 161 | appboy.com 162 | dev.appboy.com 163 | iad.appboy.com 164 | venitia.iad.appboy.com 165 | braze.com 166 | www.braze.com 167 | 168 | # AppNext: App marketing, mobile monetization (based in Israel, part of Affle group) 169 | global.appnext.com 170 | cdn.appnext.com 171 | appnext.com 172 | 173 | # AppNexus Ads (part of AT&T's Xandr, based in New York, US) 174 | a.adk2x.com 175 | adk2x.com 176 | adnxs.com 177 | adplexmedia.adk2x.com 178 | ams1-ib.adnxs.com 179 | lax1-ib.adnxs.com 180 | ib.adnxs.com 181 | m.adnxs.com 182 | adnexus.net 183 | cdn.adnxs.com 184 | vcdn.adnxs.com 185 | secure.adnxs.com 186 | secure-sin.adnxs.com 187 | acdn.adnxs.com 188 | 189 | # Appodeal: Mobile apps monetization 190 | appodeal.com 191 | 192 | # Applift: Ads and Analytics (based in San Francisco, California, US) 193 | applift.com 194 | 195 | # AppLovin: Mobile marketing platform (based in Palo Alto, California, US) 196 | vid.applovin.com 197 | pdn.applovin.com 198 | assets.applovin.com 199 | img.applovin.com 200 | a.applovin.com 201 | a.applvn.com 202 | d.applovin.com 203 | d.applvn.com 204 | rt.applovin.com 205 | rt.applvn.com 206 | applovin.com 207 | applvn.com 208 | 209 | # SafeDK (part of AppLovin) 210 | safedk.com 211 | config.safedk.com 212 | 213 | # SnapChat analytics 214 | app-analytics-v2.snapchat.com 215 | 216 | # Supersonic: Game Ads (based in South Africa) 217 | supersonicads.com 218 | supersonicads-a.akamaihd.net 219 | init.supersonicads.com 220 | 221 | # SwiftKey Telemetry 222 | telemetry.api.swiftkey.com 223 | 224 | # Vungle (merged with Liftoff): Mobile advertising and App monetization (part of Blackstone Group) 225 | vungle.com 226 | api.vungle.com 227 | ads.api.vungle.com 228 | 229 | # Amplitude: Analaytics for web and mobile products (based in San Francisco, California, US) 230 | api.amplitude.com 231 | 232 | # AOL Advertising 233 | ads.aol.co.uk 234 | ads.web.aol.com 235 | advertising.aol.com 236 | adserver.aol.fr 237 | 238 | # AdsWizz, Inc.: Audio Ads (part of Sirius XM, based in US) 239 | adswizz.com 240 | delivery-cdn-cf.adswizz.com 241 | 242 | # AdLeads, Ltd. (based in Hull, UK) 243 | adleads.com 244 | 245 | # AdRoll: Digital marketing (based in San Francisco, California, US) 246 | adroll.com 247 | s.adroll.com 248 | 249 | # AdScore detection 250 | adsco.re 251 | c.adsco.re 252 | 253 | # Adyen Payments 254 | #live.adyen.com # This wil break Alipay payments 255 | 256 | # Batmobi Ads: Ad SDK/Digital Marketing [Malware] (based in Guangzhou, China) 257 | batmobi.net 258 | batmobil.net 259 | www.batmobil.net 260 | api2.batmobil.net 261 | api5.batmobil.net 262 | www.batmobi.net 263 | api2.batmobi.net 264 | api5.batmobi.net 265 | sts.batmobi.net 266 | 267 | # BitComet 268 | inside.bitcomet.com 269 | 270 | # Wunderkind: Analytics (formerly Bounce Exchange, Inc) 271 | bounceexchange.com 272 | core.bounceexchange.com 273 | wunderkind.co 274 | 275 | # Carbon Ads: Advertising network (part of BuySellAds, based in Seattle, Washington, US) 276 | carbonads.net 277 | srv.carbonads.net 278 | 279 | # Calldorado: User Engagement SDK (based in London, UK) 280 | calldorado.com 281 | euw1.calldorado.com 282 | stats.calldorado.com 283 | 284 | # Celtra: Media Advertising (based in Boston, US) 285 | cdn.celtra.com 286 | ads.celtra.com 287 | cache.celtra.com 288 | cache-ssl.celtra.com 289 | track.celtra.com 290 | 291 | # Chartboost: Mobile ads and promotions (based in Barcelona and Beijing) 292 | chartboost.com 293 | live.chartboost.com 294 | 295 | # Comscore, Inc: Analytics and Marketing (based in Reston, Virginia, US) 296 | comscore.com 297 | comscore.net 298 | comscore.org 299 | comscoredatagems.com 300 | comscoredatamine.com 301 | comscoredirect.net 302 | comscorenetworks.net 303 | mycomscore.net 304 | mycomscore.com 305 | 306 | # Crashlytics: Crash reporting tool, owned by Google (previously Twitter) 307 | crashlytics.163.com 308 | crashlytics.com 309 | crashlytics.twimg.com 310 | e.crashlytics.com 311 | reports.crashlytics.com 312 | settings.crashlytics.com 313 | 314 | # Sentry: App Monitoring and Crash Reporting 315 | sentry.io 316 | 317 | # Epom Ad Server (based in Kiev, Ukraine) 318 | epom.com 319 | apps.epom.com 320 | 321 | # TrafficJunky Advertising (MG Freesites Ltd.) 322 | trafficjunky.com 323 | trafficjunky.net 324 | media.trafficjunky.net 325 | ads.trafficjunky.net 326 | 327 | # EroAdvertising 328 | ero-advertising.com 329 | adspaces.ero-advertising.com 330 | www.ero-advertising.com 331 | 332 | # ExoClick and ExoServe (part of EXOGROUP, Benjamin Fonzé) 333 | ads.exoclick.com 334 | ads.exosrv.com 335 | syndication.exosrv.com 336 | a.realsrv.com 337 | static.realsrv.com 338 | exoclick.com 339 | exosrv.com 340 | realsrv.com 341 | 342 | # ExoticAds: Advertising Network (based in Irvine, California, US) 343 | cdn.exoticads.com 344 | exoticads.com 345 | 346 | # Fastclick: Digital marketing (part of Conversant, based in California, US) 347 | cdn.fastclick.net 348 | code.fastclick.net 349 | images.fastclick.net 350 | media.fastclick.net 351 | secure.fastclick.net 352 | sp.fastclick.net 353 | sync.fastclick.net 354 | fastclick.net 355 | 356 | # FireAds: Affiliate Network 357 | fireads.org 358 | 359 | # Foxpush: Push Notifications 360 | foxpush.net 361 | js.foxpush.com 362 | 363 | # DeviantART Ads 364 | adcast.deviantart.com 365 | adimg.deviantart.net 366 | da-ads.com 367 | dapxl.com 368 | 369 | # Disqus Ads 370 | disqusads.com 371 | 372 | # Drawbridge Ads 373 | adsymptotic.com 374 | c.adsymptotic.com 375 | mf.adsymptotic.com 376 | ads-west.colo.adsymptotic.com 377 | ads-west-colo.adsymptotic.com 378 | ads-east-aws.adsymptotic.com 379 | ads-east.colo.adsymptotic.com 380 | 381 | # GeoTrust cert revocation server 382 | #gtssl2-ocsp.geotrust.com 383 | 384 | # GoAdServer 385 | goadserver.com 386 | www.goadserver.com 387 | goasrv.com 388 | go.goasrv.com 389 | 390 | # Integral Ad Science 391 | anycast.pixel.adsafeprotected.com 392 | dt.adsafeprotected.com 393 | fw.adsafeprotected.com 394 | 395 | # Intercom Ads 396 | #intercom.io 397 | 398 | # Kantar Operations Adware: Data collection (based in London, UK) 399 | core.insightexpressai.com 400 | secure.insightexpressai.com 401 | 402 | # Leadbolt: Mobile advertising platform (based in Sydney, Australia) 403 | leadbolt.com 404 | 405 | # Leanlab: Tracking (based in Aberdeen, UK) 406 | track.leanlab.co 407 | 408 | # LinkedIn Ads 409 | ads.linkedin.com 410 | dc.ads.linkedin.com 411 | px.ads.linkedin.com 412 | 413 | # Localytics: Mobile app analytics and marketing platform 414 | localytics.com 415 | analytics.localytics.com 416 | 417 | # Parsely Tracking 418 | cdn.parsely.com 419 | parsely.com 420 | parse.ly 421 | 422 | # PropellerAds: Mobile and self-service display ads (part of AdTech) 423 | propellerads.com 424 | native.propellerads.com 425 | tracking.propellerads.com 426 | ad.propellerads.com 427 | adp.propellerads.com 428 | 429 | # PopAds 430 | popads.media 431 | 432 | # Pub Network 433 | a.pub.network 434 | pub.network 435 | 436 | # PubMatic Ads 437 | pubmatic.com 438 | aud.pubmatic.com 439 | ads.pubmatic.com 440 | gads.pubmatic.com 441 | image2.pubmatic.com 442 | aktrack.pubmatic.com 443 | showads33000.pubmatic.com 444 | bid.pubmatic.com 445 | 446 | # Mojiva Ads (part of PubMatic now) 447 | mojiva.com 448 | ads.mojiva.com 449 | 450 | # mOcean (formerly Mojiva) 451 | mocean.mobi 452 | 453 | # Pandora Ads 454 | ad.pandora.tv 455 | ads.pandora.tv.net 456 | stats.pandora.com 457 | 458 | # Tumblr 459 | px.srvcs.tumblr.com 460 | 461 | # VoiceFive 462 | voicefive.com 463 | ar.voicefive.com 464 | sb.voicefive.com 465 | 466 | # WordPress Pixel 467 | pixel.wp.com 468 | 469 | # Media Whiz Marketing 470 | thewhizmarketing.com 471 | tvhero.thewhizmarketing.com 472 | seen-on-screen.thewhizmarketing.com 473 | 474 | # Yandex Analytics and Marketing 475 | mc.yandex.ru 476 | an.yandex.ru 477 | rosenberg.appmetrica.yandex.net 478 | appmetrica.yandex.net 479 | #pixel.yabidos.com 480 | #avatars.mds.yandex.net 481 | ads.yandex.com 482 | 483 | # Yadro Tracking 484 | counter.yadro.ru 485 | yadro.ru 486 | 487 | # Yahoo Ads 488 | ads.yimg.com 489 | ads.yahoo.com 490 | ads.yap.yahoo.com 491 | adserver.yahoo.com 492 | global.adserver.yahoo.com 493 | na.ads.yahoo.com 494 | #gemini.yahoo.com 495 | admanager.yahoo.com 496 | 497 | # Yahoo Tracking 498 | analytics.query.yahoo.com 499 | 500 | # Yahoo's AdFlurry 501 | ads.flurry.com 502 | data.flurry.com 503 | media-router-flurry7.prod.media.wg1.b.yahoo.com 504 | 505 | # Yahoo's Mydas 506 | mydas.mobi 507 | cvt.mydas.mobi 508 | lp.mydas.mobi 509 | suo.lp.mydas.mobi 510 | aio.lp.mydas.mobi 511 | ads.mp.mydas.mobi 512 | golds.lp.mydas.mobi 513 | lp.mp.mydas.mobi 514 | media.mydas.mobi 515 | 516 | # InMobi Ads (based in Bangalore, India) 517 | config.inmobi.com 518 | telemetry.sdk.inmobi.com 519 | r.edge.inmobicdn.net 520 | cf.cdn.inmobi.com 521 | i.w.inmobi.com 522 | r.w.inmobi.com 523 | c.w.inmobi.com 524 | w.inmobi.com 525 | ma.inmobi.com 526 | ifc.inmobi.com 527 | china.inmobi.com 528 | japan.inmobi.com 529 | adtracker.inmobi.com 530 | js.inmobi-jp.com 531 | inmobi.com 532 | 533 | # RayJump: Advertising and data collection platform (based in China, part of Mobvista) 534 | rayjump.com 535 | net.rayjump.com 536 | d1om9znyumzhxf.cloudfront.net 537 | 538 | # ReviveAds: AdBlock Prevention ("ad-reinsertion") 539 | reviveads.com 540 | 541 | # RedGIFs Telemetry 542 | metrics.redgifs.com 543 | 544 | # SoundCloud Telemetry 545 | telemetry.soundcloud.com 546 | 547 | # Spotify Ads, Tracking and Analytics 548 | ads.spotify.com 549 | adstudio.spotify.com 550 | adstudio-help.spotify.com 551 | adlog.spotify.com 552 | adlab.spotify.com 553 | ad-proxy.spotify.com 554 | ffcampaign.spotify.com 555 | ads-fa.cdn.spotify.com 556 | ads-sp-ash.cdn.spotify.com 557 | ads-sp-sto.cdn.spotify.com 558 | ads-fa.spotify.com 559 | ads-akp.spotify.com 560 | ads-br.spotify.com 561 | ads-ca.spotify.com 562 | ads-jp.spotify.com 563 | ads-pt.spotify.com 564 | ads-us.spotify.com 565 | adeventtracker.spotify.com 566 | analytics.spotify.com 567 | # ap.gslb.spotify.com # This is a CNAME for ap.spotify.com 568 | www.audio2.spotify.com 569 | audio2.spotify.com 570 | audio-ak.cdn.spotify.com 571 | audio-ec.spotify.com 572 | audio-ak.spotify.com 573 | audio-akp.spotify.com 574 | audio-akp-quic-control-spotify-com.akamaized.net 575 | audio-cf.spotify.com 576 | #audio-fa.spotify.com 577 | audio-fab.spotify.com 578 | audio-fac.spotify.com 579 | audio-fac-spotify.com 580 | audio-gc.scdn.co 581 | audio-gc.spotify.com 582 | heads-ec.spotify.com 583 | heads-ak.spotify.com 584 | heads-akp.spotify.com 585 | heads-cf.spotify.com 586 | heads-fa.scdn.co 587 | heads-fa.spotify.com 588 | heads-fab.spotify.com 589 | heads-fac.spotify.com 590 | heads-ecp.spotify.com 591 | heads-ecb.spotify.com 592 | heads-ak.spotify.com.edgesuite.net 593 | heads-akp.spotify.com.edgesuite.net 594 | heads-ak-spotify-com.akamaized.net 595 | heads-akp-spotify-com.akamaized.net 596 | heads4-ak.spotify.com.edgesuite.net 597 | heads4-akp.spotify.com.edgesuite.net 598 | heads4-ak-spotify-com.akamaized.net 599 | heads4-akp-spotify-com.akamaized.net 600 | audio-akp-bbr-spotify-com.akamaized.net 601 | video-akp-cdn-spotify-com.akamaized.net 602 | ash-dealer.spotify.com 603 | ash-jumphost-a1.ash.spotify.com 604 | ash-jumphost-a1.ash1.spotify.com 605 | ash-spclient.spotify.com 606 | ash1-apresolve-a2.ash.spotify.com 607 | ash1-apresolve-a2.ash1.spotify.com 608 | ash1-apresolve-a3.ash.spotify.com 609 | ash1-apresolve-a3.ash1.spotify.com 610 | leopolda.lon2.spotify.com 611 | malena.lon2.spotify.com 612 | zaira.lon2.spotify.com 613 | valerie.lon2.spotify.com 614 | viridis.lon2.spotify.com 615 | zayit.lon2.spotify.com 616 | linsey.lon2.spotify.com 617 | #sto3.spotify.com 618 | crashdump.spotify.com 619 | crashdump.ciqe-gslb.spotify.com 620 | log.spotify.com 621 | log2.spotify.com 622 | bug.spotify.com 623 | pixel-static.spotify.com 624 | pixel.spotify.com 625 | links.spotify.com 626 | desktop.spotify.com 627 | upgrade.spotify.com 628 | surveys.spotify.com 629 | promo.spotify.com 630 | promo-001.lon.spotify.com 631 | ads-sp-lon.cdn.spotify.com 632 | pay-testing.spotify.com 633 | video-ak.cdn.spotify.com 634 | er.spo.spotify.com 635 | video-fa.scdn.co 636 | video-fa.cdn.spotify.com 637 | video-fa-b.cdn.spotify.com 638 | upsell.scdn.co 639 | upgrade.scdn.com 640 | upgrade.scdn.co 641 | u.scdn.co 642 | spotify-desktop.com 643 | www.spotify-desktop.com 644 | mp3ad.scdn.co 645 | partner-service.spotify.com 646 | partner-service-testing.spotify.com 647 | payment-callback.spotify.com 648 | pci.spotify.com 649 | event.spotxchange.com 650 | search.spotxchange.com 651 | sync.search.spotxchange.com 652 | spotxchange.com 653 | spotx.tv 654 | www.spotx.tv 655 | assets.spotify.com 656 | 657 | # Spotify etc. 658 | #audio-ak-spotify-com.akamaized.net 659 | #audio-akp-spotify-com.akamaized.net 660 | #audio-ak.spotify.com.eip.akadns.net 661 | #audio4-akp.spotify.com.edgesuite.net 662 | #audio4-ak.spotify.com.edgesuite.net 663 | #audio-akp.spotify.com.edgesuite.net 664 | #audio-ak.spotify.com.edgesuite.net 665 | #audio-ake.spotify.com.edgesuite.net 666 | #eip-onnet.audio-ak.spotify.com.akahost.net 667 | #eip-tata.audio-ak.spotify.com.akahost.net 668 | #eip-ntt.audio-ak.spotify.com.akahost.net 669 | 670 | # The following lines are known to interfere with some parts of Spotify 671 | #open.spotify.com 672 | #open.scdn.co 673 | #spclient.wg.spotify.com # Required for the Desktop apps to work, should not entirely be blocked 674 | #audio-fa.scdn.co 675 | #audio-sp-lon.spotify.com 676 | #audio-sp-sto.spotify.com 677 | #audio-sp.spotify.com 678 | #audio-sp-sin2.spotify.com 679 | #weblb-wg.gslb.spotify.com # Required for the Android/iOS and Store apps to function 680 | #weblb-wg.dual-gslb.spotify.com 681 | #dealer.spotify.com 682 | #dealer-ssl.spotify.com 683 | #apresolve.spotify.com 684 | #api-spotify.com 685 | #api-partner.spotify.com 686 | #api-tv.spotify.com 687 | #exp.wg.spotify.com 688 | #labs.spotify.com 689 | #play.spotify.com 690 | #seektables.scdn.co 691 | #i.scdn.co # Spotify Images 692 | #o.scdn.co 693 | #p.scdn.co 694 | #t.scdn.co 695 | 696 | # The following URL pattern should entirely be blocked: 697 | # regex:^https?://spclient\.wg\.spotify\.com/(.+\/)?(ads|ad-logic)/.*$ 698 | # However, the `spclient.wg.spotify.com` domain should remain whitelisted 699 | 700 | # TikTok Ads 701 | api.bytegle.tech 702 | 703 | # Urban Airship (i.e. data protected) 704 | combine.urbanairship.com 705 | 706 | # UserLeap Product & User Research Software 707 | userleap.com 708 | api.userleap.com 709 | 710 | # Unity Ads 711 | config.unityads.unity3d.com 712 | unityads.unity3d.com 713 | 714 | # Microsoft Ads 715 | msads.net 716 | msecn.net 717 | cds26.ams9.msecn.net 718 | #msecnd.net # The following lines are known to 719 | #*.vo.msecnd.net # interfere with some useful products (e.g. VS Code) 720 | a.ads2.msads.net 721 | b.ads2.msads.net 722 | h1.msn.com 723 | ac3.msn.com 724 | ads1.msn.com 725 | ads2.msads.net 726 | ad.msn.com 727 | rad.msn.com 728 | flex.msn.com 729 | #g.live.com # The following lines are known to 730 | #g.msn.com # interfere with some useful products (e.g. OneDrive Downloads) 731 | c.msn.com 732 | 0.r.msn.com 733 | ads.eu.msn.com 734 | adsyndication.msn.com 735 | live.rads.msn.com 736 | mobileads.msn.com 737 | microsoftadvertising.com 738 | ads.microsoft.com 739 | bingads.microsoft.com 740 | #apps.skype.com # might interfere with Skype Home 741 | 742 | # Microsoft Tracking 743 | pipe.aria.microsoft.com 744 | vortex.data.microsoft.com 745 | events.data.microsoft.com 746 | telemetry.microsoft.com 747 | #graph.microsoft.com 748 | 749 | # Facebook Ads 750 | atdmt.com 751 | ec.atdmt.com 752 | cdn.atdmt.com 753 | ad.atdmt.com 754 | c.atdmt.com 755 | aidps.atdmt.com 756 | db3aqu.atdmt.com 757 | 758 | # Facebook Tracking, WhatsApp Telemetry 759 | graph.instagram.com 760 | dit.whatsapp.net 761 | web.facebook.com 762 | #graph.facebook.com # breaks some Facebook functionality 763 | graph.oculus.com 764 | graph.facebook-hardware.com 765 | 766 | # Amazon Ads 767 | amazon-adsystem.com 768 | s.amazon-adsystem.com 769 | c.amazon-adsystem.com 770 | aax.amazon-adsystem.com 771 | aax-us-west.amazon-adsystem.com 772 | mads.amazon.com 773 | 774 | # Amazon/Alexa Tracking 775 | certify.alexametrics.com 776 | certify-js.alexametrics.com 777 | 778 | # Hosted by Amazon CloudFront 779 | d26zuh3orto56v.cloudfront.net 780 | d2bgg7rjywcwsy.cloudfront.net 781 | d2gi7ultltnc2u.cloudfront.net 782 | d2qv82yc3u9tc7.cloudfront.net 783 | d34zjr0p5kjx3b.cloudfront.net 784 | d361oi6ppvq2ym.cloudfront.net 785 | d3anogn3pbtk4v.cloudfront.net 786 | d3iz6lralvg77g.cloudfront.net 787 | d3oltyb66oj2v8.cloudfront.net 788 | d3oxtn1x3b8d7i.cloudfront.net 789 | d3rt1990lpmkn.cloudfront.net 790 | d3rt199lpmkn.cloudfront.net 791 | dc5ig2fc8lg83.cloudfront.net 792 | dj1d6o6ftflzi.cloudfront.net 793 | 794 | # Longtail Ad Solutions (also used in JW Player) 795 | #content.bitsontherun.com # might break functionality 796 | #content.jwplatform.com # might break functionality 797 | v.jwpcdn.com 798 | 799 | # Media Innovation Group (no longer operational) 800 | eu-gmtdmp.gd1.mookie1.com 801 | t.mookie1.com 802 | 803 | # Media Match 804 | media-match.com 805 | 806 | # My Visual IQ 807 | myvisualiq.net 808 | t.myvisualiq.net 809 | vt.myvisualiq.net 810 | 811 | # Omaze 812 | omaze.com 813 | www.omaze.com 814 | 815 | # OMG Inc. 816 | ads.cdn.live 817 | 818 | # QuantCast Advertising 819 | quantcast.mgr.consensu.org 820 | quantcast.com 821 | 822 | # QuantServe Tracking 823 | pixel.quantserve.com 824 | secure.quantserve.com 825 | 826 | # Taboola Ads 827 | cdn.taboola.com 828 | 829 | # Tapad 830 | swappit.tapad.com 831 | adsrv1.tapad.com 832 | campaign-tapad.s3.amazonaws.com 833 | 834 | # Tapjoy: Mobile advertising 835 | tapjoy.com 836 | rpc.tapjoy.com 837 | connect.tapjoy.com 838 | tapjoyads.com 839 | ws.tapjoyads.com 840 | 841 | # TapResearch: App monetization 842 | tapresearch.com 843 | 844 | # Tune (formerly MobileAppTracking) 845 | tune.com 846 | www.tune.com 847 | 848 | # MdotM Ads 849 | mdotm.com 850 | ads.mdotm.com 851 | cdn.mdotm.com 852 | 853 | # Mixpanel Analytics 854 | api.mixpanel.com 855 | decide.mixpanel.com 856 | mixpanel.com 857 | switchboard.mixpanel.com 858 | www.mixpanel.com 859 | 860 | # Moat (by Oracle): Ads and Analytics (measurement and marketing analytics) 861 | moatads.com 862 | js.moatads.com 863 | moat.pxl.ace.advertising.com 864 | moatads.com.edgekey.net 865 | s.moatpixel.com 866 | z.moatads.com 867 | yt.moatads.com 868 | yts.moatads.com 869 | wildcard.moatads.com.edgekey.net 870 | moatpixel.com 871 | 872 | # Mobclix (based in Palo Alto, CA, US): Mobile ad exchange network 873 | s.mobclix.com 874 | ads.mobclix.com 875 | data.mobclix.com 876 | 877 | # MoPub (part of AppLovin): In-app monetization, Ad serving for mobile apps 878 | mopub.com 879 | ads.mopub.com 880 | 881 | # Twitter 882 | syndication.twitter.com 883 | 884 | # Scorecard Research (i.e. ComScore): Web analytics and tracking company 885 | scorecardresearch.com 886 | b.scorecardresearch.com 887 | sb.scorecardresearch.com 888 | udm.scorecardresearch.com 889 | 890 | # Smaato: Mobile Advertising (based in San Francisco, California, US) 891 | soma.smaato.net 892 | c29new.smaato.net 893 | smaato.net 894 | 895 | # Sizmek (partof adtech): Amazon Ads (based in Austin, Texas, US) 896 | bs.serving-sys.com 897 | ds.serving-sys.com 898 | msntest.serving-sys.com 899 | secure-bs.serving-sys.com 900 | secure-ds.serving-sys.com 901 | #conn.skype.commsntest.serving-sys.com 902 | 903 | # Velti: Mobile Marketing (based in Dublin, Ireland) 904 | ru.velti.com 905 | mwc.velti.com 906 | atti.velti.com 907 | 908 | # Vserv: Mobile Advertising (based in Mumbai, India) 909 | vserv.mobi 910 | a.vserv.mobi 911 | c.vserv.mobi 912 | sf.vserv.mobi 913 | ads.vserv.mobi 914 | admin.vserv.mobi 915 | 916 | # Hotjar: Website Heatmaps & Behavior Analytics Tools 917 | hotjar.com 918 | 919 | # JetSwap, Inc. (based in London, and Russian Federation) 920 | jetswap.com 921 | go.jetswap.com 922 | main.jetswap.com 923 | 924 | # JuicyAds, Inc. (based in Saskatchewan, Canada): Banner Ads, Native Advertising, and PopUnders 925 | www.juicyads.com 926 | js.juicyads.com 927 | adserver.juicyads.com 928 | juicyads.com 929 | jads.co 930 | poweredby.jads.co 931 | 932 | # Jumptap LLC (based in Federal Street Boston) 933 | jumptap.com 934 | a.jumptap.com 935 | i.jumptap.com 936 | bo.jumptap.com 937 | 938 | # Medialytics: Video analytics 939 | medialytics.com 940 | a.medialytics.com 941 | c.medialytics.com 942 | p.medialytics.com 943 | t.medialytics.com 944 | u.medialytics.com 945 | cp.medialytics.com 946 | tag.medialytics.com 947 | cdn.creative.medialytics.com 948 | px.cdn.creative.medialytics.com 949 | 950 | # .app/ads: Ad management platform for mobile application developers (located in US) 951 | appads.com 952 | cdn.appads.com 953 | jupiter.appads.com 954 | neptune.appads.com 955 | saturn.appads.com 956 | req.appads.com 957 | 958 | # AdBlockChoices 959 | adblockchoices.org 960 | 961 | # AppBrain: Mobile advertising, monetization and analytics (part of AppTornado GmbH, based in Zürich, Switzerland) 962 | appbrain.com 963 | 964 | # Ad Infuse: Mobile targeted advertising and marketing (based in US) 965 | adinfuse.com 966 | go.adinfuse.com 967 | ad1.adinfuse.com 968 | ad2.adinfuse.com 969 | sky.adinfuse.com 970 | sky-connect.adinfuse.com 971 | uk-go.adinfuse.com 972 | uk-ad2.adinfuse.com 973 | orangeuk-mc.adinfuse.com 974 | orange-fr.adinfuse.com 975 | intouch.adinfuse.com 976 | funnel0.adinfuse.com 977 | 978 | # AdMarvel: Mobile advertising platform (based in San Mateo, California, US) 979 | admarvel.com 980 | ads.admarvel.com 981 | admarvel.s3.amazonaws.com 982 | #static.admarvel.top 983 | a.admarvel.top 984 | admarvel.top 985 | 986 | # Adform: Global digital media advertising (based in Copenhagen, Denmark) 987 | adform.com 988 | adform.net 989 | track.adform.net 990 | a2.adform.net 991 | 992 | # Adfonic Ltd.: Mobile advertising (formerly byyd, based in London, UK) 993 | adfonic.net 994 | as.adfonic.net 995 | 996 | # AdTiming: Mobile marketing and ad-based revenue (based in Singapore) 997 | adtiming.com 998 | sdk.adtiming.com 999 | 1000 | # Smart Adserver (based in Paris, France) 1001 | smartadserver.com 1002 | 1003 | # Flashtalking: Ad server (part of Mediaocean, based in London, UK) 1004 | flashtalking.com 1005 | secure.flashtalking.com 1006 | 1007 | # Fyber: Mobile apps monetization platform (part of Digital Turbine, Inc) 1008 | digitalturbine.com 1009 | fyber.com 1010 | 1011 | # Oath ad:tech, owned by Verizon Media (formerly AOL AdTech, based in Frankfurt, Germany) 1012 | adtechus.com 1013 | adserver.adtechus.com 1014 | aka-cnd-ns.adtechus.com 1015 | aka-cdn.adtech.de 1016 | aka-cdn-ns.adtech.de 1017 | adserverams.adtech.de 1018 | adserver.adtech.de 1019 | ad.dc2.adtech.de 1020 | secserv.adtech.de 1021 | ums.adtech.de 1022 | a.adtech.de 1023 | adserver-as.adtech.advertising.com 1024 | adserver-us.adtech.advertising.com 1025 | adserver-eu.adtech.advertising.com 1026 | hb-us.adtech.advertising.com 1027 | hb-as.adtech.advertising.com 1028 | 1029 | # AdapTV (now ONE by AOL's adap.tv) 1030 | cdn.adaptv.advertising.com 1031 | sync.adaptv.advertising.com 1032 | conversions.adaptv.advertising.com 1033 | log.adaptv.advertising.com 1034 | log-wc-b.adaptv.advertising.com 1035 | optout3.adaptv.advertising.com 1036 | segments.adaptv.advertising.com 1037 | video.adaptv.advertising.com 1038 | video-stage.adaptv.advertising.com 1039 | post.update.wtag.adaptv.advertising.com 1040 | s.update.wtag.adaptv.advertising.com 1041 | ads.adaptv.advertising.com 1042 | ads-ap.adaptv.advertising.com 1043 | ads-eu.adaptv.advertising.com 1044 | ads-direct-wc.adaptv.advertising.com 1045 | ads-ec.adaptv.advertising.com 1046 | ads-test.adaptv.advertising.com 1047 | ads-wc.adaptv.advertising.com 1048 | 1049 | # Xandr, Inc: AT&T's Advertising and Analytics 1050 | xandr.com 1051 | 1052 | # Verizon Media, ONE by AOL (Oath, Inc.) 1053 | advertising.com 1054 | 1055 | # Forter: Fraud Prevention 1056 | 078d9f6a6dc1.cdn4.forter.com 1057 | 1058 | # Greystripe: Mobile advertising platform/network (based in US) 1059 | greystripe.com 1060 | adsx.greystripe.com 1061 | ads2.greystripe.com 1062 | c.greystripe.com 1063 | 1064 | # Tradedoubler AB: Digital marketing, Global affiliate marketing (based in Stockholm, Sweden) 1065 | clk.tradedoubler.com 1066 | tradedoubler.com 1067 | 1068 | # Traffic Factory: Advertising Network (based in Prague, Czech Republic) 1069 | trafficfactory.com 1070 | trafficfactory.biz 1071 | 1072 | # Mobvista Co., Ltd: Mobile advertising and analytics (based in Guangzhou, China) 1073 | mobvista.com 1074 | 1075 | # NativeX (formerly W3i, part of Mobvista): Mobile advertising and marketing (based in US) 1076 | nativex.com 1077 | w3i.com 1078 | click.w3i.com 1079 | api.w3i.com 1080 | 1081 | # Nimbus Ads: Mobile advertising (based in New York City) 1082 | adsbynimbus.com 1083 | 1084 | # Vdopia, Inc: Mobile Video Ads (based in San Jose, California, US) 1085 | serve.vdopia.com 1086 | cdn.vdopia.com 1087 | 1088 | # Zynga Inc. Games Ads (based in US) 1089 | zynga.com 1090 | ads.zynga.com 1091 | r.ads.zynga.com 1092 | zynga2-a.akamaihd.net 1093 | 1094 | # Alibaba/Taobao Statistics and Analytics (based in Hangzhou, Zhejiang, China) 1095 | mmstat.com 1096 | px.effirst.com 1097 | 1098 | # List of more ads 1099 | bestcontentnetwork.top 1100 | i.bestcontentnetwork.top 1101 | a.bestcontentnetwork.top 1102 | smpop.icfcdn.com 1103 | etahub.com 1104 | clksite.com 1105 | sync.rhythmxchange.com 1106 | m.goadservices.com 1107 | ut.performax.cz 1108 | cdn.bncloudfl.com 1109 | 1110 | # Malware domains related to browser extensions 1111 | # such as NanoDefender and The Great Suspender 1112 | # being sold out 1113 | static.trckpath.com 1114 | static.trckingbyte.com 1115 | cdn.owebanalytics.com 1116 | def.dev-nano.com 1117 | 1118 | # Other ads/tracking/malware 1119 | wpu.sh 1120 | cst.wpu.sh 1121 | appliedsemantics.com 1122 | tracking.tidalhifi.com 1123 | bigmobileads.com 1124 | 54646.co 1125 | ads.bizhut.com 1126 | api.zwizzarmyknife.com 1127 | tags.bkrtx.com 1128 | idsync-ext.rlcdn.com 1129 | iad-usadmm.dotomi.com 1130 | logger.zcoup.com 1131 | api.zcoup.com 1132 | zcoup.com 1133 | survey-smiles.com 1134 | secure.nch.com.au 1135 | tsyndicate.com 1136 | -------------------------------------------------------------------------------- /domains/blacklist/fake-domains.txt: -------------------------------------------------------------------------------- 1 | # FitGirl repacks: the official domain is fitgirl-repacks.site 2 | fitgirlrepacks.co 3 | fitgirl-repacks.cc 4 | fitgirl-repack.com 5 | fitgirl-repacks.website 6 | fitgirl-repacks.xyz 7 | fitgirl-repack.net 8 | fitgirlrepack.site 9 | 10 | # Fake (scam) crack/pirated domains 11 | workingkeys.org 12 | crackedlink.com 13 | trycracksetup.com 14 | macsoftdownload.com 15 | crackvip.com 16 | allactivationkey.com 17 | crackedroot.com 18 | procrackerz.org 19 | 24cracked.com 20 | onhax.io 21 | 22 | # Fake (scam) download domains 23 | tracksfree.com 24 | 25 | # Fake (scam) leech domains 26 | hotdebrid.com 27 | debridhub.com 28 | anydebrid.com 29 | debridleech.com 30 | sixsave.com 31 | 32 | # Fake (scam) general survey/offer domains 33 | imei-tracker.com 34 | 35 | # Fake emulation domains (Watch: youtu.be/yIMseCc9tZY?t=78, youtu.be/k3ocqJ6_Nqw, See: redd.it/55dmvl) 36 | pcsx4.com 37 | esxemulator.com 38 | 39 | # uBlock fake domain (uBlock Origin is completely unrelated to the sites listed below) 40 | ublock.org 41 | ublockerext.com 42 | 43 | # Etcher counterfeit domains (See: forums.balena.io/t/counterfeit-etcher-websites/274606) 44 | etcher.net 45 | etcher.download 46 | ethceer.com 47 | balena-etcher-io.com 48 | 49 | # MagiskManager (See: xda-developers.com/psa-magiskmanager-com-not-official-website-magisk) 50 | magiskmanager.com 51 | 52 | # R2R Fake Download site 53 | r2rdownload.com 54 | -------------------------------------------------------------------------------- /domains/blacklist/parking-iranian.txt: -------------------------------------------------------------------------------- 1 | # List of Useless/Annoying Iranian Parking Domains 2 | rond.ir 3 | rondpark.com 4 | domainpark.mrdomain.ir 5 | domainsara.ir 6 | seo.get-pack.ir 7 | 1122.ir 8 | dbdomain.ir 9 | selvapark.ir 10 | selva.ir 11 | xir.ir 12 | backorder1.xir.ir 13 | backorder2.xir.ir 14 | regno.ir 15 | sedoparking.com 16 | irandomainparking.com 17 | -------------------------------------------------------------------------------- /domains/blacklist/search-blacklist.txt: -------------------------------------------------------------------------------- 1 | softonic.com 2 | download.cnet.com 3 | informer.com 4 | cutestat.com 5 | siteindices.com 6 | softoware.org 7 | uptodown.com 8 | gitmemory.com 9 | partitionwizard.com 10 | easeus.com 11 | wondershare.com 12 | appuals.com 13 | itechguides.com 14 | allthings.how 15 | pcasta.com 16 | thegeekpage.com 17 | 10scopes.com 18 | -------------------------------------------------------------------------------- /domains/blacklist/unwanted-iranian.txt: -------------------------------------------------------------------------------- 1 | ## 2 | ## Popup, Banners and Advertisment Providers 3 | ## 4 | 5 | alipopup.ir 6 | freepop.ir 7 | hitpop.ir 8 | ipopup.ir 9 | kingpopup.com 10 | poprush.net 11 | popup.smusic.ir 12 | popupads.ir 13 | popupearn.com 14 | popupsky.ir 15 | popuptala.com 16 | starpopup.com 17 | popfa.ir 18 | counter.popupplus.ir 19 | popupplus.ir 20 | popupaval.com 21 | popupaval.ir 22 | popupme.net 23 | poparya.com 24 | popgozar.com 25 | popuper.com 26 | toppopup.com 27 | irpopup.ir 28 | talapop.ir 29 | kaprila.com 30 | beta.kaprila.com 31 | cdn.kaprila.com 32 | adro.ir 33 | adro.co 34 | ip.adro.co 35 | affstat.adro.co 36 | static-cdn.adro.co 37 | popkade.ir 38 | xpop.ir 39 | adclicki.ir 40 | admd.ir 41 | advn.ir 42 | yektanet.com 43 | cdn.yektanet.com 44 | yektnet.com 45 | cdn.yektnet.com 46 | yektanet.net 47 | audience.yektanet.com 48 | bfetch.yektanet.com 49 | ck.yektanet.com 50 | media.yektanet.com 51 | mostatil.cdn.yektanet.com 52 | mostatil.yektanet.com 53 | native.yektanet.com 54 | nfetch.yektanet.com 55 | nfetch.yektanet.net 56 | prod.yektanet.com 57 | push.yektanet.com 58 | rfetch.yektanet.com 59 | rfetch.yektanet.net 60 | scrapper.yektanet.com 61 | ua.yektanet.com 62 | sabavision.com 63 | deema.agency 64 | moat.com 65 | anetwork.ir 66 | ad.anetwork.ir 67 | footprint.anetwork.ir 68 | static-cdn.anetwork.ir 69 | clickyab.com 70 | a.clickyab.com 71 | l.clickyab.com 72 | c.clickyab.com 73 | app.clickyab.com 74 | ad.cafebazaar.ir 75 | adad.ir 76 | s.adad.ir 77 | adserver.adad.ir 78 | adment.me 79 | adment.space 80 | adnegah.ir 81 | adnegah.net 82 | native.adnegah.net 83 | s.adnegah.net 84 | adtube.ir 85 | ad.adtube.ir 86 | rtb.adtube.ir 87 | clickaval.com 88 | utop.ir 89 | ad.utop.ir 90 | paypop.org 91 | popbox.skinak.ir 92 | popmaster.ir 93 | popupha.com 94 | zarpop.ir 95 | zarpop.com 96 | yekpop.com 97 | weclick.ir 98 | e.weclick.ir 99 | fastclick.ir 100 | fastclick.click 101 | fastclick.co 102 | ssads.net 103 | sigmaad.com 104 | mediaad.org 105 | api.mediaad.org 106 | box.mediaad.org 107 | mediacdn.mediaad.org 108 | s1.mediaad.org 109 | s2.mediaad.org 110 | p30rank.ir 111 | congoro.com 112 | widget.congoro.com 113 | netbina.net 114 | netbina.com 115 | irblue.ml 116 | irgreen.ml 117 | irjo.ga 118 | iranjo.cf 119 | cloudir.cf 120 | cloudirs.cf 121 | adziran.gq 122 | redlini.ga 123 | redliini.ga 124 | orgiin.gq 125 | t3l.ir 126 | te1.ir 127 | popina.ir 128 | popgozar.ir 129 | pazelpop.com 130 | maxpopup.ir 131 | ppop.ir 132 | poppop.ir 133 | popup94.ir 134 | popuptools.com 135 | paypopup.ir 136 | clickirani.net 137 | popnama.ir 138 | popland.ir 139 | popland.info 140 | khobads.com 141 | mrwork.ir 142 | homerank.ir 143 | lordpopup.com 144 | as-popup.ir 145 | nextpopup.ir 146 | popupirani.ir 147 | facepop.org 148 | popupseo.ir 149 | tapsell.ir 150 | api.tapsell.ir 151 | click.tapsell.ir 152 | play.tapsell.ir 153 | backtory.tapsell.ir 154 | 1000click.ir 155 | 1100011.ir 156 | coding.1100011.ir 157 | ad.nowaroos.com 158 | ads.asr24.com 159 | ads.sahandar.com 160 | irandigitalads.com 161 | backority.ir 162 | ads.rzb.ir 163 | banner.dabi.ir 164 | circle.sezarco.ir 165 | core.clix.ir 166 | static.clix.ir 167 | clix.ir 168 | dariconline.ir 169 | iranweb.click 170 | magnetadservices.com 171 | kimexa.com 172 | widgets.takhfifan.com 173 | cashback.takhfifan.com 174 | vatanclick.ir 175 | ssl.vatanclick.ir 176 | wideads.com 177 | ad2ad.ir 178 | adcash.com 179 | adpersia.com 180 | adplxmd.com 181 | adpulse.ir 182 | adsgozar.com 183 | adsima.net 184 | adskyo.com 185 | adsready.com 186 | adziran.ml 187 | clickfa.ir 188 | clickfa.com 189 | clickbar.ir 190 | nextads.ir 191 | onclickads.net 192 | iranwebads.com 193 | irbazdid.com 194 | irclick.net 195 | mitrarank.ir 196 | persianrank.ir 197 | parsirank.com 198 | iprank.ir 199 | ipsell.ir 200 | onestarclick.ir 201 | tabligheirani.com 202 | #static.farakav.com # should not be blocked 203 | #static2.farakav.com # should not be blocked 204 | ads.farakav.com 205 | #cdn.tabnak.ir # should not be blocked 206 | adserver.netshahr.com 207 | adivery.com 208 | cdn.adivery.com 209 | tavoos.net 210 | phoenixad.io 211 | hiperad.com 212 | landyab.com 213 | merita.ir 214 | impressions.ir 215 | api.sanjagh.com 216 | sanjagh.com 217 | sanjagh.net 218 | appsharj.com 219 | api.appsharj.com 220 | ad-push.ir 221 | adplaces.ir 222 | androidads.ir 223 | ads.4ml.ir 224 | ads.aranesh.ir 225 | balootads.ir 226 | notificationclick.ir 227 | ads.baadesaba.ir 228 | ads.boozar.ir 229 | ads.lll5.ir 230 | ads.rade.ir 231 | ads2.tweetna.ir 232 | advert.setno.ir 233 | bannerclick.lll1.ir 234 | cdn.iranweb.click 235 | click.baburnadir.com 236 | #rzb.ir # should not be blocked 237 | #khf.nz # should not be blocked 238 | 239 | 240 | ## 241 | ## Pop-bux/PTC (i.e. Pay-to-click) Websites 242 | ## 243 | clickbux.ir 244 | setarebux.ir 245 | startbux.ir 246 | yekbux.com 247 | 21bux.ir 248 | ariyabux.ir 249 | azarbux.com 250 | baharbux.ir 251 | daramadbux.ir 252 | davedbux.ir 253 | betbux.ir 254 | bux1.ir 255 | buxi.ir 256 | buxirani.com 257 | buxstar.ir 258 | farsbux.ir 259 | jetbux.ir 260 | payabux.com 261 | zibux.ir 262 | vbux.ir 263 | tmbux.ir 264 | tidabux.ir 265 | talabux.ir 266 | rtrbux.ir 267 | ptcbux.ir 268 | paradisebux.com 269 | nemobux.ir 270 | mahanbux.ir 271 | herobux.com 272 | greenbux.ir 273 | gobux.ir 274 | futurebux.ir 275 | flashbux.ir 276 | fambux.ir 277 | daybux.ir 278 | click-bux.ir 279 | buxnet.ir 280 | buxiranzamin.com 281 | bux521.ir 282 | bux14.org 283 | bux14.net 284 | bmbux.ir 285 | bizbux.ir 286 | atrinbux.ir 287 | adsptcbux.ir 288 | iranbux.joojerangi.com 289 | richbux.ir 290 | ojbux.ir 291 | advertisebux.ir 292 | didarbux.com 293 | greenbux.org 294 | p30bux.ir 295 | bux.arshaclick.ir 296 | netbux.ir 297 | webbux.ir 298 | nimanavidclix.com 299 | iranclix.ir 300 | fineptc.com 301 | buxbery.com 302 | 1200dollarptc.com 303 | partclick.ir 304 | ptcstair.com 305 | spellads.com 306 | iroclick.ir 307 | lifeclick.ir 308 | mihanclick.info 309 | payza.click 310 | ptc.click 311 | ptc.cusimple.com 312 | picoclix.com 313 | paypc.ir 314 | clixsense.ir 315 | bia2click.ir 316 | 1tak-click.ir 317 | lightclick.ir 318 | 10click.ir 319 | silverclick.org 320 | n1click.ir 321 | aftabclix.com 322 | nbclick.ir 323 | adparsa.com 324 | 325 | 326 | ## 327 | ## Scam/Spam Websites (e.g. Fake Download Buttons and Other Misleading Content) 328 | ## 329 | 330 | app2ads.com 331 | ads2i.com 332 | cgnik.com 333 | srvland.ir 334 | ads4c.com 335 | cg.yourcube.ir 336 | landhub.ir 337 | lans.100second.com 338 | features.jametalaie.com 339 | jayezeh.iranviva.com 340 | clan.setare-bash.com 341 | digitalmarketingcampaignlanding.com 342 | landings.goosheh-mob.ir 343 | landings.simayeaval.com 344 | landing.dasyaar.com 345 | landings.namanetapp.com 346 | landings.kavosh-app.com 347 | landing.hesabehamrah.com 348 | landing.homeescreen.com 349 | landings.namaa3.com 350 | landings.shomareshmakoos.com 351 | landing.symaart.com 352 | landings.matbakh-app.com 353 | newlanding.boomrang-app.ir 354 | newlanding.ostaadbozorg.com 355 | rezabook.rozblog.com 356 | ghor-e-keshi.com 357 | gifttori.com 358 | gifttory.com 359 | hediehapp.com 360 | hillaro.com 361 | icnlandings.ir 362 | kashteh.intwo.ir 363 | lan.vitamin-p.ir 364 | lan.tackleapp.ir 365 | lan2.100second.com 366 | landing.popupme.net 367 | landing.rahyabpg.co.ir 368 | landing.raman.tel 369 | landinget.com 370 | landings.resanet.ir 371 | lans.ekarestoon.com 372 | lans.jahan-namaa.ir 373 | lans.setare-bash.com 374 | landings.frekaans.ir 375 | landings.negatiiv.com 376 | landings.rabonaapp.com 377 | landings.ravitel.com 378 | landings.resaanet.com 379 | landings.serviceaval.com 380 | landings.telecup.com 381 | landsys.mydigibazi.com 382 | lan2.danesh-mand.ir 383 | landings.sarnakh-mob.ir 384 | landings.service3.ir 385 | landings.hashiiyeh.com 386 | landing.100.marketing 387 | landing.myserverdev.ir 388 | newlanding.eyemaan.com 389 | story-app.landiiing.ir 390 | clipdooneh.landiiing.ir 391 | landiiing.ir 392 | pay.avastart.ir 393 | payastars.co 394 | payment.kanape.ir 395 | blurbazi.drapp.ir 396 | mcisportland.aparat.com 397 | megalandings.com 398 | hediyehlanding.ir 399 | plus.sabketo.com 400 | onlinepluss.com 401 | landfg.com 402 | mahsaann.com 403 | panel.mahson.net 404 | landin.ir 405 | 406 | 407 | ## 408 | ## Analytics/Statistics and other Trackers 409 | ## 410 | 411 | histats.com 412 | amarfa.ir 413 | webgozar.com 414 | webgozar.ir 415 | r.hitplus.ir 416 | s.hitplus.ir 417 | c3.gostats.ir 418 | gostats.ir 419 | monster.gostats.ir 420 | radar.bayan.ir 421 | persianstat.com 422 | persianstat.ir 423 | ammaar.cafebazaar.ir 424 | actionlog.divar.ir 425 | analytics.metrix.ir 426 | trc.metrix.ir 427 | metrix.ir 428 | app.adtrace.io 429 | adtrace.io 430 | cheshmak.me 431 | sdk.cheshmak.me 432 | networksara.com 433 | analytics.tapsi.cab 434 | 435 | 436 | ## 437 | ## Email Marketing & Advertising Companies 438 | ## 439 | advering.com 440 | email-iran.com 441 | zagrox.com 442 | 443 | 444 | ## 445 | ## Dead/Zombie Websites 446 | ## 447 | 448 | qoo.sh 449 | randewoo.ir 450 | hackerz.ir 451 | nutnet.ir 452 | up.video-learn.net 453 | mesearch.xyz 454 | terraclicks.com 455 | goldads.info 456 | masbian.com 457 | 458 | 459 | ## 460 | ## Fringe/Scam Websites 461 | ## 462 | 463 | # Possible APT 35 relation 464 | jomehjob.com 465 | shirazicom.com 466 | optima-hr.com 467 | vipjobsglobal.com 468 | topiranjobs.me 469 | salamjobs.me 470 | damkahill.com 471 | azadijobs.me 472 | bilal1com.com 473 | radabala.com 474 | dream-jobs.org 475 | dream-jobs.vip 476 | trnjobs.me 477 | wazayif-halima.org 478 | wazayif-halima.com 479 | damavand-hr.me 480 | golanjobs.me 481 | 482 | 483 | ## 484 | ## Personal Blacklist 485 | ## 486 | 487 | # reason unknown (yet) 488 | #vista.ir 489 | #wikiforosh.ir 490 | #uploado.xyz 491 | 492 | # reason: unsafe domain; known to have been compromised in the past 493 | laleh.itrc.ac.ir 494 | 495 | # reason: website involved in excessive/scamming ads 496 | yasell.biz 497 | 498 | # reason: excessive advertisment; scamming game 499 | # zula.ir 500 | 501 | # push notifications & email marketing 502 | najva.com 503 | 504 | # reason: unwanted iranian advertisement; unwanted redirect 505 | peyvandha.ir 506 | -------------------------------------------------------------------------------- /domains/whitelist/duckduckgo.txt: -------------------------------------------------------------------------------- 1 | ## DuckDuckGo domains 2 | 3 | duckduckgo.com 4 | www.duckduckgo.com 5 | external-content.duckduckgo.com 6 | icons.duckduckgo.com 7 | ddg.gg -------------------------------------------------------------------------------- /domains/whitelist/github.txt: -------------------------------------------------------------------------------- 1 | ## GitHub domains 2 | 3 | github.dev 4 | github.com 5 | github.io 6 | alive.github.com 7 | live.github.com 8 | avatars.githubusercontent.com 9 | avatars0.githubusercontent.com 10 | avatars1.githubusercontent.com 11 | avatars2.githubusercontent.com 12 | avatars3.githubusercontent.com 13 | github.map.fastly.net 14 | githubusercontent.com 15 | raw.githubusercontent.com -------------------------------------------------------------------------------- /domains/whitelist/google.txt: -------------------------------------------------------------------------------- 1 | ## 2 | ## Google domains 3 | ## 4 | 5 | # "ggpht" (Google Photos) 6 | ggpht.com 7 | 8 | # Google APIs 9 | googleapis.com 10 | www.googleapis.com 11 | 12 | # Google User Content 13 | googleusercontent.com 14 | 15 | # Google Fonts 16 | fonts.gstatic.com 17 | fonts.google.com 18 | 19 | # Google Maps – developers.google.com/maps/gmp-domains 20 | geo0.ggpht.com 21 | geo1.ggpht.com 22 | geo2.ggpht.com 23 | geo3.ggpht.com 24 | maps.gstatic.com 25 | maps.google.com 26 | maps.googleapis.com 27 | 28 | # Google Maps Aerial tiles 29 | khmdb0.google.com 30 | khmdb0.googleapis.com 31 | khmdb1.google.com 32 | khmdb1.googleapis.com 33 | 34 | # Google Earth Satellite tiles 35 | khm.google.com 36 | khm.googleapis.com 37 | khm0.google.com 38 | khm0.googleapis.com 39 | khm1.google.com 40 | khm1.googleapis.com 41 | khms0.google.com 42 | khms0.googleapis.com 43 | khms1.google.com 44 | khms1.googleapis.com 45 | khms2.google.com 46 | khms2.googleapis.com 47 | khms3.google.com 48 | khms3.googleapis.com 49 | 50 | # YouTube 51 | yt3.ggpht.com 52 | youtube.com 53 | i.ytimg.com -------------------------------------------------------------------------------- /domains/whitelist/root.txt: -------------------------------------------------------------------------------- 1 | in-addr.arpa 2 | a.root-servers.net 3 | invalid 4 | lan 5 | local 6 | localdomain 7 | localhost 8 | ip6-localhost 9 | 0.0.0.0 10 | 127.0.0.1 11 | a.gtld-servers.net 12 | b.gtld-servers.net 13 | c.gtld-servers.net 14 | d.gtld-servers.net 15 | e.gtld-servers.net 16 | f.gtld-servers.net 17 | g.gtld-servers.net 18 | h.gtld-servers.net 19 | i.gtld-servers.net 20 | j.gtld-servers.net 21 | k.gtld-servers.net 22 | l.gtld-servers.net 23 | m.gtld-servers.net 24 | gtld-servers.net 25 | example.com 26 | www.example.com 27 | example.net 28 | www.example.net 29 | example.org 30 | www.example.org -------------------------------------------------------------------------------- /wildcard-domains/blacklist/ads-and-trackers.txt: -------------------------------------------------------------------------------- 1 | # Google AdWords, AdSense and Analytics 2 | pagead*.googlesyndication.com 3 | imageads*.googleadservices.com 4 | adservice.google.* 5 | 6 | # Google DoubleClick Ads 7 | doubleclick.* 8 | 9 | # Google AdMob Ads 10 | admob.* 11 | 12 | # Crashlytics 13 | settings-crashlytics-* 14 | 15 | # Spotify's ads and tracking 16 | ads-*.spotify.com 17 | pixel*.spotify.com 18 | 19 | # mOcean/Mojiva/PubMatic 20 | #.ads*.mojiva.com 21 | #img.ads*.mojiva.com 22 | #img.ads*.mocean.mobi 23 | 24 | # Unity Ads 25 | unityads.* 26 | 27 | # AppAds 28 | jupiter*.appads.com 29 | neptune*.appads.com 30 | saturn*.appads.com 31 | req*.appads.com 32 | 33 | # Braze (Appboy) 34 | sdk.iad-*.braze.com 35 | --------------------------------------------------------------------------------