├── .assets ├── badd-boyz-hosts-logo.jpg ├── badd-boyz-hosts.jpg ├── badd-boyz-logo-original.jpg ├── kofi5.png ├── slack.png ├── spacer.jpg └── zuko.png ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── false-positive.md ├── auto-comment.yml ├── config.yml └── move.yml ├── .travis.yml ├── LICENSE.md ├── PULL_REQUESTS ├── add-domain └── remove-domain ├── README.md ├── dev-tools ├── .PyFunceble.overwrite.yaml ├── .PyFunceble.yaml ├── .pyfunceble_intern_downtime.json ├── .trigger ├── DataTesting.sh ├── FinalCommit.sh ├── GenerateHostsFile.sh ├── PrepareData.sh ├── UpdateReadme.sh ├── ddwrt-dnsmasq.template ├── hosts.template ├── iana-domains-db.json ├── inactive.csv ├── output │ ├── .keep │ ├── __pyfunceble_loggging__ │ │ ├── critical.log │ │ ├── debug.log │ │ ├── error.log │ │ ├── fatal.log │ │ ├── info.log │ │ └── warning.log │ └── domains │ │ ├── Analytic │ │ ├── .gitkeep │ │ ├── ACTIVE │ │ │ └── .gitkeep │ │ ├── POTENTIALLY_ACTIVE │ │ │ └── .gitkeep │ │ ├── POTENTIALLY_INACTIVE │ │ │ └── .gitkeep │ │ └── SUSPICIOUS │ │ │ └── .gitkeep │ │ ├── counter.json │ │ ├── domains │ │ ├── .gitkeep │ │ ├── ACTIVE │ │ │ ├── .gitkeep │ │ │ └── list │ │ ├── INACTIVE │ │ │ ├── .gitkeep │ │ │ └── list │ │ ├── INVALID │ │ │ └── .gitkeep │ │ ├── MALICIOUS │ │ │ └── .gitkeep │ │ ├── SANE │ │ │ └── .gitkeep │ │ └── VALID │ │ │ └── .gitkeep │ │ ├── hosts │ │ ├── .gitkeep │ │ ├── ACTIVE │ │ │ ├── .gitkeep │ │ │ └── hosts │ │ ├── INACTIVE │ │ │ ├── .gitkeep │ │ │ └── hosts │ │ ├── INVALID │ │ │ └── .gitkeep │ │ ├── MALICIOUS │ │ │ └── .gitkeep │ │ ├── SANE │ │ │ └── .gitkeep │ │ └── VALID │ │ │ └── .gitkeep │ │ ├── logs │ │ ├── .gitkeep │ │ └── percentage │ │ │ ├── .gitkeep │ │ │ └── percentage.txt │ │ └── splitted │ │ ├── .gitkeep │ │ ├── ACTIVE │ │ └── INACTIVE ├── public-suffix.json ├── user_agents.json └── whois.csv ├── dnsmasq ├── domains ├── hosts └── whitelists ├── anti └── me /.assets/badd-boyz-hosts-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/.assets/badd-boyz-hosts-logo.jpg -------------------------------------------------------------------------------- /.assets/badd-boyz-hosts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/.assets/badd-boyz-hosts.jpg -------------------------------------------------------------------------------- /.assets/badd-boyz-logo-original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/.assets/badd-boyz-logo-original.jpg -------------------------------------------------------------------------------- /.assets/kofi5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/.assets/kofi5.png -------------------------------------------------------------------------------- /.assets/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/.assets/slack.png -------------------------------------------------------------------------------- /.assets/spacer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/.assets/spacer.jpg -------------------------------------------------------------------------------- /.assets/zuko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/.assets/zuko.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: mitchellkrog 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | custom: https://ko-fi.com/funilrys 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "[BUG]" 5 | labels: bug 6 | assignees: mitchellkrogza, funilrys 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior (if applicable): 15 | 16 | **Expected behavior** 17 | A clear and concise description of what you expected to happen. 18 | 19 | **Screenshots** 20 | If applicable, add screenshots to help explain your problem. 21 | 22 | **Additional context** 23 | Add any other context about the problem here. 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/false-positive.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: False Positive 3 | about: Reporting of any false positives or domains that need to be whitelisted 4 | title: "[FALSE-POSITIVE] " 5 | labels: false positive 6 | assignees: mitchellkrogza, funilrys 7 | 8 | --- 9 | 10 | **Domains or links** 11 | Please list any domains and links listed here which you believe are a false positive. 12 | 13 | **More Information** 14 | How did you discover your web site or domain was listed here? 15 | 1. Website was hacked 16 | 2. Other ..... 17 | 18 | **Have you requested removal from other sources?** 19 | Please include all relevant links to your existing removals / whitelistings. 20 | 21 | **Additional context** 22 | Add any other context about the problem here. 23 | 24 | :exclamation: 25 | 26 | We understand being listed on a list like this can be frustrating and embarrassing for many web site owners. The first step is to remain calm. The second step is to rest assured one of our maintainers will address your issue as soon as possible. Please make sure you have provided as much information as possible to help speed up the process. 27 | -------------------------------------------------------------------------------- /.github/auto-comment.yml: -------------------------------------------------------------------------------- 1 | # AUTO COMMENT 2 | # Comment to a new issue. 3 | issueOpened: > 4 | Thank your for raising a issue. We will try and get back to you as soon as possible. 5 | 6 | Please make sure you have given us as much context as possible. 7 | 8 | pullRequestOpened: > 9 | Thank your for raising your pull request. 10 | 11 | Please make sure you have followed our contributing guidelines. We will review it as soon as possible 12 | 13 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | # *********** 2 | # WELCOME BOT 3 | # *********** 4 | 5 | # Configuration for welcome - https://github.com/behaviorbot/welcome 6 | 7 | # Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome 8 | 9 | # Comment to be posted to on first time issues 10 | newIssueWelcomeComment: > 11 | :wave: Hello and Thanks for opening your first issue here! It's people like you who make this project better :sunglasses: Be sure to follow the issue template! 12 | 13 | # Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome 14 | 15 | # Comment to be posted to on PRs from first time contributors in your repository 16 | newPRWelcomeComment: > 17 | :heart: Thanks for opening this pull request! It's contributors like you which makes the project better :sunglasses: ! Please check out our contributing guidelines. 18 | 19 | # Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge 20 | 21 | # Comment to be posted to on pull requests merged by a first time user 22 | firstPRMergeComment: > 23 | :1st_place_medal: Congrats on merging your first pull request! The community here at Badd Boyz Hosts are proud of you! 24 | 25 | # It is recommended to include as many gifs and emojis as possible! 26 | 27 | # **************** 28 | # REQUEST INFO BOT 29 | # **************** 30 | 31 | # Configuration for request-info - https://github.com/behaviorbot/request-info 32 | 33 | # *OPTIONAL* Comment to reply with 34 | # Can be either a string : 35 | requestInfoReplyComment: > 36 | :confused: We would appreciate it if you could provide us with more info about this issue/pr! 37 | 38 | # Or an array: 39 | # requestInfoReplyComment: 40 | # - Ah no! young blade! That was a trifle short! 41 | # - Tell me more ! 42 | # - I am sure you can be more effusive 43 | 44 | 45 | # *OPTIONAL* default titles to check against for lack of descriptiveness 46 | # MUST BE ALL LOWERCASE 47 | requestInfoDefaultTitles: 48 | - update readme.md 49 | - updates 50 | 51 | # *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given 52 | requestInfoLabelToAdd: Needs More Info 53 | 54 | # *OPTIONAL* Require Issues to contain more information than what is provided in the issue templates 55 | # Will fail if the issue's body is equal to a provided template 56 | checkIssueTemplate: true 57 | 58 | # *OPTIONAL* Require Pull Requests to contain more information than what is provided in the PR template 59 | # Will fail if the pull request's body is equal to the provided template 60 | checkPullRequestTemplate: true 61 | 62 | # *OPTIONAL* Only warn about insufficient information on these events type 63 | # Keys must be lowercase. Valid values are 'issue' and 'pullRequest' 64 | requestInfoOn: 65 | pullRequest: true 66 | issue: true 67 | 68 | # *OPTIONAL* Add a list of people whose Issues/PRs will not be commented on 69 | # keys must be GitHub usernames 70 | requestInfoUserstoExclude: 71 | - mitchellkrogza 72 | - funilrys 73 | 74 | # ************* 75 | # SENTIMENT BOT 76 | # ************* 77 | 78 | # Configuration for sentiment-bot - https://github.com/behaviorbot/sentiment-bot 79 | 80 | # *Required* toxicity threshold between 0 and .99 with the higher numbers being the most toxic 81 | # Anything higher than this threshold will be marked as toxic and commented on 82 | sentimentBotToxicityThreshold: .7 83 | 84 | # *Required* Comment to reply with 85 | sentimentBotReplyComment: > 86 | Your comment seemed to go against our community code of conduct and ethics. Please be respectful of other users. cc/ @mitchellkrogza @funilrys 87 | 88 | # ********* 89 | # STALE BOT 90 | # ********* 91 | 92 | # Number of days of inactivity before an issue becomes stale 93 | daysUntilStale: 60 94 | # Number of days of inactivity before a stale issue is closed 95 | daysUntilClose: 7 96 | # Issues with these labels will never be considered stale 97 | exemptLabels: 98 | - pinned 99 | - security 100 | # Label to use when marking an issue as stale 101 | staleLabel: wontfix 102 | # Comment to post when marking an issue as stale. Set to `false` to disable 103 | markComment: > 104 | :exclamation: This issue has been automatically marked as stale because it has not had 105 | recent activity. It will be closed if no further activity occurs. Thank you 106 | for your contributions. 107 | # Comment to post when closing a stale issue. Set to `false` to disable 108 | closeComment: true 109 | 110 | # ********* 111 | # TO DO BOT 112 | # ********* 113 | 114 | todo: 115 | keyword: "@todo" 116 | keyword: "@createissue" 117 | autoAssign: true 118 | label: true 119 | reopenClosed: true 120 | 121 | # *************** 122 | # AUTO ASSIGN BOT 123 | # *************** 124 | 125 | # Set to true to add reviewers to pull requests 126 | addReviewers: true 127 | 128 | # Set to true to add assignees to pull requests 129 | addAssignees: true 130 | 131 | # A list of reviewers to be added to pull requests (GitHub user name) 132 | reviewers: 133 | - mitchellkrogza 134 | - funilrys 135 | 136 | # A number of reviewers added to the pull request 137 | # Set 0 to add all the reviewers (default: 0) 138 | numberOfReviewers: 0 139 | 140 | # A list of assignees, overrides reviewers if set 141 | # assignees: 142 | # - assigneeA 143 | 144 | # A number of assignees to add to the pull request 145 | # Set to 0 to add all of the assignees. 146 | # Uses numberOfReviewers if unset. 147 | # numberOfAssignees: 2 148 | 149 | # A list of keywords to be skipped the process that add reviewers if pull requests include it 150 | skipKeywords: 151 | - wip 152 | -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- 1 | # Configuration for Move Issues - https://github.com/dessant/move-issues 2 | 3 | # Delete the command comment when it contains no other content 4 | deleteCommand: true 5 | 6 | # Close the source issue after moving 7 | closeSourceIssue: true 8 | 9 | # Lock the source issue after moving 10 | lockSourceIssue: false 11 | 12 | # Mention issue and comment authors 13 | mentionAuthors: true 14 | 15 | # Preserve mentions in the issue content 16 | keepContentMentions: false 17 | 18 | # Move labels that also exist on the target repository 19 | moveLabels: true 20 | 21 | # Set custom aliases for targets 22 | # aliases: 23 | # r: repo 24 | # or: owner/repo 25 | 26 | # Repository to extend settings from 27 | # _extends: repo 28 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | git: 2 | depth: 3 3 | addons: 4 | apt: 5 | packages: 6 | - dos2unix 7 | dist: bionic 8 | env: 9 | global: 10 | - secure: j64L+YB6ZTOwP7joFBfSAMv6scssInUw91BgJqc/dRLU6nd4d2n8as4qYGbGPZ09nIYES+baD7W73WVr0Hljvnis2wKA36BcuzyLlcGugUtuDigVG/X5RDWs4EYh5URSOFO5j+I+2QKFWnYKydiQbnimBdTr3SEI9QBGFoywNVRUPaOquuyQwk3dYb7s4Fc8NHkNJF9xJ/dq+GrFIBmXHDuq7d+J2Ex2rZ5LADBiResASnMLSUNLtrtzOlMi5GE7cT6xKpnNigc2EpKmhQxrWG1/P9x+KgIQvMG+7fbYzmr076Hvl5DGvRW1JDW69fbXOTCZtXBjveDV79JFd9+KJnYbBaMD262ZJJ+zFwhUu+faKOZqejeO10VRJONda4q3RBfcFF21nZmFbuI3t/pJWJpXX8+r1/5/OkMhvuZf6HNIQhrk2kKEUx6yaPW5xjKQLCrFkEASgImRFDzKtr1XFmh3fJAGsU/WDbtgs8hZy8YiiHHtUYckTG8RjZTLulO8VM277L1tWubNKYDUEhfg+c5bovl/XomttnGuXm5Z0Cve9ZOBc6leOPwi4FP5WsAXpD9AxJDOE1215OxZRX0LxKOAHVfPLfjSLABPeCc6JnfoE1c5HWVQg7OAfMveleDdNaOemkDp3O5klOsOmD2w4E7CZUc2IBz2FbsZQ2ML61U= 11 | - GIT_NAME: Travis CI 12 | - GIT_EMAIL: mitchellkrog@gmail.com 13 | - TRAVIS_REPO_SLUG: mitchellkrogza/Badd-Boyz-Hosts 14 | - GIT_BRANCH: master 15 | - TZ: Africa/Johannesburg 16 | - PYFUNCEBLE_CONFIG_DIR: ${TRAVIS_BUILD_DIR}/dev-tools/ 17 | - PYFUNCEBLE_AUTO_CONFIGURATION: PyFunceble 18 | 19 | language: python 20 | 21 | python: 22 | - "3.7" 23 | 24 | matrix: 25 | fast_finish: true 26 | 27 | install: 28 | #- export PATH="${HOME}/miniconda/bin:${PATH}" 29 | #- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh 30 | #- bash miniconda.sh -b -p ${HOME}/miniconda 31 | #- hash -r 32 | #- conda config --set always_yes yes --set changeps1 no 33 | #- conda update -q conda 34 | #- conda create -q -n test-environment python="3.7.4" 35 | #- rm miniconda.sh 36 | #- source activate test-environment 37 | #- python -VV 38 | - pip3 install --upgrade pip 39 | - pip3 install PyFunceble-dev --pre 40 | - pip3 install ultimate-hosts-blacklist-whitelist-dev 41 | 42 | script: 43 | - bash dev-tools/PrepareData.sh 44 | - bash dev-tools/DataTesting.sh 45 | 46 | notifications: 47 | on_success: never 48 | on_failure: always 49 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017, 2018, 2019 Mitchell Krog - mitchellkrog@gmail.com 4 | https://github.com/mitchellkrogza 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /PULL_REQUESTS/add-domain: -------------------------------------------------------------------------------- 1 | applecareonline.com 2 | -------------------------------------------------------------------------------- /PULL_REQUESTS/remove-domain: -------------------------------------------------------------------------------- 1 | amospalla.es 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Badd-Boyz-Hosts 2 | 3 | Badd Boyz Hosts File to Protect Your Computer and Devices Against Bad Web Sites
[![Build Status](https://travis-ci.org/mitchellkrogza/Badd-Boyz-Hosts.svg?branch=master)](https://travis-ci.org/mitchellkrogza/Badd-Boyz-Hosts)[![DUB](https://img.shields.io/dub/l/vibe-d.svg)](https://github.com/mitchellkrogza/Badd-Boyz-Hosts/blob/master/LICENSE.md)[![GitHub Stats](https://img.shields.io/badge/github-stats-ff5500.svg)](http://githubstats.com/mitchellkrogza/Badd-Boyz-Hosts)Follow @ubuntu101za 4 | 5 | A hosts file for use on any operating system to block bad domains out of your servers or devices. 6 | 7 | * Here's the [RAW hosts file](https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts) 8 | * Here's the [DNSMASQ hosts file for DD-WRT](https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/dnsmasq) 9 | 10 | - Copyright: https://github.com/mitchellkrogza 11 | 12 | _______________ 13 | [![VERSION](https://img.shields.io/badge/VERSION%20-%20V1.2021.05.8588-blue.svg)](https://github.com/mitchellkrogza/Badd-Boyz-Hosts/commits/master) 14 | #### Bad Host Count: 1386 15 | ``` 16 | # Generated by PyFunceble (v4.0.0b47.dev) / https://git.io/vpZoI 17 | # Date of generation: 2021-05-07T18:10:53.468890 18 | 19 | Status Percentage Amount 20 | ----------- ------------ ------------ 21 | ACTIVE 93% 1386 22 | INACTIVE 7% 109 23 | INVALID 0% 0 24 | ``` 25 | ____________________ 26 | 27 | - You are free to copy and distribute this file for non-commercial uses, as long the original URL and attribution is included. 28 | 29 | ## Help Support This Project 30 | 31 | [Buy me Coffee](https://ko-fi.com/mitchellkrog) 32 | 33 | ************************************************ 34 | # DOMAIN ADDITIONS FALSE POSITIVES / DOMAIN REMOVALS / OTHER ISSUES: 35 | 36 | Please forward any additions, corrections or false positives by: 37 | 38 | [![Log an Issue](https://img.shields.io/badge/LOGGING%20-%20an%20issue%20%F0%9F%9A%A6-blue.svg)](https://github.com/mitchellkrogza/Badd-Boyz-Hosts/issues) 39 | 40 | or send a PULL REQUEST on the domains.txt file in the PULL_REQUESTS folder. 41 | 42 | ************************************************ 43 | ## COMPILED FROM: 44 | 45 | This list of hosts is compiled from real server logs on my own servers where I run a number of very busy web sites. 46 | 47 | This list originated from the list of bad referrers domain lists for: 48 | 49 | [![NGINX ULTIMATE BAD BOT BLOCKER](https://img.shields.io/badge/NGINX%20-%20ULTIMATE%20BAD%20BOT%20BLOCKER%20%E2%9B%94-blue.svg)](https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker) 50 | or [![Get the APACHE ULTIMATE BAD BOT BLOCKER](https://img.shields.io/badge/APACHE%20-%20ULTIMATE%20BAD%20BOT%20BLOCKER%20%E2%9B%94-blue.svg)](https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker) 51 | 52 | The list has now been separated from those projects as it contains certain domains which do not actually belong in a hosts file. 53 | 54 | ************************************************ 55 | ## WHAT IS A HOSTS FILE? 56 | 57 | A hosts file, named `hosts` (with no file extension), is a plain-text file 58 | used by all operating systems to map hostnames to IP addresses. 59 | 60 | In most operating systems, the `hosts` file is preferential to `DNS`. 61 | Therefore if a domain name is resolved by the `hosts` file, the request never 62 | leaves your computer. 63 | 64 | Having a smart `hosts` file goes a long way towards blocking malware, adware, ransomware, porn and other nuisance web sites. 65 | 66 | A hosts file like this causes any lookups to any of the listed domains to resolve back to your localhost so it prevents any outgoing connections to the listed domains. 67 | 68 | ************************************************ 69 | ## WHERE DO I PUT THIS ON MY COMPUTER? 70 | To modify your current `hosts` file, look for it in the following places and modify it with a text 71 | editor. 72 | 73 | **Linux, Mac OS X, iOS, Android**: `/etc/hosts` folder. 74 | 75 | **Windows Systems**: `%SystemRoot%\system32\drivers\etc\hosts` folder. 76 | 77 | ************************************************ 78 | ## UNDERSTANDS PUNYCODE / IDN DOMAIN NAMES 79 | A lot of lists out there put funny domains into their hosts file. Your hosts file and DNS will not understand this. This list uses converted domains which are in the correct DNS format to be understood by any operating system. 80 | 81 | For instance 82 | The domain: 83 | 84 | `lifehacĸer.com` (note the K) 85 | 86 | actually translates to: 87 | 88 | `xn--lifehacer-1rb.com` 89 | 90 | You can do an nslookup on any operating system and it will resolve correctly. 91 | 92 | `nslookup xn--lifehacer-1rb.com` 93 | 94 | ```xn--lifehacer-1rb.com 95 | origin = dns1.yandex.net 96 | mail addr = iskalko.yandex.ru 97 | serial = 2016120703 98 | refresh = 14400 99 | retry = 900 100 | expire = 1209600 101 | minimum = 14400 102 | xn--lifehacer-1rb.com mail exchanger = 10 mx.yandex.net. 103 | Name: xn--lifehacer-1rb.com 104 | Address: 78.110.60.230 105 | xn--lifehacer-1rb.com nameserver = dns2.yandex.net. 106 | xn--lifehacer-1rb.com text = "v=spf1 redirect=_spf.yandex.net" 107 | xn--lifehacer-1rb.com nameserver = dns1.yandex.net. 108 | ``` 109 | 110 | - Look at: https://www.charset.org/punycode for more info on this. 111 | 112 | ************************************************ 113 | ## Stop Bad Bot and Bad Referrers from gaining access to your web sites. 114 | 115 | - Check Out The Amazing 116 | 117 | [![NGINX ULTIMATE BAD BOT BLOCKER](https://img.shields.io/badge/NGINX%20-%20ULTIMATE%20BAD%20BOT%20BLOCKER%20%E2%9B%94-blue.svg)](https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker) 118 | or [![Get the APACHE ULTIMATE BAD BOT BLOCKER](https://img.shields.io/badge/APACHE%20-%20ULTIMATE%20BAD%20BOT%20BLOCKER%20%E2%9B%94-blue.svg)](https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker) 119 | 120 | ************************************************ 121 | ## Contributors 122 | 123 | - Nissar Chababy - https://github.com/funilrys/PyFunceble (Excellent script for checking ACTIVE, INACTIVE and EXPIRED Domain Names) 124 | 125 | ************************************************ 126 | ## Some other awesome free projects 127 | 128 | - https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker 129 | - https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker 130 | - https://github.com/mitchellkrogza/Ultimate.Hosts.Blacklist 131 | - https://github.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO 132 | - https://github.com/mitchellkrogza/fail2ban-useful-scripts 133 | - https://github.com/mitchellkrogza/linux-server-administration-scripts 134 | - https://github.com/mitchellkrogza/Travis-CI-Nginx-for-Testing-Nginx-Configuration 135 | - https://github.com/mitchellkrogza/Travis-CI-for-Apache-For-Testing-Apache-and-PHP-Configurations 136 | - https://github.com/mitchellkrogza/Fail2Ban-Blacklist-JAIL-for-Repeat-Offenders-with-Perma-Extended-Banning 137 | - https://github.com/funilrys/funceble 138 | - https://github.com/funilrys/PyFunceble 139 | ************************************************ 140 | ## Help Support This Project 141 | 142 | [Buy me Coffee](https://ko-fi.com/mitchellkrog) 143 | 144 | ## Help Feed My Hungry Kitty 145 | 146 | [](https://ko-fi.com/mitchellkrog) 147 | 148 | 149 | ************************************************ 150 | ### Into Photography? 151 | 152 | Come drop by and visit me at https://mitchellkrog.com 153 | -------------------------------------------------------------------------------- /dev-tools/.PyFunceble.overwrite.yaml: -------------------------------------------------------------------------------- 1 | cli_testing: 2 | complements: true 3 | ci: 4 | active: true 5 | max_exec_minutes: 20 6 | display_mode: 7 | execution_time: true 8 | 9 | file_generation: 10 | hosts: true 11 | plain: true 12 | 13 | dns: 14 | server: 15 | - 8.8.8.8 16 | - 8.8.4.4 17 | -------------------------------------------------------------------------------- /dev-tools/.PyFunceble.yaml: -------------------------------------------------------------------------------- 1 | cli_decoding: 2 | adblock: false 3 | adblock_aggressive: false 4 | rpz: false 5 | wildcard: false 6 | cli_testing: 7 | autocontinue: false 8 | ci: 9 | active: false 10 | branch: master 11 | command: null 12 | commit_message: PyFunceble - AutoSave 13 | distribution_branch: master 14 | end_command: null 15 | end_commit_message: PyFunceble - Results 16 | max_exec_minutes: 15 17 | cidr_expand: false 18 | complements: false 19 | cooldown_time: 0.0 20 | days_between: 21 | db_clean: 28 22 | db_retest: 1 23 | db_type: csv 24 | display_mode: 25 | all: false 26 | colour: true 27 | dots: false 28 | execution_time: false 29 | less: true 30 | percentage: true 31 | quiet: false 32 | simple: false 33 | status: all 34 | file_filter: null 35 | file_generation: 36 | analytic: true 37 | hosts: false 38 | no_file: false 39 | plain: true 40 | unified_results: false 41 | hosts_ip: 0.0.0.0 42 | inactive_db: true 43 | local_network: false 44 | max_workers: null 45 | mining: false 46 | preload_file: false 47 | sorting_mode: 48 | hierarchical: false 49 | standard: true 50 | testing_mode: 51 | availability: true 52 | reputation: false 53 | syntax: false 54 | whois_db: true 55 | debug: 56 | active: false 57 | level: info 58 | dns: 59 | follow_server_order: true 60 | protocol: UDP 61 | server: null 62 | trust_server: false 63 | http_codes: 64 | list: 65 | potentially_down: 66 | - 400 67 | - 402 68 | - 404 69 | - 409 70 | - 410 71 | - 412 72 | - 414 73 | - 415 74 | - 416 75 | - 451 76 | potentially_up: 77 | - 0 78 | - 300 79 | - 301 80 | - 302 81 | - 303 82 | - 304 83 | - 305 84 | - 307 85 | - 308 86 | - 403 87 | - 405 88 | - 406 89 | - 407 90 | - 408 91 | - 411 92 | - 413 93 | - 417 94 | - 418 95 | - 421 96 | - 422 97 | - 423 98 | - 424 99 | - 426 100 | - 428 101 | - 431 102 | - 500 103 | - 501 104 | - 502 105 | - 503 106 | - 504 107 | - 505 108 | - 506 109 | - 507 110 | - 508 111 | - 510 112 | - 511 113 | up: 114 | - 100 115 | - 101 116 | - 102 117 | - 200 118 | - 201 119 | - 202 120 | - 203 121 | - 204 122 | - 205 123 | - 206 124 | - 207 125 | - 208 126 | - 226 127 | - 429 128 | self_managed: false 129 | links: 130 | api_date_format: https://pyfunceble.funilrys.com/api/date-format 131 | api_no_referrer: https://pyfunceble.funilrys.com/api/no-referrer 132 | lookup: 133 | dns: true 134 | http_status_code: true 135 | netinfo: true 136 | reputation: false 137 | special: true 138 | timeout: 5 139 | whois: true 140 | share_logs: false 141 | user_agent: 142 | browser: chrome 143 | custom: null 144 | platform: linux 145 | verify_ssl_certificate: false 146 | -------------------------------------------------------------------------------- /dev-tools/.pyfunceble_intern_downtime.json: -------------------------------------------------------------------------------- 1 | { 2 | "iana": { 3 | "iso": "2021-05-07T17:12:34.222539", 4 | "timestamp": 1620400354.222539 5 | }, 6 | "psl": { 7 | "iso": "2021-05-07T17:12:34.277262", 8 | "timestamp": 1620400354.277262 9 | }, 10 | "user_agents": { 11 | "iso": "2021-05-07T17:12:34.426672", 12 | "timestamp": 1620400354.426672 13 | } 14 | } -------------------------------------------------------------------------------- /dev-tools/.trigger: -------------------------------------------------------------------------------- 1 | 15571282479 2 | -------------------------------------------------------------------------------- /dev-tools/DataTesting.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ********************** 3 | # Run PyFunceble Testing 4 | # ********************** 5 | # Created by: Mitchell Krog (mitchellkrog@gmail.com) 6 | # Copyright: Mitchell Krog - https://github.com/mitchellkrogza 7 | 8 | # **************************************************************** 9 | # This uses the awesome PyFunceble script created by Nissar Chababy 10 | # Find funceble at: https://github.com/funilrys/PyFunceble 11 | # **************************************************************** 12 | 13 | set -e 14 | 15 | # ********************** 16 | # Setting date variables 17 | # ********************** 18 | 19 | yeartag=$(date +%Y) 20 | monthtag=$(date +%m) 21 | 22 | 23 | if [[ -z ${TRAVIS_BUILD_DIR+x} ]] 24 | then 25 | baseDir=. 26 | else 27 | baseDir=${TRAVIS_BUILD_DIR} 28 | fi 29 | 30 | export PYFUNCEBLE_OUTPUT_LOCATION="${baseDir}/dev-tools" 31 | export PYFUNCEBLE_CONFIG_LOCATION="${PYFUNCEBLE_OUTPUT_LOCATION}" 32 | export PYFUNCEBLE_AUTO_CONFIGURATION="true" 33 | 34 | # ****************** 35 | # Set our Input File 36 | # ****************** 37 | input=${baseDir}/domains 38 | # ********************** 39 | # Run PyFunceble Testing 40 | # ********************************************************** 41 | # Find PyFunceble at: https://github.com/funilrys/PyFunceble 42 | # ********************************************************** 43 | 44 | RunFunceble () { 45 | 46 | yeartag=$(date +%Y) 47 | monthtag=$(date +%m) 48 | 49 | hash PyFunceble 50 | 51 | PyFunceble -v 52 | python -VV 53 | PyFunceble --ci-end-command "bash ${baseDir}/dev-tools/FinalCommit.sh" --ci-commit-message "V1.${yeartag}.${monthtag}.${TRAVIS_BUILD_NUMBER} [PyFunceble]" --ci-end-commit-message "V1.${yeartag}.${monthtag}.${TRAVIS_BUILD_NUMBER}" -f ${input} --logging-level critical 54 | 55 | } 56 | 57 | RunFunceble 58 | 59 | ## 60 | exit ${?} 61 | -------------------------------------------------------------------------------- /dev-tools/FinalCommit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Hosts file generator for Badd Boyz Hosts 3 | # Created by: Mitchell Krog (mitchellkrog@gmail.com) 4 | # Copyright: Mitchell Krog - https://github.com/mitchellkrogza 5 | # Repo Url: https://github.com/mitchellkrogza/Badd-Boyz-Hosts 6 | # MIT License 7 | 8 | # *********************************************************** 9 | # Remove our inactive and invalid domains from PULL_REQUESTS 10 | # *********************************************************** 11 | 12 | if [[ -z ${TRAVIS_BUILD_DIR+x} ]] 13 | then 14 | baseDir=. 15 | else 16 | baseDir=${TRAVIS_BUILD_DIR} 17 | fi 18 | 19 | cat ${baseDir}/dev-tools/output/domains/domains/ACTIVE/list | grep -v "^$" | grep -v "^#" > tempdomains.txt 20 | mv tempdomains.txt ${baseDir}/domains 21 | 22 | # *************************************************************************** 23 | # Generate our host file and update README with build and version information 24 | # *************************************************************************** 25 | 26 | bash ${baseDir}/dev-tools/UpdateReadme.sh 27 | bash ${baseDir}/dev-tools/GenerateHostsFile.sh 28 | 29 | # ************************************************************* 30 | # Travis now moves to the before_deploy: section of .travis.yml 31 | # ************************************************************* 32 | 33 | exit ${?} 34 | 35 | 36 | # MIT License 37 | 38 | # Copyright (c) 2017, 2018, 2019 Mitchell Krog - mitchellkrog@gmail.com 39 | # https://github.com/mitchellkrogza 40 | 41 | # Permission is hereby granted, free of charge, to any person obtaining a copy 42 | # of this software and associated documentation files (the "Software"), to deal 43 | # in the Software without restriction, including without limitation the rights 44 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 45 | # copies of the Software, and to permit persons to whom the Software is 46 | # furnished to do so, subject to the following conditions: 47 | 48 | # The above copyright notice and this permission notice shall be included in all 49 | # copies or substantial portions of the Software. 50 | 51 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 52 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 53 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 54 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 55 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 56 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 57 | # SOFTWARE. 58 | -------------------------------------------------------------------------------- /dev-tools/GenerateHostsFile.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Hosts file generator for Badd Boyz Hosts 3 | # Created by: Mitchell Krog (mitchellkrog@gmail.com) 4 | # Copyright: Mitchell Krog - https://github.com/mitchellkrogza 5 | # Repo Url: https://github.com/mitchellkrogza/Badd-Boyz-Hosts 6 | # MIT License 7 | 8 | # ****************** 9 | # Set Some Variables 10 | # ****************** 11 | 12 | if [[ -z ${TRAVIS_BUILD_DIR+x} ]] 13 | then 14 | baseDir=. 15 | else 16 | baseDir=${TRAVIS_BUILD_DIR} 17 | fi 18 | 19 | 20 | yeartag=$(date +%Y) 21 | monthtag=$(date +%m) 22 | my_git_tag=V1.${yeartag}.${monthtag}.${TRAVIS_BUILD_NUMBER} 23 | bad_referrers=$(wc -l < ${baseDir}/domains) 24 | hosts=${baseDir}/dev-tools/hosts.template 25 | dnsmasq=${baseDir}/dev-tools/ddwrt-dnsmasq.template 26 | tmphostsA=tmphostsA 27 | tmphostsB=tmphostsB 28 | tmphostsC=tmphostsC 29 | 30 | # ********************************** 31 | # Temporary database files we create 32 | # ********************************** 33 | 34 | inputdbA=/tmp/lastupdated.db 35 | inputdb1=/tmp/hosts.db 36 | 37 | # ********************************** 38 | # Setup input bots and referer lists 39 | # ********************************** 40 | 41 | input1=${baseDir}/domains 42 | input2=${baseDir}/dev-tools/domains_tmp.txt 43 | 44 | # ************************************************************************** 45 | # Sort lists alphabetically and remove duplicates before cleaning Dead Hosts 46 | # ************************************************************************** 47 | 48 | sort -u ${input1} -o ${input1} 49 | 50 | # ***************** 51 | # Activate Dos2Unix 52 | # ***************** 53 | 54 | dos2unix ${input1} 55 | 56 | # ****************************************** 57 | # Trim Empty Line at Beginning of Input File 58 | # ****************************************** 59 | 60 | grep '[^[:blank:]]' < ${input1} > ${input2} 61 | sudo mv ${input2} ${input1} 62 | 63 | # ******************************************************** 64 | # Clean the list of any lines not containing a . character 65 | # ******************************************************** 66 | 67 | cat ${input1} | sed '/\./!d' > ${input2} && mv ${input2} ${input1} 68 | 69 | # ************************************************************************************** 70 | # Strip out our Dead Domains / Whitelisted Domains and False Positives from CENTRAL REPO 71 | # ************************************************************************************** 72 | 73 | 74 | # ******************************* 75 | # Activate Dos2Unix One Last Time 76 | # ******************************* 77 | 78 | dos2unix ${input1} 79 | 80 | # *************************************************************** 81 | # Start and End Strings to Search for to do inserts into template 82 | # *************************************************************** 83 | 84 | start1="# START HOSTS LIST ### DO NOT EDIT THIS LINE AT ALL ###" 85 | end1="# END HOSTS LIST ### DO NOT EDIT THIS LINE AT ALL ###" 86 | start2="# START DNSMASQ LIST ### DO NOT EDIT THIS LINE AT ALL ###" 87 | end2="# END DNSMASQ LIST ### DO NOT EDIT THIS LINE AT ALL ###" 88 | startmarker="##### Version Information #" 89 | endmarker="##### Version Information ##" 90 | 91 | # ****************************************************** 92 | # PRINT DATE AND TIME OF LAST UPDATE INTO HOSTS TEMPLATE 93 | # ****************************************************** 94 | 95 | now="$(date)" 96 | echo ${startmarker} >> ${tmphostsA} 97 | printf "###################################################\n### Version: "${my_git_tag}"\n### Updated: "$now"\n### Bad Host Count: "${bad_referrers}"\n###################################################\n" >> ${tmphostsA} 98 | echo ${endmarker} >> ${tmphostsA} 99 | mv ${tmphostsA} ${inputdbA} 100 | ed -s ${inputdbA}<<\IN 101 | 1,/##### Version Information #/d 102 | /##### Version Information ##/,$d 103 | ,d 104 | .r /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/hosts.template 105 | /##### Version Information #/x 106 | .t. 107 | .,/##### Version Information ##/-d 108 | w /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/hosts.template 109 | q 110 | IN 111 | rm ${inputdbA} 112 | 113 | # ******************************************************** 114 | # PRINT DATE AND TIME OF LAST UPDATE INTO DNSMASQ TEMPLATE 115 | # ******************************************************** 116 | 117 | now="$(date)" 118 | echo ${startmarker} >> ${tmphostsA} 119 | printf "###################################################\n### Version: "${my_git_tag}"\n### Updated: "$now"\n### Bad Host Count: "${bad_referrers}"\n###################################################\n" >> ${tmphostsA} 120 | echo ${endmarker} >> ${tmphostsA} 121 | mv ${tmphostsA} ${inputdbA} 122 | ed -s ${inputdbA}<<\IN 123 | 1,/##### Version Information #/d 124 | /##### Version Information ##/,$d 125 | ,d 126 | .r /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/ddwrt-dnsmasq.template 127 | /##### Version Information #/x 128 | .t. 129 | .,/##### Version Information ##/-d 130 | w /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/ddwrt-dnsmasq.template 131 | q 132 | IN 133 | rm ${inputdbA} 134 | 135 | # ******************************** 136 | # Insert hosts into hosts template 137 | # ******************************** 138 | 139 | echo ${start1} >> ${tmphostsB} 140 | for line in $(cat ${input1}); do 141 | printf "0.0.0.0 ${line}\n" >> ${tmphostsB} 142 | done 143 | echo ${end1} >> ${tmphostsB} 144 | mv ${tmphostsB} ${inputdb1} 145 | ed -s ${inputdb1}<<\IN 146 | 1,/# START HOSTS LIST ### DO NOT EDIT THIS LINE AT ALL ###/d 147 | /# END HOSTS LIST ### DO NOT EDIT THIS LINE AT ALL ###/,$d 148 | ,d 149 | .r /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/hosts.template 150 | /# START HOSTS LIST ### DO NOT EDIT THIS LINE AT ALL ###/x 151 | .t. 152 | .,/# END HOSTS LIST ### DO NOT EDIT THIS LINE AT ALL ###/-d 153 | w /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/hosts.template 154 | q 155 | IN 156 | rm ${inputdb1} 157 | 158 | # ********************************** 159 | # Insert hosts into DNSMASQ template 160 | # ********************************** 161 | 162 | echo ${start2} >> ${tmphostsB} 163 | for line in $(cat ${input1}); do 164 | printf '%s%s%s\n' "address=/" "${line}" "/" >> ${tmphostsB} 165 | done 166 | echo ${end2} >> ${tmphostsB} 167 | mv ${tmphostsB} ${inputdb1} 168 | ed -s ${inputdb1}<<\IN 169 | 1,/# START DNSMASQ LIST ### DO NOT EDIT THIS LINE AT ALL ###/d 170 | /# END DNSMASQ LIST ### DO NOT EDIT THIS LINE AT ALL ###/,$d 171 | ,d 172 | .r /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/ddwrt-dnsmasq.template 173 | /# START DNSMASQ LIST ### DO NOT EDIT THIS LINE AT ALL ###/x 174 | .t. 175 | .,/# END DNSMASQ LIST ### DO NOT EDIT THIS LINE AT ALL ###/-d 176 | w /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/dev-tools/ddwrt-dnsmasq.template 177 | q 178 | IN 179 | rm ${inputdb1} 180 | 181 | # ************************************ 182 | # Copy Files into place before testing 183 | # ************************************ 184 | 185 | sudo cp ${hosts} ${baseDir}/hosts 186 | sudo cp ${dnsmasq} ${baseDir}/dnsmasq 187 | 188 | exit ${?} 189 | 190 | 191 | # MIT License 192 | 193 | # Copyright (c) 2017, 2018, 2019 Mitchell Krog - mitchellkrog@gmail.com 194 | # https://github.com/mitchellkrogza 195 | 196 | # Permission is hereby granted, free of charge, to any person obtaining a copy 197 | # of this software and associated documentation files (the "Software"), to deal 198 | # in the Software without restriction, including without limitation the rights 199 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 200 | # copies of the Software, and to permit persons to whom the Software is 201 | # furnished to do so, subject to the following conditions: 202 | 203 | # The above copyright notice and this permission notice shall be included in all 204 | # copies or substantial portions of the Software. 205 | 206 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 207 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 208 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 209 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 210 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 211 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 212 | # SOFTWARE. 213 | -------------------------------------------------------------------------------- /dev-tools/PrepareData.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Hosts file generator for Badd Boyz Hosts 3 | # Created by: Mitchell Krog (mitchellkrog@gmail.com) 4 | # Copyright: Mitchell Krog - https://github.com/mitchellkrogza 5 | # Repo Url: https://github.com/mitchellkrogza/Badd-Boyz-Hosts 6 | # MIT License 7 | 8 | 9 | # We stop after the first error. 10 | set -e 11 | 12 | # ********************************** 13 | # Setup input bots and referer lists 14 | # ********************************** 15 | 16 | if [[ -z ${TRAVIS_BUILD_DIR+x} ]] 17 | then 18 | baseDir=. 19 | else 20 | baseDir=${TRAVIS_BUILD_DIR} 21 | fi 22 | 23 | whitelistFile=${baseDir}/whitelists/me 24 | antiWhitelistFile=${baseDir}/whitelists/anti 25 | input1=${baseDir}/PULL_REQUESTS/add-domain 26 | input2=${baseDir}/domains 27 | input3=${baseDir}/PULL_REQUESTS/remove-domain 28 | pythonversion="3.7.4" 29 | environmentname="pyconda" 30 | 31 | # ------------------------ 32 | # Set Terminal Font Colors 33 | # ------------------------ 34 | 35 | bold=$(tput bold) 36 | red=$(tput setaf 1) 37 | green=$(tput setaf 2) 38 | yellow=$(tput setaf 3) 39 | blue=$(tput setaf 4) 40 | magenta=$(tput setaf 5) 41 | cyan=$(tput setaf 6) 42 | white=$(tput setaf 7) 43 | defaultcolor=$(tput setaf default) 44 | 45 | # *********** 46 | # Add Domains 47 | # *********** 48 | 49 | add-domain () { 50 | if [ -s ${input1} ] 51 | then 52 | echo "Domain Addition Requested" 53 | cat ${input1} >> ${input2} 54 | sort -u ${input2} -o ${input2} 55 | dos2unix ${input2} 56 | truncate -s 0 ${input1} 57 | else 58 | : 59 | fi 60 | } 61 | add-domain 62 | 63 | # ************** 64 | # Remove Domains 65 | # ************** 66 | 67 | remove-domain () { 68 | if [ -s ${input3} ] 69 | then 70 | echo "Domain Removal Requested" 71 | cat ${input3} >> ${whitelistFile} 72 | sort -u ${whitelistFile} -o ${whitelistFile} 73 | dos2unix ${whitelistFile} 74 | 75 | truncate -s 0 ${input3} 76 | else 77 | : 78 | fi 79 | } 80 | remove-domain 81 | 82 | 83 | 84 | # *********************************** 85 | # Deletion of all whitelisted domains 86 | # *********************************** 87 | 88 | WhiteListing () { 89 | hash uhb_whitelist 90 | uhb_whitelist -f "${input2}" -o "${input2}" -w "${whitelistFile}" -a "${antiWhitelistFile}" 91 | } 92 | WhiteListing 93 | 94 | 95 | exit ${?} 96 | 97 | # MIT License 98 | 99 | # Copyright (c) 2017, 2018, 2019 Mitchell Krog - mitchellkrog@gmail.com 100 | # https://github.com/mitchellkrogza 101 | 102 | # Permission is hereby granted, free of charge, to any person obtaining a copy 103 | # of this software and associated documentation files (the "Software"), to deal 104 | # in the Software without restriction, including without limitation the rights 105 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 106 | # copies of the Software, and to permit persons to whom the Software is 107 | # furnished to do so, subject to the following conditions: 108 | 109 | # The above copyright notice and this permission notice shall be included in all 110 | # copies or substantial portions of the Software. 111 | 112 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 113 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 114 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 115 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 116 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 117 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 118 | # SOFTWARE. 119 | -------------------------------------------------------------------------------- /dev-tools/UpdateReadme.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Write Build / Version Number into README.md 3 | # Created by: Mitchell Krog (mitchellkrog@gmail.com) 4 | # Copyright: Mitchell Krog - https://github.com/mitchellkrogza 5 | # Repo Url: https://github.com/mitchellkrogza/Badd-Boyz-Hosts 6 | # MIT License 7 | 8 | # ****************** 9 | # Set Some Variables 10 | # ****************** 11 | 12 | if [[ -z ${TRAVIS_BUILD_DIR+x} ]] 13 | then 14 | baseDir=. 15 | else 16 | baseDir=${TRAVIS_BUILD_DIR} 17 | fi 18 | 19 | 20 | yeartag=$(date +%Y) 21 | monthtag=$(date +%m) 22 | my_git_tag=V1.${yeartag}.${monthtag}.${TRAVIS_BUILD_NUMBER} 23 | total_sites=$(wc -l < ${baseDir}/domains) 24 | active_sites=$(cat ${baseDir}/dev-tools/output/domains/logs/percentage/percentage.txt) 25 | 26 | # ********************************** 27 | # Temporary database files we create 28 | # ********************************** 29 | 30 | inputdbA=/tmp/lastupdated.db 31 | tmpfileA=tmpfileA 32 | 33 | # *************************************************************** 34 | # Start and End Strings to Search for to do inserts into template 35 | # *************************************************************** 36 | 37 | startmarker="_______________" 38 | endmarker="____________________" 39 | 40 | # **************************************** 41 | # PRINT VERSION INFORMATION INTO README.md 42 | # **************************************** 43 | 44 | printf '%s\n%s%s%s\n%s%s\n```\n%s\n```\n%s' "${startmarker}" "[![VERSION](https://img.shields.io/badge/VERSION%20-%20" "${my_git_tag}" "-blue.svg)](https://github.com/mitchellkrogza/Badd-Boyz-Hosts/commits/master)" "#### Bad Host Count: " "${total_sites}" "${active_sites}" "${endmarker}" >> "${tmpfileA}" 45 | mv ${tmpfileA} ${inputdbA} 46 | ed -s ${inputdbA}<<\IN 47 | 1,/_______________/d 48 | /____________________/,$d 49 | ,d 50 | .r /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/README.md 51 | /_______________/x 52 | .t. 53 | .,/____________________/-d 54 | w /home/travis/build/mitchellkrogza/Badd-Boyz-Hosts/README.md 55 | q 56 | IN 57 | rm ${inputdbA} 58 | 59 | # Create Logo with Version Number - Function Disabled as it will create a binary JPG object on every commit causing repo size to grow unnecessarily. 60 | makelogo () { 61 | # First disable the new ImageMagick-6 Policy file which pretty much breaks all operations of ImageMagick even for SUDO ??? Stupidest thing ever !!! 62 | sudo mv /etc/ImageMagick-6/policy.xml /etc/ImageMagick-6/policy.xmlout 63 | sudo convert ${baseDir}/.assets/badd-boyz-logo-original.jpg -font DejaVu-Sans-Bold -pointsize 20 -fill red -gravity southeast -annotate +60+70 "${my_git_tag}" ${baseDir}/.assets/badd-boyz-hosts-logo.jpg 64 | } 65 | #makelogo 66 | 67 | 68 | exit ${?} 69 | 70 | 71 | # MIT License 72 | 73 | # Copyright (c) 2017, 2018, 2019 Mitchell Krog - mitchellkrog@gmail.com 74 | # https://github.com/mitchellkrogza 75 | 76 | # Permission is hereby granted, free of charge, to any person obtaining a copy 77 | # of this software and associated documentation files (the "Software"), to deal 78 | # in the Software without restriction, including without limitation the rights 79 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 80 | # copies of the Software, and to permit persons to whom the Software is 81 | # furnished to do so, subject to the following conditions: 82 | 83 | # The above copyright notice and this permission notice shall be included in all 84 | # copies or substantial portions of the Software. 85 | 86 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 87 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 88 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 89 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 90 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 91 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 92 | # SOFTWARE. 93 | -------------------------------------------------------------------------------- /dev-tools/inactive.csv: -------------------------------------------------------------------------------- 1 | idna_subject,checker_type,destination,tested_at 2 | constructionskills.in,AVAILABILITY,domains,2021-05-07 17:14:37.020748 3 | www.00sexus.com,AVAILABILITY,domains,2021-05-07 17:34:11.558417 4 | www.0m4.ru,AVAILABILITY,domains,2021-05-07 17:34:39.849571 5 | www.1000cumshots.com,AVAILABILITY,domains,2021-05-07 17:34:52.551156 6 | www.101billion.com,AVAILABILITY,domains,2021-05-07 17:35:00.622788 7 | www.12u.info,AVAILABILITY,domains,2021-05-07 17:35:30.630677 8 | www.14b.info,AVAILABILITY,domains,2021-05-07 17:35:39.001896 9 | www.15x.info,AVAILABILITY,domains,2021-05-07 17:35:42.015336 10 | www.16aq.cn,AVAILABILITY,domains,2021-05-07 17:35:46.284981 11 | www.18teengirl.com,AVAILABILITY,domains,2021-05-07 17:35:57.916675 12 | www.19blog.com,AVAILABILITY,domains,2021-05-07 17:36:06.787259 13 | www.257639.com,AVAILABILITY,domains,2021-05-07 17:37:47.653532 14 | www.31seconds.net,AVAILABILITY,domains,2021-05-07 17:38:21.079841 15 | www.3jmcwio.com,AVAILABILITY,domains,2021-05-07 17:38:38.708533 16 | www.3lm.info,AVAILABILITY,domains,2021-05-07 17:38:42.493446 17 | www.4o64flb.com,AVAILABILITY,domains,2021-05-07 17:38:57.836427 18 | www.4th3d48.com,AVAILABILITY,domains,2021-05-07 17:39:09.021705 19 | www.511a.cn,AVAILABILITY,domains,2021-05-07 17:39:20.192618 20 | www.5yfi7sy.com,AVAILABILITY,domains,2021-05-07 17:39:47.412390 21 | www.66av.cc,AVAILABILITY,domains,2021-05-07 17:39:53.006802 22 | www.69boysex.com,AVAILABILITY,domains,2021-05-07 17:39:55.806558 23 | www.72impala.com,AVAILABILITY,domains,2021-05-07 17:40:06.803678 24 | www.72-news.com,AVAILABILITY,domains,2021-05-07 17:40:09.139417 25 | www.78tdd75.com,AVAILABILITY,domains,2021-05-07 17:40:14.179043 26 | www.7xc4n.com,AVAILABILITY,domains,2021-05-07 17:40:24.073762 27 | www.888-vip.net,AVAILABILITY,domains,2021-05-07 17:40:31.243134 28 | www.94cdn.com,AVAILABILITY,domains,2021-05-07 17:40:41.915446 29 | www.99bthgc.me,AVAILABILITY,domains,2021-05-07 17:40:46.677046 30 | www.9h7n8.com,AVAILABILITY,domains,2021-05-07 17:40:50.278015 31 | www.9thien.com,AVAILABILITY,domains,2021-05-07 17:40:55.026673 32 | www.a85.info,AVAILABILITY,domains,2021-05-07 17:41:13.607485 33 | www.aa81bf391151884adfa3dd677e41f94be1.com,AVAILABILITY,domains,2021-05-07 17:41:17.119993 34 | www.abacuspresents.com,AVAILABILITY,domains,2021-05-07 17:41:47.192925 35 | www.abbeyxxx.com,AVAILABILITY,domains,2021-05-07 17:41:54.009676 36 | www.acads.net,AVAILABILITY,domains,2021-05-07 17:42:26.159154 37 | www.acompanhantesbrasil.com.br,AVAILABILITY,domains,2021-05-07 17:42:47.347061 38 | www.actricesmexicanasdesnudas.com,AVAILABILITY,domains,2021-05-07 17:43:03.803979 39 | www.alanstrack.com,AVAILABILITY,domains,2021-05-07 17:43:35.797901 40 | www.alexandria-locksmithservice.com,AVAILABILITY,domains,2021-05-07 17:43:51.509745 41 | www.alfalakgifts.com,AVAILABILITY,domains,2021-05-07 17:44:03.358084 42 | www.all4invest.info,AVAILABILITY,domains,2021-05-07 17:44:27.888356 43 | www.allamericanmadetoys.com,AVAILABILITY,domains,2021-05-07 17:44:33.000719 44 | www.allanimehentai.com,AVAILABILITY,domains,2021-05-07 17:44:35.805897 45 | www.allpornauditions.com,AVAILABILITY,domains,2021-05-07 17:44:49.994216 46 | www.amateurtour.biz,AVAILABILITY,domains,2021-05-07 17:44:59.251026 47 | www.analcreampie.net,AVAILABILITY,domains,2021-05-07 17:45:22.666590 48 | www.andrewrobertsllc.info,AVAILABILITY,domains,2021-05-07 17:45:48.574150 49 | www.animalcum.net,AVAILABILITY,domains,2021-05-07 17:46:03.599930 50 | www.annotated802.site,AVAILABILITY,domains,2021-05-07 17:46:07.128978 51 | www.appyaviator.com,AVAILABILITY,domains,2021-05-07 17:46:16.413563 52 | www.atfitreasonyou.live,AVAILABILITY,domains,2021-05-07 17:47:06.310786 53 | www.avixxx.com,AVAILABILITY,domains,2021-05-07 17:47:12.098619 54 | www.avoidfilter.net,AVAILABILITY,domains,2021-05-07 17:47:17.589968 55 | www.avon-ukraine.com,AVAILABILITY,domains,2021-05-07 17:47:23.792489 56 | www.bacanal.cl,AVAILABILITY,domains,2021-05-07 17:47:33.880537 57 | www.beamfall.info,AVAILABILITY,domains,2021-05-07 17:47:48.606991 58 | www.chithra629.site,AVAILABILITY,domains,2021-05-07 17:47:54.852872 59 | www.cif.su,AVAILABILITY,domains,2021-05-07 17:48:10.319660 60 | www.cinepornox.com,AVAILABILITY,domains,2021-05-07 17:48:16.647795 61 | www.computernetworksonline.com,AVAILABILITY,domains,2021-05-07 17:48:30.707974 62 | www.com-reports.com,AVAILABILITY,domains,2021-05-07 17:48:35.803219 63 | www.comsalud360.com,AVAILABILITY,domains,2021-05-07 17:48:41.307738 64 | www.coocomall.com,AVAILABILITY,domains,2021-05-07 17:48:52.206336 65 | www.creativeteam.it,AVAILABILITY,domains,2021-05-07 17:49:04.577545 66 | www.cs6hm.com,AVAILABILITY,domains,2021-05-07 17:49:09.674056 67 | www.csgoezknife.com,AVAILABILITY,domains,2021-05-07 17:49:12.463852 68 | www.csgo-jackpot.net,AVAILABILITY,domains,2021-05-07 17:49:14.912651 69 | www.ensinger964.site,AVAILABILITY,domains,2021-05-07 17:49:22.205706 70 | www.enterprise327.site,AVAILABILITY,domains,2021-05-07 17:49:25.303526 71 | www.ethnicking.com,AVAILABILITY,domains,2021-05-07 17:49:34.467246 72 | www.eu-cookie-law.info,AVAILABILITY,domains,2021-05-07 17:49:43.482368 73 | www.eupornstar.info,AVAILABILITY,domains,2021-05-07 17:49:51.820881 74 | www.evaporator558.site,AVAILABILITY,domains,2021-05-07 17:50:00.596483 75 | www.everydresses.com,AVAILABILITY,domains,2021-05-07 17:50:04.779465 76 | www.freegayporn.biz,AVAILABILITY,domains,2021-05-07 17:50:48.358679 77 | www.free-hairy-pussy.net,AVAILABILITY,domains,2021-05-07 17:50:52.861360 78 | www.freehealthpoints.com,AVAILABILITY,domains,2021-05-07 17:50:57.772527 79 | www.freehomosexual.com,AVAILABILITY,domains,2021-05-07 17:51:01.907386 80 | www.go.biz,AVAILABILITY,domains,2021-05-07 17:51:33.067031 81 | www.goddessvip.com,AVAILABILITY,domains,2021-05-07 17:51:38.715844 82 | www.go-gal.com,AVAILABILITY,domains,2021-05-07 17:52:07.976661 83 | www.gotporn.info,AVAILABILITY,domains,2021-05-07 17:52:11.899501 84 | www.gratisweb.com,AVAILABILITY,domains,2021-05-07 17:52:22.281364 85 | www.greatest-store.com,AVAILABILITY,domains,2021-05-07 17:52:26.018359 86 | www.greatlakessurveillance.com,AVAILABILITY,domains,2021-05-07 17:52:33.521515 87 | www.huge-cocks.biz,AVAILABILITY,domains,2021-05-07 17:52:48.031367 88 | www.hugersoft.com,AVAILABILITY,domains,2021-05-07 17:53:00.321773 89 | www.hugoparisescort.com,AVAILABILITY,domains,2021-05-07 17:53:03.220869 90 | www.hunks-hardcore.com,AVAILABILITY,domains,2021-05-07 17:53:12.487857 91 | www.hunks-naked.com,AVAILABILITY,domains,2021-05-07 17:53:14.929053 92 | www.hunt4porn.com,AVAILABILITY,domains,2021-05-07 17:53:17.907733 93 | www.hybridization809.site,AVAILABILITY,domains,2021-05-07 17:53:25.632352 94 | www.hyjxtz.com,AVAILABILITY,domains,2021-05-07 17:53:37.234915 95 | www.i-dating.info,AVAILABILITY,domains,2021-05-07 17:53:47.484548 96 | www.ideibiznesa2015.ru,AVAILABILITY,domains,2021-05-07 17:53:55.122938 97 | www.idvipteam.com,AVAILABILITY,domains,2021-05-07 18:09:23.908093 98 | www.informazionicoronavirus.it,AVAILABILITY,domains,2021-05-07 18:09:35.275967 99 | www.installer892.site,AVAILABILITY,domains,2021-05-07 18:09:42.306378 100 | www.maltipoo883.site,AVAILABILITY,domains,2021-05-07 18:09:49.998215 101 | www.matureporno.info,AVAILABILITY,domains,2021-05-07 18:09:53.977031 102 | www.maxxisproduct.com,AVAILABILITY,domains,2021-05-07 18:09:57.573267 103 | www.nottepad-plus-plus.org,AVAILABILITY,domains,2021-05-07 18:10:01.772450 104 | www.nucleolus980.site,AVAILABILITY,domains,2021-05-07 18:10:04.780503 105 | www.physical309.site,AVAILABILITY,domains,2021-05-07 18:10:07.763601 106 | www.plasmid904.site,AVAILABILITY,domains,2021-05-07 18:10:13.185666 107 | www.prizesfu74.life,AVAILABILITY,domains,2021-05-07 18:10:16.140924 108 | www.sala5.it,AVAILABILITY,domains,2021-05-07 18:10:28.284017 109 | www.starebenesipuo.it,AVAILABILITY,domains,2021-05-07 18:10:37.816529 110 | www.subplots341.site,AVAILABILITY,domains,2021-05-07 18:10:41.288057 111 | www.superior400.site,AVAILABILITY,domains,2021-05-07 18:10:44.370110 112 | -------------------------------------------------------------------------------- /dev-tools/output/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | # We don't ignore the domains directory 4 | !/domains/ 5 | # We don't ignore the hosts directory 6 | !/hosts/ 7 | # We don't ignore the HTTP_Analytic directory 8 | # We keep the following for historical reason. 9 | # Indeed, the following directory may exist in some session. 10 | !/HTTP_Analytic/ 11 | # We don't ignore the logs directory 12 | !/logs/ 13 | # We don't ignore the splited directory 14 | !/splited/ 15 | # We don't ignore the analytic directory 16 | !/Analytic/ 17 | # We don't ignore the json directory 18 | !/json/ 19 | # We don't ignore the complemets directory 20 | !/complements/ 21 | -------------------------------------------------------------------------------- /dev-tools/output/__pyfunceble_loggging__/critical.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/dev-tools/output/__pyfunceble_loggging__/critical.log -------------------------------------------------------------------------------- /dev-tools/output/__pyfunceble_loggging__/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/dev-tools/output/__pyfunceble_loggging__/debug.log -------------------------------------------------------------------------------- /dev-tools/output/__pyfunceble_loggging__/error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/dev-tools/output/__pyfunceble_loggging__/error.log -------------------------------------------------------------------------------- /dev-tools/output/__pyfunceble_loggging__/fatal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/dev-tools/output/__pyfunceble_loggging__/fatal.log -------------------------------------------------------------------------------- /dev-tools/output/__pyfunceble_loggging__/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/dev-tools/output/__pyfunceble_loggging__/info.log -------------------------------------------------------------------------------- /dev-tools/output/__pyfunceble_loggging__/warning.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/ec7245e85b48c5f1ae0ff83a25f7f9eecb511543/dev-tools/output/__pyfunceble_loggging__/warning.log -------------------------------------------------------------------------------- /dev-tools/output/domains/Analytic/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/POTENTIALLY_ACTIVE/ 5 | !/POTENTIALLY_INACTIVE/ 6 | !/SUSPICIOUS/ 7 | -------------------------------------------------------------------------------- /dev-tools/output/domains/Analytic/ACTIVE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/Analytic/POTENTIALLY_ACTIVE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/Analytic/POTENTIALLY_INACTIVE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/Analytic/SUSPICIOUS/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/counter.json: -------------------------------------------------------------------------------- 1 | { 2 | "counter": { 3 | "ACTIVE": 1386, 4 | "INACTIVE": 109, 5 | "INVALID": 0, 6 | "MALICIOUS": 0, 7 | "SANE": 0, 8 | "VALID": 0, 9 | "total": 1495 10 | }, 11 | "percentage": { 12 | "ACTIVE": 92.70903010033445, 13 | "INACTIVE": 7.330195023537324, 14 | "INVALID": 0, 15 | "MALICIOUS": 0, 16 | "SANE": 0, 17 | "VALID": 0, 18 | "total": 100.03922512387177 19 | } 20 | } -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/INACTIVE/ 5 | !/INVALID/ 6 | !/MALICIOUS/ 7 | !/SANE/ 8 | !/VALID/ 9 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/ACTIVE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/ACTIVE/list: -------------------------------------------------------------------------------- 1 | # Generated by PyFunceble (v4.0.0b47.dev) / https://git.io/vpZoI 2 | # Date of generation: 2021-05-07T18:10:53.418322 3 | 4 | 5 | 000.gaysexe.free.fr 6 | 00author.com 7 | 0azx1.com 8 | 0dax.com 9 | 000free.us 10 | 00go.com 11 | 00it.com 12 | 0lovespells0.blogspot.com 13 | 0m4.ru 14 | 0n-line.tv 15 | 0q2.sitey.me 16 | 00sexus.com 17 | 000tristanprod.free.fr 18 | 00webcams.com 19 | 1.114central.com 20 | 1adult.com 21 | 01apple.com 22 | 1bet.com 23 | 1ejaculationinterne.com 24 | 1forced.com 25 | 1-free-share-buttons.com 26 | 1hwy.com 27 | 1kinobig.ru 28 | 1pamm.ru 29 | 1-pregnant-sex.com 30 | 1qingdao.com 31 | 1re.info 32 | 01-sex-amateur.info 33 | 1sexe1.free.fr 34 | 1stat.ru 35 | 1studio.net 36 | 1unblock.com 37 | 1wish.net 38 | 1worlditsolutions.com 39 | 1zone1.free.fr 40 | 2.speedknow.co 41 | 2daytrendingnews.com 42 | 2gay.net 43 | 2girls1cumshot.com 44 | 2girls1cup-free.com 45 | 2kata.ru 46 | 2kporn.com 47 | 2lesbians.net 48 | 2manshow.com 49 | 2mj.pl 50 | 2mouses.com 51 | 2mycomputer.com 52 | 2n2qlh5hqcwrvo.net 53 | 2o34.com 54 | 2p9fyvx.com 55 | 2rich4bitches.com 56 | 2sexy.ro 57 | 2step-garage.co.uk 58 | 2wink.com.au 59 | 2ydian.com 60 | 3am.info 61 | 3angelsvideo.com 62 | 3cloud.net 63 | 3date.de 64 | 3-dauto.com 65 | 3dbluerayplayer.com 66 | 3dcgfx.net 67 | 3d-daughter-list.info 68 | 3d-hentai.de 69 | 3donlinegames.de 70 | 3dpassport.com 71 | 3dsemulator.info 72 | 3dviolet.com 73 | 03e.info 74 | 3-gay.com 75 | 3gplay.pl 76 | 3henterprise.com 77 | 3jmcwio.com 78 | 3-letter-domains.net 79 | 3lm.info 80 | 03p.info 81 | 3vig.com 82 | 3w24.com 83 | 3weekdiet.com 84 | 3xit.net 85 | 4asianporn.com 86 | 4beast.com 87 | 4biogas.de 88 | 4bqs.com 89 | 4cock.com 90 | 4ever.cc 91 | 4girlss.com 92 | 4love.info 93 | 4meme.com 94 | 4o64flb.com 95 | 4plus11.com 96 | 4pornxxx.com 97 | 4pp13.com 98 | 4pussies.com 99 | 4realzed.com 100 | 4replicawatch.net 101 | 4takt-oel.de 102 | 4th3d48.com 103 | 4u69.com 104 | 4ur.click 105 | 4ureyesonly.com 106 | 4webmasters.com 107 | 4wheel.de 108 | 4xporn.com 109 | 4youcom.com 110 | 5finder.com 111 | 5forex.ru 112 | 5i2.net 113 | 5kstore.com 114 | 5u.com 115 | 5udt.com 116 | 5wh.co.zw 117 | 5yfi7sy.com 118 | 6amateure.net 119 | 6e.co.kr 120 | 6ftlady.com 121 | 6ox.de 122 | 6server.com 123 | 6stuff.com 124 | 007angels.com 125 | 7fb.ru 126 | 7gfs.com 127 | 7minuteworkout.com 128 | 7search.com 129 | 7thlegion.ru 130 | 7wind.ru 131 | 7xc4n.com 132 | 7y7.us 133 | 8fvchzuz.myutilitydomain.com 134 | 8gold.com 135 | 8khmer.com 136 | 8rf.com 137 | 8si.ru 138 | 8streams.com 139 | 8ue9q7i.com 140 | 8xv8.com 141 | 9aad7115.amy.gs 142 | 9h7n8.com 143 | 9ics.cn 144 | 9med.net 145 | 9stoneinvestments.com 146 | 9thien.com 147 | 09zyy.com 148 | 12.com 149 | 12cams.be 150 | 1-2fly-befragung.de 151 | 12masterov.com 152 | 12research.com 153 | 12u.info 154 | 12xhardcore.com 155 | 13tabs.com 156 | 14b.info 157 | 14teen.com 158 | 15x.info 159 | 16aq.cn 160 | 17chezhan.com 161 | 017gj.com 162 | 17youzi.com 163 | 18freeporn.com 164 | 18hdxxx.com 165 | 18pluscard.com 166 | 18pluspics.com 167 | 18plusstore.com 168 | 18teengirl.com 169 | 18xtube.com 170 | 19blog.com 171 | 20pascals.nl 172 | 22kkkk.com 173 | 24-ak.ru 174 | 24holdem.com 175 | 24tradeplus.com 176 | 24videos.tv 177 | 24-xxx.biz 178 | 30hardcore.galleryprogram.com 179 | 30sec.info 180 | 31seconds.net 181 | 34.gs 182 | 40cg.com 183 | 40hardcore.galleryprogram.com 184 | 50centstreetkingimmortal.com 185 | 50hardcore.galleryprogram.com 186 | 51.la 187 | 59cn7.com 188 | 60secpanic.com 189 | 65xps.com 190 | 66av.cc 191 | 69boysex.com 192 | 69er.de 193 | 69net.de 194 | 72impala.com 195 | 72-news.com 196 | 77sky.de 197 | 78tdd75.com 198 | 83net.jp 199 | 87w.info 200 | 94cdn.com 201 | 97fn1ej0.myutilitydomain.com 202 | 99bthgc.me 203 | 99topnn.info 204 | 100dollars-seo.com 205 | 100filles.free.fr 206 | 100shemales.com 207 | 101billion.com 208 | 101flag.ru 209 | 101raccoon.ru 210 | 108shot.com 211 | 121phonesex.co.uk 212 | 123any.com 213 | 123boy.free.fr 214 | 123branlemoi.free.fr 215 | 123cha.com 216 | 123kia.free.fr 217 | 123kuma.com 218 | 123laceypink.com 219 | 123latina.free.fr 220 | 123locker.com 221 | 123sex.biz 222 | 138shenbosbo.com 223 | 166f.com 224 | 189zx.com 225 | 201mb.com 226 | 202ch.com 227 | 247lyrics.com 228 | 300sk.com 229 | 365locksmithsminneapolis.com 230 | 423.ru 231 | 511a.cn 232 | 529collegesaving.com 233 | 550a.com 234 | 777-club.ru 235 | 883zy.com 236 | 888.com 237 | 888-vip.net 238 | 0900-telefonerotik.de 239 | 925.lt 240 | 999webdesign.com 241 | 1000bannerx.free.fr 242 | 1000cumshots.com 243 | 1000lashes.com 244 | 1000russianwomen.com 245 | 1001lingerie.com 246 | 11-15.net 247 | 1314dh.com 248 | 2005-search.com 249 | 2020iscoming.info 250 | 2560.fd.mobile.tv.sms13.de 251 | 5241.it 252 | 07634.com 253 | 10000hai.com 254 | 10000verges.free.fr 255 | 18744.com 256 | 24695.com 257 | 57883.net 258 | 257639.com 259 | 259572.com 260 | 271395.com 261 | 289931.com 262 | 791026.com 263 | 6000518.com 264 | 6660003.com 265 | 8899804.com 266 | 11235813.webzdarma.cz 267 | 189-211-177-171.static.axtel.net 268 | 13453765871837679316.googlegroups.com 269 | a1thumbpost.com 270 | a2btrans.pl 271 | a2sex.com 272 | a2zgroup.in 273 | a-5.info 274 | a85.info 275 | a94.info 276 | a460.cell.phone.ringtone.samsung.sms13.de 277 | a0152829.xsph.ru 278 | a.ajkelra.com 279 | a.applvn.com 280 | a.avalhukof.com 281 | aa81bf391151884adfa3dd677e41f94be1.com 282 | aaannuairex.com 283 | aaaurgentcare.net 284 | aab94f698f36684c5a852a2ef272e031bb.com 285 | aadroid.net 286 | aadultwork.com 287 | aalures.com 288 | aanqylta.com 289 | aapz.com 290 | aarbur.com 291 | aaronabel.com 292 | aaronautosandtrucks.com 293 | aashyamayro.com 294 | ab199.de 295 | ab.teenx.free.fr 296 | abacusnet.info 297 | abacuspresents.com 298 | abadass.com 299 | abbanreddy.com 300 | abbeyxxx.com 301 | abbywintersnudes.thumblogger.com 302 | abclauncher.com 303 | abcsex.dk 304 | abctoppictures.net 305 | abdicted.com 306 | abdl-adult-baby-phone-sex.info 307 | abdlphone.com 308 | abetran.com 309 | abetting.net 310 | ablefull.com 311 | abogadodejacksonville.com 312 | abonne100.free.fr 313 | abouthomesdecorating.com 314 | aboutproperty.co.uk 315 | above.com 316 | abrahamschildren.com 317 | absolute-live.com 318 | acads.net 319 | account.paypal-inc.tribesiren.com 320 | acenar.com 321 | acheterviagrafr24.com 322 | achterin.nl 323 | aciklise.web.tr 324 | acimo.com 325 | acmmarketingdigital.com.br 326 | acmsa.com.ar 327 | acneforums.com 328 | acompanhantesbrasil.com.br 329 | acompanhantesdeportugal.com 330 | acornpointlodge.com 331 | acoustoopticmodulator.com 332 | acpbdf.com.br 333 | acproyectos.com 334 | acrh.be 335 | acrowiswhite.com 336 | actionmobilemarine.net 337 | actionnooz.com 338 | activeideas.net 339 | activepr.ru 340 | activewatch.ro 341 | ac-transfer.com 342 | actricesmexicanasdesnudas.com 343 | actulite.com 344 | ad.bubblestat.com 345 | adrunnr.com 346 | ahasex.de 347 | airmore.co 348 | airnetinfotech.com 349 | airpb.com 350 | airportsys.com 351 | aisiansex.com 352 | ajansyenimedya.com 353 | ajkzd9h.com 354 | akaflieg-sb.de 355 | akama.com 356 | akariyer.com 357 | akcr.free.fr 358 | akita.kz 359 | akku.mondo.trium.mitsubishi.sms13.de 360 | aksao.com 361 | aksonural.ru 362 | aktivator-windows10.blogspot.com 363 | akuhni.by 364 | akusherok.ru 365 | alabamabackpage.com 366 | alamosupply.com 367 | alamuk.com 368 | alanstrack.com 369 | alarash.com 370 | alarmobninsk.ru 371 | albamargroup.com 372 | albanypowerexchange.com 373 | albaphotos.free.fr 374 | alberguecasaanita.com 375 | alblux.com 376 | alboautotrasportatori.it 377 | aldik.com 378 | aldo061.free.fr 379 | aldo063.free.fr 380 | alessandraleone.com 381 | alexandria-locksmithservice.com 382 | alexianer-service.de 383 | alexine.net 384 | alexxxxpages.info 385 | alfa9.com 386 | alfa-img.com 387 | alfalakgifts.com 388 | alfa-medosmotr.ru 389 | alfapro.ru 390 | alfa-search.com 391 | alf-img.com 392 | algerianembassy.co.in 393 | algodon.net 394 | alibestsale.com 395 | alice20.free.fr 396 | aliciatrans.free.fr 397 | aliclonepro.xyz 398 | aliecspres.com 399 | alif-ba-ta.com 400 | alini.de 401 | alirey.com 402 | alisatilsner.com 403 | alive-ua.com 404 | alizedusud.free.fr 405 | aljassarengineering.com 406 | all4invest.info 407 | all4wap.ru 408 | all.alisatilsner.com 409 | allamericanmadetoys.com 410 | allanimehentai.com 411 | allboard.xobor.de 412 | allcredits.su 413 | allergiques.com 414 | allergycenter.info 415 | alleron.andree.free.fr 416 | allornamenti.com 417 | allo-sexe.com 418 | alloysteel.ru 419 | allpdfmags.net 420 | allpornauditions.com 421 | amateurs.jerkr.com 422 | amateurs-cam.0my.net 423 | amateursconvert.com 424 | amateursexdvd.com 425 | amateursexplace.com 426 | amateurspain.com 427 | amateurtour.biz 428 | amateurwifevids.com 429 | amatrice-partouzeuse.com 430 | amatrices-sexy.fr 431 | amatrixe.free.fr 432 | amatvideo.free.fr 433 | amospalla.es 434 | ampower.me 435 | amt-k.ru 436 | amung.us 437 | amwatching.com 438 | anal.cx 439 | anal-acrobats.com 440 | analcreampie.net 441 | analdude.com 442 | anale-seks.nl 443 | anale-sex.nl 444 | anal-et-sodomie.com 445 | anal-love.net 446 | analog.cell.phone.service.sms13.de 447 | analog.sms13.de 448 | analpics.net 449 | anal-pictures.biz 450 | analsexphoto.yourfreesites.com 451 | anal-videos-photos.com 452 | ananashotel.com 453 | anatomytrains.co.uk 454 | anbstudios.com 455 | anchorwheelmotel.com.au 456 | andersondiamonds.com 457 | an-donut.com 458 | andrewrobertsllc.info 459 | android-style.com 460 | anduongjsc.com 461 | andydill.com 462 | anews.cc 463 | anewyoufitness.com 464 | angelalittle.net 465 | angelas-place.com 466 | angelbetting.com 467 | angelinfo.com 468 | angelinna.free.fr 469 | animadulte.com 470 | animal36.com 471 | animalcum.net 472 | animal-drawings.com 473 | annotated802.site 474 | anolysis.privacy.cliqz.com 475 | antcompany.com 476 | anticodistretto.com 477 | anticosm.com 478 | antifa.co.at 479 | apepix.com 480 | aphrodisia01.free.fr 481 | appyaviator.com 482 | arsinvest.it 483 | ashlynnbrookevideos.com 484 | atfitreasonyou.live 485 | aviodg.eu 486 | avitocars.ru 487 | avixxx.com 488 | avkzarabotok.info 489 | avoidaroid.com 490 | avoidfilter.net 491 | avon-severozapad.ru 492 | avon-ukraine.com 493 | avpayments.com 494 | avramstroy.ru 495 | ayerbo.xhost.ro 496 | azulerie.it 497 | babsy.foreverhorny.com 498 | babylyst.com 499 | babywantsbling.com 500 | bacanal.cl 501 | back.dog 502 | backalleyblowjobs.com 503 | backdoor.thumblogger.com 504 | backgroundpictures.net 505 | backlink4u.net 506 | backlinkwatch.com 507 | backofficellc.com 508 | backpaininstantrelief.com 509 | backuperwebcam.weebly.com 510 | backvids.com 511 | bag.mobile.system.video.sms13.de 512 | bagsonsale.online 513 | barmillevani.it 514 | beamfall.info 515 | casaemily.it 516 | casalespinazzella.it 517 | cascinamolinodellapaglia.it 518 | chalet-volpi.it 519 | chithra629.site 520 | cialisforsalecialiscostcye.com 521 | cialismed.com 522 | cialiswithoutadoctor.net 523 | cibersexo.eu 524 | ciceklioglu.com 525 | ciel7.free.fr 526 | cienum.fr 527 | cif.su 528 | cigar.pt 529 | cigarette-online.com 530 | cindyintim.de 531 | cinedaily.com 532 | cineface.com 533 | cinema3satu.com 534 | cinemabio.com 535 | cinematraffic.com 536 | cinepornox.com 537 | cinepro.com 538 | cingualr.com 539 | collector.hpn.cliqz.com 540 | collector-hpn.cliqz.com 541 | comeisolarecasa.it 542 | communisave.co.za 543 | community.allhiphop.com 544 | communitypetclinicmanteca.com 545 | companies-catalog.com 546 | company.com.ph 547 | compassenergyservices.com 548 | compitte.com 549 | compositefarming.com 550 | comprafacil.com.br 551 | compucelunlock.net 552 | computernetworksonline.com 553 | com-reports.com 554 | comsalud360.com 555 | comsprague.com 556 | comsysnet.com 557 | construfuturo.com.mx 558 | construmac.com.mx 559 | consultant-online.ru 560 | contactos-gay.com 561 | content.joinaxxess.com 562 | content.seerealgirls.com 563 | contextualyield.com 564 | controlsecurity.net 565 | convertwordtoexcel.com 566 | coocomall.com 567 | cookevegas.com 568 | cookielawblog.wordpress.com 569 | cookingmeat.ru 570 | cooknfit.com 571 | coolemailnames.com 572 | creativemindhacks.com 573 | creativeteam.it 574 | crystalslot.com 575 | cs1g.com 576 | cs6hm.com 577 | csgoezknife.com 578 | csgo-jackpot.net 579 | cs-gra.pl 580 | csk.ru 581 | cstrespsurvey.ca 582 | damafinimmobiliare.it 583 | distribuzionevolantinaggio.it 584 | docs.pipenv.org 585 | easymetal.it 586 | ensinger964.site 587 | enterprise327.site 588 | eremogaudio.it 589 | espritensemble.com 590 | essereessenza.it 591 | etemis.com 592 | ethan.wang 593 | ethanslayton.com 594 | ethnicafrique.com 595 | ethnicking.com 596 | etisalatebill.net 597 | etm-consult.de 598 | euadoroisso.com.br 599 | eu-cookie-law.info 600 | eupornstar.info 601 | euro-option.info 602 | eurospanker.com 603 | eurovisions.free.fr 604 | eu-survey.com 605 | evaporator558.site 606 | event-tracking.com 607 | everestclick.com 608 | every-day.net 609 | everydresses.com 610 | everytalk.tv 611 | everythingisstory.com 612 | evesaddictin.com 613 | evidencecleanergold.com 614 | evil69.com 615 | evile.co.uk 616 | evkc.com 617 | evogarage.com 618 | exhibenfrance.com 619 | exhibits4court.com 620 | e-zeitung.de 621 | falcoware.com 622 | familienzahnaerzte.com 623 | family1st.ca 624 | familyholiday.ml 625 | familyhomefinance.com.au 626 | famir.com 627 | farmafit.it 628 | fd1.eye.to 629 | fd2.eye.to 630 | fd4.eye.to 631 | ferser.it 632 | fincert.it 633 | foone.com.br 634 | freedomart.cz 635 | free-gay.de 636 | freegayporn.biz 637 | free-gluten.ru 638 | free-groupsex.com 639 | free-hairy-pussy.net 640 | freehanbam.net 641 | freehealthpoints.com 642 | freehomosexual.com 643 | freehornygirls.com 644 | freehostservers.com 645 | freeindiangals.com 646 | freeuploader.ml 647 | futurouomo.it 648 | fx.gtop.ro 649 | fxadviceformeandyou.com 650 | girlporn.ru 651 | globetrotting-culture.ru 652 | globusdate.com 653 | glopages.ru 654 | go.biz 655 | goawos.com 656 | gobettygo.com 657 | gobusinessloan.com 658 | goddessvip.com 659 | godrix.com 660 | godsadvice.com 661 | goforexvps.com 662 | gofun.info 663 | go-gal.com 664 | gommoneusato.it 665 | gotporn.info 666 | gotwebsite1.com 667 | gov.yanao.ru 668 | grabbersex.com 669 | grabraeuber.de 670 | gracecore.com 671 | gratis.sms.senden.sms13.de 672 | gratis-sexkontakte.com 673 | gratisweb.com 674 | gravygirls.com 675 | greatamericansexdiet.com 676 | great-comics.com 677 | greatest-store.com 678 | greatfind-a.akamaihd.net 679 | greatfireoflondon.org.uk 680 | greatgrace.ru 681 | greatlakessurveillance.com 682 | greatpussies.com 683 | greatsexcontent.dk 684 | greatsimplicity.com 685 | gustomagro.it 686 | habanerotaqueria.it 687 | hallohaus.co 688 | hmuana.com 689 | hpn-collector.cliqz.com 690 | huanqiucaijing.cn 691 | huge-cocks.biz 692 | huge-gay-cock.com 693 | hugersoft.com 694 | hugoparisescort.com 695 | huisvrouwen.be 696 | hukbo.com 697 | humorcartoes.com.sapo.pt 698 | humorpool.com 699 | humortadelacartoes.com.sapo.pt 700 | humraaz.com 701 | hundejo.com 702 | hunger.xyz 703 | hungergame.com 704 | hunks-hardcore.com 705 | hunks-naked.com 706 | hunshop.natureflower.com 707 | hunt4porn.com 708 | hustlervip.net 709 | hustoon.over-blog.com 710 | hut1.ru 711 | hvd-store.com 712 | h-villamotel.com 713 | hybrid.ru 714 | hybridization809.site 715 | hydropneuengg.com 716 | hydropump.su 717 | hygar.com 718 | hygromycin-b-50mg-ml-solution.com 719 | hyipbrowser.biz 720 | hyipmanager.in 721 | hyjxtz.com 722 | hymen-defloration.info 723 | hypnoseterapi.com 724 | hypnotone.com 725 | hystersister.com 726 | hy-tec.com 727 | hzdoctor.com 728 | i-c-c-c.com 729 | ichgcp.com 730 | icipourtoi.com 731 | iclsas.com 732 | ico.re 733 | i-dating.info 734 | idc.com.ua 735 | idealtits.net 736 | ideas.com.uy 737 | ideawheel.com 738 | idecoideas.com 739 | ideibiznesa2015.ru 740 | idkom.com 741 | ido3.com 742 | idolax.com 743 | idolhairsalon.com 744 | idolight.net 745 | idrct.com 746 | idvipteam.com 747 | iframes.pornprosnetwork.com 748 | imageprostyle-communication.fr 749 | imap.dpsl.net 750 | indetiske.ya.ru 751 | infogiovanialtopavese.it 752 | informazionicoronavirus.it 753 | inleadership.co.nz 754 | installer892.site 755 | kartlab.it 756 | laanchoa.it 757 | lacasadialicedesenzano.it 758 | ladsblue.com 759 | library.cowley.edu 760 | live1powerlife.com 761 | maincert.com 762 | maltipoo883.site 763 | manufacta-italia.it 764 | matureporno.info 765 | maxtek.it 766 | maxxisproduct.com 767 | nerodavolasicilia.it 768 | nobuomo.it 769 | nottepad-plus-plus.org 770 | nucleolus980.site 771 | physical309.site 772 | picura.it 773 | pipenv.org 774 | plasmid904.site 775 | prizesforyou.com 776 | prizesfu74.life 777 | progettazione-integrata.it 778 | ristorante53.it 779 | ristorantebiri.it 780 | ristoranteilmedioevo.it 781 | rosafondente.it 782 | sala5.it 783 | sitononraggiungibile.it 784 | solidmaker.it 785 | spacebridemag.com 786 | spl63.fr 787 | ssl.eroscomix.com 788 | starebenesipuo.it 789 | stats.cliqz.com 790 | subplots341.site 791 | superior400.site 792 | tigustolanostracucina.it 793 | townhousefilms.com 794 | utopia-privacy.com 795 | www.00author.com 796 | www.0azx1.com 797 | www.0dax.com 798 | www.000free.us 799 | www.00go.com 800 | www.00it.com 801 | www.0lovespells0.blogspot.com 802 | www.0n-line.tv 803 | www.00webcams.com 804 | www.1adult.com 805 | www.01apple.com 806 | www.1bet.com 807 | www.1ejaculationinterne.com 808 | www.1forced.com 809 | www.1-free-share-buttons.com 810 | www.1hwy.com 811 | www.1kinobig.ru 812 | www.1pamm.ru 813 | www.1-pregnant-sex.com 814 | www.1qingdao.com 815 | www.1re.info 816 | www.01-sex-amateur.info 817 | www.1stat.ru 818 | www.1studio.net 819 | www.1unblock.com 820 | www.1wish.net 821 | www.1worlditsolutions.com 822 | www.2daytrendingnews.com 823 | www.2gay.net 824 | www.2girls1cumshot.com 825 | www.2girls1cup-free.com 826 | www.2kata.ru 827 | www.2kporn.com 828 | www.2lesbians.net 829 | www.2manshow.com 830 | www.2mj.pl 831 | www.2mouses.com 832 | www.2mycomputer.com 833 | www.2n2qlh5hqcwrvo.net 834 | www.2o34.com 835 | www.2p9fyvx.com 836 | www.2rich4bitches.com 837 | www.2sexy.ro 838 | www.2step-garage.co.uk 839 | www.2wink.com.au 840 | www.2ydian.com 841 | www.3am.info 842 | www.3angelsvideo.com 843 | www.3cloud.net 844 | www.3date.de 845 | www.3-dauto.com 846 | www.3dbluerayplayer.com 847 | www.3dcgfx.net 848 | www.3d-daughter-list.info 849 | www.3d-hentai.de 850 | www.3donlinegames.de 851 | www.3dpassport.com 852 | www.3dsemulator.info 853 | www.3dviolet.com 854 | www.03e.info 855 | www.3-gay.com 856 | www.3gplay.pl 857 | www.3henterprise.com 858 | www.3-letter-domains.net 859 | www.03p.info 860 | www.3vig.com 861 | www.3w24.com 862 | www.3weekdiet.com 863 | www.3xit.net 864 | www.4asianporn.com 865 | www.4beast.com 866 | www.4biogas.de 867 | www.4bqs.com 868 | www.4cock.com 869 | www.4ever.cc 870 | www.4girlss.com 871 | www.4love.info 872 | www.4meme.com 873 | www.4plus11.com 874 | www.4pornxxx.com 875 | www.4pp13.com 876 | www.4pussies.com 877 | www.4realzed.com 878 | www.4replicawatch.net 879 | www.4takt-oel.de 880 | www.4u69.com 881 | www.4ur.click 882 | www.4ureyesonly.com 883 | www.4webmasters.com 884 | www.4wheel.de 885 | www.4xporn.com 886 | www.4youcom.com 887 | www.5finder.com 888 | www.5forex.ru 889 | www.5i2.net 890 | www.5kstore.com 891 | www.5u.com 892 | www.5udt.com 893 | www.5wh.co.zw 894 | www.6amateure.net 895 | www.6e.co.kr 896 | www.6ftlady.com 897 | www.6ox.de 898 | www.6server.com 899 | www.6stuff.com 900 | www.007angels.com 901 | www.7fb.ru 902 | www.7gfs.com 903 | www.7minuteworkout.com 904 | www.7search.com 905 | www.7thlegion.ru 906 | www.7wind.ru 907 | www.7y7.us 908 | www.8gold.com 909 | www.8khmer.com 910 | www.8rf.com 911 | www.8si.ru 912 | www.8streams.com 913 | www.8ue9q7i.com 914 | www.8xv8.com 915 | www.9ics.cn 916 | www.9med.net 917 | www.9stoneinvestments.com 918 | www.09zyy.com 919 | www.12.com 920 | www.12cams.be 921 | www.1-2fly-befragung.de 922 | www.12masterov.com 923 | www.12research.com 924 | www.12xhardcore.com 925 | www.13tabs.com 926 | www.14teen.com 927 | www.17chezhan.com 928 | www.017gj.com 929 | www.17youzi.com 930 | www.18freeporn.com 931 | www.18hdxxx.com 932 | www.18pluscard.com 933 | www.18pluspics.com 934 | www.18plusstore.com 935 | www.18xtube.com 936 | www.20pascals.nl 937 | www.22kkkk.com 938 | www.24-ak.ru 939 | www.24holdem.com 940 | www.24tradeplus.com 941 | www.24videos.tv 942 | www.24-xxx.biz 943 | www.30sec.info 944 | www.34.gs 945 | www.40cg.com 946 | www.50centstreetkingimmortal.com 947 | www.51.la 948 | www.59cn7.com 949 | www.60secpanic.com 950 | www.65xps.com 951 | www.69er.de 952 | www.69net.de 953 | www.77sky.de 954 | www.83net.jp 955 | www.87w.info 956 | www.99topnn.info 957 | www.100dollars-seo.com 958 | www.100shemales.com 959 | www.101flag.ru 960 | www.101raccoon.ru 961 | www.108shot.com 962 | www.121phonesex.co.uk 963 | www.123any.com 964 | www.123cha.com 965 | www.123kuma.com 966 | www.123laceypink.com 967 | www.123locker.com 968 | www.123sex.biz 969 | www.138shenbosbo.com 970 | www.166f.com 971 | www.189zx.com 972 | www.201mb.com 973 | www.202ch.com 974 | www.247lyrics.com 975 | www.300sk.com 976 | www.365locksmithsminneapolis.com 977 | www.423.ru 978 | www.529collegesaving.com 979 | www.550a.com 980 | www.777-club.ru 981 | www.883zy.com 982 | www.888.com 983 | www.0900-telefonerotik.de 984 | www.925.lt 985 | www.999webdesign.com 986 | www.1000lashes.com 987 | www.1000russianwomen.com 988 | www.1001lingerie.com 989 | www.11-15.net 990 | www.1314dh.com 991 | www.2005-search.com 992 | www.2020iscoming.info 993 | www.5241.it 994 | www.07634.com 995 | www.10000hai.com 996 | www.18744.com 997 | www.24695.com 998 | www.57883.net 999 | www.259572.com 1000 | www.271395.com 1001 | www.289931.com 1002 | www.791026.com 1003 | www.6000518.com 1004 | www.6660003.com 1005 | www.8899804.com 1006 | www.a1thumbpost.com 1007 | www.a2btrans.pl 1008 | www.a2sex.com 1009 | www.a2zgroup.in 1010 | www.a-5.info 1011 | www.a94.info 1012 | www.aaannuairex.com 1013 | www.aaaurgentcare.net 1014 | www.aab94f698f36684c5a852a2ef272e031bb.com 1015 | www.aadroid.net 1016 | www.aadultwork.com 1017 | www.aalures.com 1018 | www.aanqylta.com 1019 | www.aapz.com 1020 | www.aarbur.com 1021 | www.aaronabel.com 1022 | www.aaronautosandtrucks.com 1023 | www.aashyamayro.com 1024 | www.ab199.de 1025 | www.abacusnet.info 1026 | www.abadass.com 1027 | www.abbanreddy.com 1028 | www.abclauncher.com 1029 | www.abcsex.dk 1030 | www.abctoppictures.net 1031 | www.abdicted.com 1032 | www.abdl-adult-baby-phone-sex.info 1033 | www.abdlphone.com 1034 | www.abetran.com 1035 | www.abetting.net 1036 | www.ablefull.com 1037 | www.abogadodejacksonville.com 1038 | www.abouthomesdecorating.com 1039 | www.aboutproperty.co.uk 1040 | www.above.com 1041 | www.abrahamschildren.com 1042 | www.absolute-live.com 1043 | www.acenar.com 1044 | www.acheterviagrafr24.com 1045 | www.achterin.nl 1046 | www.aciklise.web.tr 1047 | www.acimo.com 1048 | www.acmmarketingdigital.com.br 1049 | www.acmsa.com.ar 1050 | www.acneforums.com 1051 | www.acompanhantesdeportugal.com 1052 | www.acornpointlodge.com 1053 | www.acoustoopticmodulator.com 1054 | www.acpbdf.com.br 1055 | www.acproyectos.com 1056 | www.acrh.be 1057 | www.acrowiswhite.com 1058 | www.actionmobilemarine.net 1059 | www.actionnooz.com 1060 | www.activeideas.net 1061 | www.activepr.ru 1062 | www.activewatch.ro 1063 | www.ac-transfer.com 1064 | www.actulite.com 1065 | www.adrunnr.com 1066 | www.ahasex.de 1067 | www.airmore.co 1068 | www.airnetinfotech.com 1069 | www.airpb.com 1070 | www.airportsys.com 1071 | www.aisiansex.com 1072 | www.ajansyenimedya.com 1073 | www.ajkzd9h.com 1074 | www.akaflieg-sb.de 1075 | www.akama.com 1076 | www.akariyer.com 1077 | www.akita.kz 1078 | www.aksao.com 1079 | www.aksonural.ru 1080 | www.aktivator-windows10.blogspot.com 1081 | www.akuhni.by 1082 | www.akusherok.ru 1083 | www.alabamabackpage.com 1084 | www.alamosupply.com 1085 | www.alamuk.com 1086 | www.alarash.com 1087 | www.alarmobninsk.ru 1088 | www.albamargroup.com 1089 | www.albanypowerexchange.com 1090 | www.alberguecasaanita.com 1091 | www.alblux.com 1092 | www.alboautotrasportatori.it 1093 | www.aldik.com 1094 | www.alessandraleone.com 1095 | www.alexianer-service.de 1096 | www.alexine.net 1097 | www.alexxxxpages.info 1098 | www.alfa9.com 1099 | www.alfa-img.com 1100 | www.alfa-medosmotr.ru 1101 | www.alfapro.ru 1102 | www.alfa-search.com 1103 | www.alf-img.com 1104 | www.algerianembassy.co.in 1105 | www.algodon.net 1106 | www.alibestsale.com 1107 | www.aliclonepro.xyz 1108 | www.aliecspres.com 1109 | www.alif-ba-ta.com 1110 | www.alini.de 1111 | www.alirey.com 1112 | www.alisatilsner.com 1113 | www.alive-ua.com 1114 | www.aljassarengineering.com 1115 | www.all4wap.ru 1116 | www.allcredits.su 1117 | www.allergiques.com 1118 | www.allergycenter.info 1119 | www.allornamenti.com 1120 | www.allo-sexe.com 1121 | www.alloysteel.ru 1122 | www.allpdfmags.net 1123 | www.amateursconvert.com 1124 | www.amateursexdvd.com 1125 | www.amateursexplace.com 1126 | www.amateurspain.com 1127 | www.amateurwifevids.com 1128 | www.amatrice-partouzeuse.com 1129 | www.amatrices-sexy.fr 1130 | www.amospalla.es 1131 | www.ampower.me 1132 | www.amt-k.ru 1133 | www.amung.us 1134 | www.amwatching.com 1135 | www.anal.cx 1136 | www.anal-acrobats.com 1137 | www.analdude.com 1138 | www.anale-seks.nl 1139 | www.anale-sex.nl 1140 | www.anal-et-sodomie.com 1141 | www.anal-love.net 1142 | www.analpics.net 1143 | www.anal-pictures.biz 1144 | www.anal-videos-photos.com 1145 | www.ananashotel.com 1146 | www.anatomytrains.co.uk 1147 | www.anbstudios.com 1148 | www.anchorwheelmotel.com.au 1149 | www.andersondiamonds.com 1150 | www.an-donut.com 1151 | www.android-style.com 1152 | www.anduongjsc.com 1153 | www.andydill.com 1154 | www.anews.cc 1155 | www.anewyoufitness.com 1156 | www.angelalittle.net 1157 | www.angelas-place.com 1158 | www.angelbetting.com 1159 | www.angelinfo.com 1160 | www.animadulte.com 1161 | www.animal36.com 1162 | www.animal-drawings.com 1163 | www.antcompany.com 1164 | www.anticodistretto.com 1165 | www.anticosm.com 1166 | www.antifa.co.at 1167 | www.apepix.com 1168 | www.arsinvest.it 1169 | www.ashlynnbrookevideos.com 1170 | www.aviodg.eu 1171 | www.avitocars.ru 1172 | www.avkzarabotok.info 1173 | www.avoidaroid.com 1174 | www.avon-severozapad.ru 1175 | www.avpayments.com 1176 | www.avramstroy.ru 1177 | www.azulerie.it 1178 | www.babylyst.com 1179 | www.babywantsbling.com 1180 | www.back.dog 1181 | www.backalleyblowjobs.com 1182 | www.backgroundpictures.net 1183 | www.backlink4u.net 1184 | www.backlinkwatch.com 1185 | www.backofficellc.com 1186 | www.backpaininstantrelief.com 1187 | www.backvids.com 1188 | www.bagsonsale.online 1189 | www.barmillevani.it 1190 | www.casaemily.it 1191 | www.casalespinazzella.it 1192 | www.cascinamolinodellapaglia.it 1193 | www.chalet-volpi.it 1194 | www.cialisforsalecialiscostcye.com 1195 | www.cialismed.com 1196 | www.cialiswithoutadoctor.net 1197 | www.cibersexo.eu 1198 | www.ciceklioglu.com 1199 | www.cienum.fr 1200 | www.cigar.pt 1201 | www.cigarette-online.com 1202 | www.cindyintim.de 1203 | www.cinedaily.com 1204 | www.cineface.com 1205 | www.cinema3satu.com 1206 | www.cinemabio.com 1207 | www.cinematraffic.com 1208 | www.cinepro.com 1209 | www.cingualr.com 1210 | www.comeisolarecasa.it 1211 | www.communisave.co.za 1212 | www.communitypetclinicmanteca.com 1213 | www.companies-catalog.com 1214 | www.company.com.ph 1215 | www.compassenergyservices.com 1216 | www.compitte.com 1217 | www.compositefarming.com 1218 | www.comprafacil.com.br 1219 | www.compucelunlock.net 1220 | www.comsprague.com 1221 | www.comsysnet.com 1222 | www.construfuturo.com.mx 1223 | www.construmac.com.mx 1224 | www.consultant-online.ru 1225 | www.contactos-gay.com 1226 | www.contextualyield.com 1227 | www.controlsecurity.net 1228 | www.convertwordtoexcel.com 1229 | www.cookevegas.com 1230 | www.cookingmeat.ru 1231 | www.cooknfit.com 1232 | www.coolemailnames.com 1233 | www.creativemindhacks.com 1234 | www.crystalslot.com 1235 | www.cs1g.com 1236 | www.cs-gra.pl 1237 | www.csk.ru 1238 | www.cstrespsurvey.ca 1239 | www.damafinimmobiliare.it 1240 | www.distribuzionevolantinaggio.it 1241 | www.easymetal.it 1242 | www.eremogaudio.it 1243 | www.espritensemble.com 1244 | www.essereessenza.it 1245 | www.etemis.com 1246 | www.ethan.wang 1247 | www.ethanslayton.com 1248 | www.ethnicafrique.com 1249 | www.etisalatebill.net 1250 | www.etm-consult.de 1251 | www.euadoroisso.com.br 1252 | www.euro-option.info 1253 | www.eurospanker.com 1254 | www.eu-survey.com 1255 | www.event-tracking.com 1256 | www.everestclick.com 1257 | www.every-day.net 1258 | www.everytalk.tv 1259 | www.everythingisstory.com 1260 | www.evesaddictin.com 1261 | www.evidencecleanergold.com 1262 | www.evil69.com 1263 | www.evile.co.uk 1264 | www.evkc.com 1265 | www.evogarage.com 1266 | www.exhibenfrance.com 1267 | www.exhibits4court.com 1268 | www.e-zeitung.de 1269 | www.falcoware.com 1270 | www.familienzahnaerzte.com 1271 | www.family1st.ca 1272 | www.familyholiday.ml 1273 | www.familyhomefinance.com.au 1274 | www.famir.com 1275 | www.farmafit.it 1276 | www.ferser.it 1277 | www.fincert.it 1278 | www.foone.com.br 1279 | www.freedomart.cz 1280 | www.free-gay.de 1281 | www.free-gluten.ru 1282 | www.free-groupsex.com 1283 | www.freehanbam.net 1284 | www.freehornygirls.com 1285 | www.freehostservers.com 1286 | www.freeindiangals.com 1287 | www.freeuploader.ml 1288 | www.futurouomo.it 1289 | www.fxadviceformeandyou.com 1290 | www.girlporn.ru 1291 | www.globetrotting-culture.ru 1292 | www.globusdate.com 1293 | www.glopages.ru 1294 | www.goawos.com 1295 | www.gobettygo.com 1296 | www.gobusinessloan.com 1297 | www.godrix.com 1298 | www.godsadvice.com 1299 | www.goforexvps.com 1300 | www.gofun.info 1301 | www.gommoneusato.it 1302 | www.gotwebsite1.com 1303 | www.grabbersex.com 1304 | www.grabraeuber.de 1305 | www.gracecore.com 1306 | www.gratis-sexkontakte.com 1307 | www.gravygirls.com 1308 | www.greatamericansexdiet.com 1309 | www.great-comics.com 1310 | www.greatfireoflondon.org.uk 1311 | www.greatgrace.ru 1312 | www.greatpussies.com 1313 | www.greatsexcontent.dk 1314 | www.greatsimplicity.com 1315 | www.gustomagro.it 1316 | www.habanerotaqueria.it 1317 | www.hallohaus.co 1318 | www.hmuana.com 1319 | www.huanqiucaijing.cn 1320 | www.huge-gay-cock.com 1321 | www.huisvrouwen.be 1322 | www.hukbo.com 1323 | www.humorpool.com 1324 | www.humraaz.com 1325 | www.hundejo.com 1326 | www.hunger.xyz 1327 | www.hungergame.com 1328 | www.hustlervip.net 1329 | www.hut1.ru 1330 | www.hvd-store.com 1331 | www.h-villamotel.com 1332 | www.hybrid.ru 1333 | www.hydropneuengg.com 1334 | www.hydropump.su 1335 | www.hygar.com 1336 | www.hygromycin-b-50mg-ml-solution.com 1337 | www.hyipbrowser.biz 1338 | www.hyipmanager.in 1339 | www.hymen-defloration.info 1340 | www.hypnoseterapi.com 1341 | www.hypnotone.com 1342 | www.hystersister.com 1343 | www.hy-tec.com 1344 | www.hzdoctor.com 1345 | www.i-c-c-c.com 1346 | www.ichgcp.com 1347 | www.icipourtoi.com 1348 | www.iclsas.com 1349 | www.ico.re 1350 | www.idc.com.ua 1351 | www.idealtits.net 1352 | www.ideas.com.uy 1353 | www.ideawheel.com 1354 | www.idecoideas.com 1355 | www.idkom.com 1356 | www.ido3.com 1357 | www.idolax.com 1358 | www.idolhairsalon.com 1359 | www.idolight.net 1360 | www.idrct.com 1361 | www.imageprostyle-communication.fr 1362 | www.infogiovanialtopavese.it 1363 | www.inleadership.co.nz 1364 | www.kartlab.it 1365 | www.laanchoa.it 1366 | www.lacasadialicedesenzano.it 1367 | www.ladsblue.com 1368 | www.live1powerlife.com 1369 | www.maincert.com 1370 | www.manufacta-italia.it 1371 | www.maxtek.it 1372 | www.nerodavolasicilia.it 1373 | www.nobuomo.it 1374 | www.picura.it 1375 | www.pipenv.org 1376 | www.prizesforyou.com 1377 | www.progettazione-integrata.it 1378 | www.ristorante53.it 1379 | www.ristorantebiri.it 1380 | www.ristoranteilmedioevo.it 1381 | www.rosafondente.it 1382 | www.sitononraggiungibile.it 1383 | www.solidmaker.it 1384 | www.spacebridemag.com 1385 | www.spl63.fr 1386 | www.tigustolanostracucina.it 1387 | www.townhousefilms.com 1388 | www.utopia-privacy.com 1389 | yuarra.pluto.ro 1390 | yunque.pluto.ro 1391 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/INACTIVE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/INACTIVE/list: -------------------------------------------------------------------------------- 1 | # Generated by PyFunceble (v4.0.0b47.dev) / https://git.io/vpZoI 2 | # Date of generation: 2021-05-07T18:10:53.297324 3 | 4 | 5 | www.0m4.ru 6 | www.00sexus.com 7 | www.3jmcwio.com 8 | www.3lm.info 9 | www.4o64flb.com 10 | www.4th3d48.com 11 | www.5yfi7sy.com 12 | www.7xc4n.com 13 | www.9h7n8.com 14 | www.9thien.com 15 | www.12u.info 16 | www.14b.info 17 | www.15x.info 18 | www.16aq.cn 19 | www.18teengirl.com 20 | www.19blog.com 21 | www.31seconds.net 22 | www.66av.cc 23 | www.69boysex.com 24 | www.72impala.com 25 | www.72-news.com 26 | www.78tdd75.com 27 | www.94cdn.com 28 | www.99bthgc.me 29 | www.101billion.com 30 | www.511a.cn 31 | www.888-vip.net 32 | www.1000cumshots.com 33 | www.257639.com 34 | www.a85.info 35 | www.aa81bf391151884adfa3dd677e41f94be1.com 36 | www.abacuspresents.com 37 | www.abbeyxxx.com 38 | www.acads.net 39 | www.acompanhantesbrasil.com.br 40 | www.actricesmexicanasdesnudas.com 41 | www.alanstrack.com 42 | www.alexandria-locksmithservice.com 43 | www.alfalakgifts.com 44 | www.all4invest.info 45 | www.allamericanmadetoys.com 46 | www.allanimehentai.com 47 | www.allpornauditions.com 48 | www.amateurtour.biz 49 | www.analcreampie.net 50 | www.andrewrobertsllc.info 51 | www.animalcum.net 52 | www.annotated802.site 53 | www.appyaviator.com 54 | www.atfitreasonyou.live 55 | www.avixxx.com 56 | www.avoidfilter.net 57 | www.avon-ukraine.com 58 | www.bacanal.cl 59 | www.beamfall.info 60 | www.chithra629.site 61 | www.cif.su 62 | www.cinepornox.com 63 | www.computernetworksonline.com 64 | www.com-reports.com 65 | www.comsalud360.com 66 | www.coocomall.com 67 | www.creativeteam.it 68 | www.cs6hm.com 69 | www.csgoezknife.com 70 | www.csgo-jackpot.net 71 | www.ensinger964.site 72 | www.enterprise327.site 73 | www.ethnicking.com 74 | www.eu-cookie-law.info 75 | www.eupornstar.info 76 | www.evaporator558.site 77 | www.everydresses.com 78 | www.freegayporn.biz 79 | www.free-hairy-pussy.net 80 | www.freehealthpoints.com 81 | www.freehomosexual.com 82 | www.go.biz 83 | www.goddessvip.com 84 | www.go-gal.com 85 | www.gotporn.info 86 | www.gratisweb.com 87 | www.greatest-store.com 88 | www.greatlakessurveillance.com 89 | www.huge-cocks.biz 90 | www.hugersoft.com 91 | www.hugoparisescort.com 92 | www.hunks-hardcore.com 93 | www.hunks-naked.com 94 | www.hunt4porn.com 95 | www.hybridization809.site 96 | www.hyjxtz.com 97 | www.i-dating.info 98 | www.ideibiznesa2015.ru 99 | www.idvipteam.com 100 | www.informazionicoronavirus.it 101 | www.installer892.site 102 | www.maltipoo883.site 103 | www.matureporno.info 104 | www.maxxisproduct.com 105 | www.nottepad-plus-plus.org 106 | www.nucleolus980.site 107 | www.physical309.site 108 | www.plasmid904.site 109 | www.prizesfu74.life 110 | www.sala5.it 111 | www.starebenesipuo.it 112 | www.subplots341.site 113 | www.superior400.site 114 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/INVALID/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/MALICIOUS/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/SANE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/domains/VALID/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/INACTIVE/ 5 | !/INVALID/ 6 | !/MALICIOUS/ 7 | !/SANE/ 8 | !/VALID/ 9 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/ACTIVE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/INACTIVE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/INACTIVE/hosts: -------------------------------------------------------------------------------- 1 | # Generated by PyFunceble (v4.0.0b47.dev) / https://git.io/vpZoI 2 | # Date of generation: 2021-05-07T18:10:53.346960 3 | 4 | 5 | 0.0.0.0 www.0m4.ru 6 | 0.0.0.0 www.00sexus.com 7 | 0.0.0.0 www.3jmcwio.com 8 | 0.0.0.0 www.3lm.info 9 | 0.0.0.0 www.4o64flb.com 10 | 0.0.0.0 www.4th3d48.com 11 | 0.0.0.0 www.5yfi7sy.com 12 | 0.0.0.0 www.7xc4n.com 13 | 0.0.0.0 www.9h7n8.com 14 | 0.0.0.0 www.9thien.com 15 | 0.0.0.0 www.12u.info 16 | 0.0.0.0 www.14b.info 17 | 0.0.0.0 www.15x.info 18 | 0.0.0.0 www.16aq.cn 19 | 0.0.0.0 www.18teengirl.com 20 | 0.0.0.0 www.19blog.com 21 | 0.0.0.0 www.31seconds.net 22 | 0.0.0.0 www.66av.cc 23 | 0.0.0.0 www.69boysex.com 24 | 0.0.0.0 www.72impala.com 25 | 0.0.0.0 www.72-news.com 26 | 0.0.0.0 www.78tdd75.com 27 | 0.0.0.0 www.94cdn.com 28 | 0.0.0.0 www.99bthgc.me 29 | 0.0.0.0 www.101billion.com 30 | 0.0.0.0 www.511a.cn 31 | 0.0.0.0 www.888-vip.net 32 | 0.0.0.0 www.1000cumshots.com 33 | 0.0.0.0 www.257639.com 34 | 0.0.0.0 www.a85.info 35 | 0.0.0.0 www.aa81bf391151884adfa3dd677e41f94be1.com 36 | 0.0.0.0 www.abacuspresents.com 37 | 0.0.0.0 www.abbeyxxx.com 38 | 0.0.0.0 www.acads.net 39 | 0.0.0.0 www.acompanhantesbrasil.com.br 40 | 0.0.0.0 www.actricesmexicanasdesnudas.com 41 | 0.0.0.0 www.alanstrack.com 42 | 0.0.0.0 www.alexandria-locksmithservice.com 43 | 0.0.0.0 www.alfalakgifts.com 44 | 0.0.0.0 www.all4invest.info 45 | 0.0.0.0 www.allamericanmadetoys.com 46 | 0.0.0.0 www.allanimehentai.com 47 | 0.0.0.0 www.allpornauditions.com 48 | 0.0.0.0 www.amateurtour.biz 49 | 0.0.0.0 www.analcreampie.net 50 | 0.0.0.0 www.andrewrobertsllc.info 51 | 0.0.0.0 www.animalcum.net 52 | 0.0.0.0 www.annotated802.site 53 | 0.0.0.0 www.appyaviator.com 54 | 0.0.0.0 www.atfitreasonyou.live 55 | 0.0.0.0 www.avixxx.com 56 | 0.0.0.0 www.avoidfilter.net 57 | 0.0.0.0 www.avon-ukraine.com 58 | 0.0.0.0 www.bacanal.cl 59 | 0.0.0.0 www.beamfall.info 60 | 0.0.0.0 www.chithra629.site 61 | 0.0.0.0 www.cif.su 62 | 0.0.0.0 www.cinepornox.com 63 | 0.0.0.0 www.computernetworksonline.com 64 | 0.0.0.0 www.com-reports.com 65 | 0.0.0.0 www.comsalud360.com 66 | 0.0.0.0 www.coocomall.com 67 | 0.0.0.0 www.creativeteam.it 68 | 0.0.0.0 www.cs6hm.com 69 | 0.0.0.0 www.csgoezknife.com 70 | 0.0.0.0 www.csgo-jackpot.net 71 | 0.0.0.0 www.ensinger964.site 72 | 0.0.0.0 www.enterprise327.site 73 | 0.0.0.0 www.ethnicking.com 74 | 0.0.0.0 www.eu-cookie-law.info 75 | 0.0.0.0 www.eupornstar.info 76 | 0.0.0.0 www.evaporator558.site 77 | 0.0.0.0 www.everydresses.com 78 | 0.0.0.0 www.freegayporn.biz 79 | 0.0.0.0 www.free-hairy-pussy.net 80 | 0.0.0.0 www.freehealthpoints.com 81 | 0.0.0.0 www.freehomosexual.com 82 | 0.0.0.0 www.go.biz 83 | 0.0.0.0 www.goddessvip.com 84 | 0.0.0.0 www.go-gal.com 85 | 0.0.0.0 www.gotporn.info 86 | 0.0.0.0 www.gratisweb.com 87 | 0.0.0.0 www.greatest-store.com 88 | 0.0.0.0 www.greatlakessurveillance.com 89 | 0.0.0.0 www.huge-cocks.biz 90 | 0.0.0.0 www.hugersoft.com 91 | 0.0.0.0 www.hugoparisescort.com 92 | 0.0.0.0 www.hunks-hardcore.com 93 | 0.0.0.0 www.hunks-naked.com 94 | 0.0.0.0 www.hunt4porn.com 95 | 0.0.0.0 www.hybridization809.site 96 | 0.0.0.0 www.hyjxtz.com 97 | 0.0.0.0 www.i-dating.info 98 | 0.0.0.0 www.ideibiznesa2015.ru 99 | 0.0.0.0 www.idvipteam.com 100 | 0.0.0.0 www.informazionicoronavirus.it 101 | 0.0.0.0 www.installer892.site 102 | 0.0.0.0 www.maltipoo883.site 103 | 0.0.0.0 www.matureporno.info 104 | 0.0.0.0 www.maxxisproduct.com 105 | 0.0.0.0 www.nottepad-plus-plus.org 106 | 0.0.0.0 www.nucleolus980.site 107 | 0.0.0.0 www.physical309.site 108 | 0.0.0.0 www.plasmid904.site 109 | 0.0.0.0 www.prizesfu74.life 110 | 0.0.0.0 www.sala5.it 111 | 0.0.0.0 www.starebenesipuo.it 112 | 0.0.0.0 www.subplots341.site 113 | 0.0.0.0 www.superior400.site 114 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/INVALID/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/MALICIOUS/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/SANE/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/hosts/VALID/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/date_format/ 4 | !/no_referrer/ 5 | !/percentage/ 6 | !/whois/ 7 | -------------------------------------------------------------------------------- /dev-tools/output/domains/logs/percentage/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/logs/percentage/percentage.txt: -------------------------------------------------------------------------------- 1 | # Generated by PyFunceble (v4.0.0b47.dev) / https://git.io/vpZoI 2 | # Date of generation: 2021-05-07T18:10:53.468890 3 | 4 | Status Percentage Amount 5 | ----------- ------------ ------------ 6 | ACTIVE 93% 1386 7 | INACTIVE 7% 109 8 | INVALID 0% 0 9 | -------------------------------------------------------------------------------- /dev-tools/output/domains/splitted/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dev-tools/output/domains/splitted/INACTIVE: -------------------------------------------------------------------------------- 1 | # Generated by PyFunceble (v4.0.0b47.dev) / https://git.io/vpZoI 2 | # Date of generation: 2021-05-07T17:34:11.561054 3 | 4 | Subject Status Source Expiration Date HTTP Code Checker 5 | ---------------------------------------------------------------------------------------------------- ----------- ---------- ----------------- ---------- ------------- 6 | www.00sexus.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 7 | www.0m4.ru INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 8 | www.1000cumshots.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 9 | www.101billion.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 10 | www.12u.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 11 | www.14b.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 12 | www.15x.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 13 | www.16aq.cn INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 14 | www.18teengirl.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 15 | www.19blog.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 16 | www.257639.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 17 | www.31seconds.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 18 | www.3jmcwio.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 19 | www.3lm.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 20 | www.4o64flb.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 21 | www.4th3d48.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 22 | www.511a.cn INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 23 | www.5yfi7sy.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 24 | www.66av.cc INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 25 | www.69boysex.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 26 | www.72impala.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 27 | www.72-news.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 28 | www.78tdd75.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 29 | www.7xc4n.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 30 | www.888-vip.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 31 | www.94cdn.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 32 | www.99bthgc.me INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 33 | www.9h7n8.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 34 | www.9thien.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 35 | www.a85.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 36 | www.aa81bf391151884adfa3dd677e41f94be1.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 37 | www.abacuspresents.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 38 | www.abbeyxxx.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 39 | www.acads.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 40 | www.acompanhantesbrasil.com.br INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 41 | www.actricesmexicanasdesnudas.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 42 | www.alanstrack.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 43 | www.alexandria-locksmithservice.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 44 | www.alfalakgifts.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 45 | www.all4invest.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 46 | www.allamericanmadetoys.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 47 | www.allanimehentai.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 48 | www.allpornauditions.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 49 | www.amateurtour.biz INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 50 | www.analcreampie.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 51 | www.andrewrobertsllc.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 52 | www.animalcum.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 53 | www.annotated802.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 54 | www.appyaviator.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 55 | www.atfitreasonyou.live INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 56 | www.avixxx.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 57 | www.avoidfilter.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 58 | www.avon-ukraine.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 59 | www.bacanal.cl INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 60 | www.beamfall.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 61 | www.chithra629.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 62 | www.cif.su INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 63 | www.cinepornox.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 64 | www.computernetworksonline.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 65 | www.com-reports.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 66 | www.comsalud360.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 67 | www.coocomall.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 68 | www.creativeteam.it INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 69 | www.cs6hm.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 70 | www.csgoezknife.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 71 | www.csgo-jackpot.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 72 | www.ensinger964.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 73 | www.enterprise327.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 74 | www.ethnicking.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 75 | www.eu-cookie-law.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 76 | www.eupornstar.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 77 | www.evaporator558.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 78 | www.everydresses.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 79 | www.freegayporn.biz INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 80 | www.free-hairy-pussy.net INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 81 | www.freehealthpoints.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 82 | www.freehomosexual.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 83 | www.go.biz INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 84 | www.goddessvip.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 85 | www.go-gal.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 86 | www.gotporn.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 87 | www.gratisweb.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 88 | www.greatest-store.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 89 | www.greatlakessurveillance.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 90 | www.huge-cocks.biz INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 91 | www.hugersoft.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 92 | www.hugoparisescort.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 93 | www.hunks-hardcore.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 94 | www.hunks-naked.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 95 | www.hunt4porn.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 96 | www.hybridization809.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 97 | www.hyjxtz.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 98 | www.i-dating.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 99 | www.ideibiznesa2015.ru INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 100 | www.idvipteam.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 101 | www.informazionicoronavirus.it INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 102 | www.installer892.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 103 | www.maltipoo883.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 104 | www.matureporno.info INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 105 | www.maxxisproduct.com INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 106 | www.nottepad-plus-plus.org INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 107 | www.nucleolus980.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 108 | www.physical309.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 109 | www.plasmid904.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 110 | www.prizesfu74.life INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 111 | www.sala5.it INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 112 | www.starebenesipuo.it INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 113 | www.subplots341.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 114 | www.superior400.site INACTIVE STDLOOKUP Unknown Unknown AVAILABILITY 115 | -------------------------------------------------------------------------------- /dev-tools/user_agents.json: -------------------------------------------------------------------------------- 1 | { 2 | "chrome": { 3 | "linux": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/79.0.3945.147 Safari/534.24 XiaoMi/MiuiBrowser/12.10.5-go", 4 | "macosx": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36", 5 | "win10": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.114 Safari/537.36" 6 | }, 7 | "edge": { 8 | "linux": null, 9 | "macosx": null, 10 | "win10": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.7" 11 | }, 12 | "firefox": { 13 | "linux": "Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9) Gecko/2008062315 (Gentoo) Firefox/52.0.1", 14 | "macosx": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11.2.3; rv:88.0) Gecko/20100101 Firefox/88.0", 15 | "win10": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0$\\r\\n" 16 | }, 17 | "ie": { 18 | "linux": null, 19 | "macosx": null, 20 | "win10": "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 10.0; Win64; x64; Trident/7.0; Microsoft Outlook 16.0.10373; Microsoft Outlook 16.0.10373; ms-office; MSOffice 16)" 21 | }, 22 | "opera": { 23 | "linux": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 OPR/76.0.4017.94", 24 | "macosx": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 OPR/75.0.3969.250", 25 | "win10": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 OPR/75.0.3969.243/I9g5A9gT-32" 26 | }, 27 | "safari": { 28 | "linux": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.91 Safari/537.36", 29 | "macosx": "Safari/2.0 CFNetwork/548.1.4 Darwin/11.0.0", 30 | "win10": null 31 | } 32 | } -------------------------------------------------------------------------------- /dev-tools/whois.csv: -------------------------------------------------------------------------------- 1 | subject,idna_subject,expiration_date,epoch 2 | 000free.us,000free.us,04-feb-2022,1643925600.0 3 | 007angels.com,007angels.com,14-may-2021,1620943200.0 4 | 00author.com,00author.com,13-mar-2022,1647122400.0 5 | 00go.com,00go.com,22-mar-2022,1647900000.0 6 | 00it.com,00it.com,13-mar-2022,1647122400.0 7 | 00sexus.com,00sexus.com,01-feb-2022,1643666400.0 8 | 00webcams.com,00webcams.com,21-jan-2022,1642716000.0 9 | 01-sex-amateur.info,01-sex-amateur.info,01-jul-2021,1625090400.0 10 | 017gj.com,017gj.com,03-mar-2023,1677794400.0 11 | 01apple.com,01apple.com,20-dec-2022,1671487200.0 12 | 03e.info,03e.info,12-may-2021,1620770400.0 13 | 03p.info,03p.info,21-jul-2021,1626818400.0 14 | 07634.com,07634.com,21-sep-2021,1632175200.0 15 | 09zyy.com,09zyy.com,07-dec-2021,1638828000.0 16 | 0azx1.com,0azx1.com,13-dec-2021,1639346400.0 17 | 0dax.com,0dax.com,28-oct-2021,1635372000.0 18 | 0m4.ru,0m4.ru,20-oct-2021,1634680800.0 19 | 0n-line.tv,0n-line.tv,12-dec-2021,1639260000.0 20 | 1-free-share-buttons.com,1-free-share-buttons.com,12-jan-2022,1641938400.0 21 | 1-pregnant-sex.com,1-pregnant-sex.com,21-dec-2021,1640037600.0 22 | 10000hai.com,10000hai.com,25-jan-2022,1643061600.0 23 | 1000cumshots.com,1000cumshots.com,06-apr-2022,1649196000.0 24 | 1000lashes.com,1000lashes.com,09-jan-2023,1673215200.0 25 | 1000russianwomen.com,1000russianwomen.com,25-dec-2021,1640383200.0 26 | 1001lingerie.com,1001lingerie.com,20-aug-2021,1629410400.0 27 | 100dollars-seo.com,100dollars-seo.com,23-aug-2021,1629669600.0 28 | 100shemales.com,100shemales.com,13-may-2021,1620856800.0 29 | 101billion.com,101billion.com,10-mar-2022,1646863200.0 30 | 101flag.ru,101flag.ru,01-jan-2022,1640988000.0 31 | 101raccoon.ru,101raccoon.ru,19-apr-2022,1650319200.0 32 | 108shot.com,108shot.com,22-jun-2021,1624312800.0 33 | 11-15.net,11-15.net,21-nov-2021,1637445600.0 34 | 12.com,12.com,09-nov-2021,1636408800.0 35 | 121phonesex.co.uk,121phonesex.co.uk,17-dec-2021,1639692000.0 36 | 123any.com,123any.com,05-apr-2022,1649109600.0 37 | 123cha.com,123cha.com,21-apr-2022,1650492000.0 38 | 123kuma.com,123kuma.com,07-jul-2021,1625608800.0 39 | 123laceypink.com,123laceypink.com,27-dec-2021,1640556000.0 40 | 123locker.com,123locker.com,11-aug-2021,1628632800.0 41 | 123sex.biz,123sex.biz,06-oct-2021,1633471200.0 42 | 12masterov.com,12masterov.com,11-apr-2022,1649628000.0 43 | 12research.com,12research.com,28-dec-2021,1640642400.0 44 | 12u.info,12u.info,25-nov-2021,1637791200.0 45 | 12xhardcore.com,12xhardcore.com,15-sep-2021,1631656800.0 46 | 1314dh.com,1314dh.com,30-apr-2022,1651269600.0 47 | 138shenbosbo.com,138shenbosbo.com,05-nov-2021,1636063200.0 48 | 13tabs.com,13tabs.com,14-aug-2021,1628892000.0 49 | 14b.info,14b.info,30-nov-2021,1638223200.0 50 | 14teen.com,14teen.com,09-oct-2021,1633730400.0 51 | 15x.info,15x.info,12-dec-2021,1639260000.0 52 | 166f.com,166f.com,11-aug-2021,1628632800.0 53 | 16aq.cn,16aq.cn,13-may-2021,1620856800.0 54 | 17chezhan.com,17chezhan.com,10-dec-2021,1639087200.0 55 | 17youzi.com,17youzi.com,31-oct-2021,1635631200.0 56 | 18744.com,18744.com,05-jul-2021,1625436000.0 57 | 189zx.com,189zx.com,06-jun-2021,1622930400.0 58 | 18freeporn.com,18freeporn.com,17-dec-2021,1639692000.0 59 | 18hdxxx.com,18hdxxx.com,02-jan-2022,1641074400.0 60 | 18pluscard.com,18pluscard.com,05-jan-2023,1672869600.0 61 | 18pluspics.com,18pluspics.com,24-feb-2022,1645653600.0 62 | 18plusstore.com,18plusstore.com,22-nov-2021,1637532000.0 63 | 18teengirl.com,18teengirl.com,27-mar-2022,1648332000.0 64 | 18xtube.com,18xtube.com,31-dec-2021,1640901600.0 65 | 19blog.com,19blog.com,25-oct-2021,1635112800.0 66 | 1adult.com,1adult.com,14-aug-2021,1628892000.0 67 | 1bet.com,1bet.com,10-apr-2022,1649541600.0 68 | 1ejaculationinterne.com,1ejaculationinterne.com,15-nov-2021,1636927200.0 69 | 1forced.com,1forced.com,29-sep-2021,1632866400.0 70 | 1hwy.com,1hwy.com,18-may-2021,1621288800.0 71 | 1kinobig.ru,1kinobig.ru,22-may-2021,1621634400.0 72 | 1pamm.ru,1pamm.ru,14-mar-2022,1647208800.0 73 | 1qingdao.com,1qingdao.com,17-oct-2024,1729116000.0 74 | 1re.info,1re.info,09-may-2021,1620511200.0 75 | 1stat.ru,1stat.ru,02-jul-2021,1625176800.0 76 | 1studio.net,1studio.net,25-feb-2023,1677276000.0 77 | 1unblock.com,1unblock.com,26-nov-2021,1637877600.0 78 | 1wish.net,1wish.net,11-mar-2022,1646949600.0 79 | 1worlditsolutions.com,1worlditsolutions.com,14-mar-2022,1647208800.0 80 | 2005-search.com,2005-search.com,15-may-2021,1621029600.0 81 | 201mb.com,201mb.com,07-feb-2022,1644184800.0 82 | 2020iscoming.info,2020iscoming.info,25-jul-2021,1627164000.0 83 | 202ch.com,202ch.com,08-apr-2022,1649368800.0 84 | 22kkkk.com,22kkkk.com,02-jan-2022,1641074400.0 85 | 24-ak.ru,24-ak.ru,15-sep-2021,1631656800.0 86 | 24-xxx.biz,24-xxx.biz,27-nov-2021,1637964000.0 87 | 24695.com,24695.com,12-aug-2021,1628719200.0 88 | 247lyrics.com,247lyrics.com,02-feb-2022,1643752800.0 89 | 24holdem.com,24holdem.com,27-mar-2022,1648332000.0 90 | 24tradeplus.com,24tradeplus.com,05-oct-2021,1633384800.0 91 | 24videos.tv,24videos.tv,13-jun-2021,1623535200.0 92 | 257639.com,257639.com,21-sep-2021,1632175200.0 93 | 259572.com,259572.com,05-dec-2021,1638655200.0 94 | 271395.com,271395.com,21-sep-2021,1632175200.0 95 | 289931.com,289931.com,11-sep-2021,1631311200.0 96 | 2daytrendingnews.com,2daytrendingnews.com,05-mar-2022,1646431200.0 97 | 2gay.net,2gay.net,30-sep-2021,1632952800.0 98 | 2girls1cumshot.com,2girls1cumshot.com,02-oct-2021,1633125600.0 99 | 2girls1cup-free.com,2girls1cup-free.com,09-mar-2022,1646776800.0 100 | 2kata.ru,2kata.ru,22-feb-2022,1645480800.0 101 | 2kporn.com,2kporn.com,24-nov-2021,1637704800.0 102 | 2lesbians.net,2lesbians.net,21-oct-2021,1634767200.0 103 | 2manshow.com,2manshow.com,20-apr-2022,1650405600.0 104 | 2mj.pl,2mj.pl,04-jan-2022,1641247200.0 105 | 2mouses.com,2mouses.com,23-may-2021,1621720800.0 106 | 2mycomputer.com,2mycomputer.com,02-nov-2021,1635804000.0 107 | 2n2qlh5hqcwrvo.net,2n2qlh5hqcwrvo.net,26-oct-2021,1635199200.0 108 | 2o34.com,2o34.com,07-jul-2021,1625608800.0 109 | 2p9fyvx.com,2p9fyvx.com,17-aug-2021,1629151200.0 110 | 2rich4bitches.com,2rich4bitches.com,11-jan-2022,1641852000.0 111 | 2sexy.ro,2sexy.ro,18-aug-2021,1629237600.0 112 | 2step-garage.co.uk,2step-garage.co.uk,12-sep-2021,1631397600.0 113 | 2ydian.com,2ydian.com,12-nov-2021,1636668000.0 114 | 3-dauto.com,3-dauto.com,05-nov-2021,1636063200.0 115 | 3-gay.com,3-gay.com,25-feb-2022,1645740000.0 116 | 3-letter-domains.net,3-letter-domains.net,29-mar-2022,1648504800.0 117 | 300sk.com,300sk.com,05-jun-2021,1622844000.0 118 | 30sec.info,30sec.info,21-sep-2021,1632175200.0 119 | 31seconds.net,31seconds.net,26-jan-2022,1643148000.0 120 | 34.gs,34.gs,27-oct-2021,1635285600.0 121 | 365locksmithsminneapolis.com,365locksmithsminneapolis.com,19-dec-2021,1639864800.0 122 | 3am.info,3am.info,22-apr-2022,1650578400.0 123 | 3angelsvideo.com,3angelsvideo.com,16-mar-2022,1647381600.0 124 | 3cloud.net,3cloud.net,03-jan-2022,1641160800.0 125 | 3d-daughter-list.info,3d-daughter-list.info,27-nov-2021,1637964000.0 126 | 3dbluerayplayer.com,3dbluerayplayer.com,09-may-2021,1620511200.0 127 | 3dcgfx.net,3dcgfx.net,18-jun-2021,1623967200.0 128 | 3dpassport.com,3dpassport.com,13-jun-2021,1623535200.0 129 | 3dsemulator.info,3dsemulator.info,19-feb-2022,1645221600.0 130 | 3dviolet.com,3dviolet.com,24-jun-2021,1624485600.0 131 | 3gplay.pl,3gplay.pl,01-oct-2021,1633039200.0 132 | 3henterprise.com,3henterprise.com,06-dec-2023,1701813600.0 133 | 3jmcwio.com,3jmcwio.com,09-mar-2022,1646776800.0 134 | 3lm.info,3lm.info,23-dec-2021,1640210400.0 135 | 3vig.com,3vig.com,03-jan-2022,1641160800.0 136 | 3w24.com,3w24.com,10-may-2021,1620597600.0 137 | 3weekdiet.com,3weekdiet.com,12-jul-2021,1626040800.0 138 | 3xit.net,3xit.net,28-sep-2021,1632780000.0 139 | 40cg.com,40cg.com,23-mar-2022,1647986400.0 140 | 423.ru,423.ru,04-jul-2021,1625349600.0 141 | 4asianporn.com,4asianporn.com,19-sep-2021,1632002400.0 142 | 4beast.com,4beast.com,04-dec-2021,1638568800.0 143 | 4bqs.com,4bqs.com,06-oct-2021,1633471200.0 144 | 4cock.com,4cock.com,09-oct-2021,1633730400.0 145 | 4ever.cc,4ever.cc,12-oct-2021,1633989600.0 146 | 4girlss.com,4girlss.com,09-jan-2022,1641679200.0 147 | 4love.info,4love.info,22-jun-2021,1624312800.0 148 | 4meme.com,4meme.com,26-mar-2022,1648245600.0 149 | 4o64flb.com,4o64flb.com,09-mar-2022,1646776800.0 150 | 4plus11.com,4plus11.com,11-nov-2021,1636581600.0 151 | 4pornxxx.com,4pornxxx.com,21-dec-2021,1640037600.0 152 | 4pp13.com,4pp13.com,07-oct-2021,1633557600.0 153 | 4pussies.com,4pussies.com,14-sep-2021,1631570400.0 154 | 4realzed.com,4realzed.com,30-nov-2021,1638223200.0 155 | 4replicawatch.net,4replicawatch.net,06-aug-2021,1628200800.0 156 | 4th3d48.com,4th3d48.com,09-mar-2022,1646776800.0 157 | 4u69.com,4u69.com,08-dec-2021,1638914400.0 158 | 4ur.click,4ur.click,04-mar-2022,1646344800.0 159 | 4ureyesonly.com,4ureyesonly.com,28-jul-2021,1627423200.0 160 | 4webmasters.com,4webmasters.com,01-aug-2021,1627768800.0 161 | 4xporn.com,4xporn.com,18-jan-2022,1642456800.0 162 | 4youcom.com,4youcom.com,17-oct-2021,1634421600.0 163 | 50centstreetkingimmortal.com,50centstreetkingimmortal.com,19-dec-2021,1639864800.0 164 | 51.la,51.la,17-jan-2023,1673906400.0 165 | 511a.cn,511a.cn,12-may-2021,1620770400.0 166 | 5241.it,5241.it,24-jan-2022,1642975200.0 167 | 529collegesaving.com,529collegesaving.com,01-nov-2021,1635717600.0 168 | 550a.com,550a.com,02-apr-2022,1648850400.0 169 | 57883.net,57883.net,28-jul-2021,1627423200.0 170 | 59cn7.com,59cn7.com,14-feb-2022,1644789600.0 171 | 5finder.com,5finder.com,19-oct-2021,1634594400.0 172 | 5forex.ru,5forex.ru,25-apr-2022,1650837600.0 173 | 5i2.net,5i2.net,24-aug-2021,1629756000.0 174 | 5kstore.com,5kstore.com,03-oct-2021,1633212000.0 175 | 5u.com,5u.com,17-oct-2027,1823724000.0 176 | 5udt.com,5udt.com,25-sep-2022,1664056800.0 177 | 5yfi7sy.com,5yfi7sy.com,09-mar-2022,1646776800.0 178 | 6000518.com,6000518.com,27-sep-2021,1632693600.0 179 | 60secpanic.com,60secpanic.com,20-sep-2021,1632088800.0 180 | 65xps.com,65xps.com,05-may-2021,1620165600.0 181 | 6660003.com,6660003.com,10-sep-2021,1631224800.0 182 | 66av.cc,66av.cc,31-mar-2022,1648677600.0 183 | 69boysex.com,69boysex.com,28-mar-2022,1648418400.0 184 | 6amateure.net,6amateure.net,06-oct-2021,1633471200.0 185 | 6e.co.kr,6e.co.kr,21-apr-2022,1650492000.0 186 | 6ftlady.com,6ftlady.com,14-oct-2021,1634162400.0 187 | 6server.com,6server.com,13-dec-2021,1639346400.0 188 | 6stuff.com,6stuff.com,18-jun-2021,1623967200.0 189 | 72-news.com,72-news.com,20-dec-2021,1639951200.0 190 | 72impala.com,72impala.com,21-may-2021,1621548000.0 191 | 777-club.ru,777-club.ru,12-jun-2021,1623448800.0 192 | 78tdd75.com,78tdd75.com,28-feb-2022,1645999200.0 193 | 791026.com,791026.com,10-oct-2021,1633816800.0 194 | 7fb.ru,7fb.ru,07-jul-2021,1625608800.0 195 | 7gfs.com,7gfs.com,12-apr-2022,1649714400.0 196 | 7minuteworkout.com,7minuteworkout.com,15-jan-2022,1642197600.0 197 | 7search.com,7search.com,25-may-2021,1621893600.0 198 | 7thlegion.ru,7thlegion.ru,30-aug-2021,1630274400.0 199 | 7wind.ru,7wind.ru,17-jun-2021,1623880800.0 200 | 7xc4n.com,7xc4n.com,14-feb-2022,1644789600.0 201 | 7y7.us,7y7.us,21-oct-2021,1634767200.0 202 | 87w.info,87w.info,03-jun-2021,1622671200.0 203 | 883zy.com,883zy.com,23-oct-2021,1634940000.0 204 | 888-vip.net,888-vip.net,18-dec-2021,1639778400.0 205 | 888.com,888.com,14-feb-2023,1676325600.0 206 | 8899804.com,8899804.com,10-jul-2021,1625868000.0 207 | 8gold.com,8gold.com,19-nov-2021,1637272800.0 208 | 8khmer.com,8khmer.com,30-dec-2021,1640815200.0 209 | 8rf.com,8rf.com,09-dec-2021,1639000800.0 210 | 8si.ru,8si.ru,30-oct-2021,1635544800.0 211 | 8streams.com,8streams.com,18-feb-2022,1645135200.0 212 | 8ue9q7i.com,8ue9q7i.com,09-mar-2022,1646776800.0 213 | 8xv8.com,8xv8.com,16-jan-2022,1642284000.0 214 | 925.lt,925.lt,19-sep-2023,1695074400.0 215 | 94cdn.com,94cdn.com,25-dec-2021,1640383200.0 216 | 999webdesign.com,999webdesign.com,07-sep-2021,1630965600.0 217 | 99bthgc.me,99bthgc.me,30-jan-2022,1643493600.0 218 | 99topnn.info,99topnn.info,27-nov-2021,1637964000.0 219 | 9h7n8.com,9h7n8.com,14-feb-2022,1644789600.0 220 | 9ics.cn,9ics.cn,05-oct-2021,1633384800.0 221 | 9med.net,9med.net,12-may-2021,1620770400.0 222 | 9stoneinvestments.com,9stoneinvestments.com,15-dec-2021,1639519200.0 223 | 9thien.com,9thien.com,03-apr-2022,1648936800.0 224 | a-5.info,a-5.info,01-oct-2021,1633039200.0 225 | a1thumbpost.com,a1thumbpost.com,02-jan-2022,1641074400.0 226 | a2btrans.pl,a2btrans.pl,03-aug-2021,1627941600.0 227 | a2sex.com,a2sex.com,26-dec-2021,1640469600.0 228 | a2zgroup.in,a2zgroup.in,01-mar-2022,1646085600.0 229 | a85.info,a85.info,05-apr-2022,1649109600.0 230 | a94.info,a94.info,30-nov-2021,1638223200.0 231 | aa81bf391151884adfa3dd677e41f94be1.com,aa81bf391151884adfa3dd677e41f94be1.com,27-dec-2021,1640556000.0 232 | aaannuairex.com,aaannuairex.com,05-dec-2021,1638655200.0 233 | aaaurgentcare.net,aaaurgentcare.net,18-mar-2025,1742248800.0 234 | aab94f698f36684c5a852a2ef272e031bb.com,aab94f698f36684c5a852a2ef272e031bb.com,22-mar-2022,1647900000.0 235 | aadroid.net,aadroid.net,22-may-2021,1621634400.0 236 | aadultwork.com,aadultwork.com,12-aug-2021,1628719200.0 237 | aalures.com,aalures.com,03-oct-2021,1633212000.0 238 | aanqylta.com,aanqylta.com,25-jan-2022,1643061600.0 239 | aapz.com,aapz.com,07-oct-2021,1633557600.0 240 | aarbur.com,aarbur.com,12-apr-2022,1649714400.0 241 | aaronabel.com,aaronabel.com,09-apr-2022,1649455200.0 242 | aaronautosandtrucks.com,aaronautosandtrucks.com,17-jan-2022,1642370400.0 243 | aashyamayro.com,aashyamayro.com,20-oct-2023,1697752800.0 244 | abacusnet.info,abacusnet.info,05-nov-2023,1699135200.0 245 | abacuspresents.com,abacuspresents.com,02-jan-2022,1641074400.0 246 | abadass.com,abadass.com,21-sep-2021,1632175200.0 247 | abbanreddy.com,abbanreddy.com,21-oct-2021,1634767200.0 248 | abbeyxxx.com,abbeyxxx.com,19-nov-2021,1637272800.0 249 | abclauncher.com,abclauncher.com,25-nov-2023,1700863200.0 250 | abcsex.dk,abcsex.dk,31-aug-2021,1630360800.0 251 | abctoppictures.net,abctoppictures.net,21-aug-2021,1629496800.0 252 | abdicted.com,abdicted.com,21-dec-2021,1640037600.0 253 | abdl-adult-baby-phone-sex.info,abdl-adult-baby-phone-sex.info,06-jul-2021,1625522400.0 254 | abdlphone.com,abdlphone.com,18-jan-2022,1642456800.0 255 | abetran.com,abetran.com,19-sep-2021,1632002400.0 256 | abetting.net,abetting.net,27-jan-2022,1643234400.0 257 | ablefull.com,ablefull.com,12-apr-2022,1649714400.0 258 | abogadodejacksonville.com,abogadodejacksonville.com,15-dec-2021,1639519200.0 259 | abouthomesdecorating.com,abouthomesdecorating.com,30-apr-2022,1651269600.0 260 | aboutproperty.co.uk,aboutproperty.co.uk,17-feb-2022,1645048800.0 261 | above.com,above.com,21-may-2021,1621548000.0 262 | abrahamschildren.com,abrahamschildren.com,25-jun-2021,1624572000.0 263 | absolute-live.com,absolute-live.com,04-sep-2021,1630706400.0 264 | ac-transfer.com,ac-transfer.com,27-jan-2022,1643234400.0 265 | acads.net,acads.net,05-sep-2022,1662328800.0 266 | acenar.com,acenar.com,19-jan-2022,1642543200.0 267 | acheterviagrafr24.com,acheterviagrafr24.com,22-jul-2021,1626904800.0 268 | aciklise.web.tr,aciklise.web.tr,25-may-2021,1621893600.0 269 | acimo.com,acimo.com,25-jun-2021,1624572000.0 270 | acmmarketingdigital.com.br,acmmarketingdigital.com.br,12-jan-2022,1641938400.0 271 | acmsa.com.ar,acmsa.com.ar,13-mar-2022,1647122400.0 272 | acneforums.com,acneforums.com,01-jan-2022,1640988000.0 273 | acompanhantesbrasil.com.br,acompanhantesbrasil.com.br,21-sep-2021,1632175200.0 274 | acompanhantesdeportugal.com,acompanhantesdeportugal.com,05-apr-2022,1649109600.0 275 | acornpointlodge.com,acornpointlodge.com,02-jul-2021,1625176800.0 276 | acoustoopticmodulator.com,acoustoopticmodulator.com,23-dec-2021,1640210400.0 277 | acpbdf.com.br,acpbdf.com.br,24-oct-2021,1635026400.0 278 | acproyectos.com,acproyectos.com,18-oct-2021,1634508000.0 279 | acrowiswhite.com,acrowiswhite.com,20-sep-2021,1632088800.0 280 | actionmobilemarine.net,actionmobilemarine.net,24-sep-2021,1632434400.0 281 | actionnooz.com,actionnooz.com,12-apr-2022,1649714400.0 282 | activeideas.net,activeideas.net,19-jun-2021,1624053600.0 283 | activepr.ru,activepr.ru,08-mar-2022,1646690400.0 284 | activewatch.ro,activewatch.ro,17-oct-2022,1665957600.0 285 | actricesmexicanasdesnudas.com,actricesmexicanasdesnudas.com,16-mar-2022,1647381600.0 286 | actulite.com,actulite.com,19-nov-2021,1637272800.0 287 | adrunnr.com,adrunnr.com,02-mar-2022,1646172000.0 288 | airnetinfotech.com,airnetinfotech.com,25-mar-2028,1837548000.0 289 | airpb.com,airpb.com,13-jul-2021,1626127200.0 290 | airportsys.com,airportsys.com,25-mar-2022,1648159200.0 291 | aisiansex.com,aisiansex.com,12-sep-2021,1631397600.0 292 | ajansyenimedya.com,ajansyenimedya.com,30-jan-2023,1675029600.0 293 | ajkzd9h.com,ajkzd9h.com,09-mar-2022,1646776800.0 294 | akama.com,akama.com,22-may-2021,1621634400.0 295 | akariyer.com,akariyer.com,20-jul-2021,1626732000.0 296 | aksao.com,aksao.com,18-jan-2022,1642456800.0 297 | aksonural.ru,aksonural.ru,01-mar-2022,1646085600.0 298 | akuhni.by,akuhni.by,17-apr-2022,1650146400.0 299 | akusherok.ru,akusherok.ru,30-mar-2022,1648591200.0 300 | alabamabackpage.com,alabamabackpage.com,08-sep-2021,1631052000.0 301 | alamosupply.com,alamosupply.com,30-dec-2021,1640815200.0 302 | alamuk.com,alamuk.com,28-dec-2021,1640642400.0 303 | alanstrack.com,alanstrack.com,11-may-2021,1620684000.0 304 | alarash.com,alarash.com,28-may-2021,1622152800.0 305 | alarmobninsk.ru,alarmobninsk.ru,27-apr-2022,1651010400.0 306 | albamargroup.com,albamargroup.com,04-jul-2021,1625349600.0 307 | albanypowerexchange.com,albanypowerexchange.com,09-mar-2022,1646776800.0 308 | alberguecasaanita.com,alberguecasaanita.com,17-dec-2021,1639692000.0 309 | alblux.com,alblux.com,09-dec-2021,1639000800.0 310 | alboautotrasportatori.it,alboautotrasportatori.it,09-apr-2022,1649455200.0 311 | aldik.com,aldik.com,30-may-2021,1622325600.0 312 | alessandraleone.com,alessandraleone.com,12-jan-2022,1641938400.0 313 | alexandria-locksmithservice.com,alexandria-locksmithservice.com,13-oct-2021,1634076000.0 314 | alexine.net,alexine.net,17-oct-2021,1634421600.0 315 | alexxxxpages.info,alexxxxpages.info,01-jul-2021,1625090400.0 316 | alf-img.com,alf-img.com,30-aug-2021,1630274400.0 317 | pipenv.org,pipenv.org,30-jan-2022,1643493600.0 318 | alfa-img.com,alfa-img.com,10-nov-2021,1636495200.0 319 | alfa-medosmotr.ru,alfa-medosmotr.ru,19-jan-2022,1642543200.0 320 | alfa-search.com,alfa-search.com,24-apr-2022,1650751200.0 321 | alfa9.com,alfa9.com,19-jun-2021,1624053600.0 322 | alfalakgifts.com,alfalakgifts.com,15-may-2021,1621029600.0 323 | alfapro.ru,alfapro.ru,13-jan-2022,1642024800.0 324 | algerianembassy.co.in,algerianembassy.co.in,18-dec-2021,1639778400.0 325 | algodon.net,algodon.net,18-feb-2022,1645135200.0 326 | alibestsale.com,alibestsale.com,01-nov-2021,1635717600.0 327 | aliclonepro.xyz,aliclonepro.xyz,17-jun-2021,1623880800.0 328 | aliecspres.com,aliecspres.com,30-oct-2021,1635544800.0 329 | alif-ba-ta.com,alif-ba-ta.com,09-oct-2021,1633730400.0 330 | alirey.com,alirey.com,09-jan-2022,1641679200.0 331 | alisatilsner.com,alisatilsner.com,13-aug-2021,1628805600.0 332 | alive-ua.com,alive-ua.com,06-sep-2021,1630879200.0 333 | aljassarengineering.com,aljassarengineering.com,22-sep-2021,1632261600.0 334 | all4invest.info,all4invest.info,24-sep-2021,1632434400.0 335 | all4wap.ru,all4wap.ru,21-apr-2022,1650492000.0 336 | allamericanmadetoys.com,allamericanmadetoys.com,19-nov-2021,1637272800.0 337 | allanimehentai.com,allanimehentai.com,12-mar-2022,1647036000.0 338 | allcredits.su,allcredits.su,06-nov-2021,1636149600.0 339 | allergiques.com,allergiques.com,19-mar-2022,1647640800.0 340 | allergycenter.info,allergycenter.info,09-sep-2021,1631138400.0 341 | allo-sexe.com,allo-sexe.com,16-jan-2022,1642284000.0 342 | allornamenti.com,allornamenti.com,12-mar-2022,1647036000.0 343 | alloysteel.ru,alloysteel.ru,07-sep-2021,1630965600.0 344 | allpdfmags.net,allpdfmags.net,28-nov-2021,1638050400.0 345 | allpornauditions.com,allpornauditions.com,03-oct-2021,1633212000.0 346 | amateursconvert.com,amateursconvert.com,18-may-2021,1621288800.0 347 | amateursexdvd.com,amateursexdvd.com,07-jan-2022,1641506400.0 348 | amateursexplace.com,amateursexplace.com,16-feb-2022,1644962400.0 349 | amateurspain.com,amateurspain.com,05-nov-2021,1636063200.0 350 | amateurtour.biz,amateurtour.biz,05-apr-2022,1649109600.0 351 | amateurwifevids.com,amateurwifevids.com,27-may-2021,1622066400.0 352 | amatrice-partouzeuse.com,amatrice-partouzeuse.com,22-nov-2021,1637532000.0 353 | amatrices-sexy.fr,amatrices-sexy.fr,08-oct-2021,1633644000.0 354 | ampower.me,ampower.me,05-nov-2021,1636063200.0 355 | amt-k.ru,amt-k.ru,06-mar-2022,1646517600.0 356 | amung.us,amung.us,17-mar-2022,1647468000.0 357 | amwatching.com,amwatching.com,20-sep-2022,1663624800.0 358 | an-donut.com,an-donut.com,19-dec-2021,1639864800.0 359 | anal-acrobats.com,anal-acrobats.com,04-mar-2022,1646344800.0 360 | anal-et-sodomie.com,anal-et-sodomie.com,24-oct-2021,1635026400.0 361 | anal-love.net,anal-love.net,18-jan-2022,1642456800.0 362 | anal-pictures.biz,anal-pictures.biz,29-dec-2021,1640728800.0 363 | anal-videos-photos.com,anal-videos-photos.com,06-may-2021,1620252000.0 364 | anal.cx,anal.cx,15-oct-2022,1665784800.0 365 | analcreampie.net,analcreampie.net,02-jan-2022,1641074400.0 366 | analdude.com,analdude.com,18-mar-2022,1647554400.0 367 | analpics.net,analpics.net,01-oct-2021,1633039200.0 368 | ananashotel.com,ananashotel.com,08-aug-2021,1628373600.0 369 | anatomytrains.co.uk,anatomytrains.co.uk,28-nov-2022,1669586400.0 370 | anbstudios.com,anbstudios.com,25-jan-2022,1643061600.0 371 | andersondiamonds.com,andersondiamonds.com,14-jul-2021,1626213600.0 372 | andrewrobertsllc.info,andrewrobertsllc.info,04-nov-2023,1699048800.0 373 | android-style.com,android-style.com,26-jan-2022,1643148000.0 374 | anduongjsc.com,anduongjsc.com,02-apr-2022,1648850400.0 375 | andydill.com,andydill.com,05-dec-2021,1638655200.0 376 | anews.cc,anews.cc,12-mar-2022,1647036000.0 377 | anewyoufitness.com,anewyoufitness.com,12-jul-2021,1626040800.0 378 | angelalittle.net,angelalittle.net,31-jul-2021,1627682400.0 379 | angelas-place.com,angelas-place.com,02-jun-2021,1622584800.0 380 | angelbetting.com,angelbetting.com,08-dec-2021,1638914400.0 381 | angelinfo.com,angelinfo.com,09-oct-2021,1633730400.0 382 | animadulte.com,animadulte.com,26-dec-2021,1640469600.0 383 | animal-drawings.com,animal-drawings.com,06-jan-2022,1641420000.0 384 | animal36.com,animal36.com,07-mar-2022,1646604000.0 385 | animalcum.net,animalcum.net,07-jul-2021,1625608800.0 386 | annotated802.site,annotated802.site,21-apr-2022,1650492000.0 387 | antcompany.com,antcompany.com,18-mar-2022,1647554400.0 388 | anticodistretto.com,anticodistretto.com,09-may-2021,1620511200.0 389 | anticosm.com,anticosm.com,28-dec-2021,1640642400.0 390 | apepix.com,apepix.com,16-oct-2024,1729029600.0 391 | appyaviator.com,appyaviator.com,08-feb-2022,1644271200.0 392 | arsinvest.it,arsinvest.it,15-apr-2022,1649973600.0 393 | ashlynnbrookevideos.com,ashlynnbrookevideos.com,16-sep-2021,1631743200.0 394 | atfitreasonyou.live,atfitreasonyou.live,22-apr-2022,1650578400.0 395 | avitocars.ru,avitocars.ru,24-nov-2021,1637704800.0 396 | avixxx.com,avixxx.com,15-dec-2021,1639519200.0 397 | avkzarabotok.info,avkzarabotok.info,17-feb-2022,1645048800.0 398 | avoidaroid.com,avoidaroid.com,29-nov-2021,1638136800.0 399 | avoidfilter.net,avoidfilter.net,23-mar-2022,1647986400.0 400 | avon-severozapad.ru,avon-severozapad.ru,10-jan-2022,1641765600.0 401 | avon-ukraine.com,avon-ukraine.com,09-apr-2022,1649455200.0 402 | avpayments.com,avpayments.com,08-oct-2021,1633644000.0 403 | avramstroy.ru,avramstroy.ru,05-feb-2022,1644012000.0 404 | azulerie.it,azulerie.it,14-apr-2022,1649887200.0 405 | babylyst.com,babylyst.com,18-jul-2021,1626559200.0 406 | babywantsbling.com,babywantsbling.com,16-may-2021,1621116000.0 407 | bacanal.cl,bacanal.cl,11-jan-2022,1641852000.0 408 | back.dog,back.dog,22-sep-2021,1632261600.0 409 | backalleyblowjobs.com,backalleyblowjobs.com,08-dec-2021,1638914400.0 410 | backgroundpictures.net,backgroundpictures.net,17-nov-2021,1637100000.0 411 | backlink4u.net,backlink4u.net,09-oct-2021,1633730400.0 412 | backlinkwatch.com,backlinkwatch.com,02-may-2022,1651442400.0 413 | backofficellc.com,backofficellc.com,17-feb-2023,1676584800.0 414 | backpaininstantrelief.com,backpaininstantrelief.com,27-jul-2021,1627336800.0 415 | backvids.com,backvids.com,30-dec-2021,1640815200.0 416 | bagsonsale.online,bagsonsale.online,21-apr-2022,1650492000.0 417 | barmillevani.it,barmillevani.it,19-apr-2022,1650319200.0 418 | beamfall.info,beamfall.info,18-mar-2022,1647554400.0 419 | casaemily.it,casaemily.it,16-apr-2022,1650060000.0 420 | casalespinazzella.it,casalespinazzella.it,14-apr-2022,1649887200.0 421 | cascinamolinodellapaglia.it,cascinamolinodellapaglia.it,12-apr-2022,1649714400.0 422 | chalet-volpi.it,chalet-volpi.it,15-apr-2022,1649973600.0 423 | chithra629.site,chithra629.site,20-apr-2022,1650405600.0 424 | cialisforsalecialiscostcye.com,cialisforsalecialiscostcye.com,05-apr-2022,1649109600.0 425 | cialismed.com,cialismed.com,15-aug-2021,1628978400.0 426 | cialiswithoutadoctor.net,cialiswithoutadoctor.net,06-jun-2021,1622930400.0 427 | ciceklioglu.com,ciceklioglu.com,21-nov-2022,1668981600.0 428 | cienum.fr,cienum.fr,21-nov-2021,1637445600.0 429 | cif.su,cif.su,10-jan-2022,1641765600.0 430 | cigar.pt,cigar.pt,01-aug-2021,1627768800.0 431 | cigarette-online.com,cigarette-online.com,31-may-2021,1622412000.0 432 | cinedaily.com,cinedaily.com,29-jun-2021,1624917600.0 433 | cineface.com,cineface.com,18-jul-2021,1626559200.0 434 | cinema3satu.com,cinema3satu.com,31-oct-2021,1635631200.0 435 | cinemabio.com,cinemabio.com,26-jan-2022,1643148000.0 436 | cinematraffic.com,cinematraffic.com,04-dec-2021,1638568800.0 437 | cinepornox.com,cinepornox.com,03-oct-2021,1633212000.0 438 | cinepro.com,cinepro.com,02-jun-2021,1622584800.0 439 | cingualr.com,cingualr.com,14-feb-2022,1644789600.0 440 | com-reports.com,com-reports.com,30-sep-2021,1632952800.0 441 | comeisolarecasa.it,comeisolarecasa.it,14-apr-2022,1649887200.0 442 | communisave.co.za,communisave.co.za,06-jul-2021,1625522400.0 443 | communitypetclinicmanteca.com,communitypetclinicmanteca.com,29-jul-2021,1627509600.0 444 | companies-catalog.com,companies-catalog.com,31-may-2021,1622412000.0 445 | compassenergyservices.com,compassenergyservices.com,24-jan-2024,1706047200.0 446 | compitte.com,compitte.com,09-nov-2021,1636408800.0 447 | compositefarming.com,compositefarming.com,17-may-2021,1621202400.0 448 | comprafacil.com.br,comprafacil.com.br,19-oct-2022,1666130400.0 449 | compucelunlock.net,compucelunlock.net,22-may-2021,1621634400.0 450 | computernetworksonline.com,computernetworksonline.com,10-oct-2021,1633816800.0 451 | comsalud360.com,comsalud360.com,21-oct-2021,1634767200.0 452 | comsprague.com,comsprague.com,08-may-2021,1620424800.0 453 | comsysnet.com,comsysnet.com,10-oct-2021,1633816800.0 454 | construfuturo.com.mx,construfuturo.com.mx,23-sep-2021,1632348000.0 455 | construmac.com.mx,construmac.com.mx,17-sep-2021,1631829600.0 456 | consultant-online.ru,consultant-online.ru,24-may-2021,1621807200.0 457 | contactos-gay.com,contactos-gay.com,14-feb-2022,1644789600.0 458 | contextualyield.com,contextualyield.com,30-aug-2021,1630274400.0 459 | controlsecurity.net,controlsecurity.net,01-jan-2022,1640988000.0 460 | convertwordtoexcel.com,convertwordtoexcel.com,06-sep-2021,1630879200.0 461 | coocomall.com,coocomall.com,19-jul-2021,1626645600.0 462 | cookevegas.com,cookevegas.com,20-jan-2022,1642629600.0 463 | cooknfit.com,cooknfit.com,27-nov-2021,1637964000.0 464 | coolemailnames.com,coolemailnames.com,09-apr-2022,1649455200.0 465 | creativemindhacks.com,creativemindhacks.com,04-jan-2022,1641247200.0 466 | crystalslot.com,crystalslot.com,13-oct-2028,1855000800.0 467 | cs-gra.pl,cs-gra.pl,16-oct-2021,1634335200.0 468 | cs1g.com,cs1g.com,04-jun-2021,1622757600.0 469 | cs6hm.com,cs6hm.com,21-may-2021,1621548000.0 470 | csgo-jackpot.net,csgo-jackpot.net,28-feb-2022,1645999200.0 471 | csgoezknife.com,csgoezknife.com,28-nov-2021,1638050400.0 472 | csk.ru,csk.ru,01-jun-2021,1622498400.0 473 | cstrespsurvey.ca,cstrespsurvey.ca,15-jun-2021,1623708000.0 474 | damafinimmobiliare.it,damafinimmobiliare.it,19-apr-2022,1650319200.0 475 | distribuzionevolantinaggio.it,distribuzionevolantinaggio.it,16-apr-2022,1650060000.0 476 | easymetal.it,easymetal.it,16-apr-2022,1650060000.0 477 | ensinger964.site,ensinger964.site,21-apr-2022,1650492000.0 478 | enterprise327.site,enterprise327.site,21-apr-2022,1650492000.0 479 | eremogaudio.it,eremogaudio.it,15-apr-2022,1649973600.0 480 | espritensemble.com,espritensemble.com,25-sep-2021,1632520800.0 481 | essereessenza.it,essereessenza.it,21-apr-2022,1650492000.0 482 | etemis.com,etemis.com,24-mar-2022,1648072800.0 483 | ethan.wang,ethan.wang,31-may-2021,1622412000.0 484 | ethanslayton.com,ethanslayton.com,23-jul-2021,1626991200.0 485 | ethnicafrique.com,ethnicafrique.com,22-mar-2022,1647900000.0 486 | ethnicking.com,ethnicking.com,13-jul-2022,1657663200.0 487 | etisalatebill.net,etisalatebill.net,10-dec-2021,1639087200.0 488 | eu-cookie-law.info,eu-cookie-law.info,26-may-2021,1621980000.0 489 | eu-survey.com,eu-survey.com,31-may-2021,1622412000.0 490 | euadoroisso.com.br,euadoroisso.com.br,05-sep-2021,1630792800.0 491 | eupornstar.info,eupornstar.info,29-jul-2021,1627509600.0 492 | euro-option.info,euro-option.info,07-apr-2022,1649282400.0 493 | eurospanker.com,eurospanker.com,11-oct-2021,1633903200.0 494 | evaporator558.site,evaporator558.site,21-apr-2022,1650492000.0 495 | event-tracking.com,event-tracking.com,24-jul-2021,1627077600.0 496 | everestclick.com,everestclick.com,01-may-2022,1651356000.0 497 | every-day.net,every-day.net,12-dec-2021,1639260000.0 498 | everydresses.com,everydresses.com,16-mar-2022,1647381600.0 499 | everytalk.tv,everytalk.tv,29-nov-2021,1638136800.0 500 | everythingisstory.com,everythingisstory.com,01-jul-2021,1625090400.0 501 | evesaddictin.com,evesaddictin.com,18-may-2021,1621288800.0 502 | evidencecleanergold.com,evidencecleanergold.com,24-jan-2022,1642975200.0 503 | evil69.com,evil69.com,28-sep-2021,1632780000.0 504 | evile.co.uk,evile.co.uk,07-sep-2021,1630965600.0 505 | evkc.com,evkc.com,21-jun-2021,1624226400.0 506 | evogarage.com,evogarage.com,26-feb-2022,1645826400.0 507 | exhibenfrance.com,exhibenfrance.com,22-nov-2021,1637532000.0 508 | exhibits4court.com,exhibits4court.com,17-mar-2022,1647468000.0 509 | falcoware.com,falcoware.com,31-jul-2021,1627682400.0 510 | family1st.ca,family1st.ca,01-dec-2021,1638309600.0 511 | famir.com,famir.com,06-jun-2021,1622930400.0 512 | farmafit.it,farmafit.it,21-apr-2022,1650492000.0 513 | ferser.it,ferser.it,14-apr-2022,1649887200.0 514 | fincert.it,fincert.it,19-apr-2022,1650319200.0 515 | fingerprintjs.com,fingerprintjs.com,03-feb-2030,1896300000.0 516 | foone.com.br,foone.com.br,18-sep-2021,1631916000.0 517 | free-gluten.ru,free-gluten.ru,27-jan-2022,1643234400.0 518 | free-groupsex.com,free-groupsex.com,02-dec-2021,1638396000.0 519 | free-hairy-pussy.net,free-hairy-pussy.net,27-feb-2022,1645912800.0 520 | freedomart.cz,freedomart.cz,12-jun-2021,1623448800.0 521 | freegayporn.biz,freegayporn.biz,13-sep-2021,1631484000.0 522 | freehanbam.net,freehanbam.net,27-apr-2022,1651010400.0 523 | freehealthpoints.com,freehealthpoints.com,20-aug-2021,1629410400.0 524 | freehomosexual.com,freehomosexual.com,17-sep-2021,1631829600.0 525 | freehornygirls.com,freehornygirls.com,26-may-2021,1621980000.0 526 | freehostservers.com,freehostservers.com,17-dec-2021,1639692000.0 527 | freeindiangals.com,freeindiangals.com,10-apr-2022,1649541600.0 528 | futurouomo.it,futurouomo.it,16-apr-2022,1650060000.0 529 | fxadviceformeandyou.com,fxadviceformeandyou.com,19-jan-2022,1642543200.0 530 | girlporn.ru,girlporn.ru,25-dec-2021,1640383200.0 531 | globetrotting-culture.ru,globetrotting-culture.ru,04-jan-2022,1641247200.0 532 | globusdate.com,globusdate.com,21-oct-2021,1634767200.0 533 | glopages.ru,glopages.ru,13-oct-2021,1634076000.0 534 | go-gal.com,go-gal.com,18-oct-2021,1634508000.0 535 | go.biz,go.biz,05-dec-2021,1638655200.0 536 | goawos.com,goawos.com,02-feb-2022,1643752800.0 537 | gobettygo.com,gobettygo.com,04-mar-2022,1646344800.0 538 | gobusinessloan.com,gobusinessloan.com,29-oct-2021,1635458400.0 539 | goddessvip.com,goddessvip.com,27-oct-2021,1635285600.0 540 | godrix.com,godrix.com,03-nov-2021,1635890400.0 541 | godsadvice.com,godsadvice.com,31-jan-2022,1643580000.0 542 | goforexvps.com,goforexvps.com,19-aug-2021,1629324000.0 543 | gofun.info,gofun.info,19-jul-2021,1626645600.0 544 | gommoneusato.it,gommoneusato.it,16-apr-2022,1650060000.0 545 | gotporn.info,gotporn.info,23-jan-2022,1642888800.0 546 | gotwebsite1.com,gotwebsite1.com,03-oct-2021,1633212000.0 547 | grabbersex.com,grabbersex.com,16-may-2021,1621116000.0 548 | gracecore.com,gracecore.com,09-nov-2023,1699480800.0 549 | grafit.pl,grafit.pl,26-mar-2022,1648245600.0 550 | gratis-sexkontakte.com,gratis-sexkontakte.com,19-may-2021,1621375200.0 551 | gratisweb.com,gratisweb.com,20-aug-2021,1629410400.0 552 | gravygirls.com,gravygirls.com,01-dec-2021,1638309600.0 553 | great-comics.com,great-comics.com,23-oct-2021,1634940000.0 554 | greatamericansexdiet.com,greatamericansexdiet.com,28-sep-2021,1632780000.0 555 | greatest-store.com,greatest-store.com,17-oct-2021,1634421600.0 556 | greatfireoflondon.org.uk,greatfireoflondon.org.uk,08-mar-2022,1646690400.0 557 | greatgrace.ru,greatgrace.ru,03-jan-2022,1641160800.0 558 | greatlakessurveillance.com,greatlakessurveillance.com,26-jul-2021,1627250400.0 559 | greatpussies.com,greatpussies.com,12-nov-2021,1636668000.0 560 | greatsexcontent.dk,greatsexcontent.dk,31-mar-2022,1648677600.0 561 | greatsimplicity.com,greatsimplicity.com,06-dec-2021,1638741600.0 562 | gustomagro.it,gustomagro.it,18-apr-2022,1650232800.0 563 | h-villamotel.com,h-villamotel.com,27-mar-2022,1648332000.0 564 | habanerotaqueria.it,habanerotaqueria.it,14-apr-2022,1649887200.0 565 | hallohaus.co,hallohaus.co,22-may-2021,1621634400.0 566 | hmuana.com,hmuana.com,29-mar-2022,1648504800.0 567 | huanqiucaijing.cn,huanqiucaijing.cn,17-jul-2023,1689544800.0 568 | huge-gay-cock.com,huge-gay-cock.com,29-dec-2021,1640728800.0 569 | hugersoft.com,hugersoft.com,04-feb-2022,1643925600.0 570 | hugoparisescort.com,hugoparisescort.com,11-nov-2021,1636581600.0 571 | hukbo.com,hukbo.com,30-nov-2021,1638223200.0 572 | humorpool.com,humorpool.com,11-jan-2022,1641852000.0 573 | humraaz.com,humraaz.com,31-jul-2021,1627682400.0 574 | hundejo.com,hundejo.com,15-jul-2021,1626300000.0 575 | hunger.xyz,hunger.xyz,05-jan-2022,1641333600.0 576 | hungergame.com,hungergame.com,06-apr-2022,1649196000.0 577 | hunks-hardcore.com,hunks-hardcore.com,05-may-2021,1620165600.0 578 | hunks-naked.com,hunks-naked.com,07-may-2021,1620338400.0 579 | hunt4porn.com,hunt4porn.com,23-oct-2021,1634940000.0 580 | hustlervip.net,hustlervip.net,12-oct-2021,1633989600.0 581 | hut1.ru,hut1.ru,07-feb-2022,1644184800.0 582 | hvd-store.com,hvd-store.com,25-apr-2022,1650837600.0 583 | hy-tec.com,hy-tec.com,19-oct-2021,1634594400.0 584 | hybrid.ru,hybrid.ru,26-may-2021,1621980000.0 585 | hybridization809.site,hybridization809.site,21-apr-2022,1650492000.0 586 | hydropneuengg.com,hydropneuengg.com,29-nov-2021,1638136800.0 587 | hydropump.su,hydropump.su,14-apr-2022,1649887200.0 588 | hygar.com,hygar.com,13-dec-2021,1639346400.0 589 | hygromycin-b-50mg-ml-solution.com,hygromycin-b-50mg-ml-solution.com,24-mar-2022,1648072800.0 590 | hyipbrowser.biz,hyipbrowser.biz,25-nov-2021,1637791200.0 591 | hyipmanager.in,hyipmanager.in,03-dec-2021,1638482400.0 592 | hyjxtz.com,hyjxtz.com,25-feb-2022,1645740000.0 593 | hymen-defloration.info,hymen-defloration.info,27-nov-2021,1637964000.0 594 | hypnoseterapi.com,hypnoseterapi.com,08-apr-2022,1649368800.0 595 | hypnotone.com,hypnotone.com,20-mar-2022,1647727200.0 596 | hystersister.com,hystersister.com,14-feb-2022,1644789600.0 597 | hzdoctor.com,hzdoctor.com,22-jan-2022,1642802400.0 598 | i-c-c-c.com,i-c-c-c.com,06-mar-2022,1646517600.0 599 | i-dating.info,i-dating.info,05-jul-2021,1625436000.0 600 | ichgcp.com,ichgcp.com,12-jul-2021,1626040800.0 601 | icipourtoi.com,icipourtoi.com,26-mar-2022,1648245600.0 602 | iclsas.com,iclsas.com,24-may-2022,1653343200.0 603 | ico.re,ico.re,08-sep-2021,1631052000.0 604 | idc.com.ua,idc.com.ua,08-apr-2022,1649368800.0 605 | idealtits.net,idealtits.net,16-dec-2021,1639605600.0 606 | ideawheel.com,ideawheel.com,23-may-2021,1621720800.0 607 | idecoideas.com,idecoideas.com,19-jan-2022,1642543200.0 608 | ideibiznesa2015.ru,ideibiznesa2015.ru,01-dec-2021,1638309600.0 609 | idkom.com,idkom.com,09-sep-2021,1631138400.0 610 | ido3.com,ido3.com,07-may-2021,1620338400.0 611 | idolax.com,idolax.com,02-nov-2021,1635804000.0 612 | idolhairsalon.com,idolhairsalon.com,26-sep-2021,1632607200.0 613 | idolight.net,idolight.net,25-oct-2021,1635112800.0 614 | idrct.com,idrct.com,20-sep-2021,1632088800.0 615 | idvipteam.com,idvipteam.com,05-may-2021,1620165600.0 616 | ilovevitaly.com,ilovevitaly.com,19-jul-2021,1626645600.0 617 | imageprostyle-communication.fr,imageprostyle-communication.fr,03-apr-2022,1648936800.0 618 | infogiovanialtopavese.it,infogiovanialtopavese.it,14-apr-2022,1649887200.0 619 | informazionicoronavirus.it,informazionicoronavirus.it,21-apr-2022,1650492000.0 620 | installer892.site,installer892.site,20-apr-2022,1650405600.0 621 | intermesh.net,intermesh.net,10-jan-2029,1862690400.0 622 | ionproxy.com,ionproxy.com,21-sep-2023,1695247200.0 623 | iontau.com,iontau.com,13-oct-2021,1634076000.0 624 | kartlab.it,kartlab.it,15-apr-2022,1649973600.0 625 | kbthai.com,kbthai.com,05-nov-2022,1667599200.0 626 | kellnerengenharia.com.br,kellnerengenharia.com.br,12-aug-2021,1628719200.0 627 | laanchoa.it,laanchoa.it,18-apr-2022,1650232800.0 628 | lacasadialicedesenzano.it,lacasadialicedesenzano.it,19-apr-2022,1650319200.0 629 | ladsblue.com,ladsblue.com,17-jun-2021,1623880800.0 630 | laparfumotec.com,laparfumotec.com,08-nov-2021,1636322400.0 631 | live1powerlife.com,live1powerlife.com,30-jan-2022,1643493600.0 632 | maincert.com,maincert.com,19-jul-2021,1626645600.0 633 | maltipoo883.site,maltipoo883.site,21-apr-2022,1650492000.0 634 | manufacta-italia.it,manufacta-italia.it,15-apr-2022,1649973600.0 635 | matureporno.info,matureporno.info,02-dec-2021,1638396000.0 636 | maxtek.it,maxtek.it,19-apr-2022,1650319200.0 637 | maxxisproduct.com,maxxisproduct.com,30-jan-2022,1643493600.0 638 | myblankit.com,myblankit.com,10-feb-2022,1644444000.0 639 | nerodavolasicilia.it,nerodavolasicilia.it,21-apr-2022,1650492000.0 640 | nobuomo.it,nobuomo.it,11-apr-2022,1649628000.0 641 | nottepad-plus-plus.org,nottepad-plus-plus.org,24-dec-2021,1640296800.0 642 | nucleolus980.site,nucleolus980.site,21-apr-2022,1650492000.0 643 | physical309.site,physical309.site,21-apr-2022,1650492000.0 644 | picura.it,picura.it,21-apr-2022,1650492000.0 645 | plasmid904.site,plasmid904.site,21-apr-2022,1650492000.0 646 | porn-sex-free.com,porn-sex-free.com,22-sep-2021,1632261600.0 647 | prizesforyou.com,prizesforyou.com,05-jan-2022,1641333600.0 648 | prizesfu74.life,prizesfu74.life,05-feb-2022,1644012000.0 649 | progettazione-integrata.it,progettazione-integrata.it,19-apr-2022,1650319200.0 650 | ristorante53.it,ristorante53.it,19-apr-2022,1650319200.0 651 | ristorantebiri.it,ristorantebiri.it,19-apr-2022,1650319200.0 652 | ristoranteilmedioevo.it,ristoranteilmedioevo.it,15-apr-2022,1649973600.0 653 | rosafondente.it,rosafondente.it,16-apr-2022,1650060000.0 654 | sala5.it,sala5.it,21-apr-2022,1650492000.0 655 | shodanhq.com,shodanhq.com,18-feb-2026,1771365600.0 656 | sitononraggiungibile.it,sitononraggiungibile.it,14-apr-2022,1649887200.0 657 | smokesonstate.com,smokesonstate.com,15-feb-2023,1676412000.0 658 | snkschool.com,snkschool.com,17-dec-2022,1671228000.0 659 | solidmaker.it,solidmaker.it,16-apr-2022,1650060000.0 660 | spacebridemag.com,spacebridemag.com,27-jun-2021,1624744800.0 661 | spl63.fr,spl63.fr,03-aug-2021,1627941600.0 662 | stadiumcrossing.com,stadiumcrossing.com,31-jan-2023,1675116000.0 663 | starebenesipuo.it,starebenesipuo.it,21-apr-2022,1650492000.0 664 | subplots341.site,subplots341.site,20-apr-2022,1650405600.0 665 | superior400.site,superior400.site,21-apr-2022,1650492000.0 666 | tigustolanostracucina.it,tigustolanostracucina.it,21-apr-2022,1650492000.0 667 | townhousefilms.com,townhousefilms.com,25-jun-2021,1624572000.0 668 | utopia-privacy.com,utopia-privacy.com,08-jul-2021,1625695200.0 669 | zverokruh-shop.cz,zverokruh-shop.cz,12-dec-2021,1639260000.0 670 | cookingmeat.ru,cookingmeat.ru,03-may-2022,1651528800.0 671 | familienzahnaerzte.com,familienzahnaerzte.com,04-may-2022,1651615200.0 672 | airmore.co,airmore.co,06-may-2022,1651788000.0 673 | -------------------------------------------------------------------------------- /domains: -------------------------------------------------------------------------------- 1 | 000free.us 2 | 000.gaysexe.free.fr 3 | 000tristanprod.free.fr 4 | 007angels.com 5 | 00author.com 6 | 00go.com 7 | 00it.com 8 | 00sexus.com 9 | 00webcams.com 10 | 017gj.com 11 | 01apple.com 12 | 01-sex-amateur.info 13 | 03e.info 14 | 03p.info 15 | 07634.com 16 | 0900-telefonerotik.de 17 | 09zyy.com 18 | 0azx1.com 19 | 0dax.com 20 | 0lovespells0.blogspot.com 21 | 0m4.ru 22 | 0n-line.tv 23 | 0q2.sitey.me 24 | 10000hai.com 25 | 10000verges.free.fr 26 | 1000bannerx.free.fr 27 | 1000cumshots.com 28 | 1000lashes.com 29 | 1000russianwomen.com 30 | 1001lingerie.com 31 | 100dollars-seo.com 32 | 100filles.free.fr 33 | 100shemales.com 34 | 101billion.com 35 | 101flag.ru 36 | 101raccoon.ru 37 | 108shot.com 38 | 1.114central.com 39 | 11-15.net 40 | 11235813.webzdarma.cz 41 | 121phonesex.co.uk 42 | 123any.com 43 | 123boy.free.fr 44 | 123branlemoi.free.fr 45 | 123cha.com 46 | 123kia.free.fr 47 | 123kuma.com 48 | 123laceypink.com 49 | 123latina.free.fr 50 | 123locker.com 51 | 123sex.biz 52 | 12cams.be 53 | 12.com 54 | 1-2fly-befragung.de 55 | 12masterov.com 56 | 12research.com 57 | 12u.info 58 | 12xhardcore.com 59 | 1314dh.com 60 | 13453765871837679316.googlegroups.com 61 | 138shenbosbo.com 62 | 13tabs.com 63 | 14b.info 64 | 14teen.com 65 | 15x.info 66 | 166f.com 67 | 16aq.cn 68 | 17chezhan.com 69 | 17youzi.com 70 | 18744.com 71 | 189-211-177-171.static.axtel.net 72 | 189zx.com 73 | 18freeporn.com 74 | 18hdxxx.com 75 | 18pluscard.com 76 | 18pluspics.com 77 | 18plusstore.com 78 | 18teengirl.com 79 | 18xtube.com 80 | 19blog.com 81 | 1adult.com 82 | 1bet.com 83 | 1ejaculationinterne.com 84 | 1forced.com 85 | 1-free-share-buttons.com 86 | 1hwy.com 87 | 1kinobig.ru 88 | 1pamm.ru 89 | 1-pregnant-sex.com 90 | 1qingdao.com 91 | 1re.info 92 | 1sexe1.free.fr 93 | 1stat.ru 94 | 1studio.net 95 | 1unblock.com 96 | 1wish.net 97 | 1worlditsolutions.com 98 | 1zone1.free.fr 99 | 2005-search.com 100 | 201mb.com 101 | 2020iscoming.info 102 | 202ch.com 103 | 20pascals.nl 104 | 22kkkk.com 105 | 24695.com 106 | 247lyrics.com 107 | 24-ak.ru 108 | 24holdem.com 109 | 24tradeplus.com 110 | 24videos.tv 111 | 24-xxx.biz 112 | 2560.fd.mobile.tv.sms13.de 113 | 257639.com 114 | 259572.com 115 | 271395.com 116 | 289931.com 117 | 2daytrendingnews.com 118 | 2gay.net 119 | 2girls1cumshot.com 120 | 2girls1cup-free.com 121 | 2kata.ru 122 | 2kporn.com 123 | 2lesbians.net 124 | 2manshow.com 125 | 2mj.pl 126 | 2mouses.com 127 | 2mycomputer.com 128 | 2n2qlh5hqcwrvo.net 129 | 2o34.com 130 | 2p9fyvx.com 131 | 2rich4bitches.com 132 | 2sexy.ro 133 | 2.speedknow.co 134 | 2step-garage.co.uk 135 | 2wink.com.au 136 | 2ydian.com 137 | 300sk.com 138 | 30hardcore.galleryprogram.com 139 | 30sec.info 140 | 31seconds.net 141 | 34.gs 142 | 365locksmithsminneapolis.com 143 | 3am.info 144 | 3angelsvideo.com 145 | 3cloud.net 146 | 3date.de 147 | 3-dauto.com 148 | 3dbluerayplayer.com 149 | 3dcgfx.net 150 | 3d-daughter-list.info 151 | 3d-hentai.de 152 | 3donlinegames.de 153 | 3dpassport.com 154 | 3dsemulator.info 155 | 3dviolet.com 156 | 3-gay.com 157 | 3gplay.pl 158 | 3henterprise.com 159 | 3jmcwio.com 160 | 3-letter-domains.net 161 | 3lm.info 162 | 3vig.com 163 | 3w24.com 164 | 3weekdiet.com 165 | 3xit.net 166 | 40cg.com 167 | 40hardcore.galleryprogram.com 168 | 423.ru 169 | 4asianporn.com 170 | 4beast.com 171 | 4biogas.de 172 | 4bqs.com 173 | 4cock.com 174 | 4ever.cc 175 | 4girlss.com 176 | 4love.info 177 | 4meme.com 178 | 4o64flb.com 179 | 4plus11.com 180 | 4pornxxx.com 181 | 4pp13.com 182 | 4pussies.com 183 | 4realzed.com 184 | 4replicawatch.net 185 | 4takt-oel.de 186 | 4th3d48.com 187 | 4u69.com 188 | 4ur.click 189 | 4ureyesonly.com 190 | 4webmasters.com 191 | 4wheel.de 192 | 4xporn.com 193 | 4youcom.com 194 | 50centstreetkingimmortal.com 195 | 50hardcore.galleryprogram.com 196 | 511a.cn 197 | 51.la 198 | 5241.it 199 | 529collegesaving.com 200 | 550a.com 201 | 57883.net 202 | 59cn7.com 203 | 5finder.com 204 | 5forex.ru 205 | 5i2.net 206 | 5kstore.com 207 | 5u.com 208 | 5udt.com 209 | 5wh.co.zw 210 | 5yfi7sy.com 211 | 6000518.com 212 | 60secpanic.com 213 | 65xps.com 214 | 6660003.com 215 | 66av.cc 216 | 69boysex.com 217 | 69er.de 218 | 69net.de 219 | 6amateure.net 220 | 6e.co.kr 221 | 6ftlady.com 222 | 6ox.de 223 | 6server.com 224 | 6stuff.com 225 | 72impala.com 226 | 72-news.com 227 | 777-club.ru 228 | 77sky.de 229 | 78tdd75.com 230 | 791026.com 231 | 7fb.ru 232 | 7gfs.com 233 | 7minuteworkout.com 234 | 7search.com 235 | 7thlegion.ru 236 | 7wind.ru 237 | 7xc4n.com 238 | 7y7.us 239 | 83net.jp 240 | 87w.info 241 | 883zy.com 242 | 888.com 243 | 888-vip.net 244 | 8899804.com 245 | 8fvchzuz.myutilitydomain.com 246 | 8gold.com 247 | 8khmer.com 248 | 8rf.com 249 | 8si.ru 250 | 8streams.com 251 | 8ue9q7i.com 252 | 8xv8.com 253 | 925.lt 254 | 94cdn.com 255 | 97fn1ej0.myutilitydomain.com 256 | 999webdesign.com 257 | 99bthgc.me 258 | 99topnn.info 259 | 9aad7115.amy.gs 260 | 9h7n8.com 261 | 9ics.cn 262 | 9med.net 263 | 9stoneinvestments.com 264 | 9thien.com 265 | a0152829.xsph.ru 266 | a1thumbpost.com 267 | a2btrans.pl 268 | a2sex.com 269 | a2zgroup.in 270 | a460.cell.phone.ringtone.samsung.sms13.de 271 | a-5.info 272 | a85.info 273 | a94.info 274 | aa81bf391151884adfa3dd677e41f94be1.com 275 | aaannuairex.com 276 | aaaurgentcare.net 277 | aab94f698f36684c5a852a2ef272e031bb.com 278 | aadroid.net 279 | aadultwork.com 280 | a.ajkelra.com 281 | aalures.com 282 | aanqylta.com 283 | a.applvn.com 284 | aapz.com 285 | aarbur.com 286 | aaronabel.com 287 | aaronautosandtrucks.com 288 | aashyamayro.com 289 | a.avalhukof.com 290 | ab199.de 291 | abacusnet.info 292 | abacuspresents.com 293 | abadass.com 294 | abbanreddy.com 295 | abbeyxxx.com 296 | abbywintersnudes.thumblogger.com 297 | abclauncher.com 298 | abcsex.dk 299 | abctoppictures.net 300 | abdicted.com 301 | abdl-adult-baby-phone-sex.info 302 | abdlphone.com 303 | abetran.com 304 | abetting.net 305 | ablefull.com 306 | abogadodejacksonville.com 307 | abonne100.free.fr 308 | abouthomesdecorating.com 309 | aboutproperty.co.uk 310 | above.com 311 | abrahamschildren.com 312 | absolute-live.com 313 | ab.teenx.free.fr 314 | acads.net 315 | account.paypal-inc.tribesiren.com 316 | acenar.com 317 | acheterviagrafr24.com 318 | achterin.nl 319 | aciklise.web.tr 320 | acimo.com 321 | acmmarketingdigital.com.br 322 | acmsa.com.ar 323 | acneforums.com 324 | acompanhantesbrasil.com.br 325 | acompanhantesdeportugal.com 326 | acornpointlodge.com 327 | acoustoopticmodulator.com 328 | acpbdf.com.br 329 | acproyectos.com 330 | acrh.be 331 | acrowiswhite.com 332 | actionmobilemarine.net 333 | actionnooz.com 334 | activeideas.net 335 | activepr.ru 336 | activewatch.ro 337 | ac-transfer.com 338 | actricesmexicanasdesnudas.com 339 | actulite.com 340 | ad.bubblestat.com 341 | adrunnr.com 342 | ahasex.de 343 | airmore.co 344 | airnetinfotech.com 345 | airpb.com 346 | airportsys.com 347 | aisiansex.com 348 | ajansyenimedya.com 349 | ajkzd9h.com 350 | akaflieg-sb.de 351 | akama.com 352 | akariyer.com 353 | akcr.free.fr 354 | akita.kz 355 | akku.mondo.trium.mitsubishi.sms13.de 356 | aksao.com 357 | aksonural.ru 358 | aktivator-windows10.blogspot.com 359 | akuhni.by 360 | akusherok.ru 361 | alabamabackpage.com 362 | alamosupply.com 363 | alamuk.com 364 | alanstrack.com 365 | alarash.com 366 | alarmobninsk.ru 367 | albamargroup.com 368 | albanypowerexchange.com 369 | albaphotos.free.fr 370 | alberguecasaanita.com 371 | alblux.com 372 | alboautotrasportatori.it 373 | aldik.com 374 | aldo061.free.fr 375 | aldo063.free.fr 376 | alessandraleone.com 377 | alexandria-locksmithservice.com 378 | alexianer-service.de 379 | alexine.net 380 | alexxxxpages.info 381 | alfa9.com 382 | alfa-img.com 383 | alfalakgifts.com 384 | alfa-medosmotr.ru 385 | alfapro.ru 386 | alfa-search.com 387 | alf-img.com 388 | algerianembassy.co.in 389 | algodon.net 390 | alibestsale.com 391 | alice20.free.fr 392 | aliciatrans.free.fr 393 | aliclonepro.xyz 394 | aliecspres.com 395 | alif-ba-ta.com 396 | alini.de 397 | alirey.com 398 | alisatilsner.com 399 | alive-ua.com 400 | alizedusud.free.fr 401 | aljassarengineering.com 402 | all4invest.info 403 | all4wap.ru 404 | all.alisatilsner.com 405 | allamericanmadetoys.com 406 | allanimehentai.com 407 | allboard.xobor.de 408 | allcredits.su 409 | allergiques.com 410 | allergycenter.info 411 | alleron.andree.free.fr 412 | allornamenti.com 413 | allo-sexe.com 414 | alloysteel.ru 415 | allpdfmags.net 416 | allpornauditions.com 417 | amateurs-cam.0my.net 418 | amateursconvert.com 419 | amateursexdvd.com 420 | amateursexplace.com 421 | amateurs.jerkr.com 422 | amateurspain.com 423 | amateurtour.biz 424 | amateurwifevids.com 425 | amatrice-partouzeuse.com 426 | amatrices-sexy.fr 427 | amatrixe.free.fr 428 | amatvideo.free.fr 429 | ampower.me 430 | amt-k.ru 431 | amung.us 432 | amwatching.com 433 | anal-acrobats.com 434 | analcreampie.net 435 | anal.cx 436 | analdude.com 437 | anale-seks.nl 438 | anale-sex.nl 439 | anal-et-sodomie.com 440 | anal-love.net 441 | analog.cell.phone.service.sms13.de 442 | analog.sms13.de 443 | analpics.net 444 | anal-pictures.biz 445 | analsexphoto.yourfreesites.com 446 | anal-videos-photos.com 447 | ananashotel.com 448 | anatomytrains.co.uk 449 | anbstudios.com 450 | anchorwheelmotel.com.au 451 | andersondiamonds.com 452 | an-donut.com 453 | andrewrobertsllc.info 454 | android-style.com 455 | anduongjsc.com 456 | andydill.com 457 | anews.cc 458 | anewyoufitness.com 459 | angelalittle.net 460 | angelas-place.com 461 | angelbetting.com 462 | angelinfo.com 463 | angelinna.free.fr 464 | animadulte.com 465 | animal36.com 466 | animalcum.net 467 | animal-drawings.com 468 | annotated802.site 469 | anolysis.privacy.cliqz.com 470 | antcompany.com 471 | anticodistretto.com 472 | anticosm.com 473 | antifa.co.at 474 | apepix.com 475 | aphrodisia01.free.fr 476 | appyaviator.com 477 | arsinvest.it 478 | ashlynnbrookevideos.com 479 | atfitreasonyou.live 480 | aviodg.eu 481 | avitocars.ru 482 | avixxx.com 483 | avkzarabotok.info 484 | avoidaroid.com 485 | avoidfilter.net 486 | avon-severozapad.ru 487 | avon-ukraine.com 488 | avpayments.com 489 | avramstroy.ru 490 | ayerbo.xhost.ro 491 | azulerie.it 492 | babsy.foreverhorny.com 493 | babylyst.com 494 | babywantsbling.com 495 | bacanal.cl 496 | backalleyblowjobs.com 497 | back.dog 498 | backdoor.thumblogger.com 499 | backgroundpictures.net 500 | backlink4u.net 501 | backlinkwatch.com 502 | backofficellc.com 503 | backpaininstantrelief.com 504 | backuperwebcam.weebly.com 505 | backvids.com 506 | bag.mobile.system.video.sms13.de 507 | bagsonsale.online 508 | barmillevani.it 509 | beamfall.info 510 | casaemily.it 511 | casalespinazzella.it 512 | cascinamolinodellapaglia.it 513 | chalet-volpi.it 514 | chithra629.site 515 | cialisforsalecialiscostcye.com 516 | cialismed.com 517 | cialiswithoutadoctor.net 518 | cibersexo.eu 519 | ciceklioglu.com 520 | ciel7.free.fr 521 | cienum.fr 522 | cif.su 523 | cigarette-online.com 524 | cigar.pt 525 | cindyintim.de 526 | cinedaily.com 527 | cineface.com 528 | cinema3satu.com 529 | cinemabio.com 530 | cinematraffic.com 531 | cinepornox.com 532 | cinepro.com 533 | cingualr.com 534 | collector-hpn.cliqz.com 535 | collector.hpn.cliqz.com 536 | comeisolarecasa.it 537 | communisave.co.za 538 | community.allhiphop.com 539 | communitypetclinicmanteca.com 540 | companies-catalog.com 541 | company.com.ph 542 | compassenergyservices.com 543 | compitte.com 544 | compositefarming.com 545 | comprafacil.com.br 546 | compucelunlock.net 547 | computernetworksonline.com 548 | com-reports.com 549 | comsalud360.com 550 | comsprague.com 551 | comsysnet.com 552 | construfuturo.com.mx 553 | construmac.com.mx 554 | consultant-online.ru 555 | contactos-gay.com 556 | content.joinaxxess.com 557 | content.seerealgirls.com 558 | contextualyield.com 559 | controlsecurity.net 560 | convertwordtoexcel.com 561 | coocomall.com 562 | cookevegas.com 563 | cookielawblog.wordpress.com 564 | cookingmeat.ru 565 | cooknfit.com 566 | coolemailnames.com 567 | creativemindhacks.com 568 | creativeteam.it 569 | crystalslot.com 570 | cs1g.com 571 | cs6hm.com 572 | csgoezknife.com 573 | csgo-jackpot.net 574 | cs-gra.pl 575 | csk.ru 576 | cstrespsurvey.ca 577 | damafinimmobiliare.it 578 | distribuzionevolantinaggio.it 579 | docs.pipenv.org 580 | easymetal.it 581 | ensinger964.site 582 | enterprise327.site 583 | eremogaudio.it 584 | espritensemble.com 585 | essereessenza.it 586 | etemis.com 587 | ethanslayton.com 588 | ethan.wang 589 | ethnicafrique.com 590 | ethnicking.com 591 | etisalatebill.net 592 | etm-consult.de 593 | euadoroisso.com.br 594 | eu-cookie-law.info 595 | eupornstar.info 596 | euro-option.info 597 | eurospanker.com 598 | eurovisions.free.fr 599 | eu-survey.com 600 | evaporator558.site 601 | event-tracking.com 602 | everestclick.com 603 | every-day.net 604 | everydresses.com 605 | everytalk.tv 606 | everythingisstory.com 607 | evesaddictin.com 608 | evidencecleanergold.com 609 | evil69.com 610 | evile.co.uk 611 | evkc.com 612 | evogarage.com 613 | exhibenfrance.com 614 | exhibits4court.com 615 | e-zeitung.de 616 | falcoware.com 617 | familienzahnaerzte.com 618 | family1st.ca 619 | familyholiday.ml 620 | familyhomefinance.com.au 621 | famir.com 622 | farmafit.it 623 | fd1.eye.to 624 | fd2.eye.to 625 | fd4.eye.to 626 | ferser.it 627 | fincert.it 628 | foone.com.br 629 | freedomart.cz 630 | free-gay.de 631 | freegayporn.biz 632 | free-gluten.ru 633 | free-groupsex.com 634 | free-hairy-pussy.net 635 | freehanbam.net 636 | freehealthpoints.com 637 | freehomosexual.com 638 | freehornygirls.com 639 | freehostservers.com 640 | freeindiangals.com 641 | freeuploader.ml 642 | futurouomo.it 643 | fxadviceformeandyou.com 644 | fx.gtop.ro 645 | girlporn.ru 646 | globetrotting-culture.ru 647 | globusdate.com 648 | glopages.ru 649 | goawos.com 650 | gobettygo.com 651 | go.biz 652 | gobusinessloan.com 653 | goddessvip.com 654 | godrix.com 655 | godsadvice.com 656 | goforexvps.com 657 | gofun.info 658 | go-gal.com 659 | gommoneusato.it 660 | gotporn.info 661 | gotwebsite1.com 662 | gov.yanao.ru 663 | grabbersex.com 664 | grabraeuber.de 665 | gracecore.com 666 | gratis-sexkontakte.com 667 | gratis.sms.senden.sms13.de 668 | gratisweb.com 669 | gravygirls.com 670 | greatamericansexdiet.com 671 | great-comics.com 672 | greatest-store.com 673 | greatfind-a.akamaihd.net 674 | greatfireoflondon.org.uk 675 | greatgrace.ru 676 | greatlakessurveillance.com 677 | greatpussies.com 678 | greatsexcontent.dk 679 | greatsimplicity.com 680 | gustomagro.it 681 | habanerotaqueria.it 682 | hallohaus.co 683 | hmuana.com 684 | hpn-collector.cliqz.com 685 | huanqiucaijing.cn 686 | huge-cocks.biz 687 | huge-gay-cock.com 688 | hugersoft.com 689 | hugoparisescort.com 690 | huisvrouwen.be 691 | hukbo.com 692 | humorcartoes.com.sapo.pt 693 | humorpool.com 694 | humortadelacartoes.com.sapo.pt 695 | humraaz.com 696 | hundejo.com 697 | hungergame.com 698 | hunger.xyz 699 | hunks-hardcore.com 700 | hunks-naked.com 701 | hunshop.natureflower.com 702 | hunt4porn.com 703 | hustlervip.net 704 | hustoon.over-blog.com 705 | hut1.ru 706 | hvd-store.com 707 | h-villamotel.com 708 | hybridization809.site 709 | hybrid.ru 710 | hydropneuengg.com 711 | hydropump.su 712 | hygar.com 713 | hygromycin-b-50mg-ml-solution.com 714 | hyipbrowser.biz 715 | hyipmanager.in 716 | hyjxtz.com 717 | hymen-defloration.info 718 | hypnoseterapi.com 719 | hypnotone.com 720 | hystersister.com 721 | hy-tec.com 722 | hzdoctor.com 723 | i-c-c-c.com 724 | ichgcp.com 725 | icipourtoi.com 726 | iclsas.com 727 | ico.re 728 | i-dating.info 729 | idc.com.ua 730 | idealtits.net 731 | ideas.com.uy 732 | ideawheel.com 733 | idecoideas.com 734 | ideibiznesa2015.ru 735 | idkom.com 736 | ido3.com 737 | idolax.com 738 | idolhairsalon.com 739 | idolight.net 740 | idrct.com 741 | idvipteam.com 742 | iframes.pornprosnetwork.com 743 | imageprostyle-communication.fr 744 | imap.dpsl.net 745 | indetiske.ya.ru 746 | infogiovanialtopavese.it 747 | informazionicoronavirus.it 748 | inleadership.co.nz 749 | installer892.site 750 | kartlab.it 751 | laanchoa.it 752 | lacasadialicedesenzano.it 753 | ladsblue.com 754 | library.cowley.edu 755 | live1powerlife.com 756 | maincert.com 757 | maltipoo883.site 758 | manufacta-italia.it 759 | matureporno.info 760 | maxtek.it 761 | maxxisproduct.com 762 | nerodavolasicilia.it 763 | nobuomo.it 764 | nottepad-plus-plus.org 765 | nucleolus980.site 766 | physical309.site 767 | picura.it 768 | pipenv.org 769 | plasmid904.site 770 | prizesforyou.com 771 | prizesfu74.life 772 | progettazione-integrata.it 773 | ristorante53.it 774 | ristorantebiri.it 775 | ristoranteilmedioevo.it 776 | rosafondente.it 777 | sala5.it 778 | sitononraggiungibile.it 779 | solidmaker.it 780 | spacebridemag.com 781 | spl63.fr 782 | ssl.eroscomix.com 783 | starebenesipuo.it 784 | stats.cliqz.com 785 | subplots341.site 786 | superior400.site 787 | tigustolanostracucina.it 788 | townhousefilms.com 789 | utopia-privacy.com 790 | www.000free.us 791 | www.007angels.com 792 | www.00author.com 793 | www.00go.com 794 | www.00it.com 795 | www.00webcams.com 796 | www.017gj.com 797 | www.01apple.com 798 | www.01-sex-amateur.info 799 | www.03e.info 800 | www.03p.info 801 | www.07634.com 802 | www.0900-telefonerotik.de 803 | www.09zyy.com 804 | www.0azx1.com 805 | www.0dax.com 806 | www.0lovespells0.blogspot.com 807 | www.0n-line.tv 808 | www.10000hai.com 809 | www.1000lashes.com 810 | www.1000russianwomen.com 811 | www.1001lingerie.com 812 | www.100dollars-seo.com 813 | www.100shemales.com 814 | www.101flag.ru 815 | www.101raccoon.ru 816 | www.108shot.com 817 | www.11-15.net 818 | www.121phonesex.co.uk 819 | www.123any.com 820 | www.123cha.com 821 | www.123kuma.com 822 | www.123laceypink.com 823 | www.123locker.com 824 | www.123sex.biz 825 | www.12cams.be 826 | www.12.com 827 | www.1-2fly-befragung.de 828 | www.12masterov.com 829 | www.12research.com 830 | www.12xhardcore.com 831 | www.1314dh.com 832 | www.138shenbosbo.com 833 | www.13tabs.com 834 | www.14teen.com 835 | www.166f.com 836 | www.17chezhan.com 837 | www.17youzi.com 838 | www.18744.com 839 | www.189zx.com 840 | www.18freeporn.com 841 | www.18hdxxx.com 842 | www.18pluscard.com 843 | www.18pluspics.com 844 | www.18plusstore.com 845 | www.18xtube.com 846 | www.1adult.com 847 | www.1bet.com 848 | www.1ejaculationinterne.com 849 | www.1forced.com 850 | www.1-free-share-buttons.com 851 | www.1hwy.com 852 | www.1kinobig.ru 853 | www.1pamm.ru 854 | www.1-pregnant-sex.com 855 | www.1qingdao.com 856 | www.1re.info 857 | www.1stat.ru 858 | www.1studio.net 859 | www.1unblock.com 860 | www.1wish.net 861 | www.1worlditsolutions.com 862 | www.2005-search.com 863 | www.201mb.com 864 | www.2020iscoming.info 865 | www.202ch.com 866 | www.20pascals.nl 867 | www.22kkkk.com 868 | www.24695.com 869 | www.247lyrics.com 870 | www.24-ak.ru 871 | www.24holdem.com 872 | www.24tradeplus.com 873 | www.24videos.tv 874 | www.24-xxx.biz 875 | www.259572.com 876 | www.271395.com 877 | www.289931.com 878 | www.2daytrendingnews.com 879 | www.2gay.net 880 | www.2girls1cumshot.com 881 | www.2girls1cup-free.com 882 | www.2kata.ru 883 | www.2kporn.com 884 | www.2lesbians.net 885 | www.2manshow.com 886 | www.2mj.pl 887 | www.2mouses.com 888 | www.2mycomputer.com 889 | www.2n2qlh5hqcwrvo.net 890 | www.2o34.com 891 | www.2p9fyvx.com 892 | www.2rich4bitches.com 893 | www.2sexy.ro 894 | www.2step-garage.co.uk 895 | www.2wink.com.au 896 | www.2ydian.com 897 | www.300sk.com 898 | www.30sec.info 899 | www.34.gs 900 | www.365locksmithsminneapolis.com 901 | www.3am.info 902 | www.3angelsvideo.com 903 | www.3cloud.net 904 | www.3date.de 905 | www.3-dauto.com 906 | www.3dbluerayplayer.com 907 | www.3dcgfx.net 908 | www.3d-daughter-list.info 909 | www.3d-hentai.de 910 | www.3donlinegames.de 911 | www.3dpassport.com 912 | www.3dsemulator.info 913 | www.3dviolet.com 914 | www.3-gay.com 915 | www.3gplay.pl 916 | www.3henterprise.com 917 | www.3-letter-domains.net 918 | www.3vig.com 919 | www.3w24.com 920 | www.3weekdiet.com 921 | www.3xit.net 922 | www.40cg.com 923 | www.423.ru 924 | www.4asianporn.com 925 | www.4beast.com 926 | www.4biogas.de 927 | www.4bqs.com 928 | www.4cock.com 929 | www.4ever.cc 930 | www.4girlss.com 931 | www.4love.info 932 | www.4meme.com 933 | www.4plus11.com 934 | www.4pornxxx.com 935 | www.4pp13.com 936 | www.4pussies.com 937 | www.4realzed.com 938 | www.4replicawatch.net 939 | www.4takt-oel.de 940 | www.4u69.com 941 | www.4ur.click 942 | www.4ureyesonly.com 943 | www.4webmasters.com 944 | www.4wheel.de 945 | www.4xporn.com 946 | www.4youcom.com 947 | www.50centstreetkingimmortal.com 948 | www.51.la 949 | www.5241.it 950 | www.529collegesaving.com 951 | www.550a.com 952 | www.57883.net 953 | www.59cn7.com 954 | www.5finder.com 955 | www.5forex.ru 956 | www.5i2.net 957 | www.5kstore.com 958 | www.5u.com 959 | www.5udt.com 960 | www.5wh.co.zw 961 | www.6000518.com 962 | www.60secpanic.com 963 | www.65xps.com 964 | www.6660003.com 965 | www.69er.de 966 | www.69net.de 967 | www.6amateure.net 968 | www.6e.co.kr 969 | www.6ftlady.com 970 | www.6ox.de 971 | www.6server.com 972 | www.6stuff.com 973 | www.777-club.ru 974 | www.77sky.de 975 | www.791026.com 976 | www.7fb.ru 977 | www.7gfs.com 978 | www.7minuteworkout.com 979 | www.7search.com 980 | www.7thlegion.ru 981 | www.7wind.ru 982 | www.7y7.us 983 | www.83net.jp 984 | www.87w.info 985 | www.883zy.com 986 | www.888.com 987 | www.8899804.com 988 | www.8gold.com 989 | www.8khmer.com 990 | www.8rf.com 991 | www.8si.ru 992 | www.8streams.com 993 | www.8ue9q7i.com 994 | www.8xv8.com 995 | www.925.lt 996 | www.999webdesign.com 997 | www.99topnn.info 998 | www.9ics.cn 999 | www.9med.net 1000 | www.9stoneinvestments.com 1001 | www.a1thumbpost.com 1002 | www.a2btrans.pl 1003 | www.a2sex.com 1004 | www.a2zgroup.in 1005 | www.a-5.info 1006 | www.a94.info 1007 | www.aaannuairex.com 1008 | www.aaaurgentcare.net 1009 | www.aab94f698f36684c5a852a2ef272e031bb.com 1010 | www.aadroid.net 1011 | www.aadultwork.com 1012 | www.aalures.com 1013 | www.aanqylta.com 1014 | www.aapz.com 1015 | www.aarbur.com 1016 | www.aaronabel.com 1017 | www.aaronautosandtrucks.com 1018 | www.aashyamayro.com 1019 | www.ab199.de 1020 | www.abacusnet.info 1021 | www.abadass.com 1022 | www.abbanreddy.com 1023 | www.abclauncher.com 1024 | www.abcsex.dk 1025 | www.abctoppictures.net 1026 | www.abdicted.com 1027 | www.abdl-adult-baby-phone-sex.info 1028 | www.abdlphone.com 1029 | www.abetran.com 1030 | www.abetting.net 1031 | www.ablefull.com 1032 | www.abogadodejacksonville.com 1033 | www.abouthomesdecorating.com 1034 | www.aboutproperty.co.uk 1035 | www.above.com 1036 | www.abrahamschildren.com 1037 | www.absolute-live.com 1038 | www.acenar.com 1039 | www.acheterviagrafr24.com 1040 | www.achterin.nl 1041 | www.aciklise.web.tr 1042 | www.acimo.com 1043 | www.acmmarketingdigital.com.br 1044 | www.acmsa.com.ar 1045 | www.acneforums.com 1046 | www.acompanhantesdeportugal.com 1047 | www.acornpointlodge.com 1048 | www.acoustoopticmodulator.com 1049 | www.acpbdf.com.br 1050 | www.acproyectos.com 1051 | www.acrh.be 1052 | www.acrowiswhite.com 1053 | www.actionmobilemarine.net 1054 | www.actionnooz.com 1055 | www.activeideas.net 1056 | www.activepr.ru 1057 | www.activewatch.ro 1058 | www.ac-transfer.com 1059 | www.actulite.com 1060 | www.adrunnr.com 1061 | www.ahasex.de 1062 | www.airmore.co 1063 | www.airnetinfotech.com 1064 | www.airpb.com 1065 | www.airportsys.com 1066 | www.aisiansex.com 1067 | www.ajansyenimedya.com 1068 | www.ajkzd9h.com 1069 | www.akaflieg-sb.de 1070 | www.akama.com 1071 | www.akariyer.com 1072 | www.akita.kz 1073 | www.aksao.com 1074 | www.aksonural.ru 1075 | www.aktivator-windows10.blogspot.com 1076 | www.akuhni.by 1077 | www.akusherok.ru 1078 | www.alabamabackpage.com 1079 | www.alamosupply.com 1080 | www.alamuk.com 1081 | www.alarash.com 1082 | www.alarmobninsk.ru 1083 | www.albamargroup.com 1084 | www.albanypowerexchange.com 1085 | www.alberguecasaanita.com 1086 | www.alblux.com 1087 | www.alboautotrasportatori.it 1088 | www.aldik.com 1089 | www.alessandraleone.com 1090 | www.alexianer-service.de 1091 | www.alexine.net 1092 | www.alexxxxpages.info 1093 | www.alfa9.com 1094 | www.alfa-img.com 1095 | www.alfa-medosmotr.ru 1096 | www.alfapro.ru 1097 | www.alfa-search.com 1098 | www.alf-img.com 1099 | www.algerianembassy.co.in 1100 | www.algodon.net 1101 | www.alibestsale.com 1102 | www.aliclonepro.xyz 1103 | www.aliecspres.com 1104 | www.alif-ba-ta.com 1105 | www.alini.de 1106 | www.alirey.com 1107 | www.alisatilsner.com 1108 | www.alive-ua.com 1109 | www.aljassarengineering.com 1110 | www.all4wap.ru 1111 | www.allcredits.su 1112 | www.allergiques.com 1113 | www.allergycenter.info 1114 | www.allornamenti.com 1115 | www.allo-sexe.com 1116 | www.alloysteel.ru 1117 | www.allpdfmags.net 1118 | www.amateursconvert.com 1119 | www.amateursexdvd.com 1120 | www.amateursexplace.com 1121 | www.amateurspain.com 1122 | www.amateurwifevids.com 1123 | www.amatrice-partouzeuse.com 1124 | www.amatrices-sexy.fr 1125 | www.ampower.me 1126 | www.amt-k.ru 1127 | www.amung.us 1128 | www.amwatching.com 1129 | www.anal-acrobats.com 1130 | www.anal.cx 1131 | www.analdude.com 1132 | www.anale-seks.nl 1133 | www.anale-sex.nl 1134 | www.anal-et-sodomie.com 1135 | www.anal-love.net 1136 | www.analpics.net 1137 | www.anal-pictures.biz 1138 | www.anal-videos-photos.com 1139 | www.ananashotel.com 1140 | www.anatomytrains.co.uk 1141 | www.anbstudios.com 1142 | www.anchorwheelmotel.com.au 1143 | www.andersondiamonds.com 1144 | www.an-donut.com 1145 | www.android-style.com 1146 | www.anduongjsc.com 1147 | www.andydill.com 1148 | www.anews.cc 1149 | www.anewyoufitness.com 1150 | www.angelalittle.net 1151 | www.angelas-place.com 1152 | www.angelbetting.com 1153 | www.angelinfo.com 1154 | www.animadulte.com 1155 | www.animal36.com 1156 | www.animal-drawings.com 1157 | www.antcompany.com 1158 | www.anticodistretto.com 1159 | www.anticosm.com 1160 | www.antifa.co.at 1161 | www.apepix.com 1162 | www.arsinvest.it 1163 | www.ashlynnbrookevideos.com 1164 | www.aviodg.eu 1165 | www.avitocars.ru 1166 | www.avkzarabotok.info 1167 | www.avoidaroid.com 1168 | www.avon-severozapad.ru 1169 | www.avpayments.com 1170 | www.avramstroy.ru 1171 | www.azulerie.it 1172 | www.babylyst.com 1173 | www.babywantsbling.com 1174 | www.backalleyblowjobs.com 1175 | www.back.dog 1176 | www.backgroundpictures.net 1177 | www.backlink4u.net 1178 | www.backlinkwatch.com 1179 | www.backofficellc.com 1180 | www.backpaininstantrelief.com 1181 | www.backvids.com 1182 | www.bagsonsale.online 1183 | www.barmillevani.it 1184 | www.casaemily.it 1185 | www.casalespinazzella.it 1186 | www.cascinamolinodellapaglia.it 1187 | www.chalet-volpi.it 1188 | www.cialisforsalecialiscostcye.com 1189 | www.cialismed.com 1190 | www.cialiswithoutadoctor.net 1191 | www.cibersexo.eu 1192 | www.ciceklioglu.com 1193 | www.cienum.fr 1194 | www.cigarette-online.com 1195 | www.cigar.pt 1196 | www.cindyintim.de 1197 | www.cinedaily.com 1198 | www.cineface.com 1199 | www.cinema3satu.com 1200 | www.cinemabio.com 1201 | www.cinematraffic.com 1202 | www.cinepro.com 1203 | www.cingualr.com 1204 | www.comeisolarecasa.it 1205 | www.communisave.co.za 1206 | www.communitypetclinicmanteca.com 1207 | www.companies-catalog.com 1208 | www.company.com.ph 1209 | www.compassenergyservices.com 1210 | www.compitte.com 1211 | www.compositefarming.com 1212 | www.comprafacil.com.br 1213 | www.compucelunlock.net 1214 | www.comsprague.com 1215 | www.comsysnet.com 1216 | www.construfuturo.com.mx 1217 | www.construmac.com.mx 1218 | www.consultant-online.ru 1219 | www.contactos-gay.com 1220 | www.contextualyield.com 1221 | www.controlsecurity.net 1222 | www.convertwordtoexcel.com 1223 | www.cookevegas.com 1224 | www.cookingmeat.ru 1225 | www.cooknfit.com 1226 | www.coolemailnames.com 1227 | www.creativemindhacks.com 1228 | www.crystalslot.com 1229 | www.cs1g.com 1230 | www.cs-gra.pl 1231 | www.csk.ru 1232 | www.cstrespsurvey.ca 1233 | www.damafinimmobiliare.it 1234 | www.distribuzionevolantinaggio.it 1235 | www.easymetal.it 1236 | www.eremogaudio.it 1237 | www.espritensemble.com 1238 | www.essereessenza.it 1239 | www.etemis.com 1240 | www.ethanslayton.com 1241 | www.ethan.wang 1242 | www.ethnicafrique.com 1243 | www.etisalatebill.net 1244 | www.etm-consult.de 1245 | www.euadoroisso.com.br 1246 | www.euro-option.info 1247 | www.eurospanker.com 1248 | www.eu-survey.com 1249 | www.event-tracking.com 1250 | www.everestclick.com 1251 | www.every-day.net 1252 | www.everytalk.tv 1253 | www.everythingisstory.com 1254 | www.evesaddictin.com 1255 | www.evidencecleanergold.com 1256 | www.evil69.com 1257 | www.evile.co.uk 1258 | www.evkc.com 1259 | www.evogarage.com 1260 | www.exhibenfrance.com 1261 | www.exhibits4court.com 1262 | www.e-zeitung.de 1263 | www.falcoware.com 1264 | www.familienzahnaerzte.com 1265 | www.family1st.ca 1266 | www.familyholiday.ml 1267 | www.familyhomefinance.com.au 1268 | www.famir.com 1269 | www.farmafit.it 1270 | www.ferser.it 1271 | www.fincert.it 1272 | www.foone.com.br 1273 | www.freedomart.cz 1274 | www.free-gay.de 1275 | www.free-gluten.ru 1276 | www.free-groupsex.com 1277 | www.freehanbam.net 1278 | www.freehornygirls.com 1279 | www.freehostservers.com 1280 | www.freeindiangals.com 1281 | www.freeuploader.ml 1282 | www.futurouomo.it 1283 | www.fxadviceformeandyou.com 1284 | www.girlporn.ru 1285 | www.globetrotting-culture.ru 1286 | www.globusdate.com 1287 | www.glopages.ru 1288 | www.goawos.com 1289 | www.gobettygo.com 1290 | www.gobusinessloan.com 1291 | www.godrix.com 1292 | www.godsadvice.com 1293 | www.goforexvps.com 1294 | www.gofun.info 1295 | www.gommoneusato.it 1296 | www.gotwebsite1.com 1297 | www.grabbersex.com 1298 | www.grabraeuber.de 1299 | www.gracecore.com 1300 | www.gratis-sexkontakte.com 1301 | www.gravygirls.com 1302 | www.greatamericansexdiet.com 1303 | www.great-comics.com 1304 | www.greatfireoflondon.org.uk 1305 | www.greatgrace.ru 1306 | www.greatpussies.com 1307 | www.greatsexcontent.dk 1308 | www.greatsimplicity.com 1309 | www.gustomagro.it 1310 | www.habanerotaqueria.it 1311 | www.hallohaus.co 1312 | www.hmuana.com 1313 | www.huanqiucaijing.cn 1314 | www.huge-gay-cock.com 1315 | www.huisvrouwen.be 1316 | www.hukbo.com 1317 | www.humorpool.com 1318 | www.humraaz.com 1319 | www.hundejo.com 1320 | www.hungergame.com 1321 | www.hunger.xyz 1322 | www.hustlervip.net 1323 | www.hut1.ru 1324 | www.hvd-store.com 1325 | www.h-villamotel.com 1326 | www.hybrid.ru 1327 | www.hydropneuengg.com 1328 | www.hydropump.su 1329 | www.hygar.com 1330 | www.hygromycin-b-50mg-ml-solution.com 1331 | www.hyipbrowser.biz 1332 | www.hyipmanager.in 1333 | www.hymen-defloration.info 1334 | www.hypnoseterapi.com 1335 | www.hypnotone.com 1336 | www.hystersister.com 1337 | www.hy-tec.com 1338 | www.hzdoctor.com 1339 | www.i-c-c-c.com 1340 | www.ichgcp.com 1341 | www.icipourtoi.com 1342 | www.iclsas.com 1343 | www.ico.re 1344 | www.idc.com.ua 1345 | www.idealtits.net 1346 | www.ideas.com.uy 1347 | www.ideawheel.com 1348 | www.idecoideas.com 1349 | www.idkom.com 1350 | www.ido3.com 1351 | www.idolax.com 1352 | www.idolhairsalon.com 1353 | www.idolight.net 1354 | www.idrct.com 1355 | www.imageprostyle-communication.fr 1356 | www.infogiovanialtopavese.it 1357 | www.inleadership.co.nz 1358 | www.kartlab.it 1359 | www.laanchoa.it 1360 | www.lacasadialicedesenzano.it 1361 | www.ladsblue.com 1362 | www.live1powerlife.com 1363 | www.maincert.com 1364 | www.manufacta-italia.it 1365 | www.maxtek.it 1366 | www.nerodavolasicilia.it 1367 | www.nobuomo.it 1368 | www.picura.it 1369 | www.pipenv.org 1370 | www.prizesforyou.com 1371 | www.progettazione-integrata.it 1372 | www.ristorante53.it 1373 | www.ristorantebiri.it 1374 | www.ristoranteilmedioevo.it 1375 | www.rosafondente.it 1376 | www.sitononraggiungibile.it 1377 | www.solidmaker.it 1378 | www.spacebridemag.com 1379 | www.spl63.fr 1380 | www.tigustolanostracucina.it 1381 | www.townhousefilms.com 1382 | www.utopia-privacy.com 1383 | yuarra.pluto.ro 1384 | yunque.pluto.ro 1385 | -------------------------------------------------------------------------------- /whitelists/anti: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /whitelists/me: -------------------------------------------------------------------------------- 1 | cliqz.com 2 | --------------------------------------------------------------------------------