mirror of
https://github.com/StevenBlack/hosts.git
synced 2026-09-26 14:20:09 +01:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9adfcd4ea4 | ||
|
|
1531b62139 | ||
|
|
3788f5845f | ||
|
|
178ea64f2d | ||
|
|
6940b842e7 | ||
|
|
8b4c837d59 | ||
|
|
58b36a7e01 | ||
|
|
d14541971b | ||
|
|
fdd7e3f34a | ||
|
|
bfe24eb87b | ||
|
|
5cf23a4cc3 | ||
|
|
337e5ada28 | ||
|
|
55f05d275c | ||
|
|
84fc36e3b8 | ||
|
|
3cbdc64998 | ||
|
|
afce9ec8f5 | ||
|
|
0f0465919a | ||
|
|
ca3a99a049 | ||
|
|
bdab2fbf78 | ||
|
|
f11b0c6cb3 | ||
|
|
a09e408c8a | ||
|
|
323174e45d | ||
|
|
2abefc7cfa | ||
|
|
abf763e9a0 | ||
|
|
b8b067b6ab | ||
|
|
c756858a1b | ||
|
|
82791b30c4 | ||
|
|
aea2e921b5 | ||
|
|
de3a3d9cb9 | ||
|
|
4f93a59b8b | ||
|
|
c9986cc960 | ||
|
|
f26168194b | ||
|
|
0a96dcad34 | ||
|
|
0f727b8bed | ||
|
|
12ee4e0218 | ||
|
|
be57b6208b | ||
|
|
aa5637dc7f | ||
|
|
bc8e4c92b8 | ||
|
|
bb1b8e81ae | ||
|
|
9e3db93d92 | ||
|
|
43fe30181b | ||
|
|
c2ebad946e | ||
|
|
73479bc632 | ||
|
|
ddafbadaf6 | ||
|
|
cf92814f1d | ||
|
|
a9a4aa2fe7 | ||
|
|
a907bc6477 | ||
|
|
6337998706 | ||
|
|
fd5fd3f05d | ||
|
|
6906938b48 | ||
|
|
5bab40d686 | ||
|
|
ad45f75de2 | ||
|
|
7fcfacf7d0 | ||
|
|
32fe8e0862 | ||
|
|
541841e8c6 | ||
|
|
8847a730e6 | ||
|
|
719cc0b086 | ||
|
|
490e4f835c | ||
|
|
fab5809c97 | ||
|
|
ddb8a61788 | ||
|
|
85112c9a48 | ||
|
|
dc68f96f8a | ||
|
|
a59f18a380 | ||
|
|
7ec3533725 | ||
|
|
4e2796aaa9 | ||
|
|
c7537d2b45 | ||
|
|
9a8b5df4f7 | ||
|
|
de675b71a9 | ||
|
|
6283d54d41 | ||
|
|
d9f031fd46 | ||
|
|
71dbcebe52 | ||
|
|
3fea881296 | ||
|
|
c92151d237 | ||
|
|
eb4d002f13 | ||
|
|
2565d15719 | ||
|
|
15df541200 | ||
|
|
5798b17132 | ||
|
|
6a216bf28d | ||
|
|
4fe6a30cc1 | ||
|
|
e9fdfc5445 | ||
|
|
a2008b78f9 |
+30
-18
@@ -10,8 +10,15 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python: [3.5, 3.6, 3.7, 3.8]
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
python:
|
||||
- 3.5
|
||||
- 3.6
|
||||
- 3.7
|
||||
- 3.8
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
- windows-latest
|
||||
|
||||
steps:
|
||||
- name: Clone repository
|
||||
@@ -21,25 +28,30 @@ jobs:
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
architecture: 'x64'
|
||||
architecture: "x64"
|
||||
|
||||
- run: python --version
|
||||
- run: pip --version
|
||||
|
||||
- name: Get pip cache directory
|
||||
id: pip-cache
|
||||
run: |
|
||||
echo "::set-output name=dir::$(pip cache dir)"
|
||||
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v1
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/miniconda3
|
||||
key: ${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('ci/*.sh') }}-${{ hashFiles('.github/workflows/ci.yml') }}
|
||||
restore-keys: ${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('ci/*.sh') }}-${{ hashFiles('.github/workflows/ci.yml') }}
|
||||
path: ${{ steps.pip-cache.outputs.dir }}
|
||||
key: ${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('**/requirements.txt') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('**/requirements.txt') }}
|
||||
${{ runner.os }}-python-v${{ matrix.python }}-
|
||||
|
||||
- name: Install conda
|
||||
env:
|
||||
PYTHON_VERSION: ${{ matrix.python }}
|
||||
run: |
|
||||
export PATH="$HOME/miniconda3/bin:$PATH"
|
||||
ci/install_conda.sh
|
||||
ci/setup_conda_env.sh
|
||||
- name: Install Python dependencies
|
||||
run: pip install -r requirements.txt
|
||||
|
||||
- name: Run lint
|
||||
run: flake8 --max-line-length 120
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
export PATH="$HOME/miniconda3/bin:$PATH"
|
||||
ci/lint.sh
|
||||
ci/test.sh
|
||||
run: python testUpdateHostsFile.py
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling, porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) containing 83,119 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling, porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) containing 83,471 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -195,15 +196,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -253,8 +257,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4301
-4005
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling, porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) containing 80,363 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling, porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) containing 80,715 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -193,15 +194,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -251,8 +255,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4000
-3886
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) containing 63,568 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) containing 63,740 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -191,15 +192,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -249,8 +253,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4000
-3886
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) containing 60,811 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, gambling extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) containing 60,983 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -189,15 +190,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -247,8 +251,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4301
-4005
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews, porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) containing 80,795 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) containing 81,147 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -194,15 +195,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -252,8 +256,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4301
-4005
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews, porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) containing 78,039 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) containing 78,391 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -192,15 +193,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -250,8 +254,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4000
-3886
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) containing 61,244 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) containing 61,416 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -190,15 +191,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -248,8 +252,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4000
-3886
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with fakenews extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) containing 58,487 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) containing 58,659 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -188,15 +189,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -246,8 +250,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4301
-4005
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with gambling, porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) containing 82,177 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with gambling, porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) containing 82,529 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -194,15 +195,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -252,8 +256,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4301
-4005
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with gambling, porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) containing 79,421 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with gambling, porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) containing 79,773 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -192,15 +193,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -250,8 +254,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4000
-3886
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with gambling, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) containing 62,626 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with gambling, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) containing 62,798 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -190,15 +191,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -248,8 +252,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4000
-3886
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with gambling extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) containing 59,869 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with gambling extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) containing 60,041 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -188,15 +189,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -246,8 +250,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4301
-4005
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) containing 79,853 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) containing 80,205 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -193,15 +194,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -251,8 +255,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4301
-4005
File diff suppressed because it is too large
Load Diff
+29
-26
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) containing 77,097 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) containing 77,449 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -191,15 +192,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -249,8 +253,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+4000
-3886
File diff suppressed because it is too large
Load Diff
+29
-26
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) containing 60,302 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) containing 60,474 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -189,15 +190,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -247,8 +251,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
if [ -d "$HOME/miniconda3" ] && [ -e "$HOME/miniconda3/bin/conda" ]; then
|
||||
echo "Miniconda install already present in cache: $HOME/miniconda3"
|
||||
rm -rf "$HOME"/miniconda3/envs/hosts # Just in case...
|
||||
else
|
||||
echo "Installing Miniconda..."
|
||||
rm -rf "$HOME"/miniconda3 # Just in case...
|
||||
|
||||
if [ "$(uname)" == "Darwin" ]; then
|
||||
wget -nv https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh
|
||||
else
|
||||
wget -nv https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
|
||||
fi
|
||||
|
||||
bash miniconda.sh -b -p "$HOME/miniconda3"
|
||||
fi
|
||||
|
||||
echo "Configuring Miniconda..."
|
||||
conda config --set ssl_verify false
|
||||
conda config --set always_yes true --set changeps1 false
|
||||
|
||||
echo "Updating Miniconda"
|
||||
conda update conda
|
||||
conda update --all
|
||||
conda info -a
|
||||
@@ -1,8 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
echo "Linting repository..."
|
||||
source activate hosts
|
||||
|
||||
flake8 --max-line-length 120
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
echo "Creating a Python $PYTHON_VERSION environment"
|
||||
conda create -n hosts python="$PYTHON_VERSION"
|
||||
source activate hosts
|
||||
|
||||
echo "Installing packages..."
|
||||
conda install flake8 beautifulsoup4 lxml
|
||||
@@ -1,9 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
echo "Running unit tests..."
|
||||
source activate hosts
|
||||
|
||||
python --version
|
||||
python testUpdateHostsFile.py
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
##### Version Information #
|
||||
###################################################
|
||||
### Version: V1.2020.06.8365
|
||||
### Version: V1.2020.07.8392
|
||||
##### Version Information ##
|
||||
|
||||
# Use this file to prevent your computer or server from connecting to selected
|
||||
@@ -113,7 +113,6 @@
|
||||
0.0.0.0 12.com
|
||||
0.0.0.0 1-2fly-befragung.de
|
||||
0.0.0.0 12masterov.com
|
||||
0.0.0.0 12month.loan
|
||||
0.0.0.0 12research.com
|
||||
0.0.0.0 12u.info
|
||||
0.0.0.0 12xhardcore.com
|
||||
@@ -437,7 +436,6 @@
|
||||
0.0.0.0 acompanhantesbrasil.com.br
|
||||
0.0.0.0 acompanhantesdeportugal.com
|
||||
0.0.0.0 acornpointlodge.com
|
||||
0.0.0.0 acortarurl.es
|
||||
0.0.0.0 acoustoopticmodulator.com
|
||||
0.0.0.0 acpbdf.com.br
|
||||
0.0.0.0 acproyectos.com
|
||||
@@ -586,7 +584,6 @@
|
||||
0.0.0.0 an-donut.com
|
||||
0.0.0.0 andrewrobertsllc.info
|
||||
0.0.0.0 android-style.com
|
||||
0.0.0.0 android-systems.ru
|
||||
0.0.0.0 anduongjsc.com
|
||||
0.0.0.0 andydill.com
|
||||
0.0.0.0 anews.cc
|
||||
@@ -752,7 +749,6 @@
|
||||
0.0.0.0 fd1.eye.to
|
||||
0.0.0.0 fd2.eye.to
|
||||
0.0.0.0 fd4.eye.to
|
||||
0.0.0.0 fnmsk.ru
|
||||
0.0.0.0 free-dating-site.allmanpages.com
|
||||
0.0.0.0 freedomart.cz
|
||||
0.0.0.0 free-gay.de
|
||||
@@ -768,7 +764,6 @@
|
||||
0.0.0.0 freehostservers.com
|
||||
0.0.0.0 freeindiangals.com
|
||||
0.0.0.0 freeuploader.ml
|
||||
0.0.0.0 freudebote.de
|
||||
0.0.0.0 fx.gtop.ro
|
||||
0.0.0.0 girlporn.ru
|
||||
0.0.0.0 globetrotting-culture.ru
|
||||
@@ -820,6 +815,7 @@
|
||||
0.0.0.0 huisvrouwen.be
|
||||
0.0.0.0 hukbo.com
|
||||
0.0.0.0 humanelydrew.com
|
||||
0.0.0.0 humorcartoes.com.sapo.pt
|
||||
0.0.0.0 humorpool.com
|
||||
0.0.0.0 humortadelacartoes.com.sapo.pt
|
||||
0.0.0.0 humraaz.com
|
||||
|
||||
+1763
-1250
File diff suppressed because it is too large
Load Diff
+1540
-1400
File diff suppressed because it is too large
Load Diff
+380
-599
File diff suppressed because it is too large
Load Diff
+4
-152
@@ -4075,7 +4075,6 @@
|
||||
127.0.0.1 bdimg.share.baidu.com
|
||||
127.0.0.1 sandbox.sjws.baidu.com
|
||||
127.0.0.1 sobar.baidu.com
|
||||
127.0.0.1 sp0.baidu.com
|
||||
127.0.0.1 sp1.baidu.com
|
||||
127.0.0.1 static.tieba.baidu.com
|
||||
127.0.0.1 toolbar.baidu.com
|
||||
@@ -5201,10 +5200,6 @@
|
||||
# [cn.com]
|
||||
127.0.0.1 id1.cn.com
|
||||
|
||||
# [cnbc.com]
|
||||
127.0.0.1 fm.cnbc.com
|
||||
127.0.0.1 mps.cnbc.com
|
||||
|
||||
# [cnn.com]
|
||||
127.0.0.1 agility.cnn.com
|
||||
127.0.0.1 mms.cnn.com
|
||||
@@ -5349,10 +5344,6 @@
|
||||
# [consoliads.com]
|
||||
127.0.0.1 sdk.consoliads.com
|
||||
|
||||
# [constantcontact.com]
|
||||
127.0.0.1 files.constantcontact.com
|
||||
127.0.0.1 imgssl.constantcontact.com
|
||||
|
||||
# [constintptr.com]
|
||||
127.0.0.1 constintptr.com
|
||||
|
||||
@@ -5416,9 +5407,6 @@
|
||||
127.0.0.1 vrl.m.conviva.com
|
||||
127.0.0.1 pings.conviva.com
|
||||
|
||||
# [cookielaw.org]
|
||||
127.0.0.1 cdn.cookielaw.org
|
||||
|
||||
# [coremetrics.com]
|
||||
127.0.0.1 coremetrics.com
|
||||
127.0.0.1 data.coremetrics.com
|
||||
@@ -5510,9 +5498,6 @@
|
||||
# [crispmedia.com]
|
||||
127.0.0.1 crispmedia.com
|
||||
|
||||
# [crispwireless.com]
|
||||
127.0.0.1 crispwireless.com
|
||||
|
||||
# [criteo.com]
|
||||
127.0.0.1 criteo.com
|
||||
127.0.0.1 ads.as.criteo.com
|
||||
@@ -5638,12 +5623,6 @@
|
||||
127.0.0.1 creatives.crossinstall.io
|
||||
127.0.0.1 step-service.crossinstall.io
|
||||
|
||||
# [crossrider.com]
|
||||
127.0.0.1 crossrider.com
|
||||
|
||||
# [crowdin.com]
|
||||
127.0.0.1 api.crowdin.com
|
||||
|
||||
# [crowdtangle.com]
|
||||
127.0.0.1 api.crowdtangle.com
|
||||
127.0.0.1 apps.crowdtangle.com
|
||||
@@ -5711,9 +5690,6 @@
|
||||
# [cuebiq.com]
|
||||
127.0.0.1 in.cuebiq.com
|
||||
|
||||
# [curalate.com]
|
||||
127.0.0.1 cdn.curalate.com
|
||||
|
||||
# [customer.io]
|
||||
127.0.0.1 track.customer.io
|
||||
|
||||
@@ -5783,10 +5759,6 @@
|
||||
127.0.0.1 brands.datahc.com
|
||||
127.0.0.1 redirect.datahc.com
|
||||
|
||||
# [datapipe.com]
|
||||
127.0.0.1 cloud.datapipe.com
|
||||
127.0.0.1 one.datapipe.com
|
||||
|
||||
# [datasphere.com]
|
||||
127.0.0.1 cloud.datasphere.com
|
||||
127.0.0.1 eventss3.cloud.datasphere.com
|
||||
@@ -6606,13 +6578,7 @@
|
||||
127.0.0.1 dlt-beacon.dynatrace-managed.com
|
||||
|
||||
# [dynatrace.com]
|
||||
127.0.0.1 dynatrace.com
|
||||
127.0.0.1 assets.dynatrace.com
|
||||
127.0.0.1 cr01.dynatrace.com
|
||||
127.0.0.1 cr02.dynatrace.com
|
||||
127.0.0.1 js-cdn.dynatrace.com
|
||||
127.0.0.1 mcsvc.dynatrace.com
|
||||
127.0.0.1 signin.dynatrace.com
|
||||
|
||||
# [dyntrk.com]
|
||||
127.0.0.1 dyntrk.com
|
||||
@@ -6785,8 +6751,6 @@
|
||||
127.0.0.1 cbola-logging-1-t3.us-east-1.elasticbeanstalk.com
|
||||
127.0.0.1 cbola-psa.us-east-1.elasticbeanstalk.com
|
||||
127.0.0.1 cloud-graphql-live.us-east-1.elasticbeanstalk.com
|
||||
127.0.0.1 curalate-api-prod.us-east-1.elasticbeanstalk.com
|
||||
127.0.0.1 curalate-like2buy-prod-vpc.us-east-1.elasticbeanstalk.com
|
||||
127.0.0.1 ddm-analystic-pro2.us-east-1.elasticbeanstalk.com
|
||||
127.0.0.1 dhg-logging.us-east-1.elasticbeanstalk.com
|
||||
127.0.0.1 ei-event-collector.us-east-1.elasticbeanstalk.com
|
||||
@@ -6843,25 +6807,6 @@
|
||||
127.0.0.1 hb.emxdgt.com
|
||||
127.0.0.1 imp.emxdgt.com
|
||||
|
||||
# [emxdigital.com]
|
||||
127.0.0.1 emxdigital.com
|
||||
|
||||
# [en25.com]
|
||||
127.0.0.1 img02.en25.com
|
||||
127.0.0.1 img03.en25.com
|
||||
127.0.0.1 img04.en25.com
|
||||
127.0.0.1 img06.en25.com
|
||||
127.0.0.1 img07.en25.com
|
||||
|
||||
# [engage.co]
|
||||
127.0.0.1 sdk.engage.co
|
||||
127.0.0.1 status.engage.co
|
||||
127.0.0.1 wapi.engage.co
|
||||
127.0.0.1 xdomain.engage.co
|
||||
|
||||
# [engagebdr.com]
|
||||
127.0.0.1 engagebdr.com
|
||||
|
||||
# [engageclick.com]
|
||||
127.0.0.1 turbo.engageclick.com
|
||||
|
||||
@@ -6905,21 +6850,12 @@
|
||||
127.0.0.1 w.ads2.eqads.com
|
||||
127.0.0.1 um2.eqads.com
|
||||
|
||||
# [eqworks.com]
|
||||
127.0.0.1 eqworks.com
|
||||
|
||||
# [esellerate.net]
|
||||
127.0.0.1 esellerate.net
|
||||
|
||||
# [espn.com]
|
||||
127.0.0.1 log.espn.com
|
||||
|
||||
# [estara.com]
|
||||
127.0.0.1 as00.estara.com
|
||||
|
||||
# [estream.com]
|
||||
127.0.0.1 v3dev.estream.com
|
||||
|
||||
# [et-code.ru]
|
||||
127.0.0.1 et-code.ru
|
||||
|
||||
@@ -6960,63 +6896,14 @@
|
||||
127.0.0.1 tp-emea.exactag.com
|
||||
|
||||
# [exacttarget.com]
|
||||
127.0.0.1 bounce.exacttarget.com
|
||||
127.0.0.1 bounce-mx.exacttarget.com
|
||||
127.0.0.1 brandcdn.exacttarget.com
|
||||
127.0.0.1 mc.exacttarget.com
|
||||
127.0.0.1 cr114.mta.exacttarget.com
|
||||
127.0.0.1 cr144.mta.exacttarget.com
|
||||
127.0.0.1 cr171.mta.exacttarget.com
|
||||
127.0.0.1 cr71.mta.exacttarget.com
|
||||
127.0.0.1 cr91.mta.exacttarget.com
|
||||
127.0.0.1 cw23.mta.exacttarget.com
|
||||
127.0.0.1 cw230.mta.exacttarget.com
|
||||
127.0.0.1 df12.mta.exacttarget.com
|
||||
127.0.0.1 df140.mta.exacttarget.com
|
||||
127.0.0.1 df177.mta.exacttarget.com
|
||||
127.0.0.1 df57.mta.exacttarget.com
|
||||
127.0.0.1 dg7.mta.exacttarget.com
|
||||
127.0.0.1 pages.exacttarget.com
|
||||
127.0.0.1 reply.exacttarget.com
|
||||
127.0.0.1 inbound.s1.exacttarget.com
|
||||
127.0.0.1 inbound-reply.s1.exacttarget.com
|
||||
127.0.0.1 pub.s1.exacttarget.com
|
||||
127.0.0.1 bounce.s10.exacttarget.com
|
||||
127.0.0.1 mc.s10.exacttarget.com
|
||||
127.0.0.1 pub.s10.exacttarget.com
|
||||
127.0.0.1 reply.s10.exacttarget.com
|
||||
127.0.0.1 pages.virt.s10.exacttarget.com
|
||||
127.0.0.1 view.virt.s10.exacttarget.com
|
||||
127.0.0.1 inbound.s4.exacttarget.com
|
||||
127.0.0.1 inbound-reply.s4.exacttarget.com
|
||||
127.0.0.1 mc.s4.exacttarget.com
|
||||
127.0.0.1 pages.s4.exacttarget.com
|
||||
127.0.0.1 pub.s4.exacttarget.com
|
||||
127.0.0.1 pages.virt.s4.exacttarget.com
|
||||
127.0.0.1 view.virt.s4.exacttarget.com
|
||||
127.0.0.1 inbound.s5.exacttarget.com
|
||||
127.0.0.1 inbound.s6.exacttarget.com
|
||||
127.0.0.1 inbound-reply.s6.exacttarget.com
|
||||
127.0.0.1 mc.s6.exacttarget.com
|
||||
127.0.0.1 pages.s6.exacttarget.com
|
||||
127.0.0.1 pub.s6.exacttarget.com
|
||||
127.0.0.1 reply-mx.s6.exacttarget.com
|
||||
127.0.0.1 pages.virt.s6.exacttarget.com
|
||||
127.0.0.1 view.virt.s6.exacttarget.com
|
||||
127.0.0.1 bounce.s7.exacttarget.com
|
||||
127.0.0.1 image.s7.exacttarget.com
|
||||
127.0.0.1 inbound.s7.exacttarget.com
|
||||
127.0.0.1 inbound-reply.s7.exacttarget.com
|
||||
127.0.0.1 mc.s7.exacttarget.com
|
||||
127.0.0.1 pages.s7.exacttarget.com
|
||||
127.0.0.1 pub.s7.exacttarget.com
|
||||
127.0.0.1 reply-mx.s7.exacttarget.com
|
||||
127.0.0.1 origin-click.virt.s7.exacttarget.com
|
||||
127.0.0.1 pages.virt.s7.exacttarget.com
|
||||
127.0.0.1 view.virt.s7.exacttarget.com
|
||||
127.0.0.1 view.exacttarget.com
|
||||
127.0.0.1 pages.virt.exacttarget.com
|
||||
127.0.0.1 view.virt.exacttarget.com
|
||||
|
||||
# [exacttargetapis.com]
|
||||
127.0.0.1 exacttargetapis.com
|
||||
@@ -7140,9 +7027,6 @@
|
||||
# [feng.com]
|
||||
127.0.0.1 yes1.feng.com
|
||||
|
||||
# [fevo.com]
|
||||
127.0.0.1 sdk.fevo.com
|
||||
|
||||
# [fgl.com]
|
||||
127.0.0.1 ads.fgl.com
|
||||
127.0.0.1 enhance-config.fgl.com
|
||||
@@ -7656,9 +7540,6 @@
|
||||
127.0.0.1 cdn-prod-defaulting-gamedev-ads.gismart.xyz
|
||||
127.0.0.1 prod-defaulting-subscriptiontool.gismart.xyz
|
||||
|
||||
# [gitter.im]
|
||||
127.0.0.1 sidecar.gitter.im
|
||||
|
||||
# [gladly.com]
|
||||
127.0.0.1 cdn.gladly.com
|
||||
127.0.0.1 production1.gladly.com
|
||||
@@ -9443,11 +9324,6 @@
|
||||
# [kaotic.com]
|
||||
127.0.0.1 kaotic.com
|
||||
|
||||
# [kaptcha.com]
|
||||
127.0.0.1 ssl.kaptcha.com
|
||||
127.0.0.1 a.stun.kaptcha.com
|
||||
127.0.0.1 tst.kaptcha.com
|
||||
|
||||
# [kargo.com]
|
||||
127.0.0.1 ad-monitor.kargo.com
|
||||
127.0.0.1 adserve.kargo.com
|
||||
@@ -11105,6 +10981,7 @@
|
||||
|
||||
# [miui.com]
|
||||
127.0.0.1 tracking.intl.miui.com
|
||||
127.0.0.1 api.sec.miui.com
|
||||
127.0.0.1 logupdate.avlyun.sec.miui.com
|
||||
127.0.0.1 tracking.miui.com
|
||||
127.0.0.1 fcanr.tracking.miui.com
|
||||
@@ -12023,14 +11900,6 @@
|
||||
# [msales.com]
|
||||
127.0.0.1 msales.com
|
||||
|
||||
# [msecnd.net]
|
||||
127.0.0.1 az361816.vo.msecnd.net
|
||||
127.0.0.1 az413505.vo.msecnd.net
|
||||
127.0.0.1 az416426.vo.msecnd.net
|
||||
127.0.0.1 az512334.vo.msecnd.net
|
||||
127.0.0.1 az598575.vo.msecnd.net
|
||||
127.0.0.1 az708531.vo.msecnd.net
|
||||
|
||||
# [msn.com]
|
||||
127.0.0.1 adevents.msn.com
|
||||
127.0.0.1 ads.msn.com
|
||||
@@ -12709,9 +12578,6 @@
|
||||
# [onespot.com]
|
||||
127.0.0.1 px.onespot.com
|
||||
|
||||
# [onetrust.com]
|
||||
127.0.0.1 geolocation.onetrust.com
|
||||
|
||||
# [onewaylinkexchange.net]
|
||||
127.0.0.1 onewaylinkexchange.net
|
||||
|
||||
@@ -13570,10 +13436,6 @@
|
||||
127.0.0.1 phunware.com
|
||||
127.0.0.1 analytics-api.phunware.com
|
||||
|
||||
# [piano.io]
|
||||
127.0.0.1 piano.io
|
||||
127.0.0.1 publisher.piano.io
|
||||
|
||||
# [picooapps.com]
|
||||
127.0.0.1 adsdk.picooapps.com
|
||||
|
||||
@@ -16633,7 +16495,6 @@
|
||||
127.0.0.1 ip.taobao.com
|
||||
127.0.0.1 ju.taobao.com
|
||||
127.0.0.1 accscdn.m.taobao.com
|
||||
127.0.0.1 acs.m.taobao.com
|
||||
127.0.0.1 acs4baichuan.m.taobao.com
|
||||
127.0.0.1 adash.m.taobao.com
|
||||
127.0.0.1 adashbc.m.taobao.com
|
||||
@@ -17009,14 +16870,6 @@
|
||||
# [tiny.cloud]
|
||||
127.0.0.1 rainmaker.tiny.cloud
|
||||
|
||||
# [tinypass.com]
|
||||
127.0.0.1 api.tinypass.com
|
||||
127.0.0.1 api-v3.tinypass.com
|
||||
127.0.0.1 buy.tinypass.com
|
||||
127.0.0.1 cdn.tinypass.com
|
||||
127.0.0.1 fonts.tinypass.com
|
||||
127.0.0.1 id.tinypass.com
|
||||
|
||||
# [tiqcdn.com]
|
||||
127.0.0.1 tiqcdn.com
|
||||
127.0.0.1 tags.tiqcdn.com
|
||||
@@ -17199,7 +17052,6 @@
|
||||
|
||||
# [truecaller.com]
|
||||
127.0.0.1 batchlogging4.truecaller.com
|
||||
127.0.0.1 presence-grpc-noneu.truecaller.com
|
||||
127.0.0.1 pushid-noneu.truecaller.com
|
||||
|
||||
# [truoctran.com]
|
||||
@@ -18429,6 +18281,9 @@
|
||||
127.0.0.1 sdkconfig.ad.intl.xiaomi.com
|
||||
127.0.0.1 zeus.ad.intl.xiaomi.com
|
||||
|
||||
# [xiaomi.net]
|
||||
127.0.0.1 api.device.xiaomi.net
|
||||
|
||||
# [xiaoying.co]
|
||||
127.0.0.1 ad-sdk.altamob.xiaoying.co
|
||||
|
||||
@@ -18822,9 +18677,6 @@
|
||||
127.0.0.1 log.sdk.zadn.vn
|
||||
127.0.0.1 zalo-ads-td.zadn.vn
|
||||
|
||||
# [zalo.me]
|
||||
127.0.0.1 shop.zalo.me
|
||||
|
||||
# [zaloapp.com]
|
||||
127.0.0.1 ads.zaloapp.com
|
||||
127.0.0.1 log.api.zaloapp.com
|
||||
|
||||
+61
-78
@@ -1,7 +1,7 @@
|
||||
# Title: hostsVN
|
||||
# Last modified: 31 May 2020 22:10 UTC+7
|
||||
# Version: 2005312210
|
||||
# Blocked: 1,399 domains
|
||||
# Last modified: 15 Jul 2020 16:09 UTC+7
|
||||
# Version: 2007151609
|
||||
# Blocked: 1,379 domains
|
||||
# Only include advertisers in Vietnam
|
||||
# Homepage: https://bigdargon.github.io/hostsVN/
|
||||
# GitHub: https://github.com/bigdargon/hostsVN
|
||||
@@ -412,21 +412,21 @@
|
||||
0.0.0.0 logv2.mp3.zing.vn
|
||||
0.0.0.0 tracking.playzing.g6.zing.vn
|
||||
#[zalo.me]
|
||||
0.0.0.0 ads.platform.zalo.me
|
||||
0.0.0.0 ads.zalo.me
|
||||
0.0.0.0 px.za.zalo.me
|
||||
0.0.0.0 shop.zalo.me
|
||||
0.0.0.0 sp.zalo.me
|
||||
#[zaloapp.com]
|
||||
0.0.0.0 ads.zaloapp.com
|
||||
0.0.0.0 log.api.zaloapp.com
|
||||
0.0.0.0 photo-ads.zaloapp.com
|
||||
0.0.0.0 px.za.zaloapp.com
|
||||
0.0.0.0 shop.zaloapp.com
|
||||
0.0.0.0 static-ads.zaloapp.com
|
||||
0.0.0.0 stats.zaloapp.com
|
||||
0.0.0.0 stc.za.zaloapp.com
|
||||
0.0.0.0 wg.zaloapp.com
|
||||
0.0.0.0 zminer.zaloapp.com
|
||||
0.0.0.0 ztevents.zaloapp.com
|
||||
#[zadn.vn]
|
||||
0.0.0.0 adtima-media-td.zadn.vn
|
||||
0.0.0.0 adtima-media.zadn.vn
|
||||
@@ -450,26 +450,6 @@
|
||||
0.0.0.0 log.zingnews.vn
|
||||
0.0.0.0 log.zingtv.vn
|
||||
0.0.0.0 zlog.zingmp3.vn
|
||||
#[vietad]
|
||||
0.0.0.0 ads.vietad.vn
|
||||
0.0.0.0 as.vietad.vn
|
||||
0.0.0.0 banner.vietad.vn
|
||||
0.0.0.0 cpd.vietad.vn
|
||||
0.0.0.0 display.vietad.vn
|
||||
0.0.0.0 embed.vietad.vn
|
||||
0.0.0.0 i.vietad.vn
|
||||
0.0.0.0 img.vietad.vn
|
||||
0.0.0.0 logb20.vietad.vn
|
||||
0.0.0.0 logb21.vietad.vn
|
||||
0.0.0.0 logb22.vietad.vn
|
||||
0.0.0.0 logb23.vietad.vn
|
||||
0.0.0.0 logb3.vietad.vn
|
||||
0.0.0.0 logw.vietad.vn
|
||||
0.0.0.0 nlb.vietad.vn
|
||||
0.0.0.0 vietad.vn
|
||||
0.0.0.0 www.vietad.vn
|
||||
0.0.0.0 z.vietad.vn
|
||||
0.0.0.0 zone.vietad.vn
|
||||
#[anthill]
|
||||
0.0.0.0 a.anthill.vn
|
||||
0.0.0.0 anthill.vn
|
||||
@@ -600,7 +580,7 @@
|
||||
0.0.0.0 tracking.fff.com.vn
|
||||
0.0.0.0 ws.fff.com.vn
|
||||
0.0.0.0 www.fff.com.vn
|
||||
#[ladipage]
|
||||
#[ladipage.vn]
|
||||
0.0.0.0 api.ladipage.vn
|
||||
0.0.0.0 builder.ladipage.vn
|
||||
0.0.0.0 doitac.ladipage.vn
|
||||
@@ -609,15 +589,23 @@
|
||||
0.0.0.0 theme.ladipage.vn
|
||||
0.0.0.0 themes.ladipage.vn
|
||||
0.0.0.0 www.ladipage.vn
|
||||
#[ladipage.net]
|
||||
0.0.0.0 ladipage.net
|
||||
0.0.0.0 static.ladipage.net
|
||||
#[ladipage.com]
|
||||
0.0.0.0 api.forms.ladipage.com
|
||||
0.0.0.0 api.ladipage.com
|
||||
0.0.0.0 builder.ladipage.com
|
||||
0.0.0.0 la.ladipage.com
|
||||
0.0.0.0 ladipage.com
|
||||
0.0.0.0 ladi.me
|
||||
#[ladipage.net]
|
||||
0.0.0.0 ladipage.net
|
||||
0.0.0.0 static.ladipage.net
|
||||
#[ladicdn.com]
|
||||
0.0.0.0 cdn.ladicdn.com
|
||||
0.0.0.0 g.ladicdn.com
|
||||
0.0.0.0 ladicdn.com
|
||||
0.0.0.0 v.ladicdn.com
|
||||
0.0.0.0 w.ladicdn.com
|
||||
0.0.0.0 www.ladicdn.com
|
||||
#[ezimar.com]
|
||||
0.0.0.0 caohavan.ezimar.com
|
||||
0.0.0.0 ezdns.ezimar.com
|
||||
@@ -655,7 +643,6 @@
|
||||
0.0.0.0 gandalf.younetmedia.com
|
||||
0.0.0.0 git.younetmedia.com
|
||||
0.0.0.0 jenkins.younetmedia.com
|
||||
0.0.0.0 mail.younetmedia.com
|
||||
0.0.0.0 ranking.younetmedia.com
|
||||
0.0.0.0 sen02.younetmedia.com
|
||||
0.0.0.0 sh.younetmedia.com
|
||||
@@ -720,7 +707,6 @@
|
||||
0.0.0.0 api.cityads.com
|
||||
0.0.0.0 auth.cityads.com
|
||||
0.0.0.0 auth2.cityads.com
|
||||
0.0.0.0 blog.cityads.com
|
||||
0.0.0.0 cdn.cityads.com
|
||||
0.0.0.0 cdn77.cityads.com
|
||||
0.0.0.0 challenge.cityads.com
|
||||
@@ -800,7 +786,6 @@
|
||||
0.0.0.0 xacthuc.autoads.asia
|
||||
#[phanquang.vn]
|
||||
0.0.0.0 click.phanquang.vn
|
||||
0.0.0.0 mail.phanquang.vn
|
||||
0.0.0.0 phanquang.vn
|
||||
0.0.0.0 quangcao.phanquang.vn
|
||||
0.0.0.0 www.phanquang.vn
|
||||
@@ -818,8 +803,6 @@
|
||||
0.0.0.0 www.ohchat.net
|
||||
#[mediaz.vn]
|
||||
0.0.0.0 adwords.mediaz.vn
|
||||
0.0.0.0 blog.mediaz.vn
|
||||
0.0.0.0 book.mediaz.vn
|
||||
0.0.0.0 booking.mediaz.vn
|
||||
0.0.0.0 brief.mediaz.vn
|
||||
0.0.0.0 creative.mediaz.vn
|
||||
@@ -827,16 +810,10 @@
|
||||
0.0.0.0 erp.mediaz.vn
|
||||
0.0.0.0 facebook-ads.mediaz.vn
|
||||
0.0.0.0 go.mediaz.vn
|
||||
0.0.0.0 hotro.mediaz.vn
|
||||
0.0.0.0 imc.mediaz.vn
|
||||
0.0.0.0 insight.mediaz.vn
|
||||
0.0.0.0 landing.mediaz.vn
|
||||
0.0.0.0 landingpage1.mediaz.vn
|
||||
0.0.0.0 mediaz.vn
|
||||
0.0.0.0 ns1.mediaz.vn
|
||||
0.0.0.0 ns2.mediaz.vn
|
||||
0.0.0.0 ns3.mediaz.vn
|
||||
0.0.0.0 ns4.mediaz.vn
|
||||
0.0.0.0 nsbak.mediaz.vn
|
||||
0.0.0.0 offer.mediaz.vn
|
||||
0.0.0.0 pricing.mediaz.vn
|
||||
@@ -861,7 +838,6 @@
|
||||
#[mediad.asia]
|
||||
0.0.0.0 mediad.asia
|
||||
0.0.0.0 adx.mediaz.asia
|
||||
0.0.0.0 blog.mediad.asia
|
||||
0.0.0.0 brief.mediad.asia
|
||||
0.0.0.0 dsp.mediaz.asia
|
||||
0.0.0.0 guide.mediad.asia
|
||||
@@ -921,12 +897,13 @@
|
||||
0.0.0.0 static.dable.io
|
||||
0.0.0.0 thumb.dable.io
|
||||
0.0.0.0 www.dable.io
|
||||
#[adbro]
|
||||
#[adbro.me]
|
||||
0.0.0.0 adbro.me
|
||||
0.0.0.0 api.adbro.me
|
||||
0.0.0.0 apis.adbro.me
|
||||
0.0.0.0 cdn.adbro.me
|
||||
0.0.0.0 portal.adbro.me
|
||||
0.0.0.0 tag.adbro.me
|
||||
#[adasiaholdings]
|
||||
0.0.0.0 adasiaholdings.com
|
||||
0.0.0.0 adnetwork.adasiaholdings.com
|
||||
@@ -1028,13 +1005,6 @@
|
||||
0.0.0.0 log.vads.net.vn
|
||||
0.0.0.0 vads.net.vn
|
||||
0.0.0.0 www.vads.net.vn
|
||||
#[uniad.vn]
|
||||
0.0.0.0 click.uniad.vn
|
||||
0.0.0.0 pub.uniad.vn
|
||||
0.0.0.0 publisher.uniad.vn
|
||||
0.0.0.0 uniad.vn
|
||||
0.0.0.0 www.uniad.vn
|
||||
0.0.0.0 zone.uniad.vn
|
||||
#[mepuzz.com]
|
||||
0.0.0.0 mepuzz.com
|
||||
0.0.0.0 mysql.mepuzz.com
|
||||
@@ -1267,27 +1237,47 @@
|
||||
0.0.0.0 game-static.hotngay.vn
|
||||
0.0.0.0 game.hotngay.vn
|
||||
0.0.0.0 hotngay.vn
|
||||
#[atdnetwork.com]
|
||||
0.0.0.0 adserver.atdnetwork.com
|
||||
0.0.0.0 atdnetwork.com
|
||||
0.0.0.0 delivery.atdnetwork.com
|
||||
0.0.0.0 platform.atdnetwork.com
|
||||
0.0.0.0 static01.atdnetwork.com
|
||||
0.0.0.0 track.atdnetwork.com
|
||||
0.0.0.0 www.atdnetwork.com
|
||||
#[tuiiu.com]
|
||||
0.0.0.0 adi.tuiiu.com
|
||||
0.0.0.0 demo.tuiiu.com
|
||||
0.0.0.0 img.tuiiu.com
|
||||
0.0.0.0 tuiiu.com
|
||||
0.0.0.0 www.tuiiu.com
|
||||
#[clevernet.vn]
|
||||
0.0.0.0 clevernet.vn
|
||||
0.0.0.0 m.clevernet.vn
|
||||
0.0.0.0 www.clevernet.vn
|
||||
#[clickbuy.bz]
|
||||
0.0.0.0 ads.clickbuy.bz
|
||||
0.0.0.0 clickbuy.bz
|
||||
0.0.0.0 lp.clickbuy.bz
|
||||
0.0.0.0 www.clickbuy.bz
|
||||
# --- Block adsVN ---
|
||||
0.0.0.0 703531862.vws.vegacdn.vn
|
||||
0.0.0.0 ad-admin.vnay.vn
|
||||
0.0.0.0 ad-img.icheck.com.vn
|
||||
0.0.0.0 ad.24h.com.vn
|
||||
0.0.0.0 ad.accesstrade.vn
|
||||
0.0.0.0 ad.icheck.com.vn
|
||||
0.0.0.0 ad.mwork.vn
|
||||
0.0.0.0 ad.sunflower.vn
|
||||
0.0.0.0 ad.vatgia.com
|
||||
0.0.0.0 ad.vietbao.vn
|
||||
0.0.0.0 ad.vkool.net
|
||||
0.0.0.0 adadmin.headlines.pw
|
||||
0.0.0.0 adc.quantrimang.com
|
||||
0.0.0.0 adchoice.com
|
||||
0.0.0.0 adchoice.com.vn
|
||||
0.0.0.0 adclient.vietnamnetjsc.vn
|
||||
0.0.0.0 adfox.vn
|
||||
0.0.0.0 adjusts.info
|
||||
0.0.0.0 adm.phunuvagiadinh.vn
|
||||
0.0.0.0 admedia.com.vn
|
||||
0.0.0.0 admin.sothuchi.vn
|
||||
0.0.0.0 adnetwork.5imedia.vn
|
||||
0.0.0.0 adpostback.headlines.pw
|
||||
0.0.0.0 ads-cdn.fptplay.net
|
||||
0.0.0.0 ads.baodatviet.vn
|
||||
@@ -1295,24 +1285,26 @@
|
||||
0.0.0.0 ads.fptplay.net.vn
|
||||
0.0.0.0 ads.home.vn
|
||||
0.0.0.0 ads.ictnews.vn
|
||||
0.0.0.0 ads.itsgroup.vn
|
||||
0.0.0.0 ads.khoahocdoisong.vn
|
||||
0.0.0.0 ads.phunuonline.com.vn
|
||||
0.0.0.0 ads.nghenhinvietnam.vn
|
||||
0.0.0.0 ads.phunusuckhoe.vn
|
||||
0.0.0.0 ads.phunuvagiadinh.vn
|
||||
0.0.0.0 ads.thesaigontimes.vn
|
||||
0.0.0.0 ads.tiki.vn
|
||||
0.0.0.0 ads.tinmoi.vn
|
||||
0.0.0.0 ads.vietbao.vn
|
||||
0.0.0.0 ads.vkool.info
|
||||
0.0.0.0 ads.xemphimso.com
|
||||
0.0.0.0 ads1.careerbuilder.vn
|
||||
0.0.0.0 adserver.lag.vn
|
||||
0.0.0.0 adserver.luzu.vn
|
||||
0.0.0.0 adsplus.vn
|
||||
0.0.0.0 adsv2.autodaily.vn
|
||||
0.0.0.0 adsweb.vn
|
||||
0.0.0.0 adt.com.vn
|
||||
0.0.0.0 adv.anhsangvacuocsong.vn
|
||||
0.0.0.0 adv.baotintuc.vn
|
||||
0.0.0.0 advert-admin.vnay.vn
|
||||
0.0.0.0 advertisement-nhatanh.com
|
||||
0.0.0.0 adx.kul.vn
|
||||
0.0.0.0 adx.xemvtv.net
|
||||
0.0.0.0 affiliate.k4.tinhte.vn
|
||||
@@ -1331,24 +1323,17 @@
|
||||
0.0.0.0 bgadx.com
|
||||
0.0.0.0 cdn-ads.thesaigontimes.vn
|
||||
0.0.0.0 chiasephim.xyz
|
||||
0.0.0.0 clevernet.vn
|
||||
0.0.0.0 click.xdeal.vn
|
||||
0.0.0.0 clipbongda.info
|
||||
0.0.0.0 clix.vn
|
||||
0.0.0.0 cms.vinaads.vn
|
||||
0.0.0.0 core.vnecdn.com
|
||||
0.0.0.0 cpx.vnecdn.com
|
||||
0.0.0.0 crocopop.com
|
||||
0.0.0.0 dc.motphim.co
|
||||
0.0.0.0 dc.motphim.net
|
||||
0.0.0.0 delecpuzz.com
|
||||
0.0.0.0 delivery.senvangvn.com
|
||||
0.0.0.0 delivery.vtcnew.com.vn
|
||||
0.0.0.0 delivery.vungtv.com
|
||||
0.0.0.0 deltago.com
|
||||
0.0.0.0 demopage.me
|
||||
0.0.0.0 dt.vnecdn.com
|
||||
0.0.0.0 events.vungtv.com
|
||||
0.0.0.0 financial-agent.headlines.pw
|
||||
0.0.0.0 fptad.com
|
||||
0.0.0.0 genmonet.com
|
||||
@@ -1359,17 +1344,15 @@
|
||||
0.0.0.0 landingpagelagi.vn
|
||||
0.0.0.0 lottery.headlines.pw
|
||||
0.0.0.0 lottery.vntoday.news
|
||||
0.0.0.0 m.clevernet.vn
|
||||
0.0.0.0 mega1.yeah1.com
|
||||
0.0.0.0 microad.vn
|
||||
0.0.0.0 mobileads.dieuviet.com
|
||||
0.0.0.0 myad.vn
|
||||
0.0.0.0 ng-vn-notice.gameitop.com
|
||||
0.0.0.0 offerwall.headlines.pw
|
||||
0.0.0.0 ox1.vietstock.vn
|
||||
0.0.0.0 phimmedia03.com
|
||||
0.0.0.0 polyad.galaxypub.vn
|
||||
0.0.0.0 qc.yan.vn
|
||||
0.0.0.0 qc.designervn.net
|
||||
0.0.0.0 quangcao.24h.com.vn
|
||||
0.0.0.0 quangcao.baovannghe.com.vn
|
||||
0.0.0.0 quangcao.thanhnien.vn
|
||||
@@ -1379,6 +1362,7 @@
|
||||
0.0.0.0 realclick.vn
|
||||
0.0.0.0 s.giaoducthoidai.vn
|
||||
0.0.0.0 sbbanner.com
|
||||
0.0.0.0 sda.tamdiem247.com
|
||||
0.0.0.0 serving-ad.tv24.vn
|
||||
0.0.0.0 shop.vnay.vn
|
||||
0.0.0.0 static.mvot.vn
|
||||
@@ -1391,7 +1375,6 @@
|
||||
0.0.0.0 trenddigital.vn
|
||||
0.0.0.0 truoctran.com
|
||||
0.0.0.0 tvnotice.kg.garena.vn
|
||||
0.0.0.0 uniad.phimmoi.net
|
||||
0.0.0.0 upfile16.mediaphim.com
|
||||
0.0.0.0 user.headlines.pw
|
||||
0.0.0.0 vietbuzzad.com
|
||||
@@ -1401,10 +1384,10 @@
|
||||
0.0.0.0 widget.headlines.pw
|
||||
0.0.0.0 www.adsweb.vn
|
||||
0.0.0.0 www.adt.com.vn
|
||||
0.0.0.0 www.advertisement-nhatanh.com
|
||||
0.0.0.0 www.alivar.vn
|
||||
0.0.0.0 www.banhtv.org
|
||||
0.0.0.0 www.chiasephim.xyz
|
||||
0.0.0.0 www.clevernet.vn
|
||||
0.0.0.0 www.delecpuzz.com
|
||||
0.0.0.0 www.landingpagelagi.vn
|
||||
0.0.0.0 www.microad.vn
|
||||
@@ -1424,7 +1407,6 @@
|
||||
0.0.0.0 analytics.videocloud.top
|
||||
0.0.0.0 analytics.vnreview.vn
|
||||
0.0.0.0 apl.headlines.pw
|
||||
0.0.0.0 cnnd.vn
|
||||
0.0.0.0 deqik.com
|
||||
0.0.0.0 elogs.vnexpress.net
|
||||
0.0.0.0 event.headlines.pw
|
||||
@@ -1435,12 +1417,15 @@
|
||||
0.0.0.0 lg.lotus.vn
|
||||
0.0.0.0 log.anninhthudo.vn
|
||||
0.0.0.0 log.baodatviet.vn
|
||||
0.0.0.0 log.baodauthau.vn
|
||||
0.0.0.0 log.baomoi.com
|
||||
0.0.0.0 log.baophapluat.vn
|
||||
0.0.0.0 log.batdongsan.com.vn
|
||||
0.0.0.0 log.giaoduc.net.vn
|
||||
0.0.0.0 log.infonet.vn
|
||||
0.0.0.0 log.kienthuc.net.vn
|
||||
0.0.0.0 log.ngaynay.vn
|
||||
0.0.0.0 log.nhipcaudautu.vn
|
||||
0.0.0.0 log.sggp.org.vn
|
||||
0.0.0.0 log.tapchitaichinh.vn
|
||||
0.0.0.0 log.thanhnien.vn
|
||||
@@ -1451,8 +1436,8 @@
|
||||
0.0.0.0 log.vntoday.news
|
||||
0.0.0.0 log.vov.vn
|
||||
0.0.0.0 log4x.nixcdn.com
|
||||
0.0.0.0 logg4u.cnnd.vn
|
||||
0.0.0.0 logging.galaxypub.vn
|
||||
0.0.0.0 logging.phunuonline.com.vn
|
||||
0.0.0.0 logs.giaoducthoidai.vn
|
||||
0.0.0.0 logs.thethaovanhoa.vn
|
||||
0.0.0.0 logsbin.dantri.com.vn
|
||||
@@ -1467,16 +1452,19 @@
|
||||
0.0.0.0 staticad.thethao247.vn
|
||||
0.0.0.0 stats.bizweb.vn
|
||||
0.0.0.0 stats.dongphim.net
|
||||
0.0.0.0 stats.petrotimes.vn
|
||||
0.0.0.0 stats.tamdiem247.com
|
||||
0.0.0.0 stats.vietnammoi.vn
|
||||
0.0.0.0 sv-api-event.headlines.pw
|
||||
0.0.0.0 thongke.24h.com.vn
|
||||
0.0.0.0 thongke.baotintuc.vn
|
||||
0.0.0.0 thongke99.baogiaothong.vn
|
||||
0.0.0.0 track-srv.vietnamnet.vn
|
||||
0.0.0.0 track.accesstrade.vn
|
||||
0.0.0.0 track.icheck.com.vn
|
||||
0.0.0.0 track.pregmomvietnam.com
|
||||
0.0.0.0 track.sendo.vn
|
||||
0.0.0.0 track.srv.vietnamnet.vn
|
||||
0.0.0.0 track.vatgia.com
|
||||
0.0.0.0 tracker.phunuvagiadinh.vn
|
||||
0.0.0.0 tracker.tintucvietnam.vn
|
||||
0.0.0.0 tracking.appwifi.com
|
||||
0.0.0.0 tracking.meete.co
|
||||
@@ -1489,10 +1477,8 @@
|
||||
0.0.0.0 userstats.shopee.vn
|
||||
0.0.0.0 vn.alexajstrack.com
|
||||
0.0.0.0 vtrack.vht.com.vn
|
||||
0.0.0.0 web.f8.pyco.vn
|
||||
0.0.0.0 web.stagingf8.pycogroup.com
|
||||
0.0.0.0 widget.nhaccuatui.com
|
||||
0.0.0.0 www.trending.vn
|
||||
# --- Block scamVN ---
|
||||
0.0.0.0 celerantatters.com
|
||||
0.0.0.0 fuckbookvietnam.com
|
||||
@@ -1500,8 +1486,5 @@
|
||||
0.0.0.0 quangcaotructuyen247.com
|
||||
0.0.0.0 rituationscardb.info
|
||||
0.0.0.0 sacchaeleduk.com
|
||||
0.0.0.0 sukientraogiaizalo.com
|
||||
0.0.0.0 www.fuckbookvietnam.com
|
||||
0.0.0.0 www.quangcaotructuyen247.com
|
||||
0.0.0.0 www.xmobliefacebook.com
|
||||
0.0.0.0 xmobliefacebook.com
|
||||
|
||||
+1
-414
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@
|
||||
# Please forward any additions, corrections or comments by email to
|
||||
# hosts@someonewhocares.org
|
||||
|
||||
# Last updated: Tue, 02 Jun 2020 at 01:27:37 GMT
|
||||
# Last updated: Wed, 22 Jul 2020 at 05:24:40 GMT
|
||||
|
||||
# Use this file to prevent your computer from connecting to selected
|
||||
# internet hosts. This is an easy and effective way to protect you from
|
||||
@@ -396,6 +396,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 adopt.specificclick.net
|
||||
0.0.0.0 ads.tiscali.com
|
||||
0.0.0.0 ads.tiscali.it
|
||||
0.0.0.0 adtrack.appcpi.net
|
||||
0.0.0.0 adult.foxcounter.com
|
||||
0.0.0.0 affiliate.ab1trk.com
|
||||
0.0.0.0 affiliate.irotracker.com
|
||||
@@ -411,11 +412,15 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 amer.hops.glbdns.microsoft.com
|
||||
0.0.0.0 amer.rel.msn.com
|
||||
0.0.0.0 an.mlb.com
|
||||
0.0.0.0 analytics-ingress-global.bitmovin.com
|
||||
0.0.0.0 analytics-static.ugc.bazaarvoice.com
|
||||
0.0.0.0 analytics.global.sky.com
|
||||
0.0.0.0 analytics.msnbc.msn.com
|
||||
0.0.0.0 analytics.myfinances.com
|
||||
0.0.0.0 analytics.ooyala.com
|
||||
0.0.0.0 analytics.prx.org
|
||||
0.0.0.0 analytics.publitas.com
|
||||
0.0.0.0 analytics.sleeknote.com
|
||||
0.0.0.0 anm.intelli-direct.com
|
||||
0.0.0.0 anonymousdemographics.com
|
||||
0.0.0.0 ant.conversive.nl
|
||||
@@ -432,6 +437,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 api.simpleanalytics.io
|
||||
0.0.0.0 api.tumra.com
|
||||
0.0.0.0 api2.murdoog.com
|
||||
0.0.0.0 apiadapter.ad5track.com
|
||||
0.0.0.0 apis.murdoog.com
|
||||
0.0.0.0 app-analytics.snapchat.com
|
||||
0.0.0.0 app.yesware.com
|
||||
@@ -870,6 +876,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 entry-stats.huffingtonpost.com
|
||||
0.0.0.0 environmentalgraffiti.uk.intellitxt.com
|
||||
0.0.0.0 es.optimost.com
|
||||
0.0.0.0 eu-track.inside-graph.com
|
||||
0.0.0.0 eus.rubiconproject.com
|
||||
0.0.0.0 exch.quantserve.com
|
||||
0.0.0.0 extremereach.com
|
||||
@@ -903,6 +910,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 fs10.fusestats.com
|
||||
0.0.0.0 ft2.autonomycloud.com
|
||||
0.0.0.0 g-wizzads.net
|
||||
0.0.0.0 gameanalysis.appcpi.net
|
||||
0.0.0.0 gapl.hit.gemius.pl
|
||||
0.0.0.0 gator.com
|
||||
0.0.0.0 gbr-7stars-tracking.adalyser.com
|
||||
@@ -1165,6 +1173,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 mvtracker.com
|
||||
0.0.0.0 mx.iesnare.com
|
||||
0.0.0.0 mx.iovation.com
|
||||
0.0.0.0 mybbc-analytics.files.bbci.co.uk
|
||||
0.0.0.0 mystats.com
|
||||
0.0.0.0 nedstat.s0.nl
|
||||
0.0.0.0 net-radar.com
|
||||
@@ -1231,6 +1240,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 printmail.biz
|
||||
0.0.0.0 privacy-policy.truste.com
|
||||
0.0.0.0 prof.estat.com
|
||||
0.0.0.0 propeller-tracking.com
|
||||
0.0.0.0 proxy.ia2.marketscore.com
|
||||
0.0.0.0 proxy.ia3.marketscore.com
|
||||
0.0.0.0 proxy.ia4.marketscore.com
|
||||
@@ -1403,7 +1413,6 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 smetrics.washingtonpost.com
|
||||
0.0.0.0 snare.iesnare.com
|
||||
0.0.0.0 soap.iovation.com
|
||||
0.0.0.0 socialize.eu1.gigya.com
|
||||
0.0.0.0 softcore.xxxcounter.com
|
||||
0.0.0.0 softonic.it
|
||||
0.0.0.0 solamor.com
|
||||
@@ -1774,6 +1783,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 tracka.businessleadbuilder.com
|
||||
0.0.0.0 tracker.blueprintinteractivetest.com
|
||||
0.0.0.0 tracker.bonnint.net
|
||||
0.0.0.0 tracker.bt.uol.com.br
|
||||
0.0.0.0 tracker.cl1.fidelizador.com
|
||||
0.0.0.0 tracker.clicktrade.com
|
||||
0.0.0.0 tracker.consumerpackage.net
|
||||
@@ -1789,6 +1799,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 tracker.onapps.org
|
||||
0.0.0.0 tracker.promosvc.com
|
||||
0.0.0.0 tracker.promovalue.us
|
||||
0.0.0.0 tracker.remp.impresa.pt
|
||||
0.0.0.0 tracker.svcoffer.com
|
||||
0.0.0.0 tracker.tradedoubler.com
|
||||
0.0.0.0 tracker1.leadiya.com
|
||||
@@ -1849,6 +1860,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 tracking.trafficjunky.net
|
||||
0.0.0.0 tracking.trutv.com
|
||||
0.0.0.0 tracking.vindicosuite.com
|
||||
0.0.0.0 tracking.yohoads.com
|
||||
0.0.0.0 trackit.vicotech.com
|
||||
0.0.0.0 trackmail3345.com
|
||||
0.0.0.0 tracksurf.daooda.com
|
||||
@@ -5774,6 +5786,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 ads.miniclip.com
|
||||
0.0.0.0 ads.mininova.org
|
||||
0.0.0.0 ads.mircx.com
|
||||
0.0.0.0 ads.missena.io
|
||||
0.0.0.0 ads.mixi.jp
|
||||
0.0.0.0 ads.mixtraffic.com
|
||||
0.0.0.0 ads.mlive.com
|
||||
@@ -6009,6 +6022,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 ads.thegauntlet.com
|
||||
0.0.0.0 ads.theglobeandmail.com
|
||||
0.0.0.0 ads.theindependent.com
|
||||
0.0.0.0 ads.themoneytizer.com
|
||||
0.0.0.0 ads.theolympian.com
|
||||
0.0.0.0 ads.thesmokinggun.com
|
||||
0.0.0.0 ads.thestar.com
|
||||
@@ -6069,6 +6083,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 ads.viber.com
|
||||
0.0.0.0 ads.viddler.com
|
||||
0.0.0.0 ads.videoadvertising.com
|
||||
0.0.0.0 ads.vidoomy.com
|
||||
0.0.0.0 ads.viewlondon.co.uk
|
||||
0.0.0.0 ads.virginislandsdailynews.com
|
||||
0.0.0.0 ads.virtualcountries.com
|
||||
@@ -7612,6 +7627,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 cdn.assets.craveonline.com
|
||||
0.0.0.0 cdn.atlassbx.com
|
||||
0.0.0.0 cdn.augur.io
|
||||
0.0.0.0 cdn.ayads.co
|
||||
0.0.0.0 cdn.banners.scubl.com
|
||||
0.0.0.0 cdn.bestssaker.com
|
||||
0.0.0.0 cdn.braun634.com
|
||||
@@ -8597,7 +8613,9 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 geoads.com
|
||||
0.0.0.0 geoads.osdn.com
|
||||
0.0.0.0 geoloc11.geovisite.com
|
||||
0.0.0.0 geolocation-db.com
|
||||
0.0.0.0 geoweb.e-kolay.net
|
||||
0.0.0.0 get.optad360.io
|
||||
0.0.0.0 get.x-link.pl
|
||||
0.0.0.0 getacool100.com
|
||||
0.0.0.0 getacool500.com
|
||||
@@ -8953,6 +8971,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 imc.l.qq.com
|
||||
0.0.0.0 img-a2.ak.imagevz.net
|
||||
0.0.0.0 img-cdn.mediaplex.com
|
||||
0.0.0.0 img.3lift.com
|
||||
0.0.0.0 img.alibaba.com
|
||||
0.0.0.0 img.awr.im
|
||||
0.0.0.0 img.blogads.com
|
||||
@@ -9143,6 +9162,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 js.zevents.com
|
||||
0.0.0.0 js1.bloggerads.net
|
||||
0.0.0.0 js77.neodatagroup.com
|
||||
0.0.0.0 jsc.adskeeper.co.uk
|
||||
0.0.0.0 jsc.dt07.net
|
||||
0.0.0.0 jsc.mgid.com
|
||||
0.0.0.0 jsn.dt07.net
|
||||
@@ -9354,6 +9374,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 lt.angelfire.com
|
||||
0.0.0.0 lucky-day-uk.com
|
||||
0.0.0.0 luckymeetyou.com
|
||||
0.0.0.0 luxstockevent.su
|
||||
0.0.0.0 luxup.ru
|
||||
0.0.0.0 lvbet.pl
|
||||
0.0.0.0 lw1.gamecopyworld.com
|
||||
@@ -9775,6 +9796,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 newip427.changeip.net
|
||||
0.0.0.0 newjunk4u.com
|
||||
0.0.0.0 newliveupdate.thereadycentercontentingplacefree.download
|
||||
0.0.0.0 newmedsdeal.eu
|
||||
0.0.0.0 news-finances.com
|
||||
0.0.0.0 news6health.com
|
||||
0.0.0.0 newsblock.marketgid.com
|
||||
@@ -10816,6 +10838,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 services1.adtech.us
|
||||
0.0.0.0 serving-sys.com
|
||||
0.0.0.0 serving.plexop.net
|
||||
0.0.0.0 serving.stat-rock.com
|
||||
0.0.0.0 servserv.generals.ea.com
|
||||
0.0.0.0 serwisy.gremimedia.pl
|
||||
0.0.0.0 settings.crashlytics.com
|
||||
@@ -11085,6 +11108,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 storage.bulletproofserving.com
|
||||
0.0.0.0 storage.softure.com
|
||||
0.0.0.0 storage.trafic.ro
|
||||
0.0.0.0 storecentr.su
|
||||
0.0.0.0 strategy.lmobi.net
|
||||
0.0.0.0 stream-direct.co
|
||||
0.0.0.0 streamate.com
|
||||
@@ -11584,6 +11608,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 villagevoicecollect.247realmedia.com
|
||||
0.0.0.0 vip.adpiano.com
|
||||
0.0.0.0 vipfastmoney.com
|
||||
0.0.0.0 vipshopevent.su
|
||||
0.0.0.0 viralture.com
|
||||
0.0.0.0 viralvideos.tips
|
||||
0.0.0.0 vistawebs-top-shop-soft.site
|
||||
@@ -12506,6 +12531,7 @@ ff02::3 ip6-allhosts
|
||||
0.0.0.0 www.ontheweb.com
|
||||
0.0.0.0 www.opendownload.de
|
||||
0.0.0.0 www.openload.de
|
||||
0.0.0.0 www.optad360.com
|
||||
0.0.0.0 www.optiad.net
|
||||
0.0.0.0 www.outbrain.com
|
||||
0.0.0.0 www.paperg.com
|
||||
|
||||
+17
-1
@@ -1,4 +1,3 @@
|
||||
0.0.0.0 www.cyber-ad01.cc
|
||||
0.0.0.0 100234.advision-adnw.jp
|
||||
0.0.0.0 100291.adnico.jp
|
||||
0.0.0.0 100602.advision-adnw.jp
|
||||
@@ -307,6 +306,7 @@
|
||||
0.0.0.0 ads.mediams.mb.softbank.jp
|
||||
0.0.0.0 ads.mediasmart.es
|
||||
0.0.0.0 ads.metropolis.co.jp
|
||||
0.0.0.0 ads.missena.io
|
||||
0.0.0.0 ads.mixi.jp
|
||||
0.0.0.0 ads.mopub.com
|
||||
0.0.0.0 ads.mp.mydas.mobi
|
||||
@@ -356,6 +356,7 @@
|
||||
0.0.0.0 adtechjp.com
|
||||
0.0.0.0 adticker.net
|
||||
0.0.0.0 adtilt.com
|
||||
0.0.0.0 adtrack.appcpi.net
|
||||
0.0.0.0 adtrack.king.com
|
||||
0.0.0.0 adtracker.inmobi.com
|
||||
0.0.0.0 adtracker.jp
|
||||
@@ -434,9 +435,13 @@
|
||||
0.0.0.0 an.mainichi.jp
|
||||
0.0.0.0 ana2.tatsumi-sys.jp
|
||||
0.0.0.0 analysiswebtool.com
|
||||
0.0.0.0 analytics-ingress-global.bitmovin.com
|
||||
0.0.0.0 analytics.cocolog-nifty.com
|
||||
0.0.0.0 analytics.global.sky.com
|
||||
0.0.0.0 analytics.grupogodo.com
|
||||
0.0.0.0 analytics.ooyala.com
|
||||
0.0.0.0 analytics.qlook.net
|
||||
0.0.0.0 analytics.sleeknote.com
|
||||
0.0.0.0 analyzer.fc2.com
|
||||
0.0.0.0 analyzer2.fc2.com
|
||||
0.0.0.0 analyzer5.fc2.com
|
||||
@@ -491,6 +496,7 @@
|
||||
0.0.0.0 api.uca.cloud.unity3d.com
|
||||
0.0.0.0 api.unthem.com
|
||||
0.0.0.0 api.webpush.jp
|
||||
0.0.0.0 apiadapter.ad5track.com
|
||||
0.0.0.0 aplkp.valuecommerce.com
|
||||
0.0.0.0 app-adforce.jp
|
||||
0.0.0.0 app-c.net
|
||||
@@ -941,6 +947,7 @@
|
||||
0.0.0.0 erotube69.pw
|
||||
0.0.0.0 et.w.inmobi.com
|
||||
0.0.0.0 etc.atja.jp
|
||||
0.0.0.0 eu-track.inside-graph.com
|
||||
0.0.0.0 eurocentrichandbags.com
|
||||
0.0.0.0 evelynswonderland.com
|
||||
0.0.0.0 events.appsflyer.com
|
||||
@@ -989,6 +996,7 @@
|
||||
0.0.0.0 g2.072m.com
|
||||
0.0.0.0 g2.gumgum.com
|
||||
0.0.0.0 gad.shinobi.jp
|
||||
0.0.0.0 gameanalysis.appcpi.net
|
||||
0.0.0.0 gamefeat.net
|
||||
0.0.0.0 gamewallet.jp
|
||||
0.0.0.0 gardeningst.men
|
||||
@@ -1382,6 +1390,7 @@
|
||||
0.0.0.0 mb-click.jp
|
||||
0.0.0.0 mcgm.sakura.ne.jp
|
||||
0.0.0.0 mcnt.jp
|
||||
0.0.0.0 mctd22d-xfy4kdg18w8cmd9bvhsq.device.marketingcloudapis.com
|
||||
0.0.0.0 md.m-space.jp
|
||||
0.0.0.0 mdn2015x1.com
|
||||
0.0.0.0 mdpl-jp.com
|
||||
@@ -1460,6 +1469,7 @@
|
||||
0.0.0.0 mxvp-feature-toggle-prod-1.zenmxapps.com
|
||||
0.0.0.0 my-softbank-jp.com
|
||||
0.0.0.0 my.mobfox.com
|
||||
0.0.0.0 mybbc-analytics.files.bbci.co.uk
|
||||
0.0.0.0 mybgbgclojp.com
|
||||
0.0.0.0 mycdn2.co
|
||||
0.0.0.0 mydas.mobi
|
||||
@@ -1610,6 +1620,7 @@
|
||||
0.0.0.0 projectpoi.com
|
||||
0.0.0.0 promotionalads.yahoo.co.jp
|
||||
0.0.0.0 proparm.jp
|
||||
0.0.0.0 propeller-tracking.com
|
||||
0.0.0.0 prscripts.com
|
||||
0.0.0.0 ps-jp.amazon-adsystem.com
|
||||
0.0.0.0 ps-us.amazon-adsystem.com
|
||||
@@ -1977,11 +1988,15 @@
|
||||
0.0.0.0 track.richmediaads.com
|
||||
0.0.0.0 track.somewrite.jp
|
||||
0.0.0.0 track.tenjin.io
|
||||
0.0.0.0 tracker.bt.uol.com.br
|
||||
0.0.0.0 tracker.iws.vc
|
||||
0.0.0.0 tracker.kantan-access.com
|
||||
0.0.0.0 tracker.mca-analytics.com
|
||||
0.0.0.0 tracker.publico.pt
|
||||
0.0.0.0 tracker.remp.impresa.pt
|
||||
0.0.0.0 trackfeed.com
|
||||
0.0.0.0 tracking-server-prod-1.zenmxapps.com
|
||||
0.0.0.0 tracking.yohoads.com
|
||||
0.0.0.0 trackword.net
|
||||
0.0.0.0 tradedoubler.com
|
||||
0.0.0.0 traffic-staff.com
|
||||
@@ -2086,6 +2101,7 @@
|
||||
0.0.0.0 www.buzzimpress.jp
|
||||
0.0.0.0 www.clicksgear.com
|
||||
0.0.0.0 www.clicktx.jp
|
||||
0.0.0.0 www.cyber-ad01.cc
|
||||
0.0.0.0 www.doubleclick.ne.jp
|
||||
0.0.0.0 www.g-af.com
|
||||
0.0.0.0 www.gamefeat.net
|
||||
|
||||
+152
-37
@@ -2,8 +2,8 @@
|
||||
#
|
||||
# For more information about this list, see: https://pgl.yoyo.org/adservers/
|
||||
# ----
|
||||
# last updated: Fri, 29 May 2020 12:55:19 GMT
|
||||
# entries: 3387
|
||||
# last updated: Fri, 24 Jul 2020 16:39:13 GMT
|
||||
# entries: 3502
|
||||
# format: hosts (hosts -- in hosts file format)
|
||||
# credits: Peter Lowe - pgl@yoyo.org - https://pgl.yoyo.org/ - https://twitter.com/pgl
|
||||
# this URL: https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext&useip=0.0.0.0
|
||||
@@ -11,7 +11,7 @@
|
||||
# other formats: https://pgl.yoyo.org/adservers/formats.php
|
||||
# policy: https://pgl.yoyo.org/adservers/policy.php
|
||||
#
|
||||
# start date: Thu, 08 Jun 2000 00:00:00
|
||||
# start date: Sun, 30 Jul 2000 00:00:00
|
||||
0.0.0.0 1-1ads.com
|
||||
0.0.0.0 101com.com
|
||||
0.0.0.0 101order.com
|
||||
@@ -48,14 +48,21 @@
|
||||
0.0.0.0 a.aproductmsg.com
|
||||
0.0.0.0 a.consumer.net
|
||||
0.0.0.0 a.mktw.net
|
||||
0.0.0.0 a.muloqot.uz
|
||||
0.0.0.0 a.pub.network
|
||||
0.0.0.0 a.sakh.com
|
||||
0.0.0.0 a.ucoz.net
|
||||
0.0.0.0 a.ucoz.ru
|
||||
0.0.0.0 a.vartoken.com
|
||||
0.0.0.0 a.vfghd.com
|
||||
0.0.0.0 a.vfgtb.com
|
||||
0.0.0.0 a.xanga.com
|
||||
0.0.0.0 a135.wftv.com
|
||||
0.0.0.0 a5.overclockers.ua
|
||||
0.0.0.0 aa-metrics.beauty.hotpepper.jp
|
||||
0.0.0.0 aa-metrics.trip-ai.jp
|
||||
0.0.0.0 aaddzz.com
|
||||
0.0.0.0 aax-eu-dub.amazon.com
|
||||
0.0.0.0 aaxads.com
|
||||
0.0.0.0 aaxdetect.com
|
||||
0.0.0.0 abacho.net
|
||||
@@ -64,6 +71,7 @@
|
||||
0.0.0.0 abashedangle.com
|
||||
0.0.0.0 abc-ads.com
|
||||
0.0.0.0 aboardlevel.com
|
||||
0.0.0.0 aboutads.gr
|
||||
0.0.0.0 abruptroad.com
|
||||
0.0.0.0 absentstream.com
|
||||
0.0.0.0 absoluteclickscom.com
|
||||
@@ -124,6 +132,7 @@
|
||||
0.0.0.0 ad.freecity.de
|
||||
0.0.0.0 ad.gate24.ch
|
||||
0.0.0.0 ad.grafika.cz
|
||||
0.0.0.0 ad.gt
|
||||
0.0.0.0 ad.hbv.de
|
||||
0.0.0.0 ad.hodomobile.com
|
||||
0.0.0.0 ad.httpool.com
|
||||
@@ -142,9 +151,12 @@
|
||||
0.0.0.0 ad.lupa.cz
|
||||
0.0.0.0 ad.media-servers.net
|
||||
0.0.0.0 ad.mediastorm.hu
|
||||
0.0.0.0 ad.mg
|
||||
0.0.0.0 ad.mgd.de
|
||||
0.0.0.0 ad.mobstazinc.cn
|
||||
0.0.0.0 ad.musicmatch.com
|
||||
0.0.0.0 ad.myapple.pl
|
||||
0.0.0.0 ad.mynetreklam.com.streamprovider.net
|
||||
0.0.0.0 ad.nachtagenten.de
|
||||
0.0.0.0 ad.nozonedata.com
|
||||
0.0.0.0 ad.nttnavi.co.jp
|
||||
@@ -154,12 +166,14 @@
|
||||
0.0.0.0 ad.preferances.com
|
||||
0.0.0.0 ad.profiwin.de
|
||||
0.0.0.0 ad.prv.pl
|
||||
0.0.0.0 ad.rambler.ru
|
||||
0.0.0.0 ad.pttcn.net
|
||||
0.0.0.0 ad.reunion.com
|
||||
0.0.0.0 ad.sensismediasmart.com.au
|
||||
0.0.0.0 ad.seznam.cz
|
||||
0.0.0.0 ad.simflight.com
|
||||
0.0.0.0 ad.simgames.net
|
||||
0.0.0.0 ad.smartclip.net
|
||||
0.0.0.0 ad.tapthislink.com
|
||||
0.0.0.0 ad.tbn.ru
|
||||
0.0.0.0 ad.technoratimedia.com
|
||||
0.0.0.0 ad.thewheelof.com
|
||||
@@ -186,6 +200,7 @@
|
||||
0.0.0.0 ad1.pamedia.com.au
|
||||
0.0.0.0 ad2.iinfo.cz
|
||||
0.0.0.0 ad2.lupa.cz
|
||||
0.0.0.0 ad2.netriota.hu
|
||||
0.0.0.0 ad2.nmm.de
|
||||
0.0.0.0 ad2.xrea.com
|
||||
0.0.0.0 ad3.iinfo.cz
|
||||
@@ -200,6 +215,7 @@
|
||||
0.0.0.0 adalliance.io
|
||||
0.0.0.0 adap.tv
|
||||
0.0.0.0 adapt.tv
|
||||
0.0.0.0 adaranth.com
|
||||
0.0.0.0 adback.co
|
||||
0.0.0.0 adblade.com
|
||||
0.0.0.0 adblade.org
|
||||
@@ -213,6 +229,7 @@
|
||||
0.0.0.0 adbutler.com
|
||||
0.0.0.0 adbuyer.com
|
||||
0.0.0.0 adbuyer3.lycos.com
|
||||
0.0.0.0 adcampo.com
|
||||
0.0.0.0 adcannyads.com
|
||||
0.0.0.0 adcash.com
|
||||
0.0.0.0 adcast.deviantart.com
|
||||
@@ -309,7 +326,6 @@
|
||||
0.0.0.0 admedia.com
|
||||
0.0.0.0 admeld.com
|
||||
0.0.0.0 admeridianads.com
|
||||
0.0.0.0 admerize.be
|
||||
0.0.0.0 admeta.com
|
||||
0.0.0.0 admex.com
|
||||
0.0.0.0 admidadsp.com
|
||||
@@ -331,7 +347,6 @@
|
||||
0.0.0.0 adnetworkperformance.com
|
||||
0.0.0.0 adnews.maddog2000.de
|
||||
0.0.0.0 adnium.com
|
||||
0.0.0.0 adnotch.com
|
||||
0.0.0.0 adnxs.com
|
||||
0.0.0.0 adocean.pl
|
||||
0.0.0.0 adonspot.com
|
||||
@@ -345,7 +360,6 @@
|
||||
0.0.0.0 adpia.vn
|
||||
0.0.0.0 adplus.co.id
|
||||
0.0.0.0 adplxmd.com
|
||||
0.0.0.0 adprofile.net
|
||||
0.0.0.0 adprofits.ru
|
||||
0.0.0.0 adrazzi.com
|
||||
0.0.0.0 adreactor.com
|
||||
@@ -364,7 +378,7 @@
|
||||
0.0.0.0 ads-click.com
|
||||
0.0.0.0 ads-dev.pinterest.com
|
||||
0.0.0.0 ads-game-187f4.firebaseapp.com
|
||||
0.0.0.0 ads-software.net
|
||||
0.0.0.0 ads-kesselhaus.com
|
||||
0.0.0.0 ads-trk.vidible.tv
|
||||
0.0.0.0 ads-twitter.com
|
||||
0.0.0.0 ads.4tube.com
|
||||
@@ -376,12 +390,12 @@
|
||||
0.0.0.0 ads.ad-center.com
|
||||
0.0.0.0 ads.adfox.ru
|
||||
0.0.0.0 ads.administrator.de
|
||||
0.0.0.0 ads.adred.de
|
||||
0.0.0.0 ads.adshareware.net
|
||||
0.0.0.0 ads.adstream.com.ro
|
||||
0.0.0.0 ads.adultfriendfinder.com
|
||||
0.0.0.0 ads.advance.net
|
||||
0.0.0.0 ads.adverline.com
|
||||
0.0.0.0 ads.affiliates-spinit.com
|
||||
0.0.0.0 ads.affiliates.match.com
|
||||
0.0.0.0 ads.alt.com
|
||||
0.0.0.0 ads.amdmb.com
|
||||
@@ -389,6 +403,7 @@
|
||||
0.0.0.0 ads.aol.co.uk
|
||||
0.0.0.0 ads.apn.co.nz
|
||||
0.0.0.0 ads.appsgeyser.com
|
||||
0.0.0.0 ads.apteka254.ru
|
||||
0.0.0.0 ads.as4x.tmcs.net
|
||||
0.0.0.0 ads.as4x.tmcs.ticketmaster.com
|
||||
0.0.0.0 ads.asiafriendfinder.com
|
||||
@@ -404,6 +419,7 @@
|
||||
0.0.0.0 ads.blog.com
|
||||
0.0.0.0 ads.bloomberg.com
|
||||
0.0.0.0 ads.bluemountain.com
|
||||
0.0.0.0 ads.boerding.com
|
||||
0.0.0.0 ads.bonniercorp.com
|
||||
0.0.0.0 ads.boylesports.com
|
||||
0.0.0.0 ads.brabys.com
|
||||
@@ -419,6 +435,7 @@
|
||||
0.0.0.0 ads.cc-dt.com
|
||||
0.0.0.0 ads.centraliprom.com
|
||||
0.0.0.0 ads.channel4.com
|
||||
0.0.0.0 ads.cheabit.com
|
||||
0.0.0.0 ads.clasificadox.com
|
||||
0.0.0.0 ads.clearchannel.com
|
||||
0.0.0.0 ads.co.com
|
||||
@@ -434,17 +451,20 @@
|
||||
0.0.0.0 ads.dada.it
|
||||
0.0.0.0 ads.dailycamera.com
|
||||
0.0.0.0 ads.datingyes.com
|
||||
0.0.0.0 ads.delfin.bg
|
||||
0.0.0.0 ads.deltha.hu
|
||||
0.0.0.0 ads.dennisnet.co.uk
|
||||
0.0.0.0 ads.desmoinesregister.com
|
||||
0.0.0.0 ads.detelefoongids.nl
|
||||
0.0.0.0 ads.deviantart.com
|
||||
0.0.0.0 ads.devmates.com
|
||||
0.0.0.0 ads.digital-digest.com
|
||||
0.0.0.0 ads.digitalmedianet.com
|
||||
0.0.0.0 ads.digitalpoint.com
|
||||
0.0.0.0 ads.directionsmag.com
|
||||
0.0.0.0 ads.domain.com
|
||||
0.0.0.0 ads.domeus.com
|
||||
0.0.0.0 ads.dtpnetwork.biz
|
||||
0.0.0.0 ads.eagletribune.com
|
||||
0.0.0.0 ads.easy-forex.com
|
||||
0.0.0.0 ads.economist.com
|
||||
@@ -453,15 +473,19 @@
|
||||
0.0.0.0 ads.elcarado.com
|
||||
0.0.0.0 ads.electrocelt.com
|
||||
0.0.0.0 ads.elitetrader.com
|
||||
0.0.0.0 ads.emdee.ca
|
||||
0.0.0.0 ads.emirates.net.ae
|
||||
0.0.0.0 ads.epi.sk
|
||||
0.0.0.0 ads.epltalk.com
|
||||
0.0.0.0 ads.eu.msn.com
|
||||
0.0.0.0 ads.exactdrive.com
|
||||
0.0.0.0 ads.expat-blog.biz
|
||||
0.0.0.0 ads.factorymedia.com
|
||||
0.0.0.0 ads.fairfax.com.au
|
||||
0.0.0.0 ads.fastcomgroup.it
|
||||
0.0.0.0 ads.fasttrack-ignite.com
|
||||
0.0.0.0 ads.faxo.com
|
||||
0.0.0.0 ads.femmefab.nl
|
||||
0.0.0.0 ads.ferianc.com
|
||||
0.0.0.0 ads.filmup.com
|
||||
0.0.0.0 ads.financialcontent.com
|
||||
@@ -469,6 +493,7 @@
|
||||
0.0.0.0 ads.fool.com
|
||||
0.0.0.0 ads.footymad.net
|
||||
0.0.0.0 ads.forbes.net
|
||||
0.0.0.0 ads.formit.cz
|
||||
0.0.0.0 ads.fortunecity.com
|
||||
0.0.0.0 ads.fotosidan.se
|
||||
0.0.0.0 ads.foxnetworks.com
|
||||
@@ -482,6 +507,7 @@
|
||||
0.0.0.0 ads.gaming-universe.de
|
||||
0.0.0.0 ads.gaming1.com
|
||||
0.0.0.0 ads.gawker.com
|
||||
0.0.0.0 ads.gaypoint.hu
|
||||
0.0.0.0 ads.geekswithblogs.net
|
||||
0.0.0.0 ads.getlucky.com
|
||||
0.0.0.0 ads.gld.dk
|
||||
@@ -491,6 +517,7 @@
|
||||
0.0.0.0 ads.gplusmedia.com
|
||||
0.0.0.0 ads.gradfinder.com
|
||||
0.0.0.0 ads.grindinggears.com
|
||||
0.0.0.0 ads.groupewin.fr
|
||||
0.0.0.0 ads.gsm-exchange.com
|
||||
0.0.0.0 ads.gsmexchange.com
|
||||
0.0.0.0 ads.guardian.co.uk
|
||||
@@ -508,10 +535,10 @@
|
||||
0.0.0.0 ads.ibryte.com
|
||||
0.0.0.0 ads.icq.com
|
||||
0.0.0.0 ads.ign.com
|
||||
0.0.0.0 ads.imagistica.com
|
||||
0.0.0.0 ads.img.co.za
|
||||
0.0.0.0 ads.imgur.com
|
||||
0.0.0.0 ads.independent.com.mt
|
||||
0.0.0.0 ads.indiatimes.com
|
||||
0.0.0.0 ads.infi.net
|
||||
0.0.0.0 ads.internic.co.il
|
||||
0.0.0.0 ads.ipowerweb.com
|
||||
@@ -524,6 +551,7 @@
|
||||
0.0.0.0 ads.jobsite.co.uk
|
||||
0.0.0.0 ads.jpost.com
|
||||
0.0.0.0 ads.jubii.dk
|
||||
0.0.0.0 ads.junctionbox.com
|
||||
0.0.0.0 ads.justhungry.com
|
||||
0.0.0.0 ads.kabooaffiliates.com
|
||||
0.0.0.0 ads.kaktuz.net
|
||||
@@ -536,10 +564,13 @@
|
||||
0.0.0.0 ads.larryaffiliates.com
|
||||
0.0.0.0 ads.leovegas.com
|
||||
0.0.0.0 ads.lesbianpersonals.com
|
||||
0.0.0.0 ads.liberte.pl
|
||||
0.0.0.0 ads.lifethink.net
|
||||
0.0.0.0 ads.linkedin.com
|
||||
0.0.0.0 ads.linuxfoundation.org
|
||||
0.0.0.0 ads.livenation.com
|
||||
0.0.0.0 ads.lordlucky.com
|
||||
0.0.0.0 ads.ma7.tv
|
||||
0.0.0.0 ads.mail.bg
|
||||
0.0.0.0 ads.mariuana.it
|
||||
0.0.0.0 ads.massinfra.nl
|
||||
@@ -547,6 +578,7 @@
|
||||
0.0.0.0 ads.mediaodyssey.com
|
||||
0.0.0.0 ads.mediasmart.es
|
||||
0.0.0.0 ads.medienhaus.de
|
||||
0.0.0.0 ads.meetcelebs.com
|
||||
0.0.0.0 ads.mgnetwork.com
|
||||
0.0.0.0 ads.miarroba.com
|
||||
0.0.0.0 ads.mic.com
|
||||
@@ -555,9 +587,12 @@
|
||||
0.0.0.0 ads.mobilebet.com
|
||||
0.0.0.0 ads.mopub.com
|
||||
0.0.0.0 ads.motor-forum.nl
|
||||
0.0.0.0 ads.motormedia.nl
|
||||
0.0.0.0 ads.msn.com
|
||||
0.0.0.0 ads.multimania.lycos.fr
|
||||
0.0.0.0 ads.muslimehelfen.org
|
||||
0.0.0.0 ads.mvscoelho.com
|
||||
0.0.0.0 ads.myadv.org
|
||||
0.0.0.0 ads.nccwebs.com
|
||||
0.0.0.0 ads.ncm.com
|
||||
0.0.0.0 ads.ndtv1.com
|
||||
0.0.0.0 ads.networksolutions.com
|
||||
@@ -582,14 +617,17 @@
|
||||
0.0.0.0 ads.opensubtitles.org
|
||||
0.0.0.0 ads.optusnet.com.au
|
||||
0.0.0.0 ads.outpersonals.com
|
||||
0.0.0.0 ads.oxyshop.cz
|
||||
0.0.0.0 ads.passion.com
|
||||
0.0.0.0 ads.pennet.com
|
||||
0.0.0.0 ads.pfl.ua
|
||||
0.0.0.0 ads.phpclasses.org
|
||||
0.0.0.0 ads.pinterest.com
|
||||
0.0.0.0 ads.planet.nl
|
||||
0.0.0.0 ads.pni.com
|
||||
0.0.0.0 ads.pof.com
|
||||
0.0.0.0 ads.powweb.com
|
||||
0.0.0.0 ads.ppvmedien.de
|
||||
0.0.0.0 ads.praguetv.cz
|
||||
0.0.0.0 ads.primissima.it
|
||||
0.0.0.0 ads.printscr.com
|
||||
@@ -601,7 +639,9 @@
|
||||
0.0.0.0 ads.pushplay.com
|
||||
0.0.0.0 ads.quasaraffiliates.com
|
||||
0.0.0.0 ads.quoka.de
|
||||
0.0.0.0 ads.radialserver.com
|
||||
0.0.0.0 ads.radio1.lv
|
||||
0.0.0.0 ads.rcncdn.de
|
||||
0.0.0.0 ads.rcs.it
|
||||
0.0.0.0 ads.recoletos.es
|
||||
0.0.0.0 ads.rediff.com
|
||||
@@ -609,30 +649,37 @@
|
||||
0.0.0.0 ads.revjet.com
|
||||
0.0.0.0 ads.satyamonline.com
|
||||
0.0.0.0 ads.saymedia.com
|
||||
0.0.0.0 ads.schmoozecom.net
|
||||
0.0.0.0 ads.scifi.com
|
||||
0.0.0.0 ads.seniorfriendfinder.com
|
||||
0.0.0.0 ads.servebom.com
|
||||
0.0.0.0 ads.sexgratuit.tv
|
||||
0.0.0.0 ads.sexinyourcity.com
|
||||
0.0.0.0 ads.shizmoo.com
|
||||
0.0.0.0 ads.shopstyle.com
|
||||
0.0.0.0 ads.sift.co.uk
|
||||
0.0.0.0 ads.silverdisc.co.uk
|
||||
0.0.0.0 ads.simplyhired.com
|
||||
0.0.0.0 ads.sjon.info
|
||||
0.0.0.0 ads.smartclick.com
|
||||
0.0.0.0 ads.socapro.com
|
||||
0.0.0.0 ads.socialtheater.com
|
||||
0.0.0.0 ads.soft32.com
|
||||
0.0.0.0 ads.soweb.gr
|
||||
0.0.0.0 ads.space.com
|
||||
0.0.0.0 ads.squarecrop.net
|
||||
0.0.0.0 ads.stackoverflow.com
|
||||
0.0.0.0 ads.sun.com
|
||||
0.0.0.0 ads.suomiautomaatti.com
|
||||
0.0.0.0 ads.supplyframe.com
|
||||
0.0.0.0 ads.syscdn.de
|
||||
0.0.0.0 ads.tahono.com
|
||||
0.0.0.0 ads.techtv.com
|
||||
0.0.0.0 ads.themovienation.com
|
||||
0.0.0.0 ads.thestar.com
|
||||
0.0.0.0 ads.thrillsaffiliates.com
|
||||
0.0.0.0 ads.tiktok.com
|
||||
0.0.0.0 ads.tmcs.net
|
||||
0.0.0.0 ads.todoti.com.br
|
||||
0.0.0.0 ads.toplayaffiliates.com
|
||||
0.0.0.0 ads.totallyfreestuff.com
|
||||
0.0.0.0 ads.townhall.com
|
||||
@@ -647,22 +694,28 @@
|
||||
0.0.0.0 ads.tripod.lycos.nl
|
||||
0.0.0.0 ads.tso.dennisnet.co.uk
|
||||
0.0.0.0 ads.twitter.com
|
||||
0.0.0.0 ads.twojatv.info
|
||||
0.0.0.0 ads.uknetguide.co.uk
|
||||
0.0.0.0 ads.ultimate-guitar.com
|
||||
0.0.0.0 ads.uncrate.com
|
||||
0.0.0.0 ads.undertone.com
|
||||
0.0.0.0 ads.usatoday.com
|
||||
0.0.0.0 ads.uxs.at
|
||||
0.0.0.0 ads.v-lazer.com
|
||||
0.0.0.0 ads.verticalresponse.com
|
||||
0.0.0.0 ads.vgchartz.com
|
||||
0.0.0.0 ads.videosz.com
|
||||
0.0.0.0 ads.viksaffiliates.com
|
||||
0.0.0.0 ads.virtual-nights.com
|
||||
0.0.0.0 ads.virtuopolitan.com
|
||||
0.0.0.0 ads.vnumedia.com
|
||||
0.0.0.0 ads.walkiberia.com
|
||||
0.0.0.0 ads.waps.cn
|
||||
0.0.0.0 ads.wapx.cn
|
||||
0.0.0.0 ads.watson.ch
|
||||
0.0.0.0 ads.weather.ca
|
||||
0.0.0.0 ads.web.de
|
||||
0.0.0.0 ads.webinak.sk
|
||||
0.0.0.0 ads.webmasterpoint.org
|
||||
0.0.0.0 ads.websiteservices.com
|
||||
0.0.0.0 ads.whoishostingthis.com
|
||||
@@ -693,13 +746,16 @@
|
||||
0.0.0.0 ads2.brazzers.com
|
||||
0.0.0.0 ads2.clearchannel.com
|
||||
0.0.0.0 ads2.contentabc.com
|
||||
0.0.0.0 ads2.femmefab.nl
|
||||
0.0.0.0 ads2.gamecity.net
|
||||
0.0.0.0 ads2.jubii.dk
|
||||
0.0.0.0 ads2.net-communities.co.uk
|
||||
0.0.0.0 ads2.oneplace.com
|
||||
0.0.0.0 ads2.opensubtitles.org
|
||||
0.0.0.0 ads2.rne.com
|
||||
0.0.0.0 ads2.techads.info
|
||||
0.0.0.0 ads2.virtual-nights.com
|
||||
0.0.0.0 ads2.webdrive.no
|
||||
0.0.0.0 ads2.xnet.cz
|
||||
0.0.0.0 ads2004.treiberupdate.de
|
||||
0.0.0.0 ads24h.net
|
||||
@@ -721,8 +777,9 @@
|
||||
0.0.0.0 adsatt.abcnews.starwave.com
|
||||
0.0.0.0 adsatt.espn.go.com
|
||||
0.0.0.0 adsatt.espn.starwave.com
|
||||
0.0.0.0 Adsatt.go.starwave.com
|
||||
0.0.0.0 adsatt.go.starwave.com
|
||||
0.0.0.0 adsby.bidtheatre.com
|
||||
0.0.0.0 adsbydelema.com
|
||||
0.0.0.0 adscale.de
|
||||
0.0.0.0 adscholar.com
|
||||
0.0.0.0 adscience.nl
|
||||
@@ -734,29 +791,38 @@
|
||||
0.0.0.0 adsensecustomsearchads.com
|
||||
0.0.0.0 adserve.ams.rhythmxchange.com
|
||||
0.0.0.0 adserve.io
|
||||
0.0.0.0 adserve.jbs.org
|
||||
0.0.0.0 adserver.71i.de
|
||||
0.0.0.0 adserver.adultfriendfinder.com
|
||||
0.0.0.0 adserver.adverty.com
|
||||
0.0.0.0 adserver.aidameter.com
|
||||
0.0.0.0 adserver.anawe.cz
|
||||
0.0.0.0 adserver.aol.fr
|
||||
0.0.0.0 adserver.bdoce.cl
|
||||
0.0.0.0 adserver.betandwin.de
|
||||
0.0.0.0 adserver.bing.com
|
||||
0.0.0.0 adserver.bizhat.com
|
||||
0.0.0.0 adserver.break-even.it
|
||||
0.0.0.0 adserver.cams.com
|
||||
0.0.0.0 adserver.cdnstream.com
|
||||
0.0.0.0 adserver.com
|
||||
0.0.0.0 adserver.diariodosertao.com.br
|
||||
0.0.0.0 adserver.digitoday.com
|
||||
0.0.0.0 adserver.echdk.pl
|
||||
0.0.0.0 adserver.ekokatu.com
|
||||
0.0.0.0 adserver.freecity.de
|
||||
0.0.0.0 adserver.friendfinder.com
|
||||
0.0.0.0 adserver.hardsextube.com
|
||||
0.0.0.0 adserver.hardwareanalysis.com
|
||||
0.0.0.0 adserver.html.it
|
||||
0.0.0.0 adserver.hwupgrade.it
|
||||
0.0.0.0 adserver.ilango.de
|
||||
0.0.0.0 adserver.irishwebmasterforum.com
|
||||
0.0.0.0 adserver.janes.com
|
||||
0.0.0.0 adserver.lecool.com
|
||||
0.0.0.0 adserver.libero.it
|
||||
0.0.0.0 adserver.mobi
|
||||
0.0.0.0 adserver.msmb.biz
|
||||
0.0.0.0 adserver.news.com.au
|
||||
0.0.0.0 adserver.nydailynews.com
|
||||
0.0.0.0 adserver.o2.pl
|
||||
@@ -769,7 +835,6 @@
|
||||
0.0.0.0 adserver.sciflicks.com
|
||||
0.0.0.0 adserver.sharewareonline.com
|
||||
0.0.0.0 adserver.spankaway.com
|
||||
0.0.0.0 adserver.thema.cc
|
||||
0.0.0.0 adserver.theonering.net
|
||||
0.0.0.0 adserver.twitpic.com
|
||||
0.0.0.0 adserver.viagogo.com
|
||||
@@ -809,9 +874,12 @@
|
||||
0.0.0.0 adspirit.de
|
||||
0.0.0.0 adsponse.de
|
||||
0.0.0.0 adspsp.com
|
||||
0.0.0.0 adsroller.com
|
||||
0.0.0.0 adsrv.deviantart.com
|
||||
0.0.0.0 adsrv.eacdn.com
|
||||
0.0.0.0 adsrv.iol.co.za
|
||||
0.0.0.0 adsrv.kobi.tv
|
||||
0.0.0.0 adsrv.moebelmarkt.tv
|
||||
0.0.0.0 adsrv.swidnica24.pl
|
||||
0.0.0.0 adsrv2.swidnica24.pl
|
||||
0.0.0.0 adsrvr.org
|
||||
@@ -830,6 +898,7 @@
|
||||
0.0.0.0 adsynergy.com
|
||||
0.0.0.0 adsys.townnews.com
|
||||
0.0.0.0 adsystem.simplemachines.org
|
||||
0.0.0.0 adtech-digital.ru
|
||||
0.0.0.0 adtech.com
|
||||
0.0.0.0 adtech.de
|
||||
0.0.0.0 adtechjp.com
|
||||
@@ -844,11 +913,13 @@
|
||||
0.0.0.0 adtoma.com
|
||||
0.0.0.0 adtrace.org
|
||||
0.0.0.0 adtrade.net
|
||||
0.0.0.0 adtrak.net
|
||||
0.0.0.0 adtriplex.com
|
||||
0.0.0.0 adultadvertising.com
|
||||
0.0.0.0 adv-adserver.com
|
||||
0.0.0.0 adv-banner.libero.it
|
||||
0.0.0.0 adv.cooperhosting.net
|
||||
0.0.0.0 adv.donejty.pl
|
||||
0.0.0.0 adv.freeonline.it
|
||||
0.0.0.0 adv.hwupgrade.it
|
||||
0.0.0.0 adv.livedoor.com
|
||||
@@ -892,6 +963,8 @@
|
||||
0.0.0.0 adworx.nl
|
||||
0.0.0.0 adx.allstar.cz
|
||||
0.0.0.0 adx.atnext.com
|
||||
0.0.0.0 adx.gayboy.at
|
||||
0.0.0.0 adx.relaksit.ru
|
||||
0.0.0.0 adxpansion.com
|
||||
0.0.0.0 adxpose.com
|
||||
0.0.0.0 adxvalue.com
|
||||
@@ -969,12 +1042,14 @@
|
||||
0.0.0.0 analytics.bitrix.info
|
||||
0.0.0.0 analytics.cloudron.io
|
||||
0.0.0.0 analytics.cohesionapps.com
|
||||
0.0.0.0 analytics.dnsfilter.com
|
||||
0.0.0.0 analytics.ext.go-tellm.com
|
||||
0.0.0.0 analytics.google.com
|
||||
0.0.0.0 analytics.htmedia.in
|
||||
0.0.0.0 analytics.icons8.com
|
||||
0.0.0.0 analytics.inlinemanual.com
|
||||
0.0.0.0 analytics.jabong.com
|
||||
0.0.0.0 analytics.jst.ai
|
||||
0.0.0.0 analytics.live.com
|
||||
0.0.0.0 analytics.mailmunch.co
|
||||
0.0.0.0 analytics.myfinance.com
|
||||
@@ -987,13 +1062,13 @@
|
||||
0.0.0.0 analytics.siliconexpert.com
|
||||
0.0.0.0 analytics.swiggy.com
|
||||
0.0.0.0 analytics.yahoo.com
|
||||
0.0.0.0 analyticsapi.happypancake.net
|
||||
0.0.0.0 aniview.com
|
||||
0.0.0.0 anm.intelli-direct.com
|
||||
0.0.0.0 annonser.dagbladet.no
|
||||
0.0.0.0 anrdoezrs.net
|
||||
0.0.0.0 anstrex.com
|
||||
0.0.0.0 anuncios.edicaoms.com.br
|
||||
0.0.0.0 anxiousapples.com
|
||||
0.0.0.0 aobocker.se
|
||||
0.0.0.0 apathetictheory.com
|
||||
0.0.0.0 api.intensifier.de
|
||||
0.0.0.0 api.jetlore.com
|
||||
@@ -1012,11 +1087,12 @@
|
||||
0.0.0.0 arc1.msn.com
|
||||
0.0.0.0 archswimming.com
|
||||
0.0.0.0 ard.xxxblackbook.com
|
||||
0.0.0.0 are-ter.com
|
||||
0.0.0.0 area51-ts.com
|
||||
0.0.0.0 argyresthia.com
|
||||
0.0.0.0 aromamirror.com
|
||||
0.0.0.0 as.webmd.com
|
||||
0.0.0.0 as2.adserverhd.com
|
||||
0.0.0.0 aserv.motorsgate.com
|
||||
0.0.0.0 asewlfjqwlflkew.com
|
||||
0.0.0.0 assets1.exgfnetwork.com
|
||||
0.0.0.0 assoc-amazon.com
|
||||
@@ -1070,7 +1146,7 @@
|
||||
0.0.0.0 banner.elisa.net
|
||||
0.0.0.0 banner.eurogrand.com
|
||||
0.0.0.0 banner.goldenpalace.com
|
||||
0.0.0.0 banner.grandefm.com.br
|
||||
0.0.0.0 banner.icmedia.eu
|
||||
0.0.0.0 banner.img.co.za
|
||||
0.0.0.0 banner.inyourpocket.com
|
||||
0.0.0.0 banner.kiev.ua
|
||||
@@ -1083,6 +1159,7 @@
|
||||
0.0.0.0 banner.orb.net
|
||||
0.0.0.0 banner.penguin.cz
|
||||
0.0.0.0 banner.rbc.ru
|
||||
0.0.0.0 banner.reinstil.de
|
||||
0.0.0.0 banner.relcom.ru
|
||||
0.0.0.0 banner.tanto.de
|
||||
0.0.0.0 banner.titan-dsl.de
|
||||
@@ -1095,7 +1172,6 @@
|
||||
0.0.0.0 bannerconnect.com
|
||||
0.0.0.0 bannerconnect.net
|
||||
0.0.0.0 bannergrabber.internet.gr
|
||||
0.0.0.0 bannerhost.com
|
||||
0.0.0.0 bannerimage.com
|
||||
0.0.0.0 bannerlandia.com.ar
|
||||
0.0.0.0 bannermall.com
|
||||
@@ -1131,8 +1207,10 @@
|
||||
0.0.0.0 bannerspace.com
|
||||
0.0.0.0 bannerswap.com
|
||||
0.0.0.0 bannertesting.com
|
||||
0.0.0.0 bannertrack.net
|
||||
0.0.0.0 bannery.cz
|
||||
0.0.0.0 bannieres.acces-contenu.com
|
||||
0.0.0.0 bannieres.wdmedia.net
|
||||
0.0.0.0 bans.bride.ru
|
||||
0.0.0.0 barbarousnerve.com
|
||||
0.0.0.0 barnesandnoble.bfast.com
|
||||
@@ -1156,7 +1234,6 @@
|
||||
0.0.0.0 belstat.nl
|
||||
0.0.0.0 berp.com
|
||||
0.0.0.0 best-realgirl2.com
|
||||
0.0.0.0 best-top.ro
|
||||
0.0.0.0 bestboundary.com
|
||||
0.0.0.0 bestprizesday2.life
|
||||
0.0.0.0 bestsearch.net
|
||||
@@ -1205,7 +1282,6 @@
|
||||
0.0.0.0 bm.annonce.cz
|
||||
0.0.0.0 bn.bfast.com
|
||||
0.0.0.0 bnnrrv.qontentum.de
|
||||
0.0.0.0 boersego-ads.de
|
||||
0.0.0.0 boffoadsapi.com
|
||||
0.0.0.0 boilingbeetle.com
|
||||
0.0.0.0 boilingumbrella.com
|
||||
@@ -1218,6 +1294,7 @@
|
||||
0.0.0.0 boudja.com
|
||||
0.0.0.0 bounceads.net
|
||||
0.0.0.0 bounceexchange.com
|
||||
0.0.0.0 bowie-cdn.fathomdns.com
|
||||
0.0.0.0 box.anchorfree.net
|
||||
0.0.0.0 bpath.com
|
||||
0.0.0.0 bpu.samsungelectronics.com
|
||||
@@ -1253,8 +1330,10 @@
|
||||
0.0.0.0 calculatorcamera.com
|
||||
0.0.0.0 callousbrake.com
|
||||
0.0.0.0 callrail.com
|
||||
0.0.0.0 calmcactus.com
|
||||
0.0.0.0 campaign.bharatmatrimony.com
|
||||
0.0.0.0 caniamedia.com
|
||||
0.0.0.0 cannads.urgrafix.com
|
||||
0.0.0.0 capablecows.com
|
||||
0.0.0.0 captainbicycle.com
|
||||
0.0.0.0 carambo.la
|
||||
@@ -1314,6 +1393,8 @@
|
||||
0.0.0.0 click.a-ads.com
|
||||
0.0.0.0 click.fool.com
|
||||
0.0.0.0 click.kmindex.ru
|
||||
0.0.0.0 click.negociosdigitaisnapratica.com.br
|
||||
0.0.0.0 click.twcwigs.com
|
||||
0.0.0.0 click2freemoney.com
|
||||
0.0.0.0 clickability.com
|
||||
0.0.0.0 clickadz.com
|
||||
@@ -1330,6 +1411,7 @@
|
||||
0.0.0.0 clickhouse.com
|
||||
0.0.0.0 clickhype.com
|
||||
0.0.0.0 clicklink.jp
|
||||
0.0.0.0 clickmate.io
|
||||
0.0.0.0 clickonometrics.pl
|
||||
0.0.0.0 clicks.equantum.com
|
||||
0.0.0.0 clicks.mods.de
|
||||
@@ -1384,6 +1466,7 @@
|
||||
0.0.0.0 concernedcondition.com
|
||||
0.0.0.0 conductrics.com
|
||||
0.0.0.0 connatix.com
|
||||
0.0.0.0 connectad.io
|
||||
0.0.0.0 connextra.com
|
||||
0.0.0.0 consciouschairs.com
|
||||
0.0.0.0 consensad.com
|
||||
@@ -1391,6 +1474,7 @@
|
||||
0.0.0.0 contaxe.de
|
||||
0.0.0.0 content.acc-hd.de
|
||||
0.0.0.0 content.ad
|
||||
0.0.0.0 content22.online.citi.com
|
||||
0.0.0.0 contextweb.com
|
||||
0.0.0.0 converge-digital.com
|
||||
0.0.0.0 conversantmedia.com
|
||||
@@ -1400,7 +1484,6 @@
|
||||
0.0.0.0 convrse.media
|
||||
0.0.0.0 cookies.cmpnet.com
|
||||
0.0.0.0 coordinatedcub.com
|
||||
0.0.0.0 cooster.ru
|
||||
0.0.0.0 copperchickens.com
|
||||
0.0.0.0 copycarpenter.com
|
||||
0.0.0.0 copyrightaccesscontrols.com
|
||||
@@ -1508,6 +1591,7 @@
|
||||
0.0.0.0 didtheyreadit.com
|
||||
0.0.0.0 digital-ads.s3.amazonaws.com
|
||||
0.0.0.0 digitalmerkat.com
|
||||
0.0.0.0 direct-events-collector.spot.im
|
||||
0.0.0.0 direct-xxx-access.com
|
||||
0.0.0.0 directaclick.com
|
||||
0.0.0.0 directivepub.com
|
||||
@@ -1517,6 +1601,7 @@
|
||||
0.0.0.0 discountclick.com
|
||||
0.0.0.0 discreetfield.com
|
||||
0.0.0.0 dispensablestranger.com
|
||||
0.0.0.0 displayadsmedia.com
|
||||
0.0.0.0 disqusads.com
|
||||
0.0.0.0 dist.belnk.com
|
||||
0.0.0.0 distillery.wistia.com
|
||||
@@ -1533,7 +1618,6 @@
|
||||
0.0.0.0 domainsponsor.com
|
||||
0.0.0.0 domainsteam.de
|
||||
0.0.0.0 domdex.com
|
||||
0.0.0.0 dontstopmyads.live
|
||||
0.0.0.0 doubleclick.com
|
||||
0.0.0.0 doubleclick.de
|
||||
0.0.0.0 doubleclick.net
|
||||
@@ -1556,7 +1640,6 @@
|
||||
0.0.0.0 e-adimages.scrippsnetworks.com
|
||||
0.0.0.0 e-bannerx.com
|
||||
0.0.0.0 e-m.fr
|
||||
0.0.0.0 e-n-t-e-r-n-e-x.com
|
||||
0.0.0.0 e-planning.net
|
||||
0.0.0.0 e.kde.cz
|
||||
0.0.0.0 eadexchange.com
|
||||
@@ -1591,7 +1674,6 @@
|
||||
0.0.0.0 emarketer.com
|
||||
0.0.0.0 emebo.com
|
||||
0.0.0.0 emebo.io
|
||||
0.0.0.0 emediate.eu
|
||||
0.0.0.0 emerse.com
|
||||
0.0.0.0 emetriq.de
|
||||
0.0.0.0 emjcd.com
|
||||
@@ -1603,6 +1685,7 @@
|
||||
0.0.0.0 encouragingwilderness.com
|
||||
0.0.0.0 endurableshop.com
|
||||
0.0.0.0 energeticladybug.com
|
||||
0.0.0.0 engage.dnsfilter.com
|
||||
0.0.0.0 engagebdr.com
|
||||
0.0.0.0 engine.espace.netavenir.com
|
||||
0.0.0.0 enginenetwork.com
|
||||
@@ -1663,12 +1746,12 @@
|
||||
0.0.0.0 eyeviewads.com
|
||||
0.0.0.0 eyewonder.com
|
||||
0.0.0.0 ezula.com
|
||||
0.0.0.0 f5biz.com
|
||||
0.0.0.0 f7ds.liberation.fr
|
||||
0.0.0.0 facilitategrandfather.com
|
||||
0.0.0.0 fadedprofit.com
|
||||
0.0.0.0 fadedsnow.com
|
||||
0.0.0.0 famousquarter.com
|
||||
0.0.0.0 faracoon.com
|
||||
0.0.0.0 farethief.com
|
||||
0.0.0.0 farmergoldfish.com
|
||||
0.0.0.0 fascinatedfeather.com
|
||||
@@ -1709,6 +1792,7 @@
|
||||
0.0.0.0 fourarithmetic.com
|
||||
0.0.0.0 fpctraffic.com
|
||||
0.0.0.0 fpctraffic2.com
|
||||
0.0.0.0 fpjs.io
|
||||
0.0.0.0 fqtag.com
|
||||
0.0.0.0 frailoffer.com
|
||||
0.0.0.0 free-banners.com
|
||||
@@ -1734,7 +1818,6 @@
|
||||
0.0.0.0 fullstory.com
|
||||
0.0.0.0 functionalcrown.com
|
||||
0.0.0.0 funklicks.com
|
||||
0.0.0.0 funpageexchange.com
|
||||
0.0.0.0 fusionads.net
|
||||
0.0.0.0 fusionquest.com
|
||||
0.0.0.0 futuristicapparatus.com
|
||||
@@ -1759,6 +1842,7 @@
|
||||
0.0.0.0 geovisite.com
|
||||
0.0.0.0 getclicky.com
|
||||
0.0.0.0 getintent.com
|
||||
0.0.0.0 getmyads.com
|
||||
0.0.0.0 giddycoat.com
|
||||
0.0.0.0 globalismedia.com
|
||||
0.0.0.0 globaltakeoff.net
|
||||
@@ -1801,7 +1885,9 @@
|
||||
0.0.0.0 h3btqpy2abc3.com
|
||||
0.0.0.0 h78xb.pw
|
||||
0.0.0.0 h92zbpn4zcv1.com
|
||||
0.0.0.0 habitualhumor.com
|
||||
0.0.0.0 hadskiz.com
|
||||
0.0.0.0 haltingbadge.com
|
||||
0.0.0.0 hammerhearing.com
|
||||
0.0.0.0 handyfield.com
|
||||
0.0.0.0 hardtofindmilk.com
|
||||
@@ -1862,10 +1948,11 @@
|
||||
0.0.0.0 hoverowl.com
|
||||
0.0.0.0 how-to-create-a-resignation-letter.com
|
||||
0.0.0.0 hs-analytics.net
|
||||
0.0.0.0 hs-banner.com
|
||||
0.0.0.0 hsadspixel.net
|
||||
0.0.0.0 htlbid.com
|
||||
0.0.0.0 httpool.com
|
||||
0.0.0.0 hud8mxdt.computerhelpmirror.top
|
||||
0.0.0.0 hubadnetwork.com
|
||||
0.0.0.0 hueads.com
|
||||
0.0.0.0 hueadsortb.com
|
||||
0.0.0.0 hueadsxml.com
|
||||
@@ -1878,7 +1965,6 @@
|
||||
0.0.0.0 hystericalhelp.com
|
||||
0.0.0.0 i-clicks.net
|
||||
0.0.0.0 i-i.lt
|
||||
0.0.0.0 i.xx.openx.com
|
||||
0.0.0.0 i1img.com
|
||||
0.0.0.0 i1media.no
|
||||
0.0.0.0 ia.iinfo.cz
|
||||
@@ -1982,6 +2068,7 @@
|
||||
0.0.0.0 j93557g.com
|
||||
0.0.0.0 jadeitite.com
|
||||
0.0.0.0 jaizouji.com
|
||||
0.0.0.0 jauchuwa.net
|
||||
0.0.0.0 jcount.com
|
||||
0.0.0.0 jdoqocy.com
|
||||
0.0.0.0 jinkads.de
|
||||
@@ -2025,6 +2112,7 @@
|
||||
0.0.0.0 ladsreds.com
|
||||
0.0.0.0 ladsup.com
|
||||
0.0.0.0 lakequincy.com
|
||||
0.0.0.0 lameletters.com
|
||||
0.0.0.0 lanistaads.com
|
||||
0.0.0.0 larati.net
|
||||
0.0.0.0 laughablecopper.com
|
||||
@@ -2062,6 +2150,7 @@
|
||||
0.0.0.0 li.walmart.com
|
||||
0.0.0.0 li.ziffimages.com
|
||||
0.0.0.0 liadm.com
|
||||
0.0.0.0 lifeimpressions.net
|
||||
0.0.0.0 liftdna.com
|
||||
0.0.0.0 ligatus.com
|
||||
0.0.0.0 ligatus.de
|
||||
@@ -2198,6 +2287,7 @@
|
||||
0.0.0.0 metaffiliation.com
|
||||
0.0.0.0 metanetwork.com
|
||||
0.0.0.0 methodcash.com
|
||||
0.0.0.0 metrics-logger.spot.im
|
||||
0.0.0.0 metrics.api.drift.com
|
||||
0.0.0.0 metrics.cnn.com
|
||||
0.0.0.0 metrics.consumerreports.org
|
||||
@@ -2285,7 +2375,6 @@
|
||||
0.0.0.0 mystat.pl
|
||||
0.0.0.0 mysteriousmonth.com
|
||||
0.0.0.0 mytop-in.net
|
||||
0.0.0.0 mytrafficads.com
|
||||
0.0.0.0 myvisualiq.net
|
||||
0.0.0.0 n69.com
|
||||
0.0.0.0 naj.sk
|
||||
@@ -2365,6 +2454,7 @@
|
||||
0.0.0.0 offer.sponsorpay.com
|
||||
0.0.0.0 offerforge.com
|
||||
0.0.0.0 offermatica.com
|
||||
0.0.0.0 oglasi.posjetnica.com
|
||||
0.0.0.0 ogury.com
|
||||
0.0.0.0 omnijay.com
|
||||
0.0.0.0 omniscientspark.com
|
||||
@@ -2384,13 +2474,18 @@
|
||||
0.0.0.0 onlinerewardcenter.com
|
||||
0.0.0.0 onscroll.com
|
||||
0.0.0.0 onthe.io
|
||||
0.0.0.0 opads.us
|
||||
0.0.0.0 open.oneplus.net
|
||||
0.0.0.0 openad.tf1.fr
|
||||
0.0.0.0 openad.travelnow.com
|
||||
0.0.0.0 openads.friendfinder.com
|
||||
0.0.0.0 openads.org
|
||||
0.0.0.0 openadsnetwork.com
|
||||
0.0.0.0 opentag-stats.qubit.com
|
||||
0.0.0.0 openx.actvtech.com
|
||||
0.0.0.0 openx.angelsgroup.org.uk
|
||||
0.0.0.0 openx.cairo360.com
|
||||
0.0.0.0 openx.smcaen.fr
|
||||
0.0.0.0 operationkettle.com
|
||||
0.0.0.0 opienetwork.com
|
||||
0.0.0.0 opmnstr.com
|
||||
@@ -2439,7 +2534,6 @@
|
||||
0.0.0.0 partners.priceline.com
|
||||
0.0.0.0 passeura.com
|
||||
0.0.0.0 passion-4.net
|
||||
0.0.0.0 patranally.xyz
|
||||
0.0.0.0 paycounter.com
|
||||
0.0.0.0 paypopup.com
|
||||
0.0.0.0 payserve.com
|
||||
@@ -2492,6 +2586,7 @@
|
||||
0.0.0.0 play4traffic.com
|
||||
0.0.0.0 playhaven.com
|
||||
0.0.0.0 playmobileads.com
|
||||
0.0.0.0 pleasantpump.com
|
||||
0.0.0.0 plista.com
|
||||
0.0.0.0 plugrush.com
|
||||
0.0.0.0 pocketmath.com
|
||||
@@ -2564,6 +2659,7 @@
|
||||
0.0.0.0 pubdirecte.com
|
||||
0.0.0.0 publicidad.elmundo.es
|
||||
0.0.0.0 publicidees.com
|
||||
0.0.0.0 publisher-assets.spot.im
|
||||
0.0.0.0 pubmatic.com
|
||||
0.0.0.0 pubmine.com
|
||||
0.0.0.0 pubnative.net
|
||||
@@ -2607,7 +2703,9 @@
|
||||
0.0.0.0 radar.cedexis.com
|
||||
0.0.0.0 radarurl.com
|
||||
0.0.0.0 radiate.com
|
||||
0.0.0.0 rads.realadmin.pl
|
||||
0.0.0.0 railwayrainstorm.com
|
||||
0.0.0.0 railwayreason.com
|
||||
0.0.0.0 rampidads.com
|
||||
0.0.0.0 rank-master.com
|
||||
0.0.0.0 rankchamp.de
|
||||
@@ -2637,6 +2735,7 @@
|
||||
0.0.0.0 realclever.com
|
||||
0.0.0.0 realclix.com
|
||||
0.0.0.0 realmedia-a800.d4p.net
|
||||
0.0.0.0 realsrv.com
|
||||
0.0.0.0 realtechnetwork.com
|
||||
0.0.0.0 realtracker.com
|
||||
0.0.0.0 rebelsubway.com
|
||||
@@ -2681,6 +2780,9 @@
|
||||
0.0.0.0 revenue.net
|
||||
0.0.0.0 revenuedirect.com
|
||||
0.0.0.0 revenuehits.com
|
||||
0.0.0.0 revive.docmatic.org
|
||||
0.0.0.0 revive.netriota.hu
|
||||
0.0.0.0 revive.plays.bg
|
||||
0.0.0.0 revlift.io
|
||||
0.0.0.0 revsci.net
|
||||
0.0.0.0 revstats.com
|
||||
@@ -2700,6 +2802,7 @@
|
||||
0.0.0.0 rle.ru
|
||||
0.0.0.0 rmads.msn.com
|
||||
0.0.0.0 rmedia.boston.com
|
||||
0.0.0.0 rmgserving.com
|
||||
0.0.0.0 roar.com
|
||||
0.0.0.0 robotreplay.com
|
||||
0.0.0.0 rockabox.co
|
||||
@@ -2714,6 +2817,7 @@
|
||||
0.0.0.0 rsalcdp.com
|
||||
0.0.0.0 rta.dailymail.co.uk
|
||||
0.0.0.0 rtb.gumgum.com
|
||||
0.0.0.0 rtb.openx.net
|
||||
0.0.0.0 rtbadzesto.com
|
||||
0.0.0.0 rtbflairads.com
|
||||
0.0.0.0 rtbidhost.com
|
||||
@@ -2793,7 +2897,6 @@
|
||||
0.0.0.0 shallowsmile.com
|
||||
0.0.0.0 shareadspace.com
|
||||
0.0.0.0 shareasale.com
|
||||
0.0.0.0 sharepointads.com
|
||||
0.0.0.0 sharethrough.com
|
||||
0.0.0.0 sharppatch.com
|
||||
0.0.0.0 sher.index.hu
|
||||
@@ -2816,6 +2919,7 @@
|
||||
0.0.0.0 sinoa.com
|
||||
0.0.0.0 sitedataprocessing.com
|
||||
0.0.0.0 siteimproveanalytics.com
|
||||
0.0.0.0 siteimproveanalytics.io
|
||||
0.0.0.0 siteintercept.qualtrics.com
|
||||
0.0.0.0 sitemeter.com
|
||||
0.0.0.0 sixscissors.com
|
||||
@@ -2828,6 +2932,9 @@
|
||||
0.0.0.0 slipperysack.com
|
||||
0.0.0.0 slopeaota.com
|
||||
0.0.0.0 smaato.com
|
||||
0.0.0.0 smallbeginner.com
|
||||
0.0.0.0 smart-traffik.com
|
||||
0.0.0.0 smart-traffik.io
|
||||
0.0.0.0 smart4ads.com
|
||||
0.0.0.0 smartadserver.com
|
||||
0.0.0.0 smartclip.net
|
||||
@@ -2843,6 +2950,7 @@
|
||||
0.0.0.0 smilingwaves.com
|
||||
0.0.0.0 smrtb.com
|
||||
0.0.0.0 snapads.com
|
||||
0.0.0.0 sneakystamp.com
|
||||
0.0.0.0 snoobi.com
|
||||
0.0.0.0 socialspark.com
|
||||
0.0.0.0 softclick.com.br
|
||||
@@ -2978,6 +3086,7 @@
|
||||
0.0.0.0 t.insigit.com
|
||||
0.0.0.0 t.irtyd.com
|
||||
0.0.0.0 taboola.com
|
||||
0.0.0.0 tag.links-analytics.com
|
||||
0.0.0.0 tagan.adlightning.com
|
||||
0.0.0.0 tagger.opecloud.com
|
||||
0.0.0.0 tags.tiqcdn.com
|
||||
@@ -3004,7 +3113,6 @@
|
||||
0.0.0.0 tatsumi-sys.jp
|
||||
0.0.0.0 tawdryson.com
|
||||
0.0.0.0 tcads.net
|
||||
0.0.0.0 tdxio.com
|
||||
0.0.0.0 teads.tv
|
||||
0.0.0.0 tealeaf.com
|
||||
0.0.0.0 tealium.com
|
||||
@@ -3104,16 +3212,20 @@
|
||||
0.0.0.0 trackedweb.net
|
||||
0.0.0.0 tracker-pm2.spilleren.com
|
||||
0.0.0.0 tracker.bannerflow.com
|
||||
0.0.0.0 tracker.comunidadmarriott.com
|
||||
0.0.0.0 tracker.icerocket.com
|
||||
0.0.0.0 tracker.mmdlv.it
|
||||
0.0.0.0 tracker.samplicio.us
|
||||
0.0.0.0 tracker.vgame.us
|
||||
0.0.0.0 tracking.1-a1502-bi.co.uk
|
||||
0.0.0.0 tracking.1-kv015-ap.co.uk
|
||||
0.0.0.0 tracking.21-a4652-bi.co.uk
|
||||
0.0.0.0 tracking.42-01pr5-osm-secure.co.uk
|
||||
0.0.0.0 tracking.5-47737-bi.co.uk
|
||||
0.0.0.0 tracking.crunchiemedia.com
|
||||
0.0.0.0 tracking.epicgames.com
|
||||
0.0.0.0 tracking.gajmp.com
|
||||
0.0.0.0 tracking.ibxlink.com
|
||||
0.0.0.0 tracking.inlocomedia.com
|
||||
0.0.0.0 tracking.internetstores.de
|
||||
0.0.0.0 tracking.intl.miui.com
|
||||
0.0.0.0 tracking.miui.com
|
||||
@@ -3125,6 +3237,7 @@
|
||||
0.0.0.0 tracking42.com
|
||||
0.0.0.0 trackingfestival.com
|
||||
0.0.0.0 trackingsoft.com
|
||||
0.0.0.0 tracklink-tel.de
|
||||
0.0.0.0 trackmysales.com
|
||||
0.0.0.0 trackuhub.com
|
||||
0.0.0.0 tradeadexchange.com
|
||||
@@ -3173,6 +3286,7 @@
|
||||
0.0.0.0 truehits2.gits.net.th
|
||||
0.0.0.0 trustx.org
|
||||
0.0.0.0 tsyndicate.com
|
||||
0.0.0.0 tsyndicate.net
|
||||
0.0.0.0 tubemogul.com
|
||||
0.0.0.0 turboadv.com
|
||||
0.0.0.0 turn.com
|
||||
@@ -3184,6 +3298,7 @@
|
||||
0.0.0.0 tyroo.com
|
||||
0.0.0.0 uarating.com
|
||||
0.0.0.0 ucfunnel.com
|
||||
0.0.0.0 udkcrj.com
|
||||
0.0.0.0 udncoeln.com
|
||||
0.0.0.0 uib.ff.avast.com
|
||||
0.0.0.0 ukbanners.com
|
||||
@@ -3279,7 +3394,6 @@
|
||||
0.0.0.0 webcounter.cz
|
||||
0.0.0.0 webcounter.goweb.de
|
||||
0.0.0.0 webgains.com
|
||||
0.0.0.0 webmaster-partnerprogramme24.de
|
||||
0.0.0.0 webmasterplan.com
|
||||
0.0.0.0 webmasterplan.de
|
||||
0.0.0.0 weborama.com
|
||||
@@ -3299,6 +3413,7 @@
|
||||
0.0.0.0 webtraxx.de
|
||||
0.0.0.0 webtrends.telegraph.co.uk
|
||||
0.0.0.0 webtrendslive.com
|
||||
0.0.0.0 webxcdn.com
|
||||
0.0.0.0 wellmadefrog.com
|
||||
0.0.0.0 werbung.meteoxpress.com
|
||||
0.0.0.0 wetrack.it
|
||||
@@ -3326,6 +3441,7 @@
|
||||
0.0.0.0 wondoads.de
|
||||
0.0.0.0 woopra.com
|
||||
0.0.0.0 worldwide-cash.net
|
||||
0.0.0.0 worldwidedigitalads.com
|
||||
0.0.0.0 worriednumber.com
|
||||
0.0.0.0 worrybutter.com
|
||||
0.0.0.0 wpnrtnmrewunrtok.xyz
|
||||
@@ -3346,6 +3462,7 @@
|
||||
0.0.0.0 xapads.com
|
||||
0.0.0.0 xchange.ro
|
||||
0.0.0.0 xertive.com
|
||||
0.0.0.0 xfreeservice.com
|
||||
0.0.0.0 xg4ken.com
|
||||
0.0.0.0 xiti.com
|
||||
0.0.0.0 xovq5nemr.com
|
||||
@@ -3370,14 +3487,12 @@
|
||||
0.0.0.0 yieldmanager.net
|
||||
0.0.0.0 yieldmo.com
|
||||
0.0.0.0 yieldtraffic.com
|
||||
0.0.0.0 yldbt.com
|
||||
0.0.0.0 ymetrica1.com
|
||||
0.0.0.0 yoggrt.com
|
||||
0.0.0.0 ypu.samsungelectronics.com
|
||||
0.0.0.0 z3dmbpl6309s.com
|
||||
0.0.0.0 z501lpfg9x8v.com
|
||||
0.0.0.0 z5x.net
|
||||
0.0.0.0 zangocash.com
|
||||
0.0.0.0 zanox-affiliate.de
|
||||
0.0.0.0 zanox.com
|
||||
0.0.0.0 zantracker.com
|
||||
|
||||
+230
-115
@@ -21,7 +21,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 00webcams.com
|
||||
0.0.0.0 0xxx.ws
|
||||
0.0.0.0 1-last-fight.tumblr.com
|
||||
0.0.0.0 100amateurvideos.com
|
||||
0.0.0.0 100bestpornsites.com
|
||||
0.0.0.0 101boyvideos.com
|
||||
0.0.0.0 101hentai.com
|
||||
@@ -64,7 +63,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 2chickssametime.naughtyamerica.com
|
||||
0.0.0.0 2d-market.com
|
||||
0.0.0.0 2jav.com
|
||||
0.0.0.0 3angelsvideo.com
|
||||
0.0.0.0 3animalsex.com
|
||||
0.0.0.0 3arabicporn.com
|
||||
0.0.0.0 3arabporn.com
|
||||
@@ -313,7 +311,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 affiliates.teens-love-oldmen.com
|
||||
0.0.0.0 affiliates.thrixxx.com
|
||||
0.0.0.0 affiliates.usa-mature.com
|
||||
0.0.0.0 affiliation-int.com
|
||||
0.0.0.0 affiliation.porn.fr
|
||||
0.0.0.0 afrikakampos.com
|
||||
0.0.0.0 afrilov.com
|
||||
@@ -335,7 +332,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 alfamina.com
|
||||
0.0.0.0 alisa.porntrex.com
|
||||
0.0.0.0 alison-angel-1.com
|
||||
0.0.0.0 alison-angel.biz
|
||||
0.0.0.0 alisonangel.com
|
||||
0.0.0.0 alivegirls.com
|
||||
0.0.0.0 all-shemale-video.com
|
||||
@@ -435,7 +431,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 analyzedgirls.com
|
||||
0.0.0.0 anamuel-careslie.com
|
||||
0.0.0.0 andi-pink.babelogbook.com
|
||||
0.0.0.0 angel-anime.com
|
||||
0.0.0.0 angel-collection.com
|
||||
0.0.0.0 angel-companions.co.uk
|
||||
0.0.0.0 angel-dark.org
|
||||
@@ -446,7 +441,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 angel.ne.jp
|
||||
0.0.0.0 angel.se
|
||||
0.0.0.0 angel4christyb.com
|
||||
0.0.0.0 angel4host.com
|
||||
0.0.0.0 angela.ai.net
|
||||
0.0.0.0 angela.nl
|
||||
0.0.0.0 angela.nu
|
||||
@@ -559,12 +553,10 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 angelphotos.dr.ag
|
||||
0.0.0.0 angelplace.com
|
||||
0.0.0.0 angels-archive.com
|
||||
0.0.0.0 angels-bound.com
|
||||
0.0.0.0 angels-feet.de
|
||||
0.0.0.0 angels-in-ukraine.net
|
||||
0.0.0.0 angels-place.com
|
||||
0.0.0.0 angels-sydney.over-blog.com
|
||||
0.0.0.0 angels-tokyo.com
|
||||
0.0.0.0 angels-videos.com
|
||||
0.0.0.0 angels.altenpflege.board.de
|
||||
0.0.0.0 angels.jp.land.to
|
||||
@@ -695,9 +687,7 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 asiangirlfriendclub.com
|
||||
0.0.0.0 asianparade.com
|
||||
0.0.0.0 asianplayboy.com
|
||||
0.0.0.0 asianporn-18.com
|
||||
0.0.0.0 asianporn.photos
|
||||
0.0.0.0 asianporndump.com
|
||||
0.0.0.0 asianpornmovies.com
|
||||
0.0.0.0 asiansex.pics
|
||||
0.0.0.0 asiansexgfs.com
|
||||
@@ -774,7 +764,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 b98.nudevista.com
|
||||
0.0.0.0 b99.nudevista.com
|
||||
0.0.0.0 babe8.net
|
||||
0.0.0.0 babecock.bi-caps.com
|
||||
0.0.0.0 babedrop.net
|
||||
0.0.0.0 babedump.com
|
||||
0.0.0.0 babehub.com
|
||||
@@ -819,7 +808,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 bananabunny.com
|
||||
0.0.0.0 banatdream.com
|
||||
0.0.0.0 banditmovies.com
|
||||
0.0.0.0 banduraangels.com
|
||||
0.0.0.0 bangbros18.com
|
||||
0.0.0.0 bangbrosteenporn.com
|
||||
0.0.0.0 bangbus.com
|
||||
@@ -873,7 +861,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 bdsmboard.org
|
||||
0.0.0.0 bdsmlibrary.com
|
||||
0.0.0.0 bdsmofficial.com
|
||||
0.0.0.0 bdsmpichunter.com
|
||||
0.0.0.0 bdsmstreak.com
|
||||
0.0.0.0 bdsmtheory.com
|
||||
0.0.0.0 bdsmxxxmovies.com
|
||||
@@ -881,7 +868,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 beachboobs.xyz
|
||||
0.0.0.0 beachtoplist.com
|
||||
0.0.0.0 beardysfilthemporium.tumblr.com
|
||||
0.0.0.0 beautiful-nudes.org
|
||||
0.0.0.0 beautifulangels.com
|
||||
0.0.0.0 beautifulass.sensualwriter.com
|
||||
0.0.0.0 beautifulaudrey.blogspot.ro
|
||||
@@ -908,7 +894,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 bestandfreeporn.com
|
||||
0.0.0.0 bestangels.de
|
||||
0.0.0.0 bestarabtube.com
|
||||
0.0.0.0 bestblowjobvids.com
|
||||
0.0.0.0 bestcrazyvideos.com
|
||||
0.0.0.0 bestfreepornvideos.com
|
||||
0.0.0.0 bestfreetube.xxx
|
||||
@@ -924,7 +909,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 bestporn24.com
|
||||
0.0.0.0 bestpornamateur.com
|
||||
0.0.0.0 bestpornbabes.com
|
||||
0.0.0.0 bestpornever.net
|
||||
0.0.0.0 bestpornmenu.com
|
||||
0.0.0.0 bestpornsites.biz
|
||||
0.0.0.0 bestpornsites.co.uk
|
||||
@@ -935,7 +919,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 beta.members.naughtyamerica.com
|
||||
0.0.0.0 betterhdporn.com
|
||||
0.0.0.0 bgclive.com
|
||||
0.0.0.0 bi-caps.com
|
||||
0.0.0.0 bicuriousbabyy.tumblr.com
|
||||
0.0.0.0 bigbangempire.com
|
||||
0.0.0.0 bigbbwtube.net
|
||||
@@ -979,7 +962,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 blackgfsex.com
|
||||
0.0.0.0 blackgirlslust.com
|
||||
0.0.0.0 blacklesbianporn.org
|
||||
0.0.0.0 blacksfatswomensex.com
|
||||
0.0.0.0 blacksnake.com
|
||||
0.0.0.0 blackvirgins.com
|
||||
0.0.0.0 blackystars.com
|
||||
@@ -1002,7 +984,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 bloggers.fuckyoucash.com
|
||||
0.0.0.0 blogs-list.com
|
||||
0.0.0.0 blogtur.com
|
||||
0.0.0.0 blondangel.de
|
||||
0.0.0.0 blondemilfslut.com
|
||||
0.0.0.0 blondewebcams.com
|
||||
0.0.0.0 blondexxxmag.com
|
||||
@@ -1010,7 +991,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 bloodyvirgin.com
|
||||
0.0.0.0 blow-jobs.me
|
||||
0.0.0.0 blowingangels.com
|
||||
0.0.0.0 blowjobvideos.info
|
||||
0.0.0.0 blowxxxtube.com
|
||||
0.0.0.0 blue.sexer.com
|
||||
0.0.0.0 blueangel.nl
|
||||
@@ -1091,7 +1071,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 britneyvirgin.com
|
||||
0.0.0.0 broadcaster.streamate.com
|
||||
0.0.0.0 bronzeadultblogs.com
|
||||
0.0.0.0 brookultra.bi-caps.com
|
||||
0.0.0.0 brothelangelsladies.com
|
||||
0.0.0.0 browneyedangel83.freewebpages.org
|
||||
0.0.0.0 brunetteangel.com
|
||||
@@ -1215,7 +1194,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 cdn.adult.xyz
|
||||
0.0.0.0 cdn.alleliteads.com
|
||||
0.0.0.0 cdn.ashemaletube.com
|
||||
0.0.0.0 cdn.bi-caps.com
|
||||
0.0.0.0 cdn.dirtypornvids.com
|
||||
0.0.0.0 cdn.doublepimpssl.com
|
||||
0.0.0.0 cdn.engine.phn.doublepimp.com
|
||||
@@ -1275,7 +1253,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 celebsroulette.com
|
||||
0.0.0.0 celebsuncensored.com
|
||||
0.0.0.0 celebtaboo.com
|
||||
0.0.0.0 censorbitch.bi-caps.com
|
||||
0.0.0.0 centerfoldhunter.com
|
||||
0.0.0.0 ceritasexabg.com
|
||||
0.0.0.0 cesky-sex.cz
|
||||
@@ -1365,20 +1342,8 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 clips4hypno.com
|
||||
0.0.0.0 clipsage.com
|
||||
0.0.0.0 clipsforjerkoff.com
|
||||
0.0.0.0 clit1.sex-tracker.com
|
||||
0.0.0.0 clit10.sex-tracker.com
|
||||
0.0.0.0 clit11.sex-tracker.com
|
||||
0.0.0.0 clit12.sex-tracker.com
|
||||
0.0.0.0 clit120.outster.com
|
||||
0.0.0.0 clit2.sex-tracker.com
|
||||
0.0.0.0 clit3.sex-tracker.com
|
||||
0.0.0.0 clit4.sex-tracker.com
|
||||
0.0.0.0 clit5.sex-tracker.com
|
||||
0.0.0.0 clit50.outster.com
|
||||
0.0.0.0 clit6.sex-tracker.com
|
||||
0.0.0.0 clit7.sex-tracker.com
|
||||
0.0.0.0 clit8.sex-tracker.com
|
||||
0.0.0.0 clit9.sex-tracker.com
|
||||
0.0.0.0 cliter.com
|
||||
0.0.0.0 clitgames.com
|
||||
0.0.0.0 cloudshares.net
|
||||
@@ -1410,7 +1375,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 cn.txxx.com
|
||||
0.0.0.0 cnt.iceporn.com
|
||||
0.0.0.0 cock-desire.tumblr.com
|
||||
0.0.0.0 cocks.bi-caps.com
|
||||
0.0.0.0 cockyboys.com
|
||||
0.0.0.0 cockyeyedtwat.tumblr.com
|
||||
0.0.0.0 cocogals.com
|
||||
@@ -1479,7 +1443,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 crackbabes.net
|
||||
0.0.0.0 cradver.livejasmin.com
|
||||
0.0.0.0 crakmedia.com
|
||||
0.0.0.0 crazyangel.top
|
||||
0.0.0.0 crazydumper.com
|
||||
0.0.0.0 crazyoldmoms.com
|
||||
0.0.0.0 crazyshit.com
|
||||
@@ -1497,7 +1460,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 cripple.booru.org
|
||||
0.0.0.0 cristiannlive.com
|
||||
0.0.0.0 crocotube.com
|
||||
0.0.0.0 crot69.com
|
||||
0.0.0.0 crotchtime.tumblr.com
|
||||
0.0.0.0 crpt.livejasmin.com
|
||||
0.0.0.0 cs.sexcounter.com
|
||||
@@ -1523,7 +1485,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 cumpleaser.com
|
||||
0.0.0.0 cumshotlist.com
|
||||
0.0.0.0 cumshotscenes.com
|
||||
0.0.0.0 cumstuff.bi-caps.com
|
||||
0.0.0.0 cumswap.net
|
||||
0.0.0.0 cuntex.com
|
||||
0.0.0.0 curvyangel.com
|
||||
@@ -1623,7 +1584,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 delivery.hornyspots.com
|
||||
0.0.0.0 delivery.porn.com
|
||||
0.0.0.0 delivery.yourfuckbook.com
|
||||
0.0.0.0 deltawhite.bi-caps.com
|
||||
0.0.0.0 deluxeblondes.com
|
||||
0.0.0.0 depravedangel.unblog.fr
|
||||
0.0.0.0 depravedangels.com
|
||||
@@ -1643,9 +1603,7 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 desktopangels.net
|
||||
0.0.0.0 destinyangel.net
|
||||
0.0.0.0 detour.click
|
||||
0.0.0.0 dev.bi-caps.com
|
||||
0.0.0.0 deviantclip.com
|
||||
0.0.0.0 devicehit.ru
|
||||
0.0.0.0 devil-galleries.com
|
||||
0.0.0.0 devils-angels.com
|
||||
0.0.0.0 devirginize.com
|
||||
@@ -1679,7 +1637,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 directtrafficlink.com
|
||||
0.0.0.0 dirty-coach.com
|
||||
0.0.0.0 dirty101.com
|
||||
0.0.0.0 dirtybondagetgp.com
|
||||
0.0.0.0 dirtyfinder.com
|
||||
0.0.0.0 dirtyflix.ml
|
||||
0.0.0.0 dirtygifsnotmore.tumblr.com
|
||||
@@ -1738,7 +1695,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 dreams-hd.com
|
||||
0.0.0.0 dreamtranny.com
|
||||
0.0.0.0 driverxxx.com
|
||||
0.0.0.0 drknow.net
|
||||
0.0.0.0 drommhub.com
|
||||
0.0.0.0 drporntube.com
|
||||
0.0.0.0 drstrangelove.com
|
||||
@@ -1749,8 +1705,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 drunkhomeparty.com
|
||||
0.0.0.0 drunkmoms.net
|
||||
0.0.0.0 drunkpichunter.com
|
||||
0.0.0.0 drunkporn.us
|
||||
0.0.0.0 drunksexygirls.com
|
||||
0.0.0.0 dtvideo.com
|
||||
0.0.0.0 duckgay.com
|
||||
0.0.0.0 dujav.com
|
||||
@@ -1914,7 +1868,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 epikporn.com
|
||||
0.0.0.0 eporner.com
|
||||
0.0.0.0 equibooru.tk
|
||||
0.0.0.0 eraser.heidi.ie
|
||||
0.0.0.0 erikalust.com
|
||||
0.0.0.0 erinvirgin.com
|
||||
0.0.0.0 ero-advertising.com
|
||||
@@ -1934,7 +1887,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 erosmatch.com
|
||||
0.0.0.0 eroswebcams.com
|
||||
0.0.0.0 erotic-blog.com
|
||||
0.0.0.0 erotic-models.net
|
||||
0.0.0.0 erotic-photos.net
|
||||
0.0.0.0 erotic-pictures-blog.com
|
||||
0.0.0.0 eroticahunter.com
|
||||
@@ -1996,10 +1948,8 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 evaangelina.fr
|
||||
0.0.0.0 evaangelina.org
|
||||
0.0.0.0 evaangelina.ws
|
||||
0.0.0.0 evaangelinablog.com
|
||||
0.0.0.0 evaangelinablog.net
|
||||
0.0.0.0 evaangelinaonline.com
|
||||
0.0.0.0 evaangelinax.com
|
||||
0.0.0.0 evangelicaloutreach.org
|
||||
0.0.0.0 evangelineanderson.com
|
||||
0.0.0.0 evangelinehaughney.com
|
||||
@@ -2059,7 +2009,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 exwifesexbook.com
|
||||
0.0.0.0 exxxtra.net
|
||||
0.0.0.0 exxxtrasmall.com
|
||||
0.0.0.0 ez5ez5xxx.info
|
||||
0.0.0.0 ezofferz.com
|
||||
0.0.0.0 f95zone.com
|
||||
0.0.0.0 faaascu.angelfire.com
|
||||
@@ -2151,7 +2100,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 femjoy.com
|
||||
0.0.0.0 femjoyangels.com
|
||||
0.0.0.0 femjoyhunter.com
|
||||
0.0.0.0 femjoynude.com
|
||||
0.0.0.0 ferronetwork.com
|
||||
0.0.0.0 fetisch-webcams.com
|
||||
0.0.0.0 fetish.sexpreviews.eu
|
||||
@@ -2246,7 +2194,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 fleshlight.com
|
||||
0.0.0.0 fleshlight.sjv.io
|
||||
0.0.0.0 fleshlightgirls.com
|
||||
0.0.0.0 fleshlightreviews.net
|
||||
0.0.0.0 fling.com
|
||||
0.0.0.0 flirt365.ru
|
||||
0.0.0.0 flirt4free.com
|
||||
@@ -2285,7 +2232,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 ftvgirlsfan.com
|
||||
0.0.0.0 ftvhunter.com
|
||||
0.0.0.0 fuckedbabes.com
|
||||
0.0.0.0 fuckyeah.bi-caps.com
|
||||
0.0.0.0 funwithamber.everestcash.com
|
||||
0.0.0.0 fur.booru.org
|
||||
0.0.0.0 furry.booru.org
|
||||
@@ -2349,7 +2295,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 gaypornium.com
|
||||
0.0.0.0 gaypornwire.com
|
||||
0.0.0.0 getfuckass.com
|
||||
0.0.0.0 ggd.bi-caps.com
|
||||
0.0.0.0 girlscontrolled.com
|
||||
0.0.0.0 girlsdoxxx.com
|
||||
0.0.0.0 girlsoutwest.com
|
||||
@@ -2460,7 +2405,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 join.jolieandfriends.com
|
||||
0.0.0.0 join.katiereynolds.com
|
||||
0.0.0.0 join.landofvenus.com
|
||||
0.0.0.0 join.lucy-v.com
|
||||
0.0.0.0 join.modelmuscles.com
|
||||
0.0.0.0 join.my-sex-life.com
|
||||
0.0.0.0 join.myallaccesspass.com
|
||||
@@ -2490,14 +2434,12 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 jsmcrjmp.com
|
||||
0.0.0.0 juicygf.com
|
||||
0.0.0.0 juliaannlive.com
|
||||
0.0.0.0 justinejoli.bi-caps.com
|
||||
0.0.0.0 justporn.link
|
||||
0.0.0.0 kabukicho-girls.com
|
||||
0.0.0.0 kanayabooru.booru.org
|
||||
0.0.0.0 kantotin.com
|
||||
0.0.0.0 karupsgalleries.com
|
||||
0.0.0.0 katiekox.bi-caps.com
|
||||
0.0.0.0 katiereynolds.com
|
||||
0.0.0.0 katyasambuca.bi-caps.com
|
||||
0.0.0.0 keismindwarp.com
|
||||
0.0.0.0 kimberleelive.com
|
||||
0.0.0.0 kindgirls.com
|
||||
@@ -2510,7 +2452,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 ladyboyroad.com
|
||||
0.0.0.0 ladyboyweb.com
|
||||
0.0.0.0 landofvenus.com
|
||||
0.0.0.0 larkinlove.bi-caps.com
|
||||
0.0.0.0 lateenie.com
|
||||
0.0.0.0 latesthentai.com
|
||||
0.0.0.0 latinafacesitting.com
|
||||
@@ -2526,7 +2467,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 letfap.com
|
||||
0.0.0.0 lexidona.com
|
||||
0.0.0.0 lineporn.com
|
||||
0.0.0.0 louisejenson.bi-caps.com
|
||||
0.0.0.0 lubedfan.com
|
||||
0.0.0.0 lubet.jasmin.com
|
||||
0.0.0.0 lucy-v.com
|
||||
@@ -2556,7 +2496,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 maggiegreenlive.com
|
||||
0.0.0.0 magic-erotica.com
|
||||
0.0.0.0 maguro721.com
|
||||
0.0.0.0 main.bi-caps.com
|
||||
0.0.0.0 mainbabes.com
|
||||
0.0.0.0 mangafap.com
|
||||
0.0.0.0 manporn.xxx
|
||||
@@ -2731,7 +2670,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 nur-sexgames.com
|
||||
0.0.0.0 nutabu.com
|
||||
0.0.0.0 nutaku.net
|
||||
0.0.0.0 nutnips.com
|
||||
0.0.0.0 nutnudes.com
|
||||
0.0.0.0 nwsgifs.com
|
||||
0.0.0.0 nxt-comics.com
|
||||
@@ -2868,7 +2806,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 paulsnetwork.com
|
||||
0.0.0.0 payserve.com
|
||||
0.0.0.0 paysitepornlist.com
|
||||
0.0.0.0 pbay-secure.com
|
||||
0.0.0.0 pbjjqx.angelfire.com
|
||||
0.0.0.0 pc20161117.com
|
||||
0.0.0.0 pcash.imlive.com
|
||||
@@ -2896,7 +2833,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 personalfirewall.comodo.com
|
||||
0.0.0.0 pertunda.com
|
||||
0.0.0.0 pervclips.com
|
||||
0.0.0.0 pervertedwebcams.com
|
||||
0.0.0.0 pervnetwork.com
|
||||
0.0.0.0 pervygames.com
|
||||
0.0.0.0 petergirls.com
|
||||
@@ -3030,7 +2966,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 private.com
|
||||
0.0.0.0 privatecastings.com
|
||||
0.0.0.0 privateclassics.com
|
||||
0.0.0.0 projects.bi-caps.com
|
||||
0.0.0.0 promo.homegrownvideo.com
|
||||
0.0.0.0 promo.spunkyangels.com
|
||||
0.0.0.0 pt.chaturbate.com
|
||||
@@ -3282,6 +3217,7 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 sexyoutdoor.fun
|
||||
0.0.0.0 sexytokyo.org
|
||||
0.0.0.0 shandafay.com
|
||||
0.0.0.0 sharesome.com
|
||||
0.0.0.0 sharethatboy.com
|
||||
0.0.0.0 sharkys.at
|
||||
0.0.0.0 shedevils.com
|
||||
@@ -3322,7 +3258,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 sthg.booru.org
|
||||
0.0.0.0 stockingsvr.com
|
||||
0.0.0.0 stockingvideos.com
|
||||
0.0.0.0 str8.bi-caps.com
|
||||
0.0.0.0 streamhentaimovies.com
|
||||
0.0.0.0 streaming.mature-money.com
|
||||
0.0.0.0 streaptease.net
|
||||
@@ -3376,7 +3311,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 tokyopussycinema.com
|
||||
0.0.0.0 tools.zbuckz.com
|
||||
0.0.0.0 toonundies.booru.org
|
||||
0.0.0.0 torylane.bi-caps.com
|
||||
0.0.0.0 touchmylips.com
|
||||
0.0.0.0 tour.bikini-pleasure.com
|
||||
0.0.0.0 tour.girlsoutwest.com
|
||||
@@ -3398,10 +3332,10 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 twinkhouse.com
|
||||
0.0.0.0 twinkybf.com
|
||||
0.0.0.0 uhmature.com
|
||||
0.0.0.0 ukrafoto.com
|
||||
0.0.0.0 uralesbian.com
|
||||
0.0.0.0 usnyc.jasmin.com
|
||||
0.0.0.0 v-rn.slutload-media.com
|
||||
0.0.0.0 valoryirene.bi-caps.com
|
||||
0.0.0.0 velvetfantasies.com
|
||||
0.0.0.0 veporn.video
|
||||
0.0.0.0 vickyathome.com
|
||||
@@ -3428,13 +3362,11 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 wiki.livejasmin.com
|
||||
0.0.0.0 wildbdsmart.com
|
||||
0.0.0.0 wildhotbabes.com
|
||||
0.0.0.0 women.bi-caps.com
|
||||
0.0.0.0 www.0013langford.tumblr.com
|
||||
0.0.0.0 www.007angels.com
|
||||
0.0.0.0 www.00webcams.com
|
||||
0.0.0.0 www.0xxx.ws
|
||||
0.0.0.0 www.1-last-fight.tumblr.com
|
||||
0.0.0.0 www.100amateurvideos.com
|
||||
0.0.0.0 www.101sexsecret.com
|
||||
0.0.0.0 www.11inchesbuffed.tumblr.com
|
||||
0.0.0.0 www.18-teen-xxx.com
|
||||
@@ -3453,7 +3385,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.19nitten.com
|
||||
0.0.0.0 www.1sexsex.com
|
||||
0.0.0.0 www.1stmovieclub.net
|
||||
0.0.0.0 www.1watchmygf.com
|
||||
0.0.0.0 www.2-xx.com
|
||||
0.0.0.0 www.2001positions.com
|
||||
0.0.0.0 www.2016porno.com
|
||||
@@ -3467,7 +3398,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.2busty.net
|
||||
0.0.0.0 www.2girls1gif.tumblr.com
|
||||
0.0.0.0 www.2wjk.tumblr.com
|
||||
0.0.0.0 www.3angelsvideo.com
|
||||
0.0.0.0 www.3animalsex.com
|
||||
0.0.0.0 www.3arabporn.com
|
||||
0.0.0.0 www.3at3ot.com
|
||||
@@ -3611,7 +3541,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.affairsclub.com
|
||||
0.0.0.0 www.affiliate-cash.tied-angels.com
|
||||
0.0.0.0 www.affiliates.thrixxx.com
|
||||
0.0.0.0 www.affiliation-int.com
|
||||
0.0.0.0 www.aflamneek.com
|
||||
0.0.0.0 www.aflamporn.com
|
||||
0.0.0.0 www.africancasting.com
|
||||
@@ -3633,7 +3562,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.alfamina.com
|
||||
0.0.0.0 www.algarve-girls.com
|
||||
0.0.0.0 www.alison-angel-1.com
|
||||
0.0.0.0 www.alison-angel.biz
|
||||
0.0.0.0 www.alisonangel.com
|
||||
0.0.0.0 www.alivegirls.com
|
||||
0.0.0.0 www.alldayanalgifs.tumblr.com
|
||||
@@ -3700,7 +3628,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.analdin.com
|
||||
0.0.0.0 www.analpornfan.com
|
||||
0.0.0.0 www.analxtv.com
|
||||
0.0.0.0 www.angel-anime.com
|
||||
0.0.0.0 www.angel-collection.com
|
||||
0.0.0.0 www.angel-companions.co.uk
|
||||
0.0.0.0 www.angel-dark.org
|
||||
@@ -3711,7 +3638,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.angel.ne.jp
|
||||
0.0.0.0 www.angel.se
|
||||
0.0.0.0 www.angel4christyb.com
|
||||
0.0.0.0 www.angel4host.com
|
||||
0.0.0.0 www.angel4u.linkarena.com
|
||||
0.0.0.0 www.angela.nl
|
||||
0.0.0.0 www.angela.nu
|
||||
@@ -3816,12 +3742,10 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.angelphotos.dr.ag
|
||||
0.0.0.0 www.angelplace.com
|
||||
0.0.0.0 www.angels-archive.com
|
||||
0.0.0.0 www.angels-bound.com
|
||||
0.0.0.0 www.angels-feet.de
|
||||
0.0.0.0 www.angels-in-ukraine.net
|
||||
0.0.0.0 www.angels-place.com
|
||||
0.0.0.0 www.angels-sydney.over-blog.com
|
||||
0.0.0.0 www.angels-tokyo.com
|
||||
0.0.0.0 www.angels-videos.com
|
||||
0.0.0.0 www.angels.altenpflege.board.de
|
||||
0.0.0.0 www.angels.jp.land.to
|
||||
@@ -4036,7 +3960,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.bananabunny.com
|
||||
0.0.0.0 www.banatdream.com
|
||||
0.0.0.0 www.banditmovies.com
|
||||
0.0.0.0 www.banduraangels.com
|
||||
0.0.0.0 www.bang.com
|
||||
0.0.0.0 www.bangbros.com
|
||||
0.0.0.0 www.bangbrosnetwork.com
|
||||
@@ -4070,7 +3993,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.bdsmboard.org
|
||||
0.0.0.0 www.bdsmcafe.com
|
||||
0.0.0.0 www.bdsmlibrary.com
|
||||
0.0.0.0 www.bdsmpichunter.com
|
||||
0.0.0.0 www.bdsmstreak.com
|
||||
0.0.0.0 www.bdsmtheory.com
|
||||
0.0.0.0 www.bdsmxxxmovies.com
|
||||
@@ -4111,7 +4033,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.between-thy-sheets.tumblr.com
|
||||
0.0.0.0 www.betweenu2.tumblr.com
|
||||
0.0.0.0 www.bffs.com
|
||||
0.0.0.0 www.bi-caps.com
|
||||
0.0.0.0 www.bi-sexuall.tumblr.com
|
||||
0.0.0.0 www.bibijonesanddillonharperrule.tumblr.com
|
||||
0.0.0.0 www.bigbangempire.com
|
||||
@@ -4169,7 +4090,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.blogbugs.org
|
||||
0.0.0.0 www.blogs-list.com
|
||||
0.0.0.0 www.blogtur.com
|
||||
0.0.0.0 www.blondangel.de
|
||||
0.0.0.0 www.blondemilfslut.com
|
||||
0.0.0.0 www.blondewebcams.com
|
||||
0.0.0.0 www.blondexxxmag.com
|
||||
@@ -4424,18 +4344,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.clipcake.com
|
||||
0.0.0.0 www.cliphunter.com
|
||||
0.0.0.0 www.clips4free.is
|
||||
0.0.0.0 www.clit1.sex-tracker.com
|
||||
0.0.0.0 www.clit10.sex-tracker.com
|
||||
0.0.0.0 www.clit11.sex-tracker.com
|
||||
0.0.0.0 www.clit12.sex-tracker.com
|
||||
0.0.0.0 www.clit2.sex-tracker.com
|
||||
0.0.0.0 www.clit3.sex-tracker.com
|
||||
0.0.0.0 www.clit4.sex-tracker.com
|
||||
0.0.0.0 www.clit5.sex-tracker.com
|
||||
0.0.0.0 www.clit6.sex-tracker.com
|
||||
0.0.0.0 www.clit7.sex-tracker.com
|
||||
0.0.0.0 www.clit8.sex-tracker.com
|
||||
0.0.0.0 www.clit9.sex-tracker.com
|
||||
0.0.0.0 www.cliter.com
|
||||
0.0.0.0 www.clitgames.com
|
||||
0.0.0.0 www.cliti.com
|
||||
@@ -4664,7 +4572,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.dirty101.com
|
||||
0.0.0.0 www.dirtybay.tumblr.com
|
||||
0.0.0.0 www.dirtybetty.tumblr.com
|
||||
0.0.0.0 www.dirtybondagetgp.com
|
||||
0.0.0.0 www.dirtydeniseworld.tumblr.com
|
||||
0.0.0.0 www.dirtydirtyangels.com
|
||||
0.0.0.0 www.dirtyfinder.com
|
||||
@@ -4721,8 +4628,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.drtuber.com
|
||||
0.0.0.0 www.drunkenstepfather.com
|
||||
0.0.0.0 www.drunkpichunter.com
|
||||
0.0.0.0 www.drunkporn.us
|
||||
0.0.0.0 www.drunksexygirls.com
|
||||
0.0.0.0 www.dumbvirgins.com
|
||||
0.0.0.0 www.dump.xxx
|
||||
0.0.0.0 www.dumppix.com
|
||||
@@ -4840,9 +4745,7 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.evaangelina.fr
|
||||
0.0.0.0 www.evaangelina.org
|
||||
0.0.0.0 www.evaangelina.ws
|
||||
0.0.0.0 www.evaangelinablog.com
|
||||
0.0.0.0 www.evaangelinaonline.com
|
||||
0.0.0.0 www.evaangelinax.com
|
||||
0.0.0.0 www.evaangelinaxxxx.com
|
||||
0.0.0.0 www.evababy90.tumblr.com
|
||||
0.0.0.0 www.evangelicaloutpost.com
|
||||
@@ -4885,7 +4788,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.exwifesexbook.com
|
||||
0.0.0.0 www.exxxtrasmall.com
|
||||
0.0.0.0 www.ez-pornbabes.tumblr.com
|
||||
0.0.0.0 www.ez5ez5xxx.info
|
||||
0.0.0.0 www.faaascu.angelfire.com
|
||||
0.0.0.0 www.faapy.com
|
||||
0.0.0.0 www.fablesofanhedonia.tumblr.com
|
||||
@@ -4955,7 +4857,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.femdomspotlight.tumblr.com
|
||||
0.0.0.0 www.femdomworld.com
|
||||
0.0.0.0 www.femjoyangels.com
|
||||
0.0.0.0 www.femjoynude.com
|
||||
0.0.0.0 www.ferronetwork.com
|
||||
0.0.0.0 www.fetisch-webcams.com
|
||||
0.0.0.0 www.fetishbabes.tumblr.com
|
||||
@@ -5016,7 +4917,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.fleshhole.com
|
||||
0.0.0.0 www.fleshlight.com
|
||||
0.0.0.0 www.fleshlightgirls.com
|
||||
0.0.0.0 www.fleshlightreviews.net
|
||||
0.0.0.0 www.fling.com
|
||||
0.0.0.0 www.flingtube.com
|
||||
0.0.0.0 www.flirt4free.com
|
||||
@@ -5039,7 +4939,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.forumophilia.com
|
||||
0.0.0.0 www.forums.neswangy.net
|
||||
0.0.0.0 www.foto-bugil.tumblr.com
|
||||
0.0.0.0 www.foto-porno.it
|
||||
0.0.0.0 www.foxhq.com
|
||||
0.0.0.0 www.foxporns.com
|
||||
0.0.0.0 www.foxxedup.com
|
||||
@@ -5785,6 +5684,7 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.kadu-amadoras.tumblr.com
|
||||
0.0.0.0 www.kagbz.com
|
||||
0.0.0.0 www.kagneylinnkarter.com
|
||||
0.0.0.0 www.kantotin.com
|
||||
0.0.0.0 www.kaotic.com
|
||||
0.0.0.0 www.kaplog.com
|
||||
0.0.0.0 www.karupsbabes.com
|
||||
@@ -6647,7 +6547,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.personalcams.com
|
||||
0.0.0.0 www.pertunda.com
|
||||
0.0.0.0 www.pervclips.com
|
||||
0.0.0.0 www.pervertedwebcams.com
|
||||
0.0.0.0 www.pervertslut.com
|
||||
0.0.0.0 www.pervnetwork.com
|
||||
0.0.0.0 www.pervsonpatrol.com
|
||||
@@ -7243,7 +7142,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.sex-harder.tumblr.com
|
||||
0.0.0.0 www.sex-maniacs.tumblr.com
|
||||
0.0.0.0 www.sex-o-rgia.tumblr.com
|
||||
0.0.0.0 www.sex-tracker.com
|
||||
0.0.0.0 www.sex-tracker.de
|
||||
0.0.0.0 www.sex-watch.com
|
||||
0.0.0.0 www.sex.com
|
||||
@@ -7371,6 +7269,7 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.shandafay.com
|
||||
0.0.0.0 www.shared.juicybucks.com
|
||||
0.0.0.0 www.shareporno.com
|
||||
0.0.0.0 www.sharesome.com
|
||||
0.0.0.0 www.sharingwifes.tumblr.com
|
||||
0.0.0.0 www.sharkys.at
|
||||
0.0.0.0 www.shavkunovayb4a.tumblr.com
|
||||
@@ -8371,7 +8270,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.xfig.net
|
||||
0.0.0.0 www.xfreehd.com
|
||||
0.0.0.0 www.xgallsx.com
|
||||
0.0.0.0 www.xgirlsporn.com
|
||||
0.0.0.0 www.xhamster-teens.com
|
||||
0.0.0.0 www.xhamster.com
|
||||
0.0.0.0 www.xhamstercams.com
|
||||
@@ -8430,7 +8328,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.xxvideoss.org
|
||||
0.0.0.0 www.xxx-art.us
|
||||
0.0.0.0 www.xxx-hd-tube.com
|
||||
0.0.0.0 www.xxx-hitz.org
|
||||
0.0.0.0 www.xxx-mom.com
|
||||
0.0.0.0 www.xxx-r.com
|
||||
0.0.0.0 www.xxx.com
|
||||
@@ -8666,7 +8563,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 xfreehd.com
|
||||
0.0.0.0 xgallsx.com
|
||||
0.0.0.0 xgaylist.com
|
||||
0.0.0.0 xgirlsporn.com
|
||||
0.0.0.0 xhamster.com
|
||||
0.0.0.0 xhamstercams.com
|
||||
0.0.0.0 xhamsterlive.com
|
||||
@@ -8697,7 +8593,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 xnxx-love.com
|
||||
0.0.0.0 xnxx-zoo.com
|
||||
0.0.0.0 xnxx.com
|
||||
0.0.0.0 xnxx.media
|
||||
0.0.0.0 xnxxcomvideos.com
|
||||
0.0.0.0 xnxxhamster.net
|
||||
0.0.0.0 xnxxhdporn.com
|
||||
@@ -8729,17 +8624,14 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 xvideosex.site
|
||||
0.0.0.0 xvideosporno.blog.br
|
||||
0.0.0.0 xvideosxnxx.net
|
||||
0.0.0.0 xvidparlor.com
|
||||
0.0.0.0 xvirgins.com
|
||||
0.0.0.0 xweporn.com
|
||||
0.0.0.0 xwowgirls.com
|
||||
0.0.0.0 xxtgp.com
|
||||
0.0.0.0 xxvids.net
|
||||
0.0.0.0 xxx-blog.to
|
||||
0.0.0.0 xxx-cosplay.com
|
||||
0.0.0.0 xxx-hd-teens.com
|
||||
0.0.0.0 xxx-hd-tube.com
|
||||
0.0.0.0 xxx-hitz.org
|
||||
0.0.0.0 xxx-mom.com
|
||||
0.0.0.0 xxx-r.com
|
||||
0.0.0.0 xxx.bootytape.com
|
||||
@@ -8765,7 +8657,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 xxxhdvideogo.com
|
||||
0.0.0.0 xxxhomefuck.com
|
||||
0.0.0.0 xxxhq.me
|
||||
0.0.0.0 xxxkino.to
|
||||
0.0.0.0 xxxmalltheaters.tumblr.com
|
||||
0.0.0.0 xxxmemberchannels.com
|
||||
0.0.0.0 xxxmemes.com
|
||||
@@ -8793,7 +8684,6 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 xxxvideoamatoriali.com
|
||||
0.0.0.0 xxxvideosex.org
|
||||
0.0.0.0 xxxvogue.net
|
||||
0.0.0.0 xxxx.ovh
|
||||
0.0.0.0 xxxylive.com
|
||||
0.0.0.0 xyou.site
|
||||
0.0.0.0 xyzcomics.com
|
||||
@@ -8990,3 +8880,228 @@ fe80::1%lo0 localhost
|
||||
0.0.0.0 www.goregrish.com
|
||||
0.0.0.0 www.horriblevideos.com
|
||||
0.0.0.0 www.miscopy.com
|
||||
|
||||
#Porn domain
|
||||
0.0.0.0 camsoda.com #Porn domain
|
||||
0.0.0.0 promo.camsoda.com #Porn domain
|
||||
0.0.0.0 wiki.camsoda.com #Porn domain
|
||||
0.0.0.0 md.camsoda.com #Porn domain
|
||||
0.0.0.0 media.camsoda.com #Porn domain
|
||||
0.0.0.0 cachew.camsoda.com #Porn domain
|
||||
0.0.0.0 node2-ord.camsoda.com #Porn domain
|
||||
0.0.0.0 securedataimages.com #Porn domain
|
||||
0.0.0.0 privatefeeds.com #Porn domain
|
||||
0.0.0.0 pornkai.com #Porn domain
|
||||
0.0.0.0 shemale.movie #Porn domain
|
||||
0.0.0.0 videosection.com #Porn domain
|
||||
0.0.0.0 videosection.com #Porn domain
|
||||
0.0.0.0 mtree.com #Porn domain
|
||||
0.0.0.0 wm.mtree.com #Porn domain
|
||||
0.0.0.0 clicktraq.mtree.com #Porn domain
|
||||
0.0.0.0 counter.mtree.com #Porn domain
|
||||
0.0.0.0 dyntraq.mtree.com #Porn domain
|
||||
0.0.0.0 mt1.mtree.com #Porn domain
|
||||
0.0.0.0 mt10.mtree.com #Porn domain
|
||||
0.0.0.0 mt100.mtree.com #Porn domain
|
||||
0.0.0.0 mt101.mtree.com #Porn domain
|
||||
0.0.0.0 mt102.mtree.com #Porn domain
|
||||
0.0.0.0 mt103.mtree.com #Porn domain
|
||||
0.0.0.0 mt104.mtree.com #Porn domain
|
||||
0.0.0.0 mt105.mtree.com #Porn domain
|
||||
0.0.0.0 mt106.mtree.com #Porn domain
|
||||
0.0.0.0 mt107.mtree.com #Porn domain
|
||||
0.0.0.0 mt108.mtree.com #Porn domain
|
||||
0.0.0.0 mt109.mtree.com #Porn domain
|
||||
0.0.0.0 mt11.mtree.com #Porn domain
|
||||
0.0.0.0 mt110.mtree.com #Porn domain
|
||||
0.0.0.0 mt111.mtree.com #Porn domain
|
||||
0.0.0.0 mt112.mtree.com #Porn domain
|
||||
0.0.0.0 mt113.mtree.com #Porn domain
|
||||
0.0.0.0 mt114.mtree.com #Porn domain
|
||||
0.0.0.0 mt115.mtree.com #Porn domain
|
||||
0.0.0.0 mt116.mtree.com #Porn domain
|
||||
0.0.0.0 mt117.mtree.com #Porn domain
|
||||
0.0.0.0 mt118.mtree.com #Porn domain
|
||||
0.0.0.0 mt119.mtree.com #Porn domain
|
||||
0.0.0.0 mt12.mtree.com #Porn domain
|
||||
0.0.0.0 mt120.mtree.com #Porn domain
|
||||
0.0.0.0 mt121.mtree.com #Porn domain
|
||||
0.0.0.0 mt122.mtree.com #Porn domain
|
||||
0.0.0.0 mt123.mtree.com #Porn domain
|
||||
0.0.0.0 mt124.mtree.com #Porn domain
|
||||
0.0.0.0 mt125.mtree.com #Porn domain
|
||||
0.0.0.0 mt126.mtree.com #Porn domain
|
||||
0.0.0.0 mt127.mtree.com #Porn domain
|
||||
0.0.0.0 mt128.mtree.com #Porn domain
|
||||
0.0.0.0 mt13.mtree.com #Porn domain
|
||||
0.0.0.0 mt14.mtree.com #Porn domain
|
||||
0.0.0.0 mt15.mtree.com #Porn domain
|
||||
0.0.0.0 mt16.mtree.com #Porn domain
|
||||
0.0.0.0 mt17.mtree.com #Porn domain
|
||||
0.0.0.0 mt18.mtree.com #Porn domain
|
||||
0.0.0.0 mt19.mtree.com #Porn domain
|
||||
0.0.0.0 mt2.mtree.com #Porn domain
|
||||
0.0.0.0 mt20.mtree.com #Porn domain
|
||||
0.0.0.0 mt21.mtree.com #Porn domain
|
||||
0.0.0.0 mt22.mtree.com #Porn domain
|
||||
0.0.0.0 mt23.mtree.com #Porn domain
|
||||
0.0.0.0 mt24.mtree.com #Porn domain
|
||||
0.0.0.0 mt25.mtree.com #Porn domain
|
||||
0.0.0.0 mt26.mtree.com #Porn domain
|
||||
0.0.0.0 mt27.mtree.com #Porn domain
|
||||
0.0.0.0 mt28.mtree.com #Porn domain
|
||||
0.0.0.0 mt29.mtree.com #Porn domain
|
||||
0.0.0.0 mt3.mtree.com #Porn domain
|
||||
0.0.0.0 mt30.mtree.com #Porn domain
|
||||
0.0.0.0 mt31.mtree.com #Porn domain
|
||||
0.0.0.0 mt32.mtree.com #Porn domain
|
||||
0.0.0.0 mt33.mtree.com #Porn domain
|
||||
0.0.0.0 mt34.mtree.com #Porn domain
|
||||
0.0.0.0 mt35.mtree.com #Porn domain
|
||||
0.0.0.0 mt36.mtree.com #Porn domain
|
||||
0.0.0.0 mt37.mtree.com #Porn domain
|
||||
0.0.0.0 mt38.mtree.com #Porn domain
|
||||
0.0.0.0 mt39.mtree.com #Porn domain
|
||||
0.0.0.0 mt4.mtree.com #Porn domain
|
||||
0.0.0.0 mt40.mtree.com #Porn domain
|
||||
0.0.0.0 mt41.mtree.com #Porn domain
|
||||
0.0.0.0 mt42.mtree.com #Porn domain
|
||||
0.0.0.0 mt43.mtree.com #Porn domain
|
||||
0.0.0.0 mt44.mtree.com #Porn domain
|
||||
0.0.0.0 mt45.mtree.com #Porn domain
|
||||
0.0.0.0 mt46.mtree.com #Porn domain
|
||||
0.0.0.0 mt47.mtree.com #Porn domain
|
||||
0.0.0.0 mt48.mtree.com #Porn domain
|
||||
0.0.0.0 mt49.mtree.com #Porn domain
|
||||
0.0.0.0 mt5.mtree.com #Porn domain
|
||||
0.0.0.0 mt50.mtree.com #Porn domain
|
||||
0.0.0.0 mt51.mtree.com #Porn domain
|
||||
0.0.0.0 mt52.mtree.com #Porn domain
|
||||
0.0.0.0 mt53.mtree.com #Porn domain
|
||||
0.0.0.0 mt54.mtree.com #Porn domain
|
||||
0.0.0.0 mt55.mtree.com #Porn domain
|
||||
0.0.0.0 mt56.mtree.com #Porn domain
|
||||
0.0.0.0 mt57.mtree.com #Porn domain
|
||||
0.0.0.0 mt58.mtree.com #Porn domain
|
||||
0.0.0.0 mt59.mtree.com #Porn domain
|
||||
0.0.0.0 mt6.mtree.com #Porn domain
|
||||
0.0.0.0 mt60.mtree.com #Porn domain
|
||||
0.0.0.0 mt61.mtree.com #Porn domain
|
||||
0.0.0.0 mt62.mtree.com #Porn domain
|
||||
0.0.0.0 mt63.mtree.com #Porn domain
|
||||
0.0.0.0 mt64.mtree.com #Porn domain
|
||||
0.0.0.0 mt65.mtree.com #Porn domain
|
||||
0.0.0.0 mt66.mtree.com #Porn domain
|
||||
0.0.0.0 mt67.mtree.com #Porn domain
|
||||
0.0.0.0 mt68.mtree.com #Porn domain
|
||||
0.0.0.0 mt69.mtree.com #Porn domain
|
||||
0.0.0.0 mt7.mtree.com #Porn domain
|
||||
0.0.0.0 mt70.mtree.com #Porn domain
|
||||
0.0.0.0 mt71.mtree.com #Porn domain
|
||||
0.0.0.0 mt72.mtree.com #Porn domain
|
||||
0.0.0.0 mt73.mtree.com #Porn domain
|
||||
0.0.0.0 mt74.mtree.com #Porn domain
|
||||
0.0.0.0 mt75.mtree.com #Porn domain
|
||||
0.0.0.0 mt76.mtree.com #Porn domain
|
||||
0.0.0.0 mt77.mtree.com #Porn domain
|
||||
0.0.0.0 mt78.mtree.com #Porn domain
|
||||
0.0.0.0 mt79.mtree.com #Porn domain
|
||||
0.0.0.0 mt8.mtree.com #Porn domain
|
||||
0.0.0.0 mt80.mtree.com #Porn domain
|
||||
0.0.0.0 mt81.mtree.com #Porn domain
|
||||
0.0.0.0 mt82.mtree.com #Porn domain
|
||||
0.0.0.0 mt83.mtree.com #Porn domain
|
||||
0.0.0.0 mt84.mtree.com #Porn domain
|
||||
0.0.0.0 mt85.mtree.com #Porn domain
|
||||
0.0.0.0 mt86.mtree.com #Porn domain
|
||||
0.0.0.0 mt87.mtree.com #Porn domain
|
||||
0.0.0.0 mt88.mtree.com #Porn domain
|
||||
0.0.0.0 mt89.mtree.com #Porn domain
|
||||
0.0.0.0 mt9.mtree.com #Porn domain
|
||||
0.0.0.0 mt90.mtree.com #Porn domain
|
||||
0.0.0.0 mt91.mtree.com #Porn domain
|
||||
0.0.0.0 mt92.mtree.com #Porn domain
|
||||
0.0.0.0 mt93.mtree.com #Porn domain
|
||||
0.0.0.0 mt94.mtree.com #Porn domain
|
||||
0.0.0.0 mt95.mtree.com #Porn domain
|
||||
0.0.0.0 mt96.mtree.com #Porn domain
|
||||
0.0.0.0 mt97.mtree.com #Porn domain
|
||||
0.0.0.0 mt98.mtree.com #Porn domain
|
||||
0.0.0.0 mt99.mtree.com #Porn domain
|
||||
0.0.0.0 porn.mtree.com #Porn domain
|
||||
0.0.0.0 psy.mtree.com #Porn domain
|
||||
0.0.0.0 ss.mtree.com #Porn domain
|
||||
0.0.0.0 the.mtree.com #Porn domain
|
||||
0.0.0.0 vip.mtree.com #Porn domain
|
||||
0.0.0.0 wm.mtree.com #Porn domain
|
||||
0.0.0.0 www.mtree.com #Porn domain
|
||||
0.0.0.0 xbs.mtree.com #Porn domain
|
||||
0.0.0.0 xbs.pao.mtree.com #Porn domain
|
||||
0.0.0.0 xbs.sea.mtree.com #Porn domain
|
||||
0.0.0.0 xbscc1.mtree.com #Porn domain
|
||||
0.0.0.0 gammacdn.com #Porn domain
|
||||
0.0.0.0 videothumb.gammacdn.com #Porn domain
|
||||
0.0.0.0 transform.gammacdn.com #Porn domain
|
||||
0.0.0.0 static01-cms-fame.gammacdn.com #Porn domain
|
||||
0.0.0.0 static02-cms-fame.gammacdn.com #Porn domain
|
||||
0.0.0.0 static03-cms-fame.gammacdn.com #Porn domain
|
||||
0.0.0.0 images01-fame.gammacdn.com #Porn domain
|
||||
0.0.0.0 images02-fame.gammacdn.com #Porn domain
|
||||
0.0.0.0 images03-fame.gammacdn.com #Porn domain
|
||||
0.0.0.0 images04-fame.gammacdn.com #Porn domain
|
||||
0.0.0.0 zwittersex.net #Porn domain
|
||||
0.0.0.0 www.xvideos.es # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 vscdns.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 spankwire.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 www.ht.spankwire.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 hornygirlhere.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 xhamster12.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 static-lvlt.xhcdn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 thumb-lvlt.xhcdn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 thumb-user.xhcdn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 thumb-v1.xhcdn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 thumb-v2.xhcdn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 thumb-v3.xhcdn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 thumb-v4.xhcdn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 xvideosnovinhas.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 e621.net # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 1watchmygf.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 cdn1.1watchmygf.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 cdn2.1watchmygf.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 cdn3.1watchmygf.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 cdn4.1watchmygf.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 cdn5.1watchmygf.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 meet-me-nowhere3.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 hotsex.chat # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 main.hotsex.chat # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 www.hotsex.chat # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 legal-porno.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 www.legal-porno.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 xxxtorrents.pro # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 www.xxxtorrents.pro # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 f95zone.to # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 static.f95zone.to # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 attachments.f95zone.to # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 www.zishy.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 sxyprn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 www.sxyprn.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s1.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s2.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s3.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s4.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s5.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s6.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s7.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s8.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s9.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s10.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s11.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s12.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s13.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s14.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s15.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s16.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s17.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s18.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
0.0.0.0 s19.trafficdeposit.com # Porn domain from Clefspeare13 list
|
||||
|
||||
@@ -14455,3 +14455,45 @@
|
||||
0.0.0.0 sakuracircle.com
|
||||
0.0.0.0 www.redgifs.com
|
||||
0.0.0.0 monova.org
|
||||
0.0.0.0 alphaporno.com
|
||||
0.0.0.0 analdin.com
|
||||
0.0.0.0 anysex.com
|
||||
0.0.0.0 apornstories.com
|
||||
0.0.0.0 ashemaletube.com
|
||||
0.0.0.0 bemyhole.com
|
||||
0.0.0.0 bestfreetube.xxx
|
||||
0.0.0.0 bigfuck.tv
|
||||
0.0.0.0 bravoteens.com
|
||||
0.0.0.0 de.xhamster.com
|
||||
0.0.0.0 dirtypornvids.com
|
||||
0.0.0.0 fantasti.cc
|
||||
0.0.0.0 gotporn.com
|
||||
0.0.0.0 hdsex.org
|
||||
0.0.0.0 hog.tv
|
||||
0.0.0.0 keekass.com
|
||||
0.0.0.0 onlylesbiantube.com
|
||||
0.0.0.0 porn.biz
|
||||
0.0.0.0 porngo.com
|
||||
0.0.0.0 pornkai.com
|
||||
0.0.0.0 shemale.movie
|
||||
0.0.0.0 shemalez.com
|
||||
0.0.0.0 tranny.one
|
||||
0.0.0.0 upornia.com
|
||||
0.0.0.0 videos.apornstories.com
|
||||
0.0.0.0 videosection.com
|
||||
0.0.0.0 xxxfiles.com
|
||||
0.0.0.0 bustyporn.com
|
||||
0.0.0.0 realpornclip.com
|
||||
0.0.0.0 xxxtor.com
|
||||
0.0.0.0 www.pornorip.biz
|
||||
0.0.0.0 pornotor.org
|
||||
0.0.0.0 pornolive.org
|
||||
0.0.0.0 pornleech.io
|
||||
0.0.0.0 pornforall.net
|
||||
0.0.0.0 nyaa.net
|
||||
0.0.0.0 www.sexy-pics.us
|
||||
0.0.0.0 onejav.com
|
||||
0.0.0.0 bbw-chan.nl
|
||||
0.0.0.0 nudostar.com
|
||||
0.0.0.0 hentairead.com
|
||||
0.0.0.0 xscandals.com/
|
||||
|
||||
@@ -42,6 +42,7 @@
|
||||
0.0.0.0 gfporntube.com
|
||||
0.0.0.0 hairytubeporno.com
|
||||
0.0.0.0 hakusuiriki.tv
|
||||
0.0.0.0 hentaihand.com
|
||||
0.0.0.0 hentaipornpics.net
|
||||
0.0.0.0 hipup.net
|
||||
0.0.0.0 hitozumagazo.com
|
||||
@@ -53,6 +54,28 @@
|
||||
0.0.0.0 idolzone.blog137.fc2.com
|
||||
0.0.0.0 inaka.x.fc2.com
|
||||
0.0.0.0 jams.kir.jp
|
||||
0.0.0.0 japanesefuckers.com
|
||||
0.0.0.0 jav.land
|
||||
0.0.0.0 javbulk.com
|
||||
0.0.0.0 javbuz.com
|
||||
0.0.0.0 javengsub.com
|
||||
0.0.0.0 javfinder.la
|
||||
0.0.0.0 javfree.biz
|
||||
0.0.0.0 javhay.net
|
||||
0.0.0.0 javhdmovies.com
|
||||
0.0.0.0 javhihi.me
|
||||
0.0.0.0 javhub.me
|
||||
0.0.0.0 javladies.com
|
||||
0.0.0.0 javmodel.com
|
||||
0.0.0.0 javpedia.org
|
||||
0.0.0.0 javpool.com
|
||||
0.0.0.0 javrave.club
|
||||
0.0.0.0 javsun.net
|
||||
0.0.0.0 javupdatedaily.blogspot.com
|
||||
0.0.0.0 javwide.tv
|
||||
0.0.0.0 javx.cc
|
||||
0.0.0.0 javxspot.com
|
||||
0.0.0.0 javxxxvideos.com
|
||||
0.0.0.0 javynow.com
|
||||
0.0.0.0 jitsuroku.kir.jp
|
||||
0.0.0.0 jkdaisuki.ad55.net
|
||||
@@ -60,6 +83,7 @@
|
||||
0.0.0.0 live.fc2.com
|
||||
0.0.0.0 lolip.org
|
||||
0.0.0.0 magopro2.ero-spo.com
|
||||
0.0.0.0 manhwa18.com
|
||||
0.0.0.0 mankist.com
|
||||
0.0.0.0 marrion-av.com
|
||||
0.0.0.0 megaporn.blogspot.es
|
||||
@@ -69,6 +93,7 @@
|
||||
0.0.0.0 mutekiya.net
|
||||
0.0.0.0 mvideoporno.xxx
|
||||
0.0.0.0 nadeshiko.tv
|
||||
0.0.0.0 nekopoi.care
|
||||
0.0.0.0 newero1.blog.fc2.com
|
||||
0.0.0.0 news.tokimeki-s.com
|
||||
0.0.0.0 niccori.jp
|
||||
@@ -98,14 +123,18 @@
|
||||
0.0.0.0 sportseye.muvc.net
|
||||
0.0.0.0 ssl.ktfactory.co.jp
|
||||
0.0.0.0 star-porn.ml
|
||||
0.0.0.0 summertimesaga.com
|
||||
0.0.0.0 suppinpin.com
|
||||
0.0.0.0 surebbs.ranks1.apserver.net
|
||||
0.0.0.0 svjav.com
|
||||
0.0.0.0 switch1.jp
|
||||
0.0.0.0 teatroporno.com
|
||||
0.0.0.0 teppan-av.com
|
||||
0.0.0.0 top.togeko.net
|
||||
0.0.0.0 toujyuku.ranks1.apserver.net
|
||||
0.0.0.0 tousatu-douga-youpeeber.com
|
||||
0.0.0.0 ukrafoto.com
|
||||
0.0.0.0 unjav.com
|
||||
0.0.0.0 venus-av.com
|
||||
0.0.0.0 veporns.com
|
||||
0.0.0.0 vipcle2.com
|
||||
@@ -281,6 +310,7 @@
|
||||
0.0.0.0 www.sexia.tv
|
||||
0.0.0.0 www.sexopowiadania.pl
|
||||
0.0.0.0 www.shanimuni.net
|
||||
0.0.0.0 www.sharesome.com
|
||||
0.0.0.0 www.shinoda-av.com
|
||||
0.0.0.0 www.shitagi.org
|
||||
0.0.0.0 www.shuttle-japan.com
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "hosts",
|
||||
"version": "2.6.20",
|
||||
"version": "2.7.2",
|
||||
"description": "Extending and consolidating hosts files from several well-curated sources like adaway.org, mvps.org, malwaredomainlist.com, someonewhocares.org, and potentially others. You can optionally invoke extensions to block additional sites by category.",
|
||||
"main": "",
|
||||
"private": true,
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -21,8 +22,8 @@
|
||||
This repository consolidates several reputable `hosts` files, and merges them
|
||||
into a unified hosts file with duplicates removed. A variety of tailored hosts files are provided.
|
||||
|
||||
* Last updated: **June 03 2020**.
|
||||
* Here's the [raw hosts file with base extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) containing 57,545 entries.
|
||||
* Last updated: **July 25 2020**.
|
||||
* Here's the [raw hosts file with base extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) containing 57,717 entries.
|
||||
* Logo by [@Tobaloidee](https://github.com/Tobaloidee).
|
||||
|
||||
|
||||
@@ -36,22 +37,22 @@ with GitHub download links.
|
||||
|
||||
Host file recipe | Readme | Raw hosts | Unique domains | Non GitHub mirror
|
||||
---------------- |:------:|:---------:|:--------------:|:-------------:
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,545 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,487 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 59,869 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,097 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,302 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,811 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,039 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,244 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,421 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,626 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 79,853 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,363 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,568 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 80,795 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,177 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,119 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
Unified hosts = **(adware + malware)** | [Readme](https://github.com/StevenBlack/hosts/blob/master/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) | 57,717 | [link](http://sbc.io/hosts/hosts)
|
||||
Unified hosts **+ fakenews** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) | 58,659 | [link](http://sbc.io/hosts/alternates/fakenews/hosts)
|
||||
Unified hosts **+ gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) | 60,041 | [link](http://sbc.io/hosts/alternates/gambling/hosts)
|
||||
Unified hosts **+ porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) | 77,449 | [link](http://sbc.io/hosts/alternates/porn/hosts)
|
||||
Unified hosts **+ social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) | 60,474 | [link](http://sbc.io/hosts/alternates/social/hosts)
|
||||
Unified hosts **+ fakenews + gambling** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts) | 60,983 | [link](http://sbc.io/hosts/alternates/fakenews-gambling/hosts)
|
||||
Unified hosts **+ fakenews + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) | 78,391 | [link](http://sbc.io/hosts/alternates/fakenews-porn/hosts)
|
||||
Unified hosts **+ fakenews + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts) | 61,416 | [link](http://sbc.io/hosts/alternates/fakenews-social/hosts)
|
||||
Unified hosts **+ gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts) | 79,773 | [link](http://sbc.io/hosts/alternates/gambling-porn/hosts)
|
||||
Unified hosts **+ gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts) | 62,798 | [link](http://sbc.io/hosts/alternates/gambling-social/hosts)
|
||||
Unified hosts **+ porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) | 80,205 | [link](http://sbc.io/hosts/alternates/porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts) | 80,715 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts)
|
||||
Unified hosts **+ fakenews + gambling + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts) | 63,740 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts)
|
||||
Unified hosts **+ fakenews + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts) | 81,147 | [link](http://sbc.io/hosts/alternates/fakenews-porn-social/hosts)
|
||||
Unified hosts **+ gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts) | 82,529 | [link](http://sbc.io/hosts/alternates/gambling-porn-social/hosts)
|
||||
Unified hosts **+ fakenews + gambling + porn + social** | [Readme](https://github.com/StevenBlack/hosts/blob/master/alternates/fakenews-gambling-porn-social/readme.md) | [link](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts) | 83,471 | [link](http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts)
|
||||
|
||||
|
||||
**Expectation**: These unified hosts files should serve all devices, regardless
|
||||
@@ -187,15 +188,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -245,8 +249,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+11
-8
@@ -1,7 +1,8 @@
|
||||
----
|
||||
**Take Note!**
|
||||
- This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
- With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
|
||||
* This version of the Hosts file generator, and tests, are for Python 3.5+ only.
|
||||
* With the exception of issues and PRs regarding changes to `hosts/data/StevenBlack/hosts`, all other issues regarding the content of the produced hosts files should be made with the appropriate data source that contributed the content in question. The contact information for all of the data sources can be found in the `hosts/data/` directory.
|
||||
----
|
||||
|
||||

|
||||
@@ -155,15 +156,18 @@ to remove hosts from the generated hosts file.
|
||||
#### Using NixOS:
|
||||
|
||||
To install hosts file on your machine add the following into your `configuration.nix`:
|
||||
```haskell
|
||||
networking.extraHosts = let
|
||||
|
||||
```nix
|
||||
{
|
||||
networking.extraHosts = let
|
||||
hostsPath = https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts;
|
||||
hostsFile = builtins.fetchurl hostsPath;
|
||||
in builtins.readFile "${hostsFile}";
|
||||
}
|
||||
```
|
||||
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
* NOTE: Change `hostsPath` if you need other versions of hosts file.
|
||||
* NOTE: The call to `fetchurl` is impure.
|
||||
Use `fetchFromGitHub` with the exact commit if you want to always get the same result.
|
||||
|
||||
|
||||
@@ -213,8 +217,7 @@ If you discover sketchy domains you feel should be included here, here are some
|
||||
|
||||
The best way to get new domains included is to submit an issue to any of the data providers whose home pages are [listed here](https://github.com/StevenBlack/hosts#sources-of-hosts-data-unified-in-this-variant). This is best because once you submit new domains, they will be curated and updated by the dedicated folks who maintain these sources.
|
||||
|
||||
|
||||
### Option 2: add your domains to Steven Black's personal data file
|
||||
### Option 2: Fork this repository, add your domains to Steven Black's personal data file, and submit a pull request
|
||||
|
||||
Fork this hosts this repo and add your links to [https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts](https://github.com/StevenBlack/hosts/blob/master/data/StevenBlack/hosts).
|
||||
|
||||
|
||||
+3
-2
@@ -1,2 +1,3 @@
|
||||
lxml>=4.2.4
|
||||
beautifulsoup4>=4.6.1
|
||||
lxml>=4.2.4,<=5.0
|
||||
beautifulsoup4>=4.6.1,<=5.0
|
||||
flake8>=3.8,<=4.0
|
||||
|
||||
+27
-19
@@ -8,6 +8,7 @@
|
||||
import json
|
||||
import locale
|
||||
import os
|
||||
import platform
|
||||
import re
|
||||
import shutil
|
||||
import sys
|
||||
@@ -62,6 +63,8 @@ class Base(unittest.TestCase):
|
||||
|
||||
@property
|
||||
def sep(self):
|
||||
if platform.system().lower() == "windows":
|
||||
return "\\"
|
||||
return os.sep
|
||||
|
||||
def assert_called_once(self, mock_method):
|
||||
@@ -1122,12 +1125,13 @@ class TestUpdateReadmeData(BaseMockDir):
|
||||
)
|
||||
update_readme_data(self.readme_file, **kwargs)
|
||||
|
||||
if platform.system().lower() == "windows":
|
||||
sep = "/"
|
||||
else:
|
||||
sep = self.sep
|
||||
|
||||
expected = {
|
||||
"base": {
|
||||
"location": "foo" + self.sep,
|
||||
"sourcesdata": "hosts",
|
||||
"entries": 5,
|
||||
},
|
||||
"base": {"location": "foo" + sep, "sourcesdata": "hosts", "entries": 5},
|
||||
"foo": "bar",
|
||||
}
|
||||
|
||||
@@ -1144,8 +1148,13 @@ class TestUpdateReadmeData(BaseMockDir):
|
||||
)
|
||||
update_readme_data(self.readme_file, **kwargs)
|
||||
|
||||
if platform.system().lower() == "windows":
|
||||
sep = "/"
|
||||
else:
|
||||
sep = self.sep
|
||||
|
||||
expected = {
|
||||
"base": {"location": "foo" + self.sep, "sourcesdata": "hosts", "entries": 5}
|
||||
"base": {"location": "foo" + sep, "sourcesdata": "hosts", "entries": 5}
|
||||
}
|
||||
|
||||
with open(self.readme_file, "r") as f:
|
||||
@@ -1164,12 +1173,13 @@ class TestUpdateReadmeData(BaseMockDir):
|
||||
)
|
||||
update_readme_data(self.readme_file, **kwargs)
|
||||
|
||||
if platform.system().lower() == "windows":
|
||||
sep = "/"
|
||||
else:
|
||||
sep = self.sep
|
||||
|
||||
expected = {
|
||||
"com-org": {
|
||||
"location": "foo" + self.sep,
|
||||
"sourcesdata": "hosts",
|
||||
"entries": 5,
|
||||
}
|
||||
"com-org": {"location": "foo" + sep, "sourcesdata": "hosts", "entries": 5}
|
||||
}
|
||||
|
||||
with open(self.readme_file, "r") as f:
|
||||
@@ -1324,7 +1334,7 @@ class TestFlushDnsCache(BaseStdout):
|
||||
self.assertIn(expected, output)
|
||||
|
||||
@mock.patch("os.path.isfile", side_effect=[True, False, False, True] + [False] * 10)
|
||||
@mock.patch("subprocess.call", side_effect=[1, 0])
|
||||
@mock.patch("subprocess.call", side_effect=[1, 0, 0])
|
||||
def test_flush_posix_fail_then_succeed(self, *_):
|
||||
with self.mock_property("platform.system") as obj:
|
||||
obj.return_value = "Linux"
|
||||
@@ -1617,14 +1627,14 @@ class GetFileByUrl(BaseStdout):
|
||||
url = b"www.google.com"
|
||||
|
||||
expected = "www.google.com"
|
||||
actual = get_file_by_url(url)
|
||||
actual = get_file_by_url(url, delay=0)
|
||||
|
||||
self.assertEqual(actual, expected)
|
||||
|
||||
@mock.patch("updateHostsFile.urlopen", side_effect=mock_url_open_fail)
|
||||
def test_read_url_fail(self, _):
|
||||
url = b"www.google.com"
|
||||
self.assertIsNone(get_file_by_url(url))
|
||||
self.assertIsNone(get_file_by_url(url, delay=0))
|
||||
|
||||
expected = "Problem getting file:"
|
||||
output = sys.stdout.getvalue()
|
||||
@@ -1634,7 +1644,7 @@ class GetFileByUrl(BaseStdout):
|
||||
@mock.patch("updateHostsFile.urlopen", side_effect=mock_url_open_read_fail)
|
||||
def test_read_url_read_fail(self, _):
|
||||
url = b"www.google.com"
|
||||
self.assertIsNone(get_file_by_url(url))
|
||||
self.assertIsNone(get_file_by_url(url, delay=0))
|
||||
|
||||
expected = "Problem getting file:"
|
||||
output = sys.stdout.getvalue()
|
||||
@@ -1644,7 +1654,7 @@ class GetFileByUrl(BaseStdout):
|
||||
@mock.patch("updateHostsFile.urlopen", side_effect=mock_url_open_decode_fail)
|
||||
def test_read_url_decode_fail(self, _):
|
||||
url = b"www.google.com"
|
||||
self.assertIsNone(get_file_by_url(url))
|
||||
self.assertIsNone(get_file_by_url(url, delay=0))
|
||||
|
||||
expected = "Problem getting file:"
|
||||
output = sys.stdout.getvalue()
|
||||
@@ -1743,9 +1753,7 @@ class TestIsValidDomainFormat(BaseStdout):
|
||||
self.assertTrue(expected in output)
|
||||
|
||||
def test_invalid_domain(self):
|
||||
expected = (
|
||||
"Do not include www.domain.com or http(s)://domain.com. Try again."
|
||||
)
|
||||
expected = "Do not include www.domain.com or http(s)://domain.com. Try again."
|
||||
|
||||
for invalid_domain in [
|
||||
"www.subdomain.domain",
|
||||
|
||||
+28
-13
@@ -1089,12 +1089,7 @@ def write_opening_header(final_file, **header_params):
|
||||
),
|
||||
)
|
||||
else:
|
||||
write_data(
|
||||
final_file,
|
||||
"# Title: StevenBlack/hosts\n#\n".format(
|
||||
", ".join(header_params["extensions"])
|
||||
),
|
||||
)
|
||||
write_data(final_file, "# Title: StevenBlack/hosts\n#\n")
|
||||
|
||||
write_data(
|
||||
final_file,
|
||||
@@ -1210,6 +1205,11 @@ def update_readme_data(readme_file, **readme_updates):
|
||||
readme_data = json.load(f)
|
||||
readme_data[extensions_key] = generation_data
|
||||
|
||||
for denomination, data in readme_data.copy().items():
|
||||
if "location" in data and data["location"] and "\\" in data["location"]:
|
||||
# Windows compatibility: #1166
|
||||
readme_data[denomination]["location"] = data["location"].replace("\\", "/")
|
||||
|
||||
with open(readme_file, "w") as f:
|
||||
json.dump(readme_data, f)
|
||||
|
||||
@@ -1293,6 +1293,7 @@ def flush_dns_cache():
|
||||
|
||||
system_prefixes = ["/usr", ""]
|
||||
service_types = ["NetworkManager", "wicd", "dnsmasq", "networking"]
|
||||
restarted_services = []
|
||||
|
||||
for system_prefix in system_prefixes:
|
||||
systemctl = system_prefix + "/bin/systemctl"
|
||||
@@ -1300,18 +1301,25 @@ def flush_dns_cache():
|
||||
|
||||
for service_type in service_types:
|
||||
service = service_type + ".service"
|
||||
if service in restarted_services:
|
||||
continue
|
||||
|
||||
service_file = path_join_robust(system_dir, service)
|
||||
service_msg = (
|
||||
"Flushing the DNS cache by restarting " + service + " {result}"
|
||||
)
|
||||
|
||||
if os.path.isfile(service_file):
|
||||
if 0 != subprocess.call([systemctl, "status", service],
|
||||
stdout=subprocess.DEVNULL):
|
||||
continue
|
||||
dns_cache_found = True
|
||||
|
||||
if subprocess.call(SUDO + [systemctl, "restart", service]):
|
||||
print_failure(service_msg.format(result="failed"))
|
||||
else:
|
||||
print_success(service_msg.format(result="succeeded"))
|
||||
restarted_services.append(service)
|
||||
|
||||
dns_clean_file = "/etc/init.d/dns-clean"
|
||||
dns_clean_msg = "Flushing the DNS cache via dns-clean executable {result}"
|
||||
@@ -1461,7 +1469,7 @@ def maybe_copy_example_file(file_path):
|
||||
shutil.copyfile(example_file_path, file_path)
|
||||
|
||||
|
||||
def get_file_by_url(url):
|
||||
def get_file_by_url(url, retries=3, delay=10):
|
||||
"""
|
||||
Get a file data located at a particular URL.
|
||||
|
||||
@@ -1482,12 +1490,19 @@ def get_file_by_url(url):
|
||||
format we have to encode or decode data before parsing it to UTF-8.
|
||||
"""
|
||||
|
||||
try:
|
||||
f = urlopen(url)
|
||||
soup = BeautifulSoup(f.read(), "lxml").get_text()
|
||||
return "\n".join(list(map(domain_to_idna, soup.split("\n"))))
|
||||
except Exception:
|
||||
print("Problem getting file: ", url)
|
||||
while retries:
|
||||
try:
|
||||
with urlopen(url) as f:
|
||||
soup = BeautifulSoup(f.read(), "lxml").get_text()
|
||||
return "\n".join(list(map(domain_to_idna, soup.split("\n"))))
|
||||
except Exception as e:
|
||||
if 'failure in name resolution' in str(e):
|
||||
print('No internet connection! Retrying in {} seconds'.format(delay))
|
||||
time.sleep(delay)
|
||||
retries -= 1
|
||||
continue
|
||||
break
|
||||
print("Problem getting file: ", url)
|
||||
|
||||
|
||||
def write_data(f, data):
|
||||
|
||||
+4
-1
@@ -80,7 +80,10 @@ def main():
|
||||
source_rows += t.substitute(this_row) + "\n"
|
||||
|
||||
with open(
|
||||
os.path.join(data[key]["location"], README_FILENAME), "wt", encoding="utf-8", newline="\n"
|
||||
os.path.join(data[key]["location"], README_FILENAME),
|
||||
"wt",
|
||||
encoding="utf-8",
|
||||
newline="\n",
|
||||
) as out:
|
||||
for line in open(README_TEMPLATE, encoding="utf-8", newline="\n"):
|
||||
line = line.replace(
|
||||
|
||||
Reference in New Issue
Block a user