mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-16 20:41:12 +00:00
initial
This commit is contained in:
commit
3dfe0b3ad8
109
README.md
Normal file
109
README.md
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
# Self-hosted Cookbook
|
||||||
|
|
||||||
|
If you're like me and love not only to self-host, but to constantly test new apps, you probably already discovered `docker-compose` as the fastest and easiest way towards that goal.
|
||||||
|
There is, however, one problem: not all image authors are as great as [linuxserver.io](https://hub.docker.com/u/linuxserver), whose docs are as simple as they should be: you just copy & paste `docker-compose.yml` and run `docker-compose up -d` and IT JUST WORKS!
|
||||||
|
This is how all images should be documented!
|
||||||
|
But unfortunately, it isn't!<br>
|
||||||
|
Sometimes you have to spend a lot of time to make it work.<br>
|
||||||
|
Hence - this repo.<br>
|
||||||
|
The aims is to provide a ready-to-run recipes that you can just copy, paste and run.<br>
|
||||||
|
So, without further ado, here's the current list:
|
||||||
|
|
||||||
|
# Ad Blockers & local DNS
|
||||||
|
- [AdGuard Home](apps/ad-blockers/adguard-home.md)
|
||||||
|
- [PiHole](apps/ad-blockers/pihole.md)
|
||||||
|
- [Block Lists](apps/ad-blockers/block-lists.md)
|
||||||
|
|
||||||
|
# Bookmarks
|
||||||
|
- Shaarli
|
||||||
|
- Shiori
|
||||||
|
- Shaark
|
||||||
|
|
||||||
|
# Cloud
|
||||||
|
- FileRun
|
||||||
|
- NextCloud
|
||||||
|
- Pydio
|
||||||
|
- Seafile
|
||||||
|
|
||||||
|
# Dashboard
|
||||||
|
- DashMachine
|
||||||
|
- Homer
|
||||||
|
- SUI
|
||||||
|
|
||||||
|
# Docker Managers
|
||||||
|
- Diun
|
||||||
|
- WatchTower
|
||||||
|
|
||||||
|
# Download Managers
|
||||||
|
- Deluge
|
||||||
|
- qbittorrent
|
||||||
|
- Transmission
|
||||||
|
|
||||||
|
# E-mail
|
||||||
|
- Clients (webmail)
|
||||||
|
- Servers
|
||||||
|
- Hosted e-mail providers
|
||||||
|
- SMTP Relays
|
||||||
|
- Anonymous emails
|
||||||
|
- Tools
|
||||||
|
|
||||||
|
# Home Automation
|
||||||
|
- HomeAssistant
|
||||||
|
|
||||||
|
# Media Managers
|
||||||
|
- Calibre (e-books)
|
||||||
|
- Deemix
|
||||||
|
- Komga (comics)
|
||||||
|
- Navidrome
|
||||||
|
- Readerr (ebooks & comics)
|
||||||
|
- Sonarr (tv shows)
|
||||||
|
- Radarr (movies)
|
||||||
|
- Bazaar (subtitles)
|
||||||
|
- Jackett (search engine proxy/adapter)
|
||||||
|
- Tautulli
|
||||||
|
- Youtube downloader
|
||||||
|
|
||||||
|
# Monitors
|
||||||
|
- Cachet
|
||||||
|
- Dockprom
|
||||||
|
- Statping
|
||||||
|
|
||||||
|
# Notifications
|
||||||
|
- Pushover
|
||||||
|
- Synology-notifications
|
||||||
|
- Synology-sms-relay
|
||||||
|
|
||||||
|
# Photos
|
||||||
|
- PhotoPrism
|
||||||
|
- PhotoView
|
||||||
|
- Piwigo
|
||||||
|
- Pixelfed
|
||||||
|
|
||||||
|
# Project Management
|
||||||
|
- Jira
|
||||||
|
- Kanboard
|
||||||
|
- OpenProject
|
||||||
|
- Planka
|
||||||
|
- Vikunja
|
||||||
|
- Wekan
|
||||||
|
|
||||||
|
# Reverse proxy & SSO
|
||||||
|
- Authelia
|
||||||
|
- Traefik
|
||||||
|
|
||||||
|
# RSS
|
||||||
|
- Miniflux (rss)
|
||||||
|
|
||||||
|
# Search engines
|
||||||
|
- Searx
|
||||||
|
- Whoogle search
|
||||||
|
|
||||||
|
# Social
|
||||||
|
- Monica CRM
|
||||||
|
- Etesync
|
||||||
|
- HumHub
|
||||||
|
- IM
|
||||||
|
|
||||||
|
# Wiki
|
||||||
|
- Confluence
|
||||||
|
- Wiki.js
|
100
apps/ad-blockers/adguard-home.md
Normal file
100
apps/ad-blockers/adguard-home.md
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
# Adguard Home
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
- [Homepage](https://adguard.com/en/adguard-home/overview.html)
|
||||||
|
- [Overview blog post](https://adguard.com/en/blog/in-depth-review-adguard-home.html)
|
||||||
|
- [Github](https://github.com/AdguardTeam/AdguardHome)
|
||||||
|
- [DockerHub](https://hub.docker.com/r/adguard/adguardhome)
|
||||||
|
|
||||||
|
## `docker-compose.yml`
|
||||||
|
```yml
|
||||||
|
---
|
||||||
|
version: '3.7'
|
||||||
|
services:
|
||||||
|
adguard:
|
||||||
|
container_name: adguard
|
||||||
|
image: adguard/adguardhome
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "53:53/tcp"
|
||||||
|
- "53:53/udp"
|
||||||
|
- "853:853/tcp"
|
||||||
|
- "9001:80/tcp"
|
||||||
|
- "9002:443/tcp"
|
||||||
|
- "9003:3000/tcp"
|
||||||
|
# not sure what this is for,but everything works without it
|
||||||
|
# - "67:67/udp"
|
||||||
|
# - "68:68/tcp"
|
||||||
|
# - "68:68/udp"
|
||||||
|
volumes:
|
||||||
|
- ./conf:/opt/adguardhome/conf
|
||||||
|
- ./data:/opt/adguardhome/work
|
||||||
|
- ./certs:/opt/adguardhome/certs # remember to put this path in the UI too
|
||||||
|
```
|
||||||
|
Admin panel should be available at <https://<serverIP>:9002>
|
||||||
|
|
||||||
|
|
||||||
|
## Tips & tricks
|
||||||
|
|
||||||
|
### Reset UI password
|
||||||
|
1. Generate hash
|
||||||
|
```sh
|
||||||
|
htpasswd -B -n -b <USERNAME> <PASSWORD>
|
||||||
|
```
|
||||||
|
It will print `<USERNAME>:<HASH>` to the terminal.
|
||||||
|
2. Open AdGuardHome.yaml
|
||||||
|
```sh
|
||||||
|
nano adguard/conf/AdGuardHome.yaml
|
||||||
|
```
|
||||||
|
3. In the `users:` section update:
|
||||||
|
```yml
|
||||||
|
users:
|
||||||
|
- name: username
|
||||||
|
password: <HASH>
|
||||||
|
```
|
||||||
|
4. Save & restart AdguardHome
|
||||||
|
|
||||||
|
|
||||||
|
### How to map IP -> Hostname
|
||||||
|
Add `extra_hosts` node to the `docker-compose.yml` with the mapping, like so:
|
||||||
|
```yml
|
||||||
|
extra_hosts:
|
||||||
|
- "HomeServer:192.168.1.20"
|
||||||
|
```
|
||||||
|
This will inject the map to the `/etc/hosts` file of the container,
|
||||||
|
which **AdGuard** will use to show the nice names.
|
||||||
|
|
||||||
|
Alternatively this can be done through the Admin UI.
|
||||||
|
|
||||||
|
|
||||||
|
### Ensure that port 53 is available for the container
|
||||||
|
1. First, disable and stop Ubuntu's DNS resolver using the following two commands:
|
||||||
|
```sh
|
||||||
|
sudo systemctl disable systemd-resolved.service
|
||||||
|
sudo systemctl stop systemd-resolved.service
|
||||||
|
```
|
||||||
|
2. Next, open network manager configuration using the following command for editing:
|
||||||
|
```sh
|
||||||
|
sudo nano /etc/NetworkManager/NetworkManager.conf
|
||||||
|
```
|
||||||
|
3. Add `dns=default` under `[main]` so that the file contents look like this:
|
||||||
|
```ini
|
||||||
|
[main]
|
||||||
|
plugins=ifupdown,keyfile
|
||||||
|
dns=default
|
||||||
|
```
|
||||||
|
4. Then either remove or rename `/etc/resolv.conf` (it's a symbolic link) using the the following command:
|
||||||
|
```sh
|
||||||
|
sudo mv /etc/resolv.conf /etc/resolv.conf.bak
|
||||||
|
```
|
||||||
|
5. In case there is a problem, you can rename the file back to `/etc/resolv.conf`.
|
||||||
|
6. Finally, restart your network manager using the following command:
|
||||||
|
```sh
|
||||||
|
sudo service network-manager restart
|
||||||
|
```
|
||||||
|
7. If that doesn't work, use this:
|
||||||
|
```sh
|
||||||
|
ps aux | grep dns # get the PID of the dns process
|
||||||
|
sudo kill -9 <PID> # kill it
|
||||||
|
```
|
172
apps/ad-blockers/blacklists.txt
Normal file
172
apps/ad-blockers/blacklists.txt
Normal file
@ -0,0 +1,172 @@
|
|||||||
|
http://adblock.dajbych.net/adblock.txt
|
||||||
|
|
||||||
|
http://pgl.yoyo.org/adservers/serverlist.php?hostformat
|
||||||
|
http://phishing.mailscanner.info/phishing.bad.sites.conf
|
||||||
|
https://adaway.org/hosts.txt
|
||||||
|
https://adblock.dk/block.csv
|
||||||
|
|
||||||
|
https://blocklist.site/app/dl/ads
|
||||||
|
https://blocklist.site/app/dl/crypto
|
||||||
|
https://blocklist.site/app/dl/drugs
|
||||||
|
https://blocklist.site/app/dl/fakenews
|
||||||
|
https://blocklist.site/app/dl/fraud
|
||||||
|
https://blocklist.site/app/dl/gambling
|
||||||
|
https://blocklist.site/app/dl/malware
|
||||||
|
https://blocklist.site/app/dl/phishing
|
||||||
|
https://blocklist.site/app/dl/piracy
|
||||||
|
https://blocklist.site/app/dl/porn
|
||||||
|
https://blocklist.site/app/dl/proxy
|
||||||
|
https://blocklist.site/app/dl/ransomware
|
||||||
|
https://blocklist.site/app/dl/redirect
|
||||||
|
https://blocklist.site/app/dl/scam
|
||||||
|
https://blocklist.site/app/dl/spam
|
||||||
|
https://blocklist.site/app/dl/torrent
|
||||||
|
https://blocklist.site/app/dl/tracking
|
||||||
|
https://dbl.oisd.nl/
|
||||||
|
https://easylist-downloads.adblockplus.org/abpindo+easylist.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/advblock.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/adwarefilters.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/antiadblockfilters.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/easylist.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/easyprivacy.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/fanboy-social.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/malwaredomains_full.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/rolist+easylist.txt
|
||||||
|
https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt
|
||||||
|
https://hosts-file.net/ad_servers.txt
|
||||||
|
https://hosts-file.net/emd.txt
|
||||||
|
https://hosts-file.net/exp.txt
|
||||||
|
https://hosts-file.net/grm.txt
|
||||||
|
https://hosts-file.net/psh.txt
|
||||||
|
https://hostsfile.org/Downloads/hosts.txt
|
||||||
|
https://jasonhill.co.uk/pfsense/ytadblock.txt
|
||||||
|
https://mirror1.malwaredomains.com/files/justdomains
|
||||||
|
https://mirror.cedia.org.ec/malwaredomains/immortal_domains.txt
|
||||||
|
https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts;showintro=0
|
||||||
|
https://phishing.army/download/phishing_army_blocklist_extended.txt
|
||||||
|
https://ransomwaretracker.abuse.ch/downloads/CW_C2_DOMBL.txt
|
||||||
|
https://ransomwaretracker.abuse.ch/downloads/LY_C2_DOMBL.txt
|
||||||
|
https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt
|
||||||
|
https://ransomwaretracker.abuse.ch/downloads/TC_C2_DOMBL.txt
|
||||||
|
https://ransomwaretracker.abuse.ch/downloads/TL_C2_DOMBL.txt
|
||||||
|
https://raw.github.com/liamja/Prebake/master/obtrusive.txt
|
||||||
|
https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/Audio-fingerprint-pages/master/AudioFp.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/BarbBlock-filter-list/master/HOSTS.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/Canvas-fingerprinting-pages/master/Canvas.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/Canvas-Font-Fingerprinting-pages/master/Canvas.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/Anti-Corp/hosts/NSABlocklist.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/Corporations/NSABlocklist/CK's-NSABlocklist-FilterList.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/filters/nsablocklist.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/HOSTS/Ads-tracker.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/HOSTS/CK's-Ad-Tracker-HOSTS-FilterList.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/HOSTS/CK's-Spotify-HOSTS-FilterList.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/HOSTS/coinminer.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/HOSTS/Game.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/HOSTS/Malware.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/CKs-FilterList/master/uMatrix/CK's-uMatrix-FilterList.txt
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/NSABlocklist/master/HOSTS
|
||||||
|
https://raw.githubusercontent.com/CHEF-KOCH/WebRTC-tracking/master/WebRTC.txt
|
||||||
|
https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt
|
||||||
|
https://raw.githubusercontent.com/Dawsey21/Lists/master/adblock-list.txt
|
||||||
|
https://raw.githubusercontent.com/Dawsey21/Lists/master/main-blacklist.txt
|
||||||
|
https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AakList.txt
|
||||||
|
https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prebake-Obtrusive.txt
|
||||||
|
https://raw.githubusercontent.com/EnergizedProtection/block/master/ultimate/formats/hosts.txt
|
||||||
|
https://raw.githubusercontent.com/hector
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/adaway.org/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/adblock-nocoin-list/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/adguard-simplified/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/anudeepnd-adservers/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/disconnect.me-ad/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/disconnect.me-malvertising/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/disconnect.me-malware/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/disconnect.me-tracking/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/easylist/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/easyprivacy/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/eth-phishing-detect/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/fademind-add.2o7net/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/fademind-add.dead/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/fademind-add.risk/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/fademind-add.spam/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/kadhosts/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/malwaredomainlist.com/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/malwaredomains.com-immortaldomains/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/malwaredomains.com-justdomains/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/matomo.org-spammers/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/mitchellkrogza-badd-boyz-hosts/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/pgl.yoyo.org/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/ransomwaretracker.abuse.ch/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/someonewhocares.org/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/spam404.com/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/stevenblack/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/winhelp2002.mvps.org/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/zerodot1-coinblockerlists-browser/list.txt
|
||||||
|
https://raw.githubusercontent.com/hectorm/hmirror/master/data/zeustracker.abuse.ch/list.txt
|
||||||
|
https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/url-lists.txt
|
||||||
|
https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt
|
||||||
|
https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt
|
||||||
|
https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts
|
||||||
|
https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.
|
||||||
|
https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.list
|
||||||
|
https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt
|
||||||
|
https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt
|
||||||
|
https://raw.githubusercontent.com/quidsup/notrack/master/malicious-sites.txt
|
||||||
|
https://raw.githubusercontent.com/quidsup/notrack/master/trackers.txt
|
||||||
|
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt
|
||||||
|
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt
|
||||||
|
https://raw.githubusercontent.com/StevenBlack/hosts/master/data/add.2o7Net/hosts
|
||||||
|
https://raw.githubusercontent.com/StevenBlack/hosts/master/data/add.Risk/hosts
|
||||||
|
https://raw.githubusercontent.com/StevenBlack/hosts/master/data/add.Spam/hosts
|
||||||
|
https://raw.githubusercontent.com/StevenBlack/hosts/master/data/KADhosts/hosts
|
||||||
|
https://raw.githubusercontent.com/StevenBlack/hosts/master/data/UncheckyAds/hosts
|
||||||
|
https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
|
||||||
|
https://raw.githubusercontent.com/szpeter80/hufilter/master/hufilter.txt
|
||||||
|
https://raw.githubusercontent.com/vokins/yhosts/master/hosts
|
||||||
|
https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/Spotify.txt
|
||||||
|
https://raw.githubusercontent.com/yous/YousList/master/youslist.txt
|
||||||
|
https://reddestdream.github.io/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts
|
||||||
|
https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt
|
||||||
|
https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt
|
||||||
|
https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt
|
||||||
|
https://smokingwheels.github.io/Pi-hole/allhosts
|
||||||
|
https://someonewhocares.org/hosts/zero/hosts
|
||||||
|
http://stanev.org/abp/adblock_bg.txt
|
||||||
|
https://tspprs.com/dl/abuse
|
||||||
|
https://tspprs.com/dl/ads
|
||||||
|
https://tspprs.com/dl/crypto
|
||||||
|
https://tspprs.com/dl/gambling
|
||||||
|
https://tspprs.com/dl/malware
|
||||||
|
https://tspprs.com/dl/ransomware
|
||||||
|
https://tspprs.com/dl/spam
|
||||||
|
https://tspprs.com/dl/spotify
|
||||||
|
https://tspprs.com/dl/tracking
|
||||||
|
https://v.firebog.net/hosts/AdguardDNS.txt
|
||||||
|
https://v.firebog.net/hosts/BillStearns.txt
|
||||||
|
https://v.firebog.net/hosts/Easylist.txt
|
||||||
|
https://v.firebog.net/hosts/Easyprivacy.txt
|
||||||
|
https://v.firebog.net/hosts/Prigent-Ads.txt
|
||||||
|
https://v.firebog.net/hosts/Prigent-Malware.txt
|
||||||
|
https://v.firebog.net/hosts/Prigent-Phishing.txt
|
||||||
|
https://v.firebog.net/hosts/Shalla-mal.txt
|
||||||
|
https://v.firebog.net/hosts/static/w3kbl.txt
|
||||||
|
https://www.dshield.org/feeds/suspiciousdomains_High.txt
|
||||||
|
https://www.dshield.org/feeds/suspiciousdomains_Low.txt
|
||||||
|
https://www.dshield.org/feeds/suspiciousdomains_Medium.txt
|
||||||
|
https://www.joewein.net/dl/bl/dom-bl-base.txt
|
||||||
|
https://www.malwaredomainlist.com/hostslist/hosts.txt
|
||||||
|
https://www.squidblacklist.org/downloads/dg-ads.acl
|
||||||
|
https://www.squidblacklist.org/downloads/dg-malicious.acl
|
||||||
|
https://www.stopforumspam.com/downloads/toxic_domains_whole.txt
|
||||||
|
http://sysctl.org/cameleon/hosts
|
||||||
|
https://zerodot1.gitlab.io/CoinBlockerLists/hosts
|
||||||
|
https://zerodot1.gitlab.io/CoinBlockerLists/list_browser.txt
|
||||||
|
https://zerodot1.gitlab.io/CoinBlockerLists/list_optional.txt
|
||||||
|
https://zerodot1.gitlab.io/CoinBlockerLists/list.txt
|
||||||
|
https://zeustracker.abuse.ch/blocklist.php?download=domainblocklist
|
||||||
|
http://winhelp2002.mvps.org/hosts.txt
|
||||||
|
http://www.kiboke-studio.hr/i-dont-care-about-cookies/abp/
|
||||||
|
http://www.void.gr/kargig/void-gr-filters.txt
|
||||||
|
http://www.zoso.ro/pages/rolist.txt
|
13
apps/ad-blockers/block-lists.md
Normal file
13
apps/ad-blockers/block-lists.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Blacklists
|
||||||
|
- [StevenBlack/hosts](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts)
|
||||||
|
- [malwaredomains.com](https://mirror1.malwaredomains.com/files/justdomains)
|
||||||
|
- [sysctl.org](http://sysctl.org/cameleon/hosts)
|
||||||
|
- [disconnect.me/simple_tracking](https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt)
|
||||||
|
- [disconnect.me/simple_ad](https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt)
|
||||||
|
- [hosts-file.net/ad_servers](https://hosts-file.net/ad_servers.txt)
|
||||||
|
- [ookangzheng/dbl-oisd-nl](https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl.txt)
|
||||||
|
- [more lists](blacklists.txt)
|
||||||
|
|
||||||
|
# Whitelists
|
||||||
|
- [raghavdua1995/DNSlock-PiHole-whitelist](https://raw.githubusercontent.com/raghavdua1995/DNSlock-PiHole-whitelist/master/whitelist.list)
|
||||||
|
- [another one](whitelist.txt)
|
64
apps/ad-blockers/pihole.md
Normal file
64
apps/ad-blockers/pihole.md
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
# PiHole
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
- [Homepage](https://pi-hole.net/)
|
||||||
|
- [Pihole Docker github repo](https://github.com/pi-hole/docker-pi-hole)
|
||||||
|
- [Docs](https://docs.pi-hole.net/)
|
||||||
|
- [Github](https://github.com/pi-hole)
|
||||||
|
- [DockerHub](https://hub.docker.com/r/pihole/pihole)
|
||||||
|
|
||||||
|
## `docker-compose.yml`
|
||||||
|
```yml
|
||||||
|
---
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
pihole:
|
||||||
|
container_name: pihole
|
||||||
|
image: pihole/pihole:latest
|
||||||
|
ports:
|
||||||
|
- "53:53/tcp"
|
||||||
|
- "53:53/udp"
|
||||||
|
- "80:80/tcp"
|
||||||
|
- "443:443/tcp"
|
||||||
|
# - "67:67/udp"
|
||||||
|
environment:
|
||||||
|
TZ: 'Europe/Dublin'
|
||||||
|
WEBPASSWORD: 'set a secure password here or it will be random'
|
||||||
|
volumes:
|
||||||
|
- ./etc-pihole/:/etc/pihole/
|
||||||
|
- ./etc-dnsmasq.d/:/etc/dnsmasq.d/
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|
||||||
|
## Tips & Tricks
|
||||||
|
Some information here may be outdated!
|
||||||
|
|
||||||
|
### Force DNS to PiHole with Unifi Secure Gateway
|
||||||
|
- https://help.ubnt.com/hc/en-us/articles/215458888-UniFi-USG-Advanced-Configuration
|
||||||
|
|
||||||
|
### Pihole block youtube ads
|
||||||
|
https://www.reddit.com/r/pihole/comments/84luw8/blocking_youtube_ads/dvqq6ax/
|
||||||
|
|
||||||
|
### DNS over HTTPS
|
||||||
|
https://docs.pi-hole.net/guides/dns-over-https/
|
||||||
|
|
||||||
|
### PiHole Conditional forwarding for multiple VLANs
|
||||||
|
If you have multiple VLANs on your router, then you might want conditional forwarding of all your subnets back to your router.
|
||||||
|
|
||||||
|
1. Create a new file:
|
||||||
|
```sh
|
||||||
|
sudo nano /etc/dnsmasq.d/02-custom.conf
|
||||||
|
```
|
||||||
|
2. Then add, e.g.:
|
||||||
|
```sh
|
||||||
|
server=/5.168.192.in-addr.arpa/192.168.1.1
|
||||||
|
server=/9.168.192.in-addr.arpa/192.168.1.1
|
||||||
|
```
|
||||||
|
Which covers `192.168.5.0/24` and `192.168.9.0/24` respectively.
|
||||||
|
3. Restart PiHole:
|
||||||
|
```sh
|
||||||
|
pihole restartdns
|
||||||
|
```
|
982
apps/ad-blockers/whitelist.txt
Normal file
982
apps/ad-blockers/whitelist.txt
Normal file
@ -0,0 +1,982 @@
|
|||||||
|
fg.download.windowsupdate.com.c.footprint.net
|
||||||
|
2-01-3cf7-000c.cdx.cedexis.net
|
||||||
|
ajax.cloudflare.com
|
||||||
|
www.apple.com
|
||||||
|
www.publishers.medium.com
|
||||||
|
nexus.ensighten.com
|
||||||
|
plus.google.com
|
||||||
|
lifehack.org
|
||||||
|
theverge.com
|
||||||
|
csi.gstatic.com
|
||||||
|
www.bing.com
|
||||||
|
cdn.livechatinc.com
|
||||||
|
join.slack.com
|
||||||
|
msftncsi.com
|
||||||
|
www.w3school.com
|
||||||
|
thewindowsclub.com
|
||||||
|
www.thewindowsclub.com
|
||||||
|
kinja.com
|
||||||
|
f.kinja-static.com
|
||||||
|
ssl.p.jwpcdn.com
|
||||||
|
cdn.ttgtmedia.com
|
||||||
|
storeedgefd.dsx.mp.microsoft.com
|
||||||
|
www.howtogeek.com
|
||||||
|
s3.ap-northeast-2.amazonaws.com
|
||||||
|
bitbucket-marketing-cdn.atlassian.com
|
||||||
|
netpnb.com
|
||||||
|
wccftech.com
|
||||||
|
www.wccftech.com
|
||||||
|
vodafoneindia.tt.omtrdc.net
|
||||||
|
mboxedge22.tt.omtrdc.net
|
||||||
|
sbi.co.in
|
||||||
|
forms.convertkit.com
|
||||||
|
app.convertkit.com
|
||||||
|
convertkit.com
|
||||||
|
cdn.convertkit.com
|
||||||
|
spaceflightnow.com
|
||||||
|
img.purch.com
|
||||||
|
codepen.io
|
||||||
|
www.codepen.io
|
||||||
|
pgi.billdesk.com
|
||||||
|
trak.in
|
||||||
|
www.spotify.com
|
||||||
|
players.brightcove.com
|
||||||
|
assets-jpcust.jwpsrv.com
|
||||||
|
g.download.windowsupdate.com.c.footprint.net
|
||||||
|
a-msedge.net
|
||||||
|
signal-sdk-service-production.ap-south-1.elasticbeanstalk.com
|
||||||
|
msedge.net
|
||||||
|
abebooks.com
|
||||||
|
cdx.cedexis.net
|
||||||
|
cs22.wpc.v0cdn.net
|
||||||
|
code.jquery.com
|
||||||
|
az416426.vo.msecnd.net
|
||||||
|
vanilla.futurecdn.net
|
||||||
|
fte.web.future.net.uk
|
||||||
|
images.financialexpress.com.edgekey.net
|
||||||
|
cdnssl.softpedia.com
|
||||||
|
tr4.cbsistatic.com
|
||||||
|
www.intel.com
|
||||||
|
userapi.zee5.com-v4.edgekey.net
|
||||||
|
useraction.zee5.com-v2.edgekey.net
|
||||||
|
gwapi.zee5.com-v2.edgekey.net
|
||||||
|
auto.au.download.windowsupdate.com.c.footprint.net
|
||||||
|
zmtcdn.edgekey.net
|
||||||
|
www.zee5.com-v1.edgekey.net
|
||||||
|
beta.spotify.map.fastly.net
|
||||||
|
wildcard.weather.microsoft.com.edgekey.net
|
||||||
|
access.redhat.com.edgekey.net
|
||||||
|
zomato.com.edgekey.net
|
||||||
|
cds.j3z9t3p6.hwcdn.net
|
||||||
|
cdn.onenote.net.edgekey.net
|
||||||
|
s0-san.cloudinary.com.edgekey.net
|
||||||
|
www.icloud.com.edgekey.net
|
||||||
|
m-config.ndtv.com.edgekey.net
|
||||||
|
cp701-prod.do.dsp.mp.microsoft.com.edgekey.net
|
||||||
|
kv701-prod.do.dsp.mp.microsoft.com.edgekey.net
|
||||||
|
au.download.windowsupdate.com.edgesuite.net
|
||||||
|
pmdssl.flixkart.com.edgekey.net
|
||||||
|
70415bb9924dca896de0-34a37044c62e41b40b39fcedad8af927.ssl.cf3.rackcdn.com
|
||||||
|
bbci.co.uk
|
||||||
|
www.tatacliq.com.edgekey.net
|
||||||
|
assetsuat2.tataunistore.com.edgekey.net
|
||||||
|
d1a62freaxhn7x.cloudfront.net
|
||||||
|
d3a510xmpll7o6.cloudfront.net
|
||||||
|
ocsp.int-x3.letsencrypt.org.edgesuite.net
|
||||||
|
secure.avangate.com
|
||||||
|
msh.amazon.com
|
||||||
|
csp.int-x3.letsencrypt.org.edgesuite.net
|
||||||
|
ipv6.ndtv.com.edgekey.net
|
||||||
|
ocsp.sca1b.amazontrust.com
|
||||||
|
time.nist.gov
|
||||||
|
api.peer5.com
|
||||||
|
drop.ndtv.com.edgekey.net
|
||||||
|
voddownload.ndtv.com.edgekey.net
|
||||||
|
i1195.photobucket.com
|
||||||
|
compass-ssl.microsoft.com.edgekey.net
|
||||||
|
mscomajax.vo.msecnd.net
|
||||||
|
account.microsoft.com.edgekey.net
|
||||||
|
www.unsplash.com
|
||||||
|
unsplash.com
|
||||||
|
edition.cnn.com
|
||||||
|
www.cnn.com
|
||||||
|
cnn.com
|
||||||
|
blocklists.settings.services.mozilla.com
|
||||||
|
updates-http.cdn-apple.com
|
||||||
|
static.whatsapp.net
|
||||||
|
images.theconversation.com
|
||||||
|
cdn.apple-mapkit.com
|
||||||
|
icloud.cdn-apple.com
|
||||||
|
www.tatacliq.com
|
||||||
|
tatacliq.com
|
||||||
|
appleid.cdn-apple.com
|
||||||
|
meetup.com
|
||||||
|
api-godaddy.nd.nudatasecurity.com
|
||||||
|
i1.sdlcdn.com
|
||||||
|
www.ola.com
|
||||||
|
ola.com
|
||||||
|
docs.microsoft.com-c.edgekey.net
|
||||||
|
az725175.vo.msecnd.net
|
||||||
|
i.lithium.com
|
||||||
|
content-icc.pulselive.com
|
||||||
|
cricketapi-icc.pulselive.com
|
||||||
|
images.unsplash.com
|
||||||
|
api.unsplash.com
|
||||||
|
underarmour.scene7.com
|
||||||
|
a.trellocdn.com
|
||||||
|
media.fdel1-1.fna.whatsapp.net
|
||||||
|
media.fdel13-1.fna.whatsapp.net
|
||||||
|
chat.cdn.whatsapp.net
|
||||||
|
media.fdel1-4.fna.whatsapp.net
|
||||||
|
media.fdel1-3.fna.whatsapp.net
|
||||||
|
media.fdel1-2.fna.whatsapp.net
|
||||||
|
blog.sessionstack.com
|
||||||
|
statebankrewardz.com
|
||||||
|
www.statebankrewardz.com
|
||||||
|
image.crisp.chat
|
||||||
|
client.relay.crisp.chat
|
||||||
|
settings.crisp.chat
|
||||||
|
client.crisp.chat
|
||||||
|
bc.marfeelcache.com
|
||||||
|
media.fdel27-1.fna.whatsapp.net
|
||||||
|
b.marfeelcache.com
|
||||||
|
cnet3.cbsistatic.com
|
||||||
|
cnet2.cbsistatic.com
|
||||||
|
cnet4.cbsistatic.com
|
||||||
|
dbs.com
|
||||||
|
www.dbs.com
|
||||||
|
zdnet4.cbsistatic.com
|
||||||
|
zdnet3.cbsistatic.com
|
||||||
|
zdnet2.cbsistatic.com
|
||||||
|
zdnet1.cbsistatic.com
|
||||||
|
www.quora.com
|
||||||
|
quora.com
|
||||||
|
cdn6.digitaltrends.com
|
||||||
|
static.wixstatic.com
|
||||||
|
raw.githubusercontent.com
|
||||||
|
mirror1.malwaredomains.com
|
||||||
|
sysctl.org
|
||||||
|
www.google.com
|
||||||
|
ajax.googleapis.com
|
||||||
|
apis.google.com
|
||||||
|
clients1.google.com
|
||||||
|
accounts.google.com
|
||||||
|
developers.google.com
|
||||||
|
clients6.google.com
|
||||||
|
clients5.google.com
|
||||||
|
clients4.google.com
|
||||||
|
clients3.google.com
|
||||||
|
clients2.google.com
|
||||||
|
play.google.com
|
||||||
|
storage.googleapis.com
|
||||||
|
drive.google.com
|
||||||
|
docs.google.com
|
||||||
|
googleapis.com
|
||||||
|
imasdk.googleapis.com
|
||||||
|
www.storage.googleapis.com
|
||||||
|
calendar.google.com
|
||||||
|
groups.google.com
|
||||||
|
www.googleapis.com
|
||||||
|
play.googleapis.com
|
||||||
|
www.play.googleapis.com
|
||||||
|
translate.google.com
|
||||||
|
lh4.googleusercontent.com
|
||||||
|
cse.google.com
|
||||||
|
sites.google.com
|
||||||
|
maps.google.com
|
||||||
|
9to5google.com
|
||||||
|
books.google.com
|
||||||
|
feedburner.google.com
|
||||||
|
safebrowsing.google.com
|
||||||
|
spreadsheets.google.com
|
||||||
|
0.client-channel.google.com
|
||||||
|
android.clients.google.com
|
||||||
|
appsbackup-pa.googleapis.com
|
||||||
|
google.com
|
||||||
|
appsbackup-pa.clients6.google.com
|
||||||
|
cdnjs.cloudflare.com
|
||||||
|
fonts.gstatic.com
|
||||||
|
fonts.googleapis.com
|
||||||
|
id.google.co.in
|
||||||
|
id.google.com
|
||||||
|
appengine.google.com
|
||||||
|
connect.googleforwork.com
|
||||||
|
notifications.google.com
|
||||||
|
ci3.googleusercontent.com
|
||||||
|
lh6.googleusercontent.com
|
||||||
|
ci4.googleusercontent.com
|
||||||
|
ci5.googleusercontent.com
|
||||||
|
chrome.google.com
|
||||||
|
cloudconfig.googleapis.com
|
||||||
|
ogs.google.com
|
||||||
|
mail-attachment.googleusercontent.com
|
||||||
|
auditrecording-pa.googleapis.com
|
||||||
|
googleapis.l.google.com
|
||||||
|
googlehosted.l.googleusercontent.com
|
||||||
|
clients.l.google.com
|
||||||
|
mobilenetworkscoring-pa.googleapis.com
|
||||||
|
youtube-ui.l.google.com
|
||||||
|
chart.googleapis.com
|
||||||
|
www.olx.in
|
||||||
|
smartlock.google.com
|
||||||
|
maps.googleapis.com
|
||||||
|
securetoken.googleapis.com
|
||||||
|
firestore.googleapis.com
|
||||||
|
gcm.googleapis.com
|
||||||
|
gcm-http.googleapis.com
|
||||||
|
selenium-release.storage.googleapis.com
|
||||||
|
photos.googleapis.com
|
||||||
|
playbooks-pa.googleapis.com
|
||||||
|
sheets.googleapis.com
|
||||||
|
script.googleapis.com
|
||||||
|
script.google.com
|
||||||
|
cryptauthenrollment.googleapis.com
|
||||||
|
fcm-stream.googleapis.com
|
||||||
|
firebasestorage.googleapis.com
|
||||||
|
sb-ssl.google.com
|
||||||
|
safebrowsing.googleapis.com
|
||||||
|
reminders-pa.googleapis.com
|
||||||
|
fcm.googleapis.com
|
||||||
|
cdn.firebase.com
|
||||||
|
mclients.googleapis.com
|
||||||
|
download.windowsupdate.com
|
||||||
|
cs9.wac.phicdn.net
|
||||||
|
emdl.ws.microsoft.com
|
||||||
|
wdcp.microsoft.com
|
||||||
|
cy2.settings.data.microsoft.com.akadns.net
|
||||||
|
storecatalogrevocation.storequality.microsoft.com
|
||||||
|
us.configsvc1.live.com.akadns.net
|
||||||
|
login.msa.akadns6.net
|
||||||
|
maps.windows.com
|
||||||
|
location-inference-westus.cloudapp.net
|
||||||
|
evoke-windowsservices-tas.msedge.net
|
||||||
|
b2bapi.zee5.com
|
||||||
|
players.brightcove.net
|
||||||
|
c.trello.com
|
||||||
|
api.trello.com
|
||||||
|
assets.jassets.com
|
||||||
|
yt3.ggpht.com
|
||||||
|
dmd.metaservices.microsoft.com
|
||||||
|
open.spotify.com
|
||||||
|
vortex.accuweather.com
|
||||||
|
cdn.jwplayer.com
|
||||||
|
bitbucket.org
|
||||||
|
js.indexww.com
|
||||||
|
weather.com
|
||||||
|
ndtv.com
|
||||||
|
doctor.ndtv.com
|
||||||
|
movies.ndtv.com
|
||||||
|
profit.ndtv.com
|
||||||
|
stackexchange.com
|
||||||
|
youtube.com
|
||||||
|
accuweather.com
|
||||||
|
bbc.com
|
||||||
|
github.io
|
||||||
|
login.live.com
|
||||||
|
betanews.com
|
||||||
|
www.betanews.com
|
||||||
|
connectivitycheck.gstatic.com
|
||||||
|
zeustracker.abuse.ch
|
||||||
|
s3.amazonaws.com
|
||||||
|
hosts-file.net
|
||||||
|
github.com
|
||||||
|
reddestdream.github.io
|
||||||
|
v.firebog.net
|
||||||
|
www.dshield.org
|
||||||
|
www.joewein.net
|
||||||
|
hostsfile.org
|
||||||
|
someonewhocares.org
|
||||||
|
winhelp2002.mvps.org
|
||||||
|
gist.githubusercontent.com
|
||||||
|
mirror.cedia.org.ec
|
||||||
|
www.malwaredomainlist.com
|
||||||
|
ransomwaretracker.abuse.ch
|
||||||
|
cdn.sstatic.net
|
||||||
|
cdn.arstechnica.net
|
||||||
|
media.arstechnica.net
|
||||||
|
media.arstechnica.com
|
||||||
|
assets.ubuntu.com
|
||||||
|
stackoverflow.com
|
||||||
|
clc.stackoverflow.com
|
||||||
|
the.earth.li
|
||||||
|
cdn.optimizely.com
|
||||||
|
lifehacker.com
|
||||||
|
s1.wp.com
|
||||||
|
feedly.com
|
||||||
|
www.feedly.com
|
||||||
|
flipboard.com
|
||||||
|
cdn.flipboard.com
|
||||||
|
www.paperoak.com
|
||||||
|
digg.com
|
||||||
|
secure.aadcdn.microsoftonline-p.com
|
||||||
|
api.bountysource.com
|
||||||
|
m.cricbuzz.com
|
||||||
|
licensing.mp.microsoft.com
|
||||||
|
store-images.microsoft.com
|
||||||
|
dl.dropboxusercontent.com
|
||||||
|
mem.gfx.ms
|
||||||
|
www.microsoft.com
|
||||||
|
netflix.com
|
||||||
|
auth.gfx.ms
|
||||||
|
i.i.cbsi.com
|
||||||
|
www.aolcdn.com
|
||||||
|
cloudflare.com
|
||||||
|
www.o.aolcdn.com
|
||||||
|
o.aolcdn.com
|
||||||
|
aolcdn.com
|
||||||
|
askvg.com
|
||||||
|
www.askvg.com
|
||||||
|
www.cloudflare.com
|
||||||
|
www.medium.com
|
||||||
|
static.medium.com
|
||||||
|
cdn.medium.com
|
||||||
|
api.medium.com
|
||||||
|
publishers.medium.com
|
||||||
|
www.developers.medium.com
|
||||||
|
services.medium.com
|
||||||
|
blog.medium.com
|
||||||
|
about.medium.com
|
||||||
|
www.services.medium.com
|
||||||
|
www.cdn.medium.com
|
||||||
|
www.cdn-static-1.medium.com
|
||||||
|
help.medium.com
|
||||||
|
jobs.medium.com
|
||||||
|
www.legal.medium.com
|
||||||
|
www.static.medium.com
|
||||||
|
www.about.medium.com
|
||||||
|
www.blog.medium.com
|
||||||
|
medium.com
|
||||||
|
legal.medium.com
|
||||||
|
www.cdn-images-1.medium.com
|
||||||
|
cdn-images-1.medium.com
|
||||||
|
csp.medium.com
|
||||||
|
glyph.medium.com
|
||||||
|
www.o1.email.medium.com
|
||||||
|
www.o2.email.medium.com
|
||||||
|
www.jobs.medium.com
|
||||||
|
www.csp.medium.com
|
||||||
|
www.glyph.medium.com
|
||||||
|
brands.medium.com
|
||||||
|
cdn-audio-1.medium.com
|
||||||
|
cdn-images-2.medium.com
|
||||||
|
collateral.medium.com
|
||||||
|
developers.medium.com
|
||||||
|
members.medium.com
|
||||||
|
www.api.medium.com
|
||||||
|
www.cdn-audio-1.medium.com
|
||||||
|
o1.email.medium.com
|
||||||
|
o2.email.medium.com
|
||||||
|
www.cdn-images-2.medium.com
|
||||||
|
www.collateral.medium.com
|
||||||
|
www.brands.medium.com
|
||||||
|
textshot.medium.com
|
||||||
|
cdn-static-1.medium.com
|
||||||
|
www.members.medium.com
|
||||||
|
www.textshot.medium.com
|
||||||
|
www.noteworthy.medium.com
|
||||||
|
noteworthy.medium.com
|
||||||
|
www.publishers.medium.co
|
||||||
|
www.help.medium.com
|
||||||
|
www.theguardian.com
|
||||||
|
theguardian.com
|
||||||
|
www.techradar.com
|
||||||
|
techradar.com
|
||||||
|
www.techrepublic.com
|
||||||
|
techrepublic.com
|
||||||
|
downloads.techrepublic.com
|
||||||
|
secure.techrepublic.com
|
||||||
|
m.techrepublic.com
|
||||||
|
www.m.techrepublic.com
|
||||||
|
www.downloads.techrepublic.com
|
||||||
|
blog.techrepublic.com
|
||||||
|
www.blog.techrepublic.com
|
||||||
|
www.cdn-origin01.techrepublic.com
|
||||||
|
cdn-origin01.techrepublic.com
|
||||||
|
blogs.techrepublic.com
|
||||||
|
www.blogs.techrepublic.com
|
||||||
|
apex.techrepublic.com
|
||||||
|
bwp.techrepublic.com
|
||||||
|
cms.techrepublic.com
|
||||||
|
ct.techrepublic.com
|
||||||
|
dw.techrepublic.com
|
||||||
|
enews.techrepublic.com
|
||||||
|
itpapers.techrepublic.com
|
||||||
|
japan.techrepublic.com
|
||||||
|
li.techrepublic.com
|
||||||
|
ma.techrepublic.com
|
||||||
|
nls.techrepublic.com
|
||||||
|
urs.techrepublic.com
|
||||||
|
whitepapers.techrepublic.com
|
||||||
|
www.apex.techrepublic.com
|
||||||
|
www.bwp.techrepublic.com
|
||||||
|
www.cms.techrepublic.com
|
||||||
|
www.ct.techrepublic.com
|
||||||
|
www.dw.techrepublic.com
|
||||||
|
www.enews.techrepublic.com
|
||||||
|
www.itpapers.techrepublic.com
|
||||||
|
www.japan.techrepublic.com
|
||||||
|
www.li.techrepublic.com
|
||||||
|
www.ma.techrepublic.com
|
||||||
|
www.nls.techrepublic.com
|
||||||
|
www.secure.techrepublic.com
|
||||||
|
www.urs.techrepublic.com
|
||||||
|
www.whitepapers.techrepublic.com
|
||||||
|
hello.myfonts.net
|
||||||
|
use.typekit.net
|
||||||
|
seal.verisign.com
|
||||||
|
cdn.jsdelivr.net
|
||||||
|
i1.social.s-msft.com
|
||||||
|
sls.update.microsoft.com
|
||||||
|
www.i1.social.s-msft.com
|
||||||
|
s-msft.com
|
||||||
|
i-technet.sec.s-msft.com
|
||||||
|
fast.fonts.net
|
||||||
|
login.wikimedia.org
|
||||||
|
s.w.org
|
||||||
|
www.login.wikimedia.org
|
||||||
|
img-s-msn-com.akamaized.net
|
||||||
|
slack.com
|
||||||
|
www.slack.com
|
||||||
|
www.join.slack.com
|
||||||
|
apple.com
|
||||||
|
s3-eu-west-1.amazonaws.com
|
||||||
|
jsdelivr.net
|
||||||
|
mi.com
|
||||||
|
www.mi.com
|
||||||
|
apps.skype.com
|
||||||
|
displaycatalog.mp.microsoft.com
|
||||||
|
api.ipify.org
|
||||||
|
app-api.ted.com
|
||||||
|
ax.phobos.apple.com.edgesuite.net
|
||||||
|
cdn2.optimizely.com
|
||||||
|
cdn3.optimizely.com
|
||||||
|
clientconfig.passport.net
|
||||||
|
c.s-microsoft.com
|
||||||
|
ctldl.windowsupdate.com
|
||||||
|
dns.msftncsi.com
|
||||||
|
dl.delivery.mp.microsoft.com
|
||||||
|
dl.dropbox.com
|
||||||
|
m.hotmail.com
|
||||||
|
g.live.com
|
||||||
|
hls.ted.com
|
||||||
|
goo.gl
|
||||||
|
gravatar.com
|
||||||
|
icloud.com
|
||||||
|
imgs.xkcd.com
|
||||||
|
i.s-microsoft.com
|
||||||
|
ns2.dropbox.com
|
||||||
|
ns1.dropbox.com
|
||||||
|
officeclient.microsoft.com
|
||||||
|
outlook.office365.com
|
||||||
|
pricelist.skype.com
|
||||||
|
products.office.com
|
||||||
|
s.gateway.messenger.live.com
|
||||||
|
support.microsoft.com
|
||||||
|
ui.skype.com
|
||||||
|
www.icloud.com
|
||||||
|
www.msftncsi.com
|
||||||
|
2.android.pool.ntp.org
|
||||||
|
www.youtube-nocookie.com
|
||||||
|
youtube-nocookie.com
|
||||||
|
appleid.apple.com
|
||||||
|
onedrive.live.com
|
||||||
|
yahoo.com
|
||||||
|
microsoft.com
|
||||||
|
skype.com
|
||||||
|
linkedin.com
|
||||||
|
vimeo.com
|
||||||
|
youtu.be
|
||||||
|
wordpress.com
|
||||||
|
wp.com
|
||||||
|
bing.com
|
||||||
|
wikipedia.org
|
||||||
|
gstatic.com
|
||||||
|
ssl.gstatic.com
|
||||||
|
www.gstatic.com
|
||||||
|
office.com
|
||||||
|
office.net
|
||||||
|
microsoftonline.com
|
||||||
|
login.microsoftonline.com
|
||||||
|
office365.com
|
||||||
|
akamaihd.net
|
||||||
|
akamaized.net
|
||||||
|
live.com
|
||||||
|
jquery.com
|
||||||
|
sharepoint.com
|
||||||
|
hostsfile.mine.nu
|
||||||
|
adblock.mahakala.is
|
||||||
|
cdn.w3schools.com
|
||||||
|
en.w3schools.com
|
||||||
|
w3schools.com
|
||||||
|
www.cdn.w3schools.com
|
||||||
|
www.en.w3schools.com
|
||||||
|
qa.sockets.stackexchange.com
|
||||||
|
netdna.bootstrapcdn.com
|
||||||
|
www.w3schools.com
|
||||||
|
live.github.com
|
||||||
|
assets.zendesk.com
|
||||||
|
gizbot.com
|
||||||
|
www.gizbot.com
|
||||||
|
alluremedia.com
|
||||||
|
www.alluremedia.com
|
||||||
|
win1710.ipv6.microsoft.com
|
||||||
|
rawgit.com
|
||||||
|
cdn.rawgit.com
|
||||||
|
bleepingcomputer.com
|
||||||
|
www.bleepingcomputer.com
|
||||||
|
go.microsoft.com
|
||||||
|
www.go.microsoft.com
|
||||||
|
smokingwheels.github.io
|
||||||
|
ipleak.net
|
||||||
|
easylist-downloads.adblockplus.org
|
||||||
|
assets.nflxext.com
|
||||||
|
bt.com
|
||||||
|
www.bt.com
|
||||||
|
home.bt.com
|
||||||
|
www.home.bt.com
|
||||||
|
truste.com
|
||||||
|
choices.truste.com
|
||||||
|
www.preferences.truste.com
|
||||||
|
privacy-policy.truste.com
|
||||||
|
www.consent.truste.com
|
||||||
|
consent.truste.com
|
||||||
|
www.crunchbase.com
|
||||||
|
crunchbase.com
|
||||||
|
www.samsung.com
|
||||||
|
samsung.com
|
||||||
|
openapi.samsung.com
|
||||||
|
s3-ap-southeast-1.amazonaws.com
|
||||||
|
toptenreviews.com
|
||||||
|
www.toptenreviews.com
|
||||||
|
channel9.msdn.com
|
||||||
|
www.channel9.msdn.com
|
||||||
|
godaddy.com
|
||||||
|
chocolatey.org
|
||||||
|
www.chocolatey.org
|
||||||
|
cdn.chocolatey.org
|
||||||
|
ftp.chocolatey.org
|
||||||
|
push.chocolatey.org
|
||||||
|
www.cdn.chocolatey.org
|
||||||
|
www.ftp.chocolatey.org
|
||||||
|
www.licensedpackages.chocolatey.org
|
||||||
|
www.push.chocolatey.org
|
||||||
|
www.package.chocolatey.org
|
||||||
|
package.chocolatey.org
|
||||||
|
packages.chocolatey.org
|
||||||
|
www.packages.chocolatey.org
|
||||||
|
licensedpackages.chocolatey.org
|
||||||
|
www.snapdeal.com
|
||||||
|
snapdeal.com
|
||||||
|
s3.ap-south-1.amazonaws.com
|
||||||
|
inc.com
|
||||||
|
www.inc.com
|
||||||
|
boards.greenhouse.io
|
||||||
|
c1.microsoft.com
|
||||||
|
t.purch.com
|
||||||
|
giphy.com
|
||||||
|
x.kinja-static.com
|
||||||
|
cdn.perfdrive.com
|
||||||
|
purch.com
|
||||||
|
ramp.purch.com
|
||||||
|
abuse.ch
|
||||||
|
web.archive.org
|
||||||
|
feodotracker.abuse.ch
|
||||||
|
sslbl.abuse.ch
|
||||||
|
1hosts.cf
|
||||||
|
c.microsoft.com
|
||||||
|
malwareurls.joxeankoret.com
|
||||||
|
www.hostsfile.org
|
||||||
|
www.sa-blacklist.stearns.org
|
||||||
|
adaway.org
|
||||||
|
pastebin.com
|
||||||
|
pgl.yoyo.org
|
||||||
|
ssl.bblck.me
|
||||||
|
www.hosts-file.net
|
||||||
|
completion.amazon.co.uk
|
||||||
|
kinja-debug.firebaseio.com
|
||||||
|
fe3.delivery.mp.microsoft.com
|
||||||
|
tlu.dl.delivery.mp.microsoft.com
|
||||||
|
store-images.s-microsoft.com
|
||||||
|
toreedgefd.dsx.mp.microsoft.com
|
||||||
|
www.smashingmagazine.com
|
||||||
|
smashingmagazine.com
|
||||||
|
onesignal.com
|
||||||
|
g.co
|
||||||
|
client.reactrjs.com
|
||||||
|
mediafire.com
|
||||||
|
www.mediafire.com
|
||||||
|
fls-na.amazon.com
|
||||||
|
cdn.embedly.com
|
||||||
|
outlook.com
|
||||||
|
hotmail.com
|
||||||
|
mail01.tinyletterapp.com
|
||||||
|
actionnetwork.org
|
||||||
|
www.actionnetwork.org
|
||||||
|
everydayhealth.com
|
||||||
|
www.everydayhealth.com
|
||||||
|
www.sitepoint.com
|
||||||
|
phishing.mailscanner.info
|
||||||
|
sitepoint.com
|
||||||
|
gizmodo.com
|
||||||
|
www.gizmodo.com
|
||||||
|
m.gizmodo.com
|
||||||
|
serverfault.com
|
||||||
|
gitlab.com
|
||||||
|
medium.freecodecamp.org
|
||||||
|
time.com
|
||||||
|
howtogeek.com
|
||||||
|
hackaday.com
|
||||||
|
4.bp.blogspot.com
|
||||||
|
digitaltrends.com
|
||||||
|
www.digitaltrends.com
|
||||||
|
cdn.digitaltrends.com
|
||||||
|
cdn1.digitaltrends.com
|
||||||
|
cdn2.digitaltrends.com
|
||||||
|
cdn3.digitaltrends.com
|
||||||
|
cdn4.digitaltrends.com
|
||||||
|
cdn5.digitaltrends.com
|
||||||
|
cd6.digitaltrends.com
|
||||||
|
cdn7.digitaltrends.com
|
||||||
|
es.digitaltrends.com
|
||||||
|
cdn7.es.digitaltrends.com
|
||||||
|
cdn9.es.digitaltrends.com
|
||||||
|
img.digitaltrends.com
|
||||||
|
m.digitaltrends.com
|
||||||
|
dominos.co.in
|
||||||
|
elephantjournal.com
|
||||||
|
www.elephantjournal.com
|
||||||
|
img.elephantjournal.com
|
||||||
|
image.elephantjournal.com
|
||||||
|
learn.elephantjournal.com
|
||||||
|
nationalgeographic.com
|
||||||
|
www.nationalgeographic.com
|
||||||
|
newsletters.nationalgeographic.com
|
||||||
|
subscribe.wired.com
|
||||||
|
itknowledgeexchange.techtarget.com
|
||||||
|
www.techtarget.com
|
||||||
|
techtarget.com
|
||||||
|
event.mi.com
|
||||||
|
ipinfo.io
|
||||||
|
i.imgur.com
|
||||||
|
www.ipinfo.io
|
||||||
|
webhostingtalk.com
|
||||||
|
www.webhostingtalk.com
|
||||||
|
youtube-dl.org
|
||||||
|
rg3.github.io
|
||||||
|
s3-us-west-2.amazonaws.com
|
||||||
|
blog.hubspot.com
|
||||||
|
hubspot.com
|
||||||
|
www.hubspot.com
|
||||||
|
mva.microsoft.com
|
||||||
|
ocsp.apple.com
|
||||||
|
namecheap.com
|
||||||
|
www.namecheap.com
|
||||||
|
npmjs.com
|
||||||
|
www.npmjs.com
|
||||||
|
cdn-images.mailchimp.com
|
||||||
|
www.pluralsight.com
|
||||||
|
pluralsight.com
|
||||||
|
appsumo.com
|
||||||
|
static.appsumo.com
|
||||||
|
blog.appsumo.com
|
||||||
|
email.appsumo.com
|
||||||
|
help.appsumo.com
|
||||||
|
www.appsumo.com
|
||||||
|
www.malekal.com
|
||||||
|
www.threatcrowd.org
|
||||||
|
client.hip.live.com
|
||||||
|
activation.sls.microsoft.com
|
||||||
|
eff.org
|
||||||
|
www.eff.org
|
||||||
|
tile-service.weather.microsoft.com
|
||||||
|
cdn.onesignal.com
|
||||||
|
meetu.ps
|
||||||
|
www.meetu.ps
|
||||||
|
apis.mail.yahoo.com
|
||||||
|
smtp.mail.yahoo.com
|
||||||
|
encrypted-tbn0.gstatic.com
|
||||||
|
cdn.onenote.net
|
||||||
|
media.licdn.com
|
||||||
|
www.meetup.com
|
||||||
|
amazon.co.uk
|
||||||
|
cdn.shopifycloud.com
|
||||||
|
wired.com
|
||||||
|
www.wired.com
|
||||||
|
static.wired.com
|
||||||
|
wsj.com
|
||||||
|
www.wsj.com
|
||||||
|
media.wired.com
|
||||||
|
video-api.wsj.com
|
||||||
|
asset.wsj.net
|
||||||
|
theandroidsoul.com
|
||||||
|
beta.api.getpocket.com
|
||||||
|
getpocket.com
|
||||||
|
outlook.live.com
|
||||||
|
miro.medium.com
|
||||||
|
bgr.com
|
||||||
|
text.getpocket.com
|
||||||
|
mail.yahoo.com
|
||||||
|
www.yahoo.com
|
||||||
|
guce.yahoo.com
|
||||||
|
ct.yimg.com
|
||||||
|
in.yahoo.com
|
||||||
|
zdnet.com
|
||||||
|
www.linkedin.com
|
||||||
|
static.licdn.com
|
||||||
|
static1.squarespace.com
|
||||||
|
indianexpress.com
|
||||||
|
paytm.com
|
||||||
|
amazon.in
|
||||||
|
secure.meetup.com
|
||||||
|
electionsdata.ndtv.com
|
||||||
|
res.cloudinary.com
|
||||||
|
api.apptentive.com
|
||||||
|
web.whatsapp.com
|
||||||
|
w4.web.whatsapp.com
|
||||||
|
fs.microsoft.com
|
||||||
|
meta.wikimedia.org
|
||||||
|
secure.gravatar.com
|
||||||
|
www.cbs.com
|
||||||
|
w3.web.whatsapp.com
|
||||||
|
w8.web.whatsapp.com
|
||||||
|
w1.web.whatsapp.com
|
||||||
|
w2.web.whatsapp.com
|
||||||
|
static.hubspot.com
|
||||||
|
static2cdn.hubspot.com
|
||||||
|
github.hubspot.com
|
||||||
|
s.gravatar.com
|
||||||
|
edata.ndtv.com
|
||||||
|
cdn.gadgets360.com
|
||||||
|
zomato.com
|
||||||
|
flipkart.com
|
||||||
|
www.goodreads.com
|
||||||
|
net.pnb.com
|
||||||
|
goodreads.com
|
||||||
|
s.yimg.com
|
||||||
|
s0.wp.com
|
||||||
|
hn.algolia.com
|
||||||
|
detectportal.firefox.com
|
||||||
|
ftp.hp.com
|
||||||
|
assets.getpocket.com
|
||||||
|
zoom.us
|
||||||
|
triplebyte.com
|
||||||
|
use.fontawesome.com
|
||||||
|
www.safaribooksonline.com
|
||||||
|
www.expressvpn.com
|
||||||
|
linode.com
|
||||||
|
image.ibb.co
|
||||||
|
js.stripe.com
|
||||||
|
paypal.com
|
||||||
|
khanacademy.org
|
||||||
|
api.getpocket.com
|
||||||
|
mitpress.mit.edu
|
||||||
|
msn.com
|
||||||
|
www.msn.com
|
||||||
|
inference.location.live.net
|
||||||
|
location.services.mozilla.com
|
||||||
|
services.addons.mozilla.org
|
||||||
|
w7.web.whatsapp.com
|
||||||
|
sbi.com
|
||||||
|
w6.web.whatsapp.com
|
||||||
|
w5.web.whatsapp.com
|
||||||
|
maxcdn.bootstrapcdn.com
|
||||||
|
hotstar-sin.gravityrd-services.com
|
||||||
|
static-asm.secure.skypeassets.com
|
||||||
|
s.w-x.co
|
||||||
|
angel.co
|
||||||
|
www.angel.co
|
||||||
|
onlinecourses.nptel.ac.in
|
||||||
|
olx.in
|
||||||
|
space.com
|
||||||
|
www.space.com
|
||||||
|
email.uber.com
|
||||||
|
t.paypal.com
|
||||||
|
viber.com
|
||||||
|
cdn.voscast.com
|
||||||
|
icq.com
|
||||||
|
www.mystart.com
|
||||||
|
hotstar.com
|
||||||
|
www.flipkart.com
|
||||||
|
fossbytes.com
|
||||||
|
financialexpress.com
|
||||||
|
static.127777.com
|
||||||
|
g.whatsapp.net
|
||||||
|
spotify.com
|
||||||
|
rukminim1.flixcart.com
|
||||||
|
in.linkedin.com
|
||||||
|
e1.whatsapp.net
|
||||||
|
e2.whatsapp.net
|
||||||
|
e3.whatsapp.net
|
||||||
|
e4.whatsapp.net
|
||||||
|
e5.whatsapp.net
|
||||||
|
e6.whatsapp.net
|
||||||
|
e7.whatsapp.net
|
||||||
|
e8.whatsapp.net
|
||||||
|
e9.whatsapp.net
|
||||||
|
e10.whatsapp.net
|
||||||
|
e11.whatsapp.net
|
||||||
|
e12.whatsapp.net
|
||||||
|
e13.whatsapp.net
|
||||||
|
e14.whatsapp.net
|
||||||
|
e15.whatsapp.net
|
||||||
|
e16.whatsapp.net
|
||||||
|
e17.whatsapp.net
|
||||||
|
e18.whatsapp.net
|
||||||
|
e19.whatsapp.net
|
||||||
|
e20.whatsapp.net
|
||||||
|
rt.com
|
||||||
|
www.rt.com
|
||||||
|
media-yyz1-1-cdn.whatsapp.net
|
||||||
|
media.fabj2-1.fna.whatsapp.net
|
||||||
|
media.fada1-2.fna.whatsapp.net
|
||||||
|
media.fads1-1.fna.whatsapp.net
|
||||||
|
media.fbed1-2.fna.whatsapp.net
|
||||||
|
media.fbel3-1.fna.whatsapp.net
|
||||||
|
media.fcgh5-1.fna.whatsapp.net
|
||||||
|
media.fcgk9-1.fna.whatsapp.net
|
||||||
|
media.fdel11-1.fna.whatsapp.net
|
||||||
|
media.fdel3-1.fna.whatsapp.net
|
||||||
|
media.feoh3-1.fna.whatsapp.net
|
||||||
|
media.fevn1-1.fna.whatsapp.net
|
||||||
|
media.ffjr1-1.fna.whatsapp.net
|
||||||
|
media.ffjr1-3.fna.whatsapp.net
|
||||||
|
media.fgye1-1.fna.whatsapp.net
|
||||||
|
media.fhel2-1.fna.whatsapp.net
|
||||||
|
media.fhel3-1.fna.whatsapp.net
|
||||||
|
media.fisu5-1.fna.whatsapp.net
|
||||||
|
media.flim6-1.fna.whatsapp.net
|
||||||
|
media.flos2-1.fna.whatsapp.net
|
||||||
|
media.fmnl10-1.fna.whatsapp.net
|
||||||
|
media.fplu6-1.fna.whatsapp.net
|
||||||
|
media.fprg2-1.fna.whatsapp.net
|
||||||
|
media.frec2-1.fna.whatsapp.net
|
||||||
|
media.frix1-1.fna.whatsapp.net
|
||||||
|
media.frix4-1.fna.whatsapp.net
|
||||||
|
media.fskg1-1.fna.whatsapp.net
|
||||||
|
media.fssa13-1.fna.whatsapp.net
|
||||||
|
media.fsst1-2.fna.whatsapp.net
|
||||||
|
media.fsyq1-1.fna.whatsapp.net
|
||||||
|
media.ftpe4-1.fna.whatsapp.net
|
||||||
|
media.fykz1-1.fna.whatsapp.net
|
||||||
|
media.fyxd2-1.fna.whatsapp.net
|
||||||
|
media.fzty2-1.fna.whatsapp.net
|
||||||
|
mme.whatsapp.net
|
||||||
|
mme6.whatsapp.net
|
||||||
|
mmg-fna.whatsapp.net
|
||||||
|
mmg.whatsapp.net
|
||||||
|
mmi244.whatsapp.net
|
||||||
|
mmi269.whatsapp.net
|
||||||
|
mmi479.whatsapp.net
|
||||||
|
mmi483.whatsapp.net
|
||||||
|
mmi651.whatsapp.net
|
||||||
|
mmi701.whatsapp.net
|
||||||
|
mmi731.whatsapp.net
|
||||||
|
mms.whatsapp.net
|
||||||
|
pps.whatsapp.net
|
||||||
|
v.whatsapp.net
|
||||||
|
www-cdn.whatsapp.net
|
||||||
|
graph.whatsapp.net
|
||||||
|
partner.microsoft.com
|
||||||
|
answers.microsoft.com
|
||||||
|
i0.wp.com
|
||||||
|
about.me
|
||||||
|
c0.wp.com
|
||||||
|
media-ams3-1.cdn.whatsapp.net
|
||||||
|
media-amt2-1.cdn.whatsapp.net
|
||||||
|
media-arn2-1.cdn.whatsapp.net
|
||||||
|
media-ber1-1.cdn.whatsapp.net
|
||||||
|
media-bru2-1.cdn.whatsapp.net
|
||||||
|
media-cdt1-1.cdn.whatsapp.net
|
||||||
|
media-dfw5-1.cdn.whatsapp.net
|
||||||
|
bit.ly
|
||||||
|
media-frt3-1.cdn.whatsapp.net
|
||||||
|
media-frt3-2.cdn.whatsapp.net
|
||||||
|
media-frx5-1.cdn.whatsapp.net
|
||||||
|
media-iad3-1.cdn.whatsapp.net
|
||||||
|
media-lax3-1.cdn.whatsapp.net
|
||||||
|
media-lax3-2.cdn.whatsapp.net
|
||||||
|
media-lga3-1.cdn.whatsapp.net
|
||||||
|
media-lhr3-1.cdn.whatsapp.net
|
||||||
|
media-lht6-1.cdn.whatsapp.net
|
||||||
|
media-mad1-1.cdn.whatsapp.net
|
||||||
|
media-mia3-1.cdn.whatsapp.net
|
||||||
|
media-mxp1-1.cdn.whatsapp.net
|
||||||
|
media-ort2-1.cdn.whatsapp.net
|
||||||
|
media-ort2-2.cdn.whatsapp.net
|
||||||
|
media-otp1-1.cdn.whatsapp.net
|
||||||
|
media-sea1-1.cdn.whatsapp.net
|
||||||
|
media-sin6-1.cdn.whatsapp.net
|
||||||
|
media-sjc3-1.cdn.whatsapp.net
|
||||||
|
media-sof1-1.cdn.whatsapp.net
|
||||||
|
media-vie1-1.cdn.whatsapp.net
|
||||||
|
media-waw1-1.cdn.whatsapp.net
|
||||||
|
img-prod-cms-rt-microsoft-com.akamaized.net
|
||||||
|
faq.whatsapp.com
|
||||||
|
img.onesignal.com
|
||||||
|
api.termius.com
|
||||||
|
bitly.com
|
||||||
|
chromestatus.com
|
||||||
|
www.chromestatus.com
|
||||||
|
addons.prestashop.com
|
||||||
|
edge.api.brightcove.com
|
||||||
|
www.brightcove.com
|
||||||
|
img.brightcove.com
|
||||||
|
files.brightcove.com
|
||||||
|
algolia.com
|
||||||
|
www.algolia.com
|
||||||
|
definitionupdates.microsoft.com
|
||||||
|
service.weather.microsoft.com
|
||||||
|
blob.weather.microsoft.com
|
||||||
|
ajax.aspnetcdn.com
|
||||||
|
time.windows.com
|
||||||
|
query.prod.cms.rt.microsoft.com
|
||||||
|
developer.android.com
|
||||||
|
download.microsoft.com
|
||||||
|
img1.hotstarext.com
|
||||||
|
oms.symantec.com
|
||||||
|
ghacks.net
|
||||||
|
az764295.vo.msecnd.net
|
||||||
|
fe2.update.microsoft.com
|
||||||
|
ccleaner.com
|
||||||
|
fe3.update.microsoft.com
|
||||||
|
au.download.windowsupdate.com
|
||||||
|
fe3.delivery.dsp.mp.microsoft.com.nsatc.net
|
||||||
|
www.ccleaner.com
|
||||||
|
redirector.gvt1.com
|
||||||
|
aka.ms
|
||||||
|
update.code.visualstudio.com
|
||||||
|
secure-media1.hotstarext.com
|
||||||
|
example.com
|
||||||
|
www.example.com
|
||||||
|
storage.live.com
|
||||||
|
assets.gadgets360cdn.com
|
||||||
|
1.bp.blogspot.com
|
||||||
|
adblock.gjtech.net
|
||||||
|
no-cache.hubspot.com
|
||||||
|
akamaitechnologies.com
|
||||||
|
login.yahoo.com
|
||||||
|
accounts.elephantjournal.com
|
||||||
|
airtel.in
|
||||||
|
zapier.com
|
||||||
|
spclient.wg.spotify.com
|
||||||
|
washingtonpost.com
|
||||||
|
s2k7tnzlhrpw.statuspage.io
|
||||||
|
q.stripe.com
|
||||||
|
images.dmca.com
|
||||||
|
cdnapisec.kaltura.com
|
||||||
|
corp.kaltura.com
|
||||||
|
cfvod.kaltura.com
|
||||||
|
cdn.vidible.tv
|
||||||
|
vidible.tv
|
||||||
|
kb.adguard.com
|
||||||
|
hosts.herndl.org
|
||||||
|
www.squidblacklist.org
|
||||||
|
client-s.gateway.messenger.live.com
|
||||||
|
filters.adtidy.org
|
||||||
|
files.overclock.net
|
||||||
|
www.trak.in
|
||||||
|
www.theandroidsoul.com
|
||||||
|
news.ycombinator.com
|
||||||
|
oneclient.sfx.ms
|
||||||
|
tms.airtelbroadband.in
|
||||||
|
setup.airtelbroadband.in
|
Loading…
Reference in New Issue
Block a user