mirror of
https://github.com/StevenBlack/hosts.git
synced 2026-09-26 22:05:58 +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 | ||
|
|
4e2796aaa9 |
+28
-16
@@ -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
|
||||
@@ -23,23 +30,28 @@ jobs:
|
||||
python-version: ${{ matrix.python }}
|
||||
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@v2
|
||||
with:
|
||||
path: ~/miniconda3
|
||||
key: ${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('ci/*.sh') }}
|
||||
restore-keys: ${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('ci/*.sh') }}
|
||||
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 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 82,964 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3349
-2884
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 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,208 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3059
-2765
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 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,402 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3059
-2765
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 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,645 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3349
-2884
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 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 80,640 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3349
-2884
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 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews, porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts) containing 77,884 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3059
-2765
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 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,078 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3059
-2765
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 25 2020**.
|
||||
* Here's the [raw hosts file with fakenews extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts) containing 58,321 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3349
-2884
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 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,022 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3349
-2884
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 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,266 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3059
-2765
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 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,460 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3059
-2765
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 25 2020**.
|
||||
* Here's the [raw hosts file with gambling extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts) containing 59,703 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3349
-2884
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 25 2020**.
|
||||
* Here's the [raw hosts file with porn, social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts) containing 79,698 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3349
-2884
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 25 2020**.
|
||||
* Here's the [raw hosts file with porn extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts) containing 76,942 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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).
|
||||
|
||||
|
||||
+3059
-2765
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 25 2020**.
|
||||
* Here's the [raw hosts file with social extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts) containing 60,136 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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.8377
|
||||
### Version: V1.2020.07.8392
|
||||
##### Version Information ##
|
||||
|
||||
# Use this file to prevent your computer or server from connecting to selected
|
||||
@@ -584,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
|
||||
@@ -765,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
|
||||
|
||||
+1041
-661
File diff suppressed because it is too large
Load Diff
+1540
-1407
File diff suppressed because it is too large
Load Diff
+360
-586
File diff suppressed because it is too large
Load Diff
+4
-79
@@ -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
|
||||
@@ -5503,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
|
||||
@@ -5631,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
|
||||
@@ -5704,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
|
||||
|
||||
@@ -5776,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
|
||||
@@ -6772,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
|
||||
@@ -6830,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
|
||||
|
||||
@@ -6892,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
|
||||
|
||||
@@ -7078,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
|
||||
@@ -9378,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
|
||||
@@ -11040,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
|
||||
@@ -11958,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
|
||||
@@ -13502,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
|
||||
|
||||
@@ -16940,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
|
||||
@@ -18359,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
|
||||
|
||||
|
||||
+17
-9
@@ -1,7 +1,7 @@
|
||||
# Title: hostsVN
|
||||
# Last modified: 24 Jun 2020 14:41 UTC+7
|
||||
# Version: 2006241441
|
||||
# Blocked: 1,372 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,16 +412,15 @@
|
||||
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
|
||||
@@ -898,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
|
||||
@@ -1255,6 +1255,11 @@
|
||||
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
|
||||
@@ -1270,6 +1275,7 @@
|
||||
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 adpostback.headlines.pw
|
||||
@@ -1282,6 +1288,7 @@
|
||||
0.0.0.0 ads.khoahocdoisong.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.vietbao.vn
|
||||
@@ -1289,6 +1296,7 @@
|
||||
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
|
||||
@@ -1320,8 +1328,6 @@
|
||||
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
|
||||
@@ -1401,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
|
||||
@@ -1412,6 +1417,7 @@
|
||||
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
|
||||
@@ -1430,6 +1436,7 @@
|
||||
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 logs.giaoducthoidai.vn
|
||||
0.0.0.0 logs.thethaovanhoa.vn
|
||||
@@ -1457,6 +1464,7 @@
|
||||
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 tracker.phunuvagiadinh.vn
|
||||
0.0.0.0 tracker.tintucvietnam.vn
|
||||
0.0.0.0 tracking.appwifi.com
|
||||
0.0.0.0 tracking.meete.co
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
# Please forward any additions, corrections or comments by email to
|
||||
# hosts@someonewhocares.org
|
||||
|
||||
# Last updated: Mon, 08 Jun 2020 at 23:48:33 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
|
||||
@@ -1773,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
|
||||
@@ -1788,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
|
||||
@@ -1848,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
|
||||
@@ -5773,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
|
||||
@@ -6008,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
|
||||
@@ -6068,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
|
||||
@@ -7611,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
|
||||
@@ -8596,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
|
||||
@@ -8952,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
|
||||
@@ -9142,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
|
||||
@@ -9353,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
|
||||
@@ -9774,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
|
||||
@@ -10815,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
|
||||
@@ -11084,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
|
||||
@@ -11583,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
|
||||
@@ -12505,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
|
||||
|
||||
+69
-24
@@ -2,8 +2,8 @@
|
||||
#
|
||||
# For more information about this list, see: https://pgl.yoyo.org/adservers/
|
||||
# ----
|
||||
# last updated: Thu, 25 Jun 2020 13:41:53 GMT
|
||||
# entries: 3457
|
||||
# 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: Fri, 30 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,17 @@
|
||||
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
|
||||
@@ -68,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
|
||||
@@ -147,6 +151,7 @@
|
||||
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
|
||||
@@ -161,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.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
|
||||
@@ -222,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
|
||||
@@ -352,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
|
||||
@@ -371,6 +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-kesselhaus.com
|
||||
0.0.0.0 ads-trk.vidible.tv
|
||||
0.0.0.0 ads-twitter.com
|
||||
0.0.0.0 ads.4tube.com
|
||||
@@ -382,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
|
||||
@@ -465,6 +473,7 @@
|
||||
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
|
||||
@@ -476,6 +485,7 @@
|
||||
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
|
||||
@@ -555,6 +565,7 @@
|
||||
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
|
||||
@@ -576,7 +587,6 @@
|
||||
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
|
||||
@@ -634,7 +644,6 @@
|
||||
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.redactor.in.ua
|
||||
0.0.0.0 ads.rediff.com
|
||||
0.0.0.0 ads.redlightcenter.com
|
||||
0.0.0.0 ads.revjet.com
|
||||
@@ -656,14 +665,15 @@
|
||||
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
|
||||
@@ -684,11 +694,14 @@
|
||||
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
|
||||
@@ -696,6 +709,7 @@
|
||||
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
|
||||
@@ -732,6 +746,7 @@
|
||||
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
|
||||
@@ -762,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
|
||||
@@ -775,6 +791,7 @@
|
||||
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
|
||||
@@ -792,6 +809,7 @@
|
||||
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
|
||||
@@ -817,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
|
||||
@@ -857,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
|
||||
@@ -878,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
|
||||
@@ -898,6 +919,7 @@
|
||||
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
|
||||
@@ -941,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
|
||||
@@ -1018,6 +1042,7 @@
|
||||
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
|
||||
@@ -1042,6 +1067,7 @@
|
||||
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 apathetictheory.com
|
||||
0.0.0.0 api.intensifier.de
|
||||
@@ -1061,7 +1087,6 @@
|
||||
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
|
||||
@@ -1121,7 +1146,6 @@
|
||||
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
|
||||
@@ -1210,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
|
||||
@@ -1259,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
|
||||
@@ -1272,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
|
||||
@@ -1370,6 +1393,7 @@
|
||||
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
|
||||
@@ -1387,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
|
||||
@@ -1459,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
|
||||
@@ -1616,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
|
||||
@@ -1662,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
|
||||
@@ -1722,7 +1746,6 @@
|
||||
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
|
||||
@@ -1769,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
|
||||
@@ -1863,6 +1887,7 @@
|
||||
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
|
||||
@@ -1927,7 +1952,7 @@
|
||||
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
|
||||
@@ -1940,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
|
||||
@@ -2044,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
|
||||
@@ -2087,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
|
||||
@@ -2124,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
|
||||
@@ -2427,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
|
||||
@@ -2446,6 +2474,7 @@
|
||||
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
|
||||
@@ -2453,7 +2482,9 @@
|
||||
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
|
||||
@@ -2486,6 +2517,7 @@
|
||||
0.0.0.0 pagead.l.google.com
|
||||
0.0.0.0 pagefair.com
|
||||
0.0.0.0 pagefair.net
|
||||
0.0.0.0 pagerank-ranking.de
|
||||
0.0.0.0 pagerank4you.com
|
||||
0.0.0.0 pageranktop.com
|
||||
0.0.0.0 paleleaf.com
|
||||
@@ -2502,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
|
||||
@@ -2555,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
|
||||
@@ -2671,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
|
||||
@@ -2701,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
|
||||
@@ -2745,7 +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
|
||||
@@ -2755,6 +2792,7 @@
|
||||
0.0.0.0 richmails.com
|
||||
0.0.0.0 richmedia.yimg.com
|
||||
0.0.0.0 richstring.com
|
||||
0.0.0.0 richwebmaster.com
|
||||
0.0.0.0 rightstats.com
|
||||
0.0.0.0 rinconpx.net
|
||||
0.0.0.0 ringsrecord.com
|
||||
@@ -2764,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
|
||||
@@ -2858,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
|
||||
@@ -2894,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
|
||||
@@ -3092,6 +3133,7 @@
|
||||
0.0.0.0 textad.sexsearch.com
|
||||
0.0.0.0 textads.biz
|
||||
0.0.0.0 textlinks.com
|
||||
0.0.0.0 tfag.de
|
||||
0.0.0.0 the-ozone-project.com
|
||||
0.0.0.0 theadex.com
|
||||
0.0.0.0 theadhost.com
|
||||
@@ -3172,11 +3214,13 @@
|
||||
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
|
||||
@@ -3193,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
|
||||
@@ -3241,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
|
||||
@@ -3252,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
|
||||
@@ -3347,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
|
||||
@@ -3367,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
|
||||
@@ -3440,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
|
||||
|
||||
+226
-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,15 +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
|
||||
@@ -2511,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
|
||||
@@ -2527,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
|
||||
@@ -2557,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
|
||||
@@ -2732,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
|
||||
@@ -2869,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
|
||||
@@ -2897,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
|
||||
@@ -3031,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
|
||||
@@ -3324,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
|
||||
@@ -3378,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
|
||||
@@ -3400,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
|
||||
@@ -3430,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
|
||||
@@ -3455,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
|
||||
@@ -3469,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
|
||||
@@ -3613,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
|
||||
@@ -3635,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
|
||||
@@ -3702,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
|
||||
@@ -3713,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
|
||||
@@ -3818,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
|
||||
@@ -4038,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
|
||||
@@ -4072,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
|
||||
@@ -4113,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
|
||||
@@ -4171,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
|
||||
@@ -4426,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
|
||||
@@ -4666,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
|
||||
@@ -4723,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
|
||||
@@ -4842,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
|
||||
@@ -4887,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
|
||||
@@ -4957,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
|
||||
@@ -5018,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
|
||||
@@ -5041,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
|
||||
@@ -6650,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
|
||||
@@ -7246,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
|
||||
@@ -8375,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
|
||||
@@ -8434,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
|
||||
@@ -8670,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
|
||||
@@ -8701,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
|
||||
@@ -8733,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
|
||||
@@ -8769,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
|
||||
@@ -8797,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
|
||||
@@ -8994,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
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "hosts",
|
||||
"version": "2.6.24",
|
||||
"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 25 2020**.
|
||||
* Here's the [raw hosts file with base extensions](https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts) containing 57,379 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,379 | [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,321 | [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,703 | [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) | 76,942 | [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,136 | [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,645 | [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) | 77,884 | [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,078 | [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,266 | [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,460 | [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,698 | [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,208 | [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,402 | [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,640 | [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,022 | [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) | 82,964 | [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
|
||||
|
||||
+26
-16
@@ -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()
|
||||
|
||||
+22
-7
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user