├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── codeql-analysis.yml │ └── main.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Mikrotik ├── HN-BLACKLIST-ADS-YOYO.rsc ├── HN-BLACKLIST-BADIPS.rsc ├── HN-BLACKLIST-BLOCKLIST-NET-UA.rsc ├── HN-BLACKLIST-BLOCKLIST.DE-ALL.rsc ├── HN-BLACKLIST-BLOCKLIST.DE-BOTS.rsc ├── HN-BLACKLIST-CHINA-CIDR.rsc ├── HN-BLACKLIST-CHINA-KOREA-CIDR.rsc ├── HN-BLACKLIST-CI-BADGUYS.rsc ├── HN-BLACKLIST-COMPROMISEDIPS.rsc ├── HN-BLACKLIST-DAN-TOR-NODES.rsc ├── HN-BLACKLIST-DANGER-RULEZ.rsc ├── HN-BLACKLIST-DSHIELD.rsc ├── HN-BLACKLIST-FEODOTRACKER-C2-IOCs-AGGRESIVE.rsc ├── HN-BLACKLIST-FEODOTRACKER-C2-IOCs.rsc ├── HN-BLACKLIST-FEODOTRACKER-C2.rsc ├── HN-BLACKLIST-FIREHOL-LEVEL1.rsc ├── HN-BLACKLIST-GREENSNOW.rsc ├── HN-BLACKLIST-IPSUM-TIF.rsc ├── HN-BLACKLIST-MIRAI-TRACKER.rsc ├── HN-BLACKLIST-MYIPMS-IPv6.rsc ├── HN-BLACKLIST-MYIPMS.rsc ├── HN-BLACKLIST-PUSHING-INERTIA.rsc ├── HN-BLACKLIST-RUTGERS-DROP.rsc ├── HN-BLACKLIST-SPAMHAUS.rsc ├── HN-BLACKLIST-STOPFORUMSPAM-1D.rsc ├── HN-BLACKLIST-STOPFORUMSPAM-7D.rsc ├── HN-BLACKLIST-STOPFORUMSPAM.rsc ├── HN-BLACKLIST-TALOSINTELLIGENCE.rsc ├── HN-BLACKLIST-TOR-EXITS-NODES-IPv6.rsc ├── HN-BLACKLIST-TOR-EXITS-NODES.rsc ├── HN-BLACKLIST-TOR-RELAYS-IPv6.rsc ├── HN-BLACKLIST-TOR-RELAYS.rsc ├── HN-BLACKLIST-VOIPBL.rsc └── HN-BLACKLIST-WP.rsc ├── README.md ├── SECURITY.md ├── generate_files.py ├── requirements.txt └── sites.json /.gitattributes: -------------------------------------------------------------------------------- 1 | Mikrotik/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.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: hybridnetworks 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: hybridnetworks 14 | thanks_dev: # Replace with a single thanks.dev username 15 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 16 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ main ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ main ] 20 | schedule: 21 | - cron: '17 10 * * 5' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | permissions: 28 | actions: read 29 | contents: read 30 | security-events: write 31 | 32 | strategy: 33 | fail-fast: false 34 | matrix: 35 | language: [ 'python' ] 36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] 37 | # Learn more about CodeQL language support at https://git.io/codeql-language-support 38 | 39 | steps: 40 | - name: Checkout repository 41 | uses: actions/checkout@v2 42 | 43 | # Initializes the CodeQL tools for scanning. 44 | - name: Initialize CodeQL 45 | uses: github/codeql-action/init@v1 46 | with: 47 | languages: ${{ matrix.language }} 48 | # If you wish to specify custom queries, you can do so here or in a config file. 49 | # By default, queries listed here will override any specified in a config file. 50 | # Prefix the list here with "+" to use these queries and those in the config file. 51 | # queries: ./path/to/local/query, your-org/your-repo/queries@main 52 | 53 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 54 | # If this step fails, then you should remove it and run the build manually (see below) 55 | - name: Autobuild 56 | uses: github/codeql-action/autobuild@v1 57 | 58 | # ℹ️ Command-line programs to run using the OS shell. 59 | # 📚 https://git.io/JvXDl 60 | 61 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines 62 | # and modify them (or add more) to build your code if your project 63 | # uses a compiled language 64 | 65 | #- run: | 66 | # make bootstrap 67 | # make release 68 | 69 | - name: Perform CodeQL Analysis 70 | uses: github/codeql-action/analyze@v1 71 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | # This workflow will install Python dependencies, run tests and lint with a single version of Python 2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions 3 | 4 | name: Generate BlackList Files 5 | 6 | on: 7 | push: 8 | branches: [ master ] 9 | schedule: 10 | - cron: "0 0 * * *" 11 | workflow_dispatch: 12 | 13 | jobs: 14 | build: 15 | 16 | runs-on: ubuntu-latest 17 | 18 | steps: 19 | - uses: actions/checkout@v2 20 | - name: Set up Python 3.10 21 | uses: actions/setup-python@v2 22 | with: 23 | python-version: "3.10" 24 | - name: Install dependencies 25 | run: | 26 | python -m pip install --upgrade pip 27 | pip install flake8 pytest 28 | if [ -f requirements.txt ]; then pip install -r requirements.txt; fi 29 | - name: Lint with flake8 30 | run: | 31 | # stop the build if there are Python syntax errors or undefined names 32 | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics 33 | # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide 34 | flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics 35 | # Generate all blacklists 36 | - name: Generate Blacklists 37 | run: | 38 | python3 --version 39 | python3 generate_files.py 40 | env: 41 | ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} 42 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 43 | EXCLUDED: ${{ secrets.EXCLUDED }} 44 | EXCLUDED_LANGS: ${{ secrets.EXCLUDE_LANGS }} 45 | 46 | # Commits all changed files to the repository 47 | - name: Updating blacklists 48 | run: | 49 | git config --global user.name "HybridNetworks" 50 | git config --global user.email "BlackListBox[bot]@HybridNetworks.github.io" 51 | git add . 52 | # "echo" returns true so the build succeeds, even if no changed files 53 | git commit -m "Update $(date '+%Y-%m-%d')" || echo 54 | git push 55 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | info@hybridnetworks.com.ar. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 HybridNetworks Ltd 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-COMPROMISEDIPS.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : Proofpoint Inc 5 | # Maintainer URL : https://proofpoint.com/ 6 | # Category : reputation, attacks, compromised 7 | # 8 | # Last Update : 2025-06-06 01:58:37 9 | # Blacklist : EMERGINGTHREATS-COMPROMISED-IPS 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ip firewall address-list 28 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=101.108.53.147 29 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.149.86.208 30 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.153.141.147 31 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.154.143.162 32 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.173.15.122 33 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.188.82.254 34 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.205.60.32 35 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.209.42.147 36 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.228.255.54 37 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.237.144.204 38 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.242.225.92 39 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.252.73.249 40 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.39.93.93 41 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.70.115.15 42 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.70.115.6 43 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.75.162.154 44 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=103.87.67.48 45 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.131.52.2 46 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.131.89.196 47 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.131.90.197 48 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.236.235.157 49 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.236.253.55 50 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.236.95.105 51 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.248.252.205 52 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=104.248.53.106 53 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=107.173.37.111 54 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=107.175.0.238 55 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=110.14.161.100 56 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=110.49.30.83 57 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=110.49.99.110 58 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=111.14.221.174 59 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=111.170.129.164 60 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=111.30.36.61 61 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=111.67.203.183 62 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=112.217.86.2 63 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=113.140.93.51 64 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=113.53.89.180 65 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=115.231.236.150 66 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=115.244.87.110 67 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.208.244 68 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.209.196 69 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.210.151 70 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.210.46 71 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.210.99 72 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.212.169 73 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.212.29 74 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.214.223 75 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.222.167 76 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.223.183 77 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.223.239 78 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.105.223.243 79 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.10.219 80 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.11.122 81 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.112.222 82 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.113.155 83 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.113.3 84 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.114.99 85 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.115.144 86 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.116.221 87 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.1.239 88 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.12.46 89 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.125.130 90 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.126.194 91 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.13.153 92 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.14.127 93 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.14.245 94 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.14.65 95 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.16.205 96 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.17.101 97 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.17.156 98 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.19.69 99 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.20.84 100 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.210.64 101 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.21.137 102 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.217.158 103 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.218.30 104 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.22.122 105 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.24.160 106 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.27.13 107 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.27.186 108 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.28.54 109 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.4.61 110 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.6.236 111 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.65.123 112 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.67.62 113 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.67.70 114 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.69.36 115 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.7.107 116 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.72.4 117 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.76.119 118 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.77.34 119 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.81.120 120 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.81.225 121 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.82.226 122 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.83.88 123 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.84.138 124 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.86.66 125 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.88.150 126 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.88.190 127 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.89.9 128 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.90.228 129 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.90.80 130 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.93.242 131 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.94.208 132 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.94.28 133 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.110.9.95 134 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.160.126 135 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.162.148 136 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.162.149 137 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.165.191 138 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.165.85 139 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.167.77 140 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.168.190 141 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.169.192 142 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.169.193 143 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.170.124 144 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.170.182 145 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.170.52 146 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.171.161 147 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.171.71 148 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.172.22 149 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.173.93 150 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=116.98.175.245 151 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=117.149.247.142 152 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=117.35.203.204 153 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=118.121.203.170 154 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=119.82.252.241 155 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=119.96.59.16 156 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=120.132.122.54 157 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=120.92.210.231 158 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=121.125.67.137 159 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=122.194.12.42 160 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=123.124.132.50 161 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=123.200.20.14 162 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=125.17.108.32 163 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=125.25.45.142 164 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=125.94.40.184 165 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=132.148.164.7 166 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=134.122.1.0 167 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=134.122.111.224 168 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=134.122.9.52 169 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=134.199.236.87 170 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=134.209.155.31 171 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=134.209.204.83 172 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=13.52.97.33 173 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=136.27.51.200 174 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=137.184.169.140 175 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.197.113.250 176 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.197.115.130 177 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.197.2.226 178 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.197.26.250 179 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.197.45.175 180 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.197.82.237 181 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.197.96.181 182 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.68.137.44 183 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=138.97.13.19 184 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=139.59.57.228 185 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=140.246.92.156 186 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=14.14.160.190 187 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=14.18.41.55 188 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=141.98.11.128 189 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=142.44.212.226 190 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=142.93.13.29 191 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=142.93.183.64 192 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=142.93.191.58 193 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=143.198.103.35 194 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=143.198.30.88 195 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=143.198.9.41 196 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=143.42.63.237 197 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=143.92.42.164 198 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=144.126.144.190 199 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=144.126.199.72 200 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=146.103.47.42 201 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=146.190.171.150 202 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=146.190.239.163 203 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=146.19.215.105 204 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=146.235.35.96 205 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=147.28.184.4 206 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=148.113.8.222 207 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=149.102.132.144 208 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=149.130.174.178 209 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=15.235.136.164 210 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=152.42.128.191 211 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=152.42.181.18 212 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=154.81.179.46 213 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=154.92.111.94 214 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=154.92.131.139 215 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=157.230.105.227 216 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=157.245.15.12 217 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=157.245.15.215 218 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=157.245.219.98 219 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=158.172.242.39 220 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.192.96.133 221 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.203.135.149 222 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.203.170.24 223 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.203.73.116 224 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.203.87.222 225 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.203.93.133 226 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.203.95.75 227 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.223.10.18 228 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.223.193.174 229 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.65.174.160 230 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.65.190.158 231 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.89.178.71 232 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.89.190.96 233 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.89.44.197 234 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=159.89.46.197 235 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=160.20.104.129 236 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=160.20.104.81 237 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=161.35.148.137 238 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=161.35.75.242 239 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=161.35.87.177 240 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=161.35.91.81 241 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=164.92.123.138 242 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=164.92.218.164 243 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=164.92.221.144 244 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=164.92.243.216 245 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=164.92.249.151 246 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.22.21.94 247 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.227.116.76 248 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.227.171.136 249 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.227.175.10 250 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.227.213.145 251 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.227.214.234 252 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.227.229.18 253 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.227.68.18 254 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.232.161.174 255 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=165.232.70.106 256 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=167.172.235.70 257 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=167.172.29.149 258 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=167.172.31.209 259 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=167.71.101.119 260 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=167.71.240.112 261 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=167.71.252.125 262 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=167.99.204.135 263 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=168.90.14.199 264 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.16.245 265 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.17.219 266 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.17.233 267 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.19.39 268 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.20.201 269 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.20.206 270 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.21.91 271 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.22.92 272 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.23.211 273 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.24.153 274 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.25.216 275 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.25.223 276 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.26.188 277 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.27.9 278 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.28.13 279 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.28.201 280 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.31.0 281 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=171.251.31.239 282 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=174.138.54.122 283 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=174.138.83.191 284 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=174.138.93.93 285 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=175.116.66.199 286 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=176.28.14.206 287 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=176.65.138.252 288 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=176.97.124.127 289 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=177.223.60.82 290 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=178.128.236.79 291 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=178.128.243.29 292 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=178.62.1.211 293 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=178.91.96.182 294 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=180.178.94.73 295 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=18.144.58.1 296 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=182.44.72.96 297 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=18.246.70.187 298 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=185.156.73.233 299 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=185.156.73.234 300 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=185.209.161.39 301 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=185.227.152.113 302 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=185.235.16.48 303 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=185.238.74.98 304 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=185.93.89.118 305 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=187.9.92.190 306 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=188.166.166.87 307 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=188.93.237.19 308 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=190.202.131.222 309 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=192.112.63.23 310 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=192.240.109.170 311 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=193.233.202.234 312 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=193.32.162.157 313 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=193.32.162.84 314 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=193.32.162.89 315 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=193.32.162.97 316 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=193.43.79.16 317 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=194.110.247.61 318 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=194.1.184.72 319 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=194.124.75.35 320 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=194.182.78.105 321 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=195.178.110.232 322 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=195.178.110.238 323 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=195.178.110.26 324 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=195.179.227.224 325 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=195.66.101.129 326 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=196.203.106.97 327 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=196.251.72.115 328 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=196.251.81.116 329 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=196.251.83.136 330 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=198.24.79.245 331 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=20.121.70.44 332 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=20.199.10.31 333 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=202.178.125.232 334 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=207.194.4.66 335 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=209.97.146.231 336 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=209.97.155.64 337 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=209.97.190.18 338 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=210.63.204.28 339 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=211.105.223.49 340 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=212.100.44.170 341 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=212.162.211.152 342 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=213.215.209.101 343 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=213.232.204.191 344 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=213.55.83.210 345 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=217.182.230.0 346 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=218.21.230.174 347 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=218.22.21.22 348 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=220.169.107.60 349 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=221.204.40.160 350 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=2.33.239.68 351 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=23.94.86.253 352 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=24.199.110.55 353 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=2.57.122.57 354 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=3.137.73.221 355 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=34.122.156.88 356 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=34.213.29.186 357 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=35.164.147.171 358 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=35.89.64.217 359 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=35.92.200.223 360 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=36.189.207.209 361 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=36.27.223.19 362 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=36.85.129.114 363 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=37.221.65.184 364 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=37.238.10.123 365 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=37.60.237.13 366 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=38.114.121.200 367 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=41.231.37.153 368 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=42.193.59.3 369 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=43.156.240.7 370 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=43.229.154.156 371 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=44.244.238.152 372 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=44.246.161.55 373 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.119.87.58 374 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.134.26.79 375 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.135.232.177 376 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.135.232.92 377 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.135.57.192 378 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.140.17.124 379 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.148.96.231 380 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.207.201.207 381 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.55.189.179 382 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.55.203.76 383 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.55.40.18 384 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.55.66.28 385 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.55.78.60 386 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.6.188.43 387 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.87.41.7 388 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=45.92.110.154 389 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=46.101.168.221 390 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=46.101.210.71 391 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=46.101.38.102 392 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=49.0.83.145 393 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=49.0.85.146 394 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=50.7.40.241 395 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=51.178.92.164 396 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=51.195.190.14 397 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=51.195.190.33 398 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=51.195.190.7 399 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=51.83.66.236 400 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=5.189.175.113 401 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=52.12.26.64 402 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=52.140.22.132 403 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=52.53.199.191 404 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.176.27.62 405 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.177.242.75 406 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.183.205.135 407 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.193.209.162 408 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.193.96.253 409 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.219.184.223 410 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.241.109.221 411 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=54.36.8.139 412 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=5.78.91.55 413 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=59.63.199.253 414 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=61.218.122.20 415 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=61.78.62.85 416 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=62.171.174.25 417 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.225.22.241 418 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.225.24.130 419 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.227.25.214 420 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.227.37.123 421 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.227.41.4 422 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.23.161.151 423 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.23.190.89 424 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=64.23.236.54 425 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=66.98.79.181 426 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=68.183.12.42 427 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=68.183.14.153 428 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=69.50.128.171 429 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=71.79.227.77 430 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=77.118.248.210 431 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=77.68.116.210 432 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=78.128.112.74 433 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=78.137.13.115 434 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=78.187.45.63 435 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=78.27.99.172 436 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=78.47.154.212 437 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=80.102.89.69 438 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=80.252.234.225 439 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=80.94.95.115 440 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=81.70.25.104 441 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=8.209.214.165 442 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=82.55.25.218 443 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=82.67.3.138 444 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=82.97.240.171 445 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=84.247.143.71 446 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.208.84.4 447 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.208.84.5 448 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.208.84.53 449 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.208.84.54 450 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.208.84.8 451 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.215.190.219 452 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.239.33.141 453 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.239.34.138 454 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=85.85.196.35 455 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=86.3.123.209 456 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=88.214.50.37 457 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=88.214.50.39 458 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=88.214.50.40 459 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=89.252.140.204 460 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=89.39.246.58 461 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=89.43.78.106 462 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=91.208.197.184 463 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=91.208.197.71 464 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=91.208.206.195 465 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=91.229.239.164 466 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=92.118.39.57 467 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=92.118.39.61 468 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=92.118.39.65 469 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=92.118.39.68 470 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=92.118.39.90 471 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=92.118.39.97 472 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=94.70.236.210 473 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=95.182.115.26 474 | add list=HN-BLACKLIST-COMPROMISEDIPS comment=EMERGINGTHREATS-COMPROMISED-IPS address=95.216.24.236 475 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-DANGER-RULEZ.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : Daniel Gerzo 5 | # Maintainer URL : https://danger.rulez.sk/ 6 | # Category : bruteforce, reputation, ssh 7 | # 8 | # Last Update : 2025-06-06 01:58:40 9 | # Blacklist : DANGER-RULEZ-IP-BRUTEFORCE 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ip firewall address-list 28 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=185.156.73.233 29 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=185.156.73.234 30 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=193.32.162.157 31 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.170.182 32 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=132.148.164.7 33 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.167.77 34 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.89.190.96 35 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.24.153 36 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.113.155 37 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.88.150 38 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.223.183 39 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.20.84 40 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=185.93.89.118 41 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.81.120 42 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.25.223 43 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.212.169 44 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=176.65.138.252 45 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.203.135.149 46 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.17.101 47 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.4.61 48 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.82.226 49 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.116.221 50 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.210.151 51 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.88.190 52 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.168.190 53 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.160.126 54 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.17.156 55 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.27.9 56 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.1.239 57 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.17.233 58 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.22.122 59 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.69.36 60 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.14.127 61 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.90.228 62 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.55.203.76 63 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.6.236 64 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.13.153 65 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.16.245 66 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.14.245 67 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.113.3 68 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.22.92 69 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.218.30 70 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.210.46 71 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.21.91 72 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.162.148 73 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.21.137 74 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.210.64 75 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.76.119 76 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.25.216 77 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.214.223 78 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.170.124 79 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.9.95 80 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.89.9 81 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.208.244 82 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.173.93 83 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.67.70 84 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.27.13 85 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.12.46 86 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.222.167 87 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.114.99 88 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.11.122 89 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=167.71.101.119 90 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.86.66 91 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.19.69 92 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.27.186 93 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.14.65 94 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.171.161 95 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.31.0 96 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.31.239 97 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.28.54 98 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.20.206 99 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.24.160 100 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.223.243 101 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.7.107 102 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.72.4 103 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.112.222 104 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.55.40.18 105 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.16.205 106 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.223.239 107 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.28.13 108 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.125.130 109 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.28.201 110 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.94.28 111 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.115.144 112 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.90.80 113 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.65.123 114 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.77.34 115 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.19.39 116 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.20.201 117 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.23.211 118 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.212.29 119 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=178.91.96.182 120 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.203.73.116 121 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.172.22 122 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.208.84.54 123 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.81.225 124 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.210.99 125 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.212.26 126 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.169.193 127 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.225.22.241 128 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.169.192 129 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.217.158 130 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.83.88 131 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.175.245 132 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.131.52.2 133 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.94.208 134 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.55.189.179 135 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.87.41.7 136 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=78.128.112.74 137 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=157.245.15.215 138 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.26.250 139 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=91.208.197.71 140 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.208.84.4 141 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.208.84.53 142 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=167.172.29.149 143 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=185.209.161.39 144 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=174.138.83.191 145 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=148.113.8.222 146 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=149.102.132.144 147 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=210.63.204.28 148 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=174.138.93.93 149 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.215.9 150 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=213.232.204.191 151 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.171.71 152 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=190.202.131.222 153 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=5.189.175.113 154 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=77.68.116.210 155 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=157.245.219.98 156 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=61.218.122.20 157 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.116.76 158 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.105.209.196 159 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=152.42.181.18 160 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=91.229.239.164 161 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.203.170.24 162 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.68.137.44 163 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.208.84.5 164 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.208.84.8 165 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=193.233.202.234 166 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=20.199.10.31 167 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.199.195.176 168 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=167.71.240.112 169 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.135.232.177 170 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.232.161.174 171 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.239.34.138 172 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=194.182.78.105 173 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.203.87.222 174 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.115.130 175 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.131.90.197 176 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.183.205.135 177 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.134.26.79 178 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=51.83.66.236 179 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=142.93.183.64 180 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.199.195.2 181 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.203.93.133 182 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=195.178.110.26 183 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=161.35.148.137 184 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.236.253.55 185 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=143.198.30.88 186 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=37.60.237.13 187 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=195.178.110.232 188 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.140.17.124 189 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=196.251.72.115 190 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.65.190.158 191 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=160.20.104.81 192 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.96.181 193 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=50.7.40.241 194 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=196.251.81.116 195 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.153.141.147 196 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=92.118.39.97 197 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=92.118.39.61 198 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.89.44.197 199 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.75.162.154 200 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=164.92.123.138 201 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.122.9.52 202 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=13.52.97.33 203 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.175.10 204 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=174.138.54.122 205 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.214.234 206 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.131.89.196 207 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.236.235.157 208 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.55.66.28 209 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=84.247.143.71 210 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=92.118.39.68 211 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=167.172.235.70 212 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=18.246.70.187 213 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=143.198.9.41 214 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.213.145 215 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=192.112.63.23 216 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.135.232.92 217 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.2.226 218 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=212.162.211.152 219 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=91.208.206.195 220 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.177.242.75 221 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=185.227.152.113 222 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=180.178.94.73 223 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.23.236.54 224 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=167.172.31.209 225 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.65.24.169 226 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.93.242 227 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.165.191 228 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=46.101.168.221 229 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.89.178.71 230 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=178.128.236.79 231 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.225.24.130 232 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=209.97.146.231 233 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=157.230.105.227 234 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.45.175 235 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.232.70.106 236 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=193.32.162.97 237 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.89.46.197 238 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=18.144.58.1 239 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.65.174.160 240 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=89.252.140.204 241 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=43.156.240.7 242 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=68.183.14.153 243 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=195.66.101.129 244 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.199.195.177 245 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=178.128.243.29 246 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=35.89.64.217 247 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.237.144.204 248 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=157.245.15.12 249 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=154.92.111.94 250 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=164.92.243.216 251 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.219.184.223 252 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=193.32.162.89 253 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=147.28.184.4 254 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.171.136 255 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=141.98.11.128 256 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.236.95.105 257 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=146.190.239.163 258 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.209.42.147 259 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.203.95.75 260 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.193.96.253 261 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=82.67.3.138 262 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=92.118.39.65 263 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.26.188 264 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=164.92.249.151 265 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=61.78.62.85 266 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=92.118.39.90 267 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=2.57.122.57 268 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=176.28.14.206 269 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.223.10.18 270 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.135.57.192 271 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.85.196.35 272 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=136.27.51.200 273 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=188.93.237.19 274 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=52.53.199.191 275 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=110.49.30.83 276 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.6.188.43 277 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=111.30.36.61 278 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.97.13.19 279 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.252.73.249 280 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=119.96.59.16 281 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.82.237 282 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=192.240.109.170 283 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=37.221.65.184 284 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=123.200.20.14 285 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.227.25.214 286 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=5.78.91.55 287 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=66.98.79.181 288 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=146.19.215.105 289 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=161.35.91.81 290 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.193.209.162 291 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=194.124.75.35 292 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=140.246.92.156 293 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=143.198.103.35 294 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=164.92.218.164 295 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.23.247.232 296 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.55.78.60 297 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.173.15.122 298 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=82.55.25.218 299 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=34.213.29.186 300 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=177.223.60.82 301 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.227.37.123 302 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=185.235.16.48 303 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=125.94.40.184 304 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=142.44.212.226 305 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.148.96.231 306 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=164.92.221.144 307 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=110.49.99.110 308 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=194.110.247.61 309 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=167.99.204.135 310 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=171.251.17.219 311 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.227.41.4 312 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=92.118.39.57 313 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=15.235.136.164 314 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=95.216.24.236 315 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=125.25.45.142 316 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=86.3.123.209 317 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=46.101.210.71 318 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=24.199.110.55 319 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=139.59.57.228 320 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=209.97.155.64 321 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.223.193.174 322 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.149.86.208 323 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.67.62 324 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=144.126.144.190 325 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=89.39.246.58 326 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=46.101.38.102 327 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=154.92.131.139 328 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.209.204.83 329 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=218.21.230.174 330 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=146.190.171.150 331 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=161.35.75.242 332 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.36.8.139 333 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.89.191.131 334 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.113.250 335 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=193.32.162.84 336 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=194.1.184.72 337 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.119.87.58 338 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=160.20.104.129 339 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=85.215.190.219 340 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=213.215.209.101 341 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=218.22.21.22 342 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.199.195.172 343 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=51.195.190.7 344 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=217.182.230.0 345 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=36.27.223.19 346 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=43.229.154.156 347 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=122.194.12.42 348 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=196.251.83.136 349 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.229.18 350 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=175.116.66.199 351 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=117.149.247.142 352 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=80.94.95.115 353 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=167.71.252.125 354 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=138.197.215.211 355 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=36.85.129.114 356 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=137.184.169.140 357 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.22.21.94 358 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=168.90.14.199 359 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.154.143.162 360 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=120.132.122.54 361 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=187.9.92.190 362 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=113.53.89.180 363 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=115.231.236.150 364 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=23.94.86.253 365 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=120.92.210.231 366 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=14.18.41.55 367 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.122.1.0 368 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=152.42.128.191 369 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=95.182.115.26 370 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=36.189.207.209 371 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.188.82.254 372 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.92.110.154 373 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=154.81.179.46 374 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=51.195.190.33 375 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=111.14.221.174 376 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=89.43.78.106 377 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=42.193.59.3 378 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=143.92.42.164 379 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=71.79.227.77 380 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=37.238.10.123 381 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=121.125.67.137 382 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.126.194 383 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=111.170.129.164 384 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=195.178.110.238 385 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=142.93.151.28 386 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=113.140.93.51 387 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=49.0.85.146 388 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.210.57 389 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=119.82.252.241 390 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=107.175.0.238 391 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.110.84.138 392 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.23.190.89 393 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.248.53.106 394 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.122.111.224 395 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.39.93.93 396 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=146.235.35.96 397 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=52.12.26.64 398 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=213.55.83.210 399 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=59.24.28.114 400 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=193.43.79.16 401 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.192.96.133 402 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=146.103.47.42 403 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=144.126.199.72 404 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=80.252.234.225 405 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=142.93.191.58 406 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.70.115.15 407 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=207.194.4.66 408 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=45.207.201.207 409 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=176.97.124.127 410 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=78.187.45.63 411 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=196.203.106.97 412 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=8.209.214.165 413 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=49.0.83.145 414 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.232.21.226 415 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=82.97.240.171 416 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.176.27.62 417 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=44.246.161.55 418 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=68.183.12.42 419 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=107.173.37.111 420 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=118.121.203.170 421 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=220.169.107.60 422 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.205.60.32 423 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=202.178.125.232 424 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.70.115.6 425 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=80.102.89.69 426 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=20.121.70.44 427 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=44.244.238.152 428 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.228.255.54 429 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=103.242.225.92 430 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=110.14.161.100 431 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=64.23.161.151 432 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=178.62.1.211 433 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=142.93.13.29 434 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=78.27.99.172 435 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=2.33.239.68 436 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=116.98.165.85 437 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=159.223.11.102 438 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=172.245.112.200 439 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=78.137.13.115 440 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=143.42.63.237 441 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=161.35.87.177 442 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=123.124.132.50 443 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=188.34.177.101 444 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=81.70.25.104 445 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=112.217.86.2 446 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=115.244.87.110 447 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=52.140.22.132 448 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=165.227.68.18 449 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=125.17.108.32 450 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=223.130.11.165 451 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=195.179.227.224 452 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=94.70.236.210 453 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=35.164.147.171 454 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=41.231.37.153 455 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=78.47.154.212 456 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=211.105.223.49 457 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=54.241.109.221 458 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=188.166.166.87 459 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=62.171.174.25 460 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=182.44.72.96 461 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=143.198.17.120 462 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=221.204.40.160 463 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=35.92.200.223 464 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=104.248.252.205 465 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=51.178.92.164 466 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=101.108.53.147 467 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.199.236.87 468 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=209.97.190.18 469 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=158.172.242.39 470 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=185.238.74.98 471 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=34.122.156.88 472 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=3.137.73.221 473 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=111.67.203.183 474 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=134.209.155.31 475 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=69.50.128.171 476 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=192.241.188.19 477 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=59.63.199.253 478 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=38.114.121.200 479 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=14.14.160.190 480 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=117.35.203.204 481 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=143.110.247.130 482 | add list=HN-BLACKLIST-DANGER-RULEZ comment=DANGER-RULEZ-IP-BRUTEFORCE address=198.24.79.245 483 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-DSHIELD.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : DShield | Internet Security 5 | # Maintainer URL : https://dshield.org/ 6 | # Category : attacks 7 | # 8 | # Last Update : 2025-06-06 01:53:44 9 | # Blacklist : DSHIELD 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ip firewall address-list 28 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=79.124.62.0/24 29 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=154.212.141.0/24 30 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=198.235.24.0/24 31 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=87.121.84.0/24 32 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=91.196.152.0/24 33 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=64.62.197.0/24 34 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=176.65.148.0/24 35 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=193.163.125.0/24 36 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=167.94.138.0/24 37 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=206.168.34.0/24 38 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=64.62.156.0/24 39 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=195.82.146.0/24 40 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=195.82.147.0/24 41 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=65.49.1.0/24 42 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=204.76.203.0/24 43 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=88.218.193.0/24 44 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=147.185.132.0/24 45 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=185.242.226.0/24 46 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=205.210.31.0/24 47 | add list=HN-BLACKLIST-DSHIELD comment=DSHIELD address=195.184.76.0/24 48 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-FEODOTRACKER-C2-IOCs.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : Feodo Tracker by Abuse.ch 5 | # Maintainer URL : https://feodotracker.abuse.ch/ 6 | # Category : malware, botnet 7 | # 8 | # Last Update : 2025-06-06 01:53:43 9 | # Blacklist : FEODOTRACKER-C2-IOCs 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ip firewall address-list 28 | add list=HN-BLACKLIST-FEODOTRACKER-C2-IOCs comment=FEODOTRACKER-C2-IOCs address=162.243.103.246 29 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-FEODOTRACKER-C2.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : Feodo Tracker by Abuse.ch 5 | # Maintainer URL : https://feodotracker.abuse.ch/ 6 | # Category : malware, botnet 7 | # 8 | # Last Update : 2025-06-06 01:53:43 9 | # Blacklist : FEODOTRACKER-C2 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ip firewall address-list 28 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-MYIPMS-IPv6.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : My IP Address | Blacklist IP 5 | # Maintainer URL : https://myip.ms/ 6 | # Category : abuse, webbot 7 | # 8 | # Last Update : 2025-03-17 01:45:48 9 | # Blacklist : MYIPMS-DATABASE-IPv6 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ipv6 firewall address-list 28 | add list=HN-BLACKLIST-MYIPMS-IPv6 comment=MYIPMS-DATABASE-IPv6 address=2404:160:8214:3e2:f992:d918:cbe5:175 29 | add list=HN-BLACKLIST-MYIPMS-IPv6 comment=MYIPMS-DATABASE-IPv6 address=2600:1900:0:2106::1301 30 | add list=HN-BLACKLIST-MYIPMS-IPv6 comment=MYIPMS-DATABASE-IPv6 address=2603:3:6105:3360:: 31 | add list=HN-BLACKLIST-MYIPMS-IPv6 comment=MYIPMS-DATABASE-IPv6 address=2600:1f18:3867:c01:e813:e631:1cab:9f3c 32 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-TALOSINTELLIGENCE.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : Cisco Talos Intelligence Group 5 | # Maintainer URL : https://talosintelligence.com 6 | # Category : reputation 7 | # 8 | # Last Update : 2025-01-01 01:45:12 9 | # Blacklist : TALOSINTELLIGENCE-IP-BLACKLIST 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ip firewall address-list 28 | -------------------------------------------------------------------------------- /Mikrotik/HN-BLACKLIST-WP.rsc: -------------------------------------------------------------------------------- 1 | # ============================================================ 2 | # (C) 2011-2025 HybridNetworks Ltd. -- All Rights Reserved 3 | # 4 | # Maintainer : Ultimate Hosts Blacklist 5 | # Maintainer URL : https://github.com/Ultimate-Hosts-Blacklist/ 6 | # Category : attacks, wordpress 7 | # 8 | # Last Update : 2025-06-06 01:58:36 9 | # Blacklist : TOP-ATTACK-WPS 10 | # 11 | # ABOUT CONTACT: 12 | # HybridNetworks Ltd. 13 | # info@hybridnetworks.com.ar 14 | # https://hybridnetworks.com.ar 15 | # 16 | # Use this script only on the configured and supported device. 17 | # PLEASE do not change, edit or modify any part of this script. 18 | # PLEASE do not use on devices other than technical support. 19 | # PLEASE do not remove this notice or your copyright. 20 | # 21 | # If you are a developer or consultant and want to incorporate 22 | # this script into your own products. PLEASE contact us to receive 23 | # permits under terms and conditions. 24 | # 25 | # ============================================================ 26 | 27 | /ip firewall address-list 28 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=103.240.17.73 29 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=107.150.37.26 30 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=107.150.49.58 31 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=107.150.56.226 32 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=107.150.60.34 33 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=107.150.62.138 34 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=113.140.10.30 35 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=142.54.160.154 36 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=142.54.161.146 37 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=142.54.164.58 38 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=142.54.174.130 39 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=142.54.183.226 40 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=142.54.188.34 41 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=146.0.74.150 42 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=148.253.188.34 43 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=160.202.162.19 44 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=160.202.163.41 45 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=162.244.35.14 46 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=173.208.148.218 47 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=173.208.149.170 48 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=173.208.169.250 49 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=173.208.175.154 50 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=173.208.193.42 51 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=173.208.244.82 52 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=178.137.80.28 53 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=178.137.82.201 54 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=178.137.83.84 55 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=178.137.93.239 56 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=181.214.87.244 57 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.119.81.11 58 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.119.81.39 59 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.119.81.50 60 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.119.81.63 61 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.119.81.77 62 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.119.81.78 63 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.129.148.181 64 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.130.226.105 65 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.159.36.6 66 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.159.36.73 67 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.183.96.33 68 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.190.132 69 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.191.196 70 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.191.201 71 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.238.244 72 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.239.110 73 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.239.130 74 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.239.156 75 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.239.157 76 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.85.239.195 77 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.86.13.211 78 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.86.13.212 79 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.86.13.213 80 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.86.167.4 81 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.86.5.199 82 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.86.5.212 83 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.86.5.251 84 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=185.92.72.88 85 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=192.151.148.50 86 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=192.187.100.58 87 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=192.187.111.146 88 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=192.187.122.42 89 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=192.187.98.42 90 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=192.187.98.43 91 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=192.187.98.44 92 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=193.201.224.205 93 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=193.201.224.222 94 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=193.201.225.17 95 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=194.28.115.228 96 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=194.28.115.252 97 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=195.154.182.111 98 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=195.154.183.190 99 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=195.154.189.62 100 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=195.154.237.74 101 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=195.154.252.100 102 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=195.154.252.171 103 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=195.154.253.105 104 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=198.204.224.58 105 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=198.204.224.82 106 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=198.204.225.34 107 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=198.204.251.162 108 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=199.168.102.13 109 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=200.7.105.43 110 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=204.12.226.250 111 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=204.12.228.194 112 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=208.110.66.130 113 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=209.160.30.222 114 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=212.227.198.56 115 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=220.227.234.129 116 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=31.184.194.90 117 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=35.189.196.190 118 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=37.1.135.112 119 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=37.59.178.110 120 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=46.118.118.90 121 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=46.118.119.138 122 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=46.118.156.191 123 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=5.254.100.66 124 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=5.39.218.232 125 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=5.39.219.2 126 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=5.39.219.24 127 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=5.39.222.18 128 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=5.39.223.134 129 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=62.210.146.49 130 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=62.210.181.123 131 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=62.210.88.4 132 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=69.197.145.178 133 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=69.30.225.58 134 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=69.30.255.106 135 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=74.91.17.178 136 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=77.120.155.207 137 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=77.121.248.91 138 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=79.110.128.128 139 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=79.110.128.17 140 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=79.110.128.252 141 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=79.110.128.63 142 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=85.25.236.96 143 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=89.248.172.121 144 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.103 145 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.113 146 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.114 147 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.15 148 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.153 149 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.155 150 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.159 151 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.18 152 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.188 153 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.2 154 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.21 155 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.22 156 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.29 157 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.33 158 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.42 159 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.43 160 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.49 161 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.52 162 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.53 163 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.58 164 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.61 165 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.81 166 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.86 167 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.91 168 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.12.92 169 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.200.13.16 170 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.219.236.140 171 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=91.220.131.134 172 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=92.222.74.29 173 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=95.24.35.196 174 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=95.24.37.130 175 | add list=HN-BLACKLIST-WP comment=TOP-ATTACK-WPS address=95.24.52.60 176 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

💀 BlackListBox 💀

3 |
4 |

Automatically updated malicious IP address blacklists.

5 |
6 |
7 | 8 |
9 | 10 | [![GitHub issues](https://img.shields.io/bitbucket/issues/HybridNetworks/BlackListBox?style=for-the-badge)](https://github.com/HybridNetworks/BlackListBox/issues) 11 | [![GitHub watchers](https://img.shields.io/github/watchers/HybridNetworks/BlackListBox?style=for-the-badge)](https://github.com/HybridNetworks/BlackListBox/watchers) 12 | [![GitHub forks](https://img.shields.io/github/forks/HybridNetworks/BlackListBox?style=for-the-badge)](https://github.com/HybridNetworks/BlackListBox/fork) 13 | [![GitHub stars](https://img.shields.io/github/stars/HybridNetworks/BlackListBox?style=for-the-badge)](https://github.com/HybridNetworks/BlackListBox/stargazers) 14 | [![License](https://img.shields.io/github/license/HybridNetworks/BlackListBox?style=for-the-badge)](https://github.com/HybridNetworks/BlackListBox/blob/main/LICENSE) 15 | [![Language](https://img.shields.io/github/languages/top/HybridNetworks/BlackListBox?style=for-the-badge)](https://github.com/HybridNetworks/BlackListBox/search?l=python) 16 | [![GitHub last commit](https://img.shields.io/github/last-commit/HybridNetworks/BlackListBox?style=for-the-badge)](https://github.com/HybridNetworks/BlackListBox/commits/main) 17 | 18 |
19 | 20 | ## 📋 Attributes 21 | 22 | 1. Produced in IPv4-only, IPv4-CIDR-only and IPv6-only builds. 23 | 2. Updates at [≈1:10 AM UTC](https://24timezones.com/zona-horaria/utc) | [≈22:10 ART](https://24timezones.com/zona-horaria/art). 24 | 3. No excess or trailing whitespace. 25 | 4. No lingering webscraper garbage. 26 | 5. Lines are terminated with `\n`. 27 | 28 | ## 🛠️ Usage 29 | 30 | ### Mikrotik RouterOS v6 & v7 31 | 32 | 1.- Script which will download the drop list and update 33 | 34 | ``` 35 | /system script add name="downloadBlackListBox" owner="HybridNetworks" source={ 36 | /tool fetch url="https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-SPAMHAUS.rsc" mode=https; 37 | :delay 5; 38 | /ip firewall address-list remove [find where comment="SPAMHAUS-DROP"]; 39 | :delay 5; 40 | /import file-name=HN-BLACKLIST-SPAMHAUS.rsc; 41 | :delay 5; 42 | /file remove HN-BLACKLIST-SPAMHAUS.rsc; 43 | } 44 | ``` 45 | 46 | 2.- Schedule the download and application of the blacklist 47 | 48 | ``` 49 | /system scheduler add comment="BlackListBox" interval=3d \ 50 | name="BlackListBoxUpdate" on-event=downloadBlackListBox \ 51 | start-date=jan/01/1970 start-time=10:23:35 52 | ``` 53 | 54 | 3.- Blacklist blocking by [RAW](https://wiki.mikrotik.com/wiki/Manual:IP/Firewall/Raw) firewall rules 55 | 56 | ``` 57 | /ip firewall raw 58 | add action=drop chain=prerouting comment="HN-FW - DROP SPAMHAUS BLACKLIST" \ 59 | src-address-list=HN-BLACKLIST-SPAMHAUS 60 | ``` 61 | 62 | ![](https://img.shields.io/badge/⚠%20WARNING:%20Use%20carefully!%20Some%20lists%20are%20huge%20and%20can%20quickly%20cause%20performance%20issues-red?style=for-the-badge) 63 | 64 | ## 📜 FILES 65 | 66 | The links below will direct you to the processed versions of the files in this repository. See more information on the [wiki](https://github.com/HybridNetworks/BlackListBox/wiki/Sites-List). (Files are updated daily) 67 | 68 | | File Name | Format | Protocol | Official | 69 | | ------------------------------------------------ | ----------------- | -------- | -------------------------------------------------------------------- | 70 | | HN-BLACKLIST-ADS-YOYO.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-ADS-YOYO.rsc) | 71 | | HN-BLACKLIST-BADIPS.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-BADIPS.rsc) | 72 | | HN-BLACKLIST-BLOCKLIST.DE-ALL.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-BLOCKLIST.DE-ALL.rsc) | 73 | | HN-BLACKLIST-BLOCKLIST.DE-BOTS.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-BLOCKLIST.DE-BOTS.rsc) | 74 | | HN-BLACKLIST-CHINA-CIDR.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-CHINA-CIDR.rsc) | 75 | | HN-BLACKLIST-CHINA-KOREA-CIDR.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-CHINA-KOREA-CIDR.rsc) | 76 | | HN-BLACKLIST-DSHIELD.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-DSHIELD.rsc) | 77 | | HN-BLACKLIST-FEODOTRACKER-C2-IOCs-AGGRESIVE.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-FEODOTRACKER-C2-IOCs-AGGRESIVE.rsc) | 78 | | HN-BLACKLIST-FEODOTRACKER-C2-IOCs.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-FEODOTRACKER-C2-IOCs.rsc) | 79 | | HN-BLACKLIST-FEODOTRACKER-C2.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-FEODOTRACKER-C2.rsc) | 80 | | HN-BLACKLIST-FIREHOL-LEVEL1.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-FIREHOL-LEVEL1.rsc) | 81 | | HN-BLACKLIST-MYIPMS.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-MYIPMS.rsc) | 82 | | HN-BLACKLIST-MYIPMS-IPv6.rsc | Mikrotik RouterOS | IPv6 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-MYIPMS-IPv6.rsc) | 83 | | HN-BLACKLIST-SPAMHAUS.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-SPAMHAUS.rsc) | 84 | | HN-BLACKLIST-TOR-EXITS-NODES.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-TOR-EXITS-NODES.rsc) | 85 | | HN-BLACKLIST-TOR-EXITS-NODES-IPv6.rsc | Mikrotik RouterOS | IPv6 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-TOR-EXITS-NODES-IPv6.rsc) | 86 | | HN-BLACKLIST-TOR-RELAYS.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-TOR-RELAYS.rsc) | 87 | | HN-BLACKLIST-TOR-RELAYS-IPv6.rsc | Mikrotik RouterOS | IPv6 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-TOR-RELAYS-IPv6.rsc) | 88 | | HN-BLACKLIST-VOIPBL.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-VOIPBL.rsc) | 89 | | HN-BLACKLIST-IPSUM-TIF.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-IPSUM-TIF.rsc) | 90 | | HN-BLACKLIST-GREENSNOW.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-GREENSNOW.rsc) | 91 | | HN-BLACKLIST-COMPROMISEDIPS.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-COMPROMISEDIPS.rsc) | 92 | | HN-BLACKLIST-CI-BADGUYS.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-CI-BADGUYS.rsc) | 93 | | HN-BLACKLIST-MIRAI-TRACKER.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-MIRAI-TRACKER.rsc) | 94 | | HN-BLACKLIST-RUTGERS-DROP.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-RUTGERS-DROP.rsc) | 95 | | HN-BLACKLIST-TALOSINTELLIGENCE.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-TALOSINTELLIGENCE.rsc) | 96 | | HN-BLACKLIST-DANGER-RULEZ.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-DANGER-RULEZ.rsc) | 97 | | HN-BLACKLIST-WP.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-WP.rsc) | 98 | | HN-BLACKLIST-PUSHING-INERTIA.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-PUSHING-INERTIA.rsc) | 99 | | HN-BLACKLIST-BLOCKLIST-NET-UA.rsc | Mikrotik RouterOS | IPv4 | [Download](https://raw.githubusercontent.com/HybridNetworks/BlackListBox/main/Mikrotik/HN-BLACKLIST-BLOCKLIST-NET-UA.rsc) | 100 | 101 | 102 | --- 103 | 104 | ## 💖 Support this project and IT Infrastructure :point_down: 105 | 106 | #### Buy a Coffee (International) :point_down: 107 | 108 | [![Support in Ko-Fi](https://img.shields.io/badge/Buy%20me%20a%20coffee-in%20Ko--Fi-ff5e5b?style=for-the-badge)](https://ko-fi.com/hybridnetworks) 109 | 110 | [![Support in Buy Me a Coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-in%20BuyMeaCoffee-ffed00?style=for-the-badge)](https://www.buymeacoffee.com/hybridnetworks) 111 | 112 | #### Buy a Coffee (Argentina Only) :point_down: 113 | 114 | [![Support in Cafecito](https://img.shields.io/badge/Buy%20me%20a%20coffee-in%20Cafecito-a9c0f2?style=for-the-badge)](https://cafecito.app/hybridnetworks) 115 | 116 | --- 117 | 118 | ## 📝 License 119 | 120 | ``` 121 | MIT License 122 | 123 | Copyright (c) 2022 HybridNetworks Ltd 124 | 125 | Permission is hereby granted, free of charge, to any person obtaining a copy 126 | of this software and associated documentation files (the "Software"), to deal 127 | in the Software without restriction, including without limitation the rights 128 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 129 | copies of the Software, and to permit persons to whom the Software is 130 | furnished to do so, subject to the following conditions: 131 | 132 | The above copyright notice and this permission notice shall be included in all 133 | copies or substantial portions of the Software. 134 | 135 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 136 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 137 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 138 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 139 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 140 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 141 | SOFTWARE. 142 | ``` 143 | 144 | --- 145 | 146 | ## 📧 Contact 147 | 148 | - Email: [Email HybridNetworks Ltd.](mailto:info@hybridnetworks.com.ar) 149 | 150 | - Project Link: [https://github.com/HybridNetworks/BlackListBox](https://github.com/HybridNetworks/BlackListBox) 151 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | We take security very seriously and ask that you follow the following process. 4 | 5 | 6 | ## Contact us 7 | If you think you may have found a security bug we ask that you privately send the details to info[at]hybridnetworks[dot]com[dot]ar. Please make sure to use a descriptive title in the email. 8 | 9 | 10 | ## Expectations 11 | We will generally get back to you within **24 hours**, but a more detailed response may take up to **48 hours**. 12 | 13 | ## History 14 | No reported issues 15 | -------------------------------------------------------------------------------- /generate_files.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import asyncio 4 | import os 5 | import fileinput 6 | import re 7 | import json 8 | from typing import List 9 | from urllib.request import urlopen 10 | from time import gmtime, strftime 11 | 12 | ################################################################################ 13 | # Helper Functions 14 | ################################################################################ 15 | 16 | def generate_output_folder() -> None: 17 | """ 18 | Create the output folder if it does not already exist 19 | """ 20 | if not os.path.isdir("Mikrotik"): 21 | os.mkdir("Mikrotik") 22 | 23 | ################################################################################ 24 | # Save File 25 | ################################################################################ 26 | 27 | def saveFile(final_list, name_list, comment_list, maintainer_list, mainurl_list, category_list, protocol_list): 28 | listEnd=[] 29 | for i in final_list: 30 | listEnd.append("add list=" + name_list + " comment=" + comment_list + " " + "address=" + i + "\n") 31 | 32 | finalFile = open("Mikrotik/" + name_list + ".rsc", "w") 33 | finalFile.write("# ============================================================\n") 34 | finalFile.write("# (C) 2011-" + strftime("%Y", gmtime()) + " HybridNetworks Ltd. -- All Rights Reserved\n") 35 | finalFile.write("#\n") 36 | finalFile.write("# Maintainer : " + maintainer_list + "\n") 37 | finalFile.write("# Maintainer URL : " + mainurl_list + "\n") 38 | finalFile.write("# Category : " + category_list + "\n") 39 | finalFile.write("#\n") 40 | finalFile.write("# Last Update : " + strftime("%Y-%m-%d %H:%M:%S", gmtime()) + "\n") 41 | finalFile.write("# Blacklist : " + comment_list + "\n") 42 | finalFile.write("#\n") 43 | finalFile.write("# ABOUT CONTACT:\n") 44 | finalFile.write("# HybridNetworks Ltd.\n") 45 | finalFile.write("# info@hybridnetworks.com.ar\n") 46 | finalFile.write("# https://hybridnetworks.com.ar\n") 47 | finalFile.write("#\n") 48 | finalFile.write("# Use this script only on the configured and supported device.\n") 49 | finalFile.write("# PLEASE do not change, edit or modify any part of this script.\n") 50 | finalFile.write("# PLEASE do not use on devices other than technical support.\n") 51 | finalFile.write("# PLEASE do not remove this notice or your copyright.\n") 52 | finalFile.write("#\n") 53 | finalFile.write("# If you are a developer or consultant and want to incorporate\n") 54 | finalFile.write("# this script into your own products. PLEASE contact us to receive\n") 55 | finalFile.write("# permits under terms and conditions.\n") 56 | finalFile.write("#\n") 57 | finalFile.write("# ============================================================\n") 58 | finalFile.write("\n") 59 | 60 | if protocol_list == "IPv4": 61 | finalFile.write("/ip firewall address-list" + "\n") 62 | 63 | if protocol_list == "IPv6": 64 | finalFile.write("/ipv6 firewall address-list" + "\n") 65 | 66 | finalFile.writelines(listEnd) 67 | finalFile.close() 68 | 69 | ################################################################################ 70 | # Download List 71 | ################################################################################ 72 | 73 | def downloadNow(url_list, name_list, comment_list, delimiter_list, mask_list, custom_list, maintainer_list, mainurl_list, category_list, protocol_list) -> None: 74 | try: 75 | response = urlopen(url_list).read() 76 | response_data = response.decode('utf-8') 77 | if delimiter_list: 78 | response_data = response_data.replace(delimiter_list, "\n") 79 | 80 | response_list = response_data.split("\n") 81 | 82 | re_ip = re.compile(r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}') 83 | re_ip_mask = re.compile(r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\/\d{1,2}') 84 | 85 | re_ip_v6 = re.compile(r'(?:^|(?<=\s))(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))(?=\s|$)') 86 | 87 | if protocol_list == "IPv4": 88 | lst=[] 89 | if mask_list: 90 | for line in response_list: 91 | ip = re.findall(re_ip_mask,line) 92 | if ip: 93 | if custom_list: 94 | lst.append(str(ip[0]).replace("['", "").replace("']", "") + custom_list) 95 | else: 96 | lst.append(str(ip[0]).replace("['", "").replace("']", "")) 97 | else: 98 | for line in response_list: 99 | ip = re.findall(re_ip,line) 100 | if ip: 101 | if custom_list: 102 | lst.append(str(ip[0]).replace("['", "").replace("']", "") + custom_list) 103 | else: 104 | lst.append(str(ip[0]).replace("['", "").replace("']", "")) 105 | 106 | saveFile(lst, name_list, comment_list, maintainer_list, mainurl_list, category_list, protocol_list) 107 | 108 | if protocol_list == "IPv6": 109 | lst=[] 110 | for line in response_list: 111 | ip = re.search(re_ip_v6,line) 112 | if ip: 113 | if custom_list: 114 | lst.append(str(ip[0]).replace("['", "").replace("']", "") + custom_list) 115 | else: 116 | lst.append(str(ip[0]).replace("['", "").replace("']", "")) 117 | 118 | saveFile(lst, name_list, comment_list, maintainer_list, mainurl_list, category_list, protocol_list) 119 | 120 | except: 121 | print("An exception occurred: " + url_list) 122 | 123 | ################################################################################ 124 | # Parse JSON 125 | ################################################################################ 126 | 127 | def startNow() -> None: 128 | f = open('sites.json',) 129 | data = json.load(f) 130 | for i in data['blacklistbox']: 131 | downloadNow(i['url'], i['list'], i['comment'], i['delimiter'], i['mask'], i['subnet'], i['maintainer'], i['mainurl'], i['category'], i['protocol']) 132 | f.close() 133 | 134 | ################################################################################ 135 | # Main Function 136 | ################################################################################ 137 | 138 | async def main() -> None: 139 | """ 140 | Generate all blacklists 141 | """ 142 | access_token = os.getenv("ACCESS_TOKEN") 143 | if not access_token: 144 | # access_token = os.getenv("GITHUB_TOKEN") 145 | raise Exception("A personal access token is required to proceed!") 146 | exclude_repos = os.getenv("EXCLUDED") 147 | exclude_repos = ({x.strip() for x in exclude_repos.split(",")} 148 | if exclude_repos else None) 149 | exclude_langs = os.getenv("EXCLUDED_LANGS") 150 | exclude_langs = ({x.strip() for x in exclude_langs.split(",")} 151 | if exclude_langs else None) 152 | generate_output_folder() 153 | startNow() 154 | 155 | 156 | if __name__ == "__main__": 157 | asyncio.run(main()) 158 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | aiohttp -------------------------------------------------------------------------------- /sites.json: -------------------------------------------------------------------------------- 1 | { 2 | "blacklistbox": [ 3 | { 4 | "maintainer": "Fission Relays", 5 | "mainurl": "https://fissionrelays.net/", 6 | "category": "tor exits nodes", 7 | "url": "https://lists.fissionrelays.net/tor/exits-ipv4.txt", 8 | "list": "HN-BLACKLIST-TOR-EXITS-NODES", 9 | "comment": "TOR-EXITS-NODES", 10 | "delimiter": "", 11 | "mask": false, 12 | "subnet": "", 13 | "protocol": "IPv4" 14 | }, 15 | { 16 | "maintainer": "Fission Relays", 17 | "mainurl": "https://fissionrelays.net/", 18 | "category": "tor exits nodes", 19 | "url": "https://lists.fissionrelays.net/tor/exits-ipv6.txt", 20 | "list": "HN-BLACKLIST-TOR-EXITS-NODES-IPv6", 21 | "comment": "TOR-EXITS-NODES-IPv6", 22 | "delimiter": "", 23 | "mask": false, 24 | "subnet": "", 25 | "protocol": "IPv6" 26 | }, 27 | { 28 | "maintainer": "Fission Relays", 29 | "mainurl": "https://fissionrelays.net/", 30 | "category": "tor relays", 31 | "url": "https://lists.fissionrelays.net/tor/relays-ipv4.txt", 32 | "list": "HN-BLACKLIST-TOR-RELAYS", 33 | "comment": "TOR-RELAYS", 34 | "delimiter": "", 35 | "mask": false, 36 | "subnet": "", 37 | "protocol": "IPv4" 38 | }, 39 | { 40 | "maintainer": "Fission Relays", 41 | "mainurl": "https://fissionrelays.net/", 42 | "category": "tor relays", 43 | "url": "https://lists.fissionrelays.net/tor/relays-ipv6.txt", 44 | "list": "HN-BLACKLIST-TOR-RELAYS-IPv6", 45 | "comment": "TOR-RELAYS-IPv6", 46 | "delimiter": "", 47 | "mask": false, 48 | "subnet": "", 49 | "protocol": "IPv6" 50 | }, 51 | { 52 | "maintainer": "Feodo Tracker by Abuse.ch", 53 | "mainurl": "https://feodotracker.abuse.ch/", 54 | "category": "malware, botnet", 55 | "url": "https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt", 56 | "list": "HN-BLACKLIST-FEODOTRACKER-C2", 57 | "comment": "FEODOTRACKER-C2", 58 | "delimiter": "", 59 | "mask": false, 60 | "subnet": "", 61 | "protocol": "IPv4" 62 | }, 63 | { 64 | "maintainer": "Feodo Tracker by Abuse.ch", 65 | "mainurl": "https://feodotracker.abuse.ch/", 66 | "category": "malware, botnet", 67 | "url": "https://feodotracker.abuse.ch/downloads/ipblocklist.txt", 68 | "list": "HN-BLACKLIST-FEODOTRACKER-C2-IOCs", 69 | "comment": "FEODOTRACKER-C2-IOCs", 70 | "delimiter": "", 71 | "mask": false, 72 | "subnet": "", 73 | "protocol": "IPv4" 74 | }, 75 | { 76 | "maintainer": "Feodo Tracker by Abuse.ch", 77 | "mainurl": "https://feodotracker.abuse.ch/", 78 | "category": "malware, botnet", 79 | "url": "https://feodotracker.abuse.ch/downloads/ipblocklist_aggressive.txt", 80 | "list": "HN-BLACKLIST-FEODOTRACKER-C2-IOCs-AGGRESIVE", 81 | "comment": "FEODOTRACKER-C2-IOCs-AGGRESIVE", 82 | "delimiter": "", 83 | "mask": false, 84 | "subnet": "", 85 | "protocol": "IPv4" 86 | }, 87 | { 88 | "maintainer": "The Spamhaus Project", 89 | "mainurl": "https://spamhaus.org/", 90 | "category": "reputation, spam", 91 | "url": "https://www.spamhaus.org/drop/drop.txt", 92 | "list": "HN-BLACKLIST-SPAMHAUS", 93 | "comment": "SPAMHAUS-DROP", 94 | "delimiter": "", 95 | "mask": true, 96 | "subnet": "", 97 | "protocol": "IPv4" 98 | }, 99 | { 100 | "maintainer": "DShield | Internet Security", 101 | "mainurl": "https://dshield.org/", 102 | "category": "attacks", 103 | "url": "https://feeds.dshield.org/block.txt", 104 | "list": "HN-BLACKLIST-DSHIELD", 105 | "comment": "DSHIELD", 106 | "delimiter": "", 107 | "mask": false, 108 | "subnet": "/24", 109 | "protocol": "IPv4" 110 | }, 111 | { 112 | "maintainer": "My IP Address | Blacklist IP", 113 | "mainurl": "https://myip.ms/", 114 | "category": "abuse, webbot", 115 | "url": "https://myip.ms/files/blacklist/general/latest_blacklist.txt", 116 | "list": "HN-BLACKLIST-MYIPMS", 117 | "comment": "MYIPMS-DATABASE", 118 | "delimiter": "", 119 | "mask": false, 120 | "subnet": "", 121 | "protocol": "IPv4" 122 | }, 123 | { 124 | "maintainer": "My IP Address | Blacklist IP", 125 | "mainurl": "https://myip.ms/", 126 | "category": "abuse, webbot", 127 | "url": "https://myip.ms/files/blacklist/general/latest_blacklist.txt", 128 | "list": "HN-BLACKLIST-MYIPMS-IPv6", 129 | "comment": "MYIPMS-DATABASE-IPv6", 130 | "delimiter": "", 131 | "mask": false, 132 | "subnet": "", 133 | "protocol": "IPv6" 134 | }, 135 | { 136 | "maintainer": "Yoyo Internet Services", 137 | "mainurl": "https://yoyo.org/", 138 | "category": "adservers", 139 | "url": "https://pgl.yoyo.org/adservers/iplist.php?ipformat=plain&showintro=0&mimetype=plaintext", 140 | "list": "HN-BLACKLIST-ADS-YOYO", 141 | "comment": "PGL-YOYO-ADS", 142 | "delimiter": "", 143 | "mask": false, 144 | "subnet": "", 145 | "protocol": "IPv4" 146 | }, 147 | { 148 | "maintainer": "Okean", 149 | "mainurl": "https://www.okean.com/", 150 | "category": "cidr", 151 | "url": "https://www.okean.com/chinacidr.txt", 152 | "list": "HN-BLACKLIST-CHINA-CIDR", 153 | "comment": "CHINA-CIDR-BLOCKS", 154 | "delimiter": "", 155 | "mask": true, 156 | "subnet": "", 157 | "protocol": "IPv4" 158 | }, 159 | { 160 | "maintainer": "Okean", 161 | "mainurl": "https://www.okean.com/", 162 | "category": "cidr", 163 | "url": "https://www.okean.com/sinokoreacidr.txt", 164 | "list": "HN-BLACKLIST-CHINA-KOREA-CIDR", 165 | "comment": "CHINA-KOREA-CIDR-BLOCKS", 166 | "delimiter": "", 167 | "mask": true, 168 | "subnet": "", 169 | "protocol": "IPv4" 170 | }, 171 | { 172 | "maintainer": "Fail2Ban-Reporting Service", 173 | "mainurl": "https://blocklist.de/", 174 | "category": "attacks", 175 | "url": "http://lists.blocklist.de/lists/all.txt", 176 | "list": "HN-BLACKLIST-BLOCKLIST.DE-ALL", 177 | "comment": "ALL-BLOCKLIST.DE", 178 | "delimiter": "", 179 | "mask": false, 180 | "subnet": "", 181 | "protocol": "IPv4" 182 | }, 183 | { 184 | "maintainer": "Fail2Ban-Reporting Service", 185 | "mainurl": "https://blocklist.de/", 186 | "category": "attacks, bots", 187 | "url": "https://lists.blocklist.de/lists/bots.txt", 188 | "list": "HN-BLACKLIST-BLOCKLIST.DE-BOTS", 189 | "comment": "BOTS-BLOCKLIST.DE", 190 | "delimiter": "", 191 | "mask": false, 192 | "subnet": "", 193 | "protocol": "IPv4" 194 | }, 195 | { 196 | "maintainer": "FireHOL", 197 | "mainurl": "https://firehol.org/", 198 | "category": "attacks", 199 | "url": "https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/firehol_level1/master/ip.list", 200 | "list": "HN-BLACKLIST-FIREHOL-LEVEL1", 201 | "comment": "FIREHOL-LEVEL1", 202 | "delimiter": "", 203 | "mask": true, 204 | "subnet": "", 205 | "protocol": "IPv4" 206 | }, 207 | { 208 | "maintainer": "BadIPs", 209 | "mainurl": "https://badips.com", 210 | "category": "malware", 211 | "url": "https://hosts.ubuntu101.co.za/badips.txt", 212 | "list": "HN-BLACKLIST-BADIPS", 213 | "comment": "BADIPS", 214 | "delimiter": "", 215 | "mask": false, 216 | "subnet": "", 217 | "protocol": "IPv4" 218 | }, 219 | { 220 | "maintainer": "ScopServ International Inc.", 221 | "mainurl": "http://www.voipbl.org/", 222 | "category": "attacks, voip", 223 | "url": "http://www.voipbl.org/update/", 224 | "list": "HN-BLACKLIST-VOIPBL", 225 | "comment": "VOIPBL", 226 | "delimiter": " ", 227 | "mask": true, 228 | "subnet": "", 229 | "protocol": "IPv4" 230 | }, 231 | { 232 | "maintainer": "Ultimate Hosts Blacklist", 233 | "mainurl": "https://github.com/Ultimate-Hosts-Blacklist/", 234 | "category": "attacks, wordpress", 235 | "url": "https://raw.githubusercontent.com/mitchellkrogza/Top-Attacking-IP-Addresses-Against-Wordpress-Sites/master/wordpress-attacking-ips.txt", 236 | "list": "HN-BLACKLIST-WP", 237 | "comment": "TOP-ATTACK-WPS", 238 | "delimiter": "", 239 | "mask": false, 240 | "subnet": "", 241 | "protocol": "IPv4" 242 | }, 243 | { 244 | "maintainer": "IPsum Threat Intelligence Feed", 245 | "mainurl": "https://github.com/stamparm/ipsum", 246 | "category": "attacks, wordpress", 247 | "url": "https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt", 248 | "list": "HN-BLACKLIST-IPSUM-TIF", 249 | "comment": "IPsum-Threat-Intelligence-Feed", 250 | "delimiter": "", 251 | "mask": false, 252 | "subnet": "", 253 | "protocol": "IPv4" 254 | }, 255 | { 256 | "maintainer": "GreenSnow by PlanetHoster", 257 | "mainurl": "https://greensnow.co/", 258 | "category": "attacks, ssh, portscanner, more", 259 | "url": "https://blocklist.greensnow.co/greensnow.txt", 260 | "list": "HN-BLACKLIST-GREENSNOW", 261 | "comment": "GREENSNOW-BLACKLIST", 262 | "delimiter": "", 263 | "mask": false, 264 | "subnet": "", 265 | "protocol": "IPv4" 266 | }, 267 | { 268 | "maintainer": "Proofpoint Inc", 269 | "mainurl": "https://proofpoint.com/", 270 | "category": "reputation, attacks, compromised", 271 | "url": "https://rules.emergingthreats.net/blockrules/compromised-ips.txt", 272 | "list": "HN-BLACKLIST-COMPROMISEDIPS", 273 | "comment": "EMERGINGTHREATS-COMPROMISED-IPS", 274 | "delimiter": "", 275 | "mask": false, 276 | "subnet": "", 277 | "protocol": "IPv4" 278 | }, 279 | { 280 | "maintainer": "CINS Army List IP", 281 | "mainurl": "https://cinsscore.com/", 282 | "category": "reputation, compromised", 283 | "url": "https://cinsscore.com/list/ci-badguys.txt", 284 | "list": "HN-BLACKLIST-CI-BADGUYS", 285 | "comment": "CI-BADGUYS-BLACKLIST", 286 | "delimiter": "", 287 | "mask": false, 288 | "subnet": "", 289 | "protocol": "IPv4" 290 | }, 291 | { 292 | "maintainer": "Mirai Tracker by zbetcheckin", 293 | "mainurl": "https://twitter.com/zbetcheckin", 294 | "category": "botnet", 295 | "url": "https://mirai.security.gives/data/ip_list.txt", 296 | "list": "HN-BLACKLIST-MIRAI-TRACKER", 297 | "comment": "MIRAI-TRACKER", 298 | "delimiter": "", 299 | "mask": false, 300 | "subnet": "", 301 | "protocol": "IPv4" 302 | }, 303 | { 304 | "maintainer": "Rutgers", 305 | "mainurl": "https://www.rutgers.edu/", 306 | "category": "attacks", 307 | "url": "https://report.cs.rutgers.edu/DROP/attackers", 308 | "list": "HN-BLACKLIST-RUTGERS-DROP", 309 | "comment": "RUTGERS-DROP-ATTACKERS", 310 | "delimiter": "", 311 | "mask": false, 312 | "subnet": "", 313 | "protocol": "IPv4" 314 | }, 315 | { 316 | "maintainer": "Cisco Talos Intelligence Group", 317 | "mainurl": "https://talosintelligence.com", 318 | "category": "reputation", 319 | "url": "https://snort-org-site.s3.amazonaws.com/production/document_files/files/000/036/031/original/ip-filter.blf", 320 | "list": "HN-BLACKLIST-TALOSINTELLIGENCE", 321 | "comment": "TALOSINTELLIGENCE-IP-BLACKLIST", 322 | "delimiter": "", 323 | "mask": false, 324 | "subnet": "", 325 | "protocol": "IPv4" 326 | }, 327 | { 328 | "maintainer": "Daniel Gerzo", 329 | "mainurl": "https://danger.rulez.sk/", 330 | "category": "bruteforce, reputation, ssh", 331 | "url": "https://danger.rulez.sk/projects/bruteforceblocker/blist.php", 332 | "list": "HN-BLACKLIST-DANGER-RULEZ", 333 | "comment": "DANGER-RULEZ-IP-BRUTEFORCE", 334 | "delimiter": "", 335 | "mask": false, 336 | "subnet": "", 337 | "protocol": "IPv4" 338 | }, 339 | { 340 | "maintainer": "Pushing Inertia", 341 | "mainurl": "http://pushinginertia.com/", 342 | "category": "reputation, bots, spiders, scrapers", 343 | "url": "https://raw.githubusercontent.com/pushinginertia/ip-blacklist/master/ip_blacklist.conf", 344 | "list": "HN-BLACKLIST-PUSHING-INERTIA", 345 | "comment": "PUSHING-INERTIA", 346 | "delimiter": "", 347 | "mask": true, 348 | "subnet": "", 349 | "protocol": "IPv4" 350 | }, 351 | { 352 | "maintainer": "BlockList.net.ua", 353 | "mainurl": "https://blocklist.net.ua/", 354 | "category": "abuse, spam, bruteforce, attacks", 355 | "url": "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/blocklist_net_ua.ipset", 356 | "list": "HN-BLACKLIST-BLOCKLIST-NET-UA", 357 | "comment": "BLOCKLIST-NET-UA", 358 | "delimiter": "", 359 | "mask": false, 360 | "subnet": "", 361 | "protocol": "IPv4" 362 | }, 363 | { 364 | "maintainer": "StopForumSpam.com", 365 | "mainurl": "http://www.stopforumspam.com/", 366 | "category": "abuse, spam", 367 | "url": "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam.ipset", 368 | "list": "HN-BLACKLIST-STOPFORUMSPAM", 369 | "comment": "STOP-FORUM-SPAM", 370 | "delimiter": "", 371 | "mask": false, 372 | "subnet": "", 373 | "protocol": "IPv4" 374 | }, 375 | { 376 | "maintainer": "StopForumSpam.com", 377 | "mainurl": "http://www.stopforumspam.com/", 378 | "category": "abuse", 379 | "url": "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_1d.ipset", 380 | "list": "HN-BLACKLIST-STOPFORUMSPAM-1D", 381 | "comment": "STOP-FORUM-SPAM-1D", 382 | "delimiter": "", 383 | "mask": false, 384 | "subnet": "", 385 | "protocol": "IPv4" 386 | }, 387 | { 388 | "maintainer": "StopForumSpam.com", 389 | "mainurl": "http://www.stopforumspam.com/", 390 | "category": "abuse", 391 | "url": "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_7d.ipset", 392 | "list": "HN-BLACKLIST-STOPFORUMSPAM-7D", 393 | "comment": "STOP-FORUM-SPAM-7D", 394 | "delimiter": "", 395 | "mask": false, 396 | "subnet": "", 397 | "protocol": "IPv4" 398 | }, 399 | { 400 | "maintainer": "dan.me.uk", 401 | "mainurl": "https://www.dan.me.uk/", 402 | "category": "anonymizers, tor", 403 | "url": "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/dm_tor.ipset", 404 | "list": "HN-BLACKLIST-DAN-TOR-NODES", 405 | "comment": "DYNAMIC-TOR-NODES", 406 | "delimiter": "", 407 | "mask": false, 408 | "subnet": "", 409 | "protocol": "IPv4" 410 | } 411 | ] 412 | } 413 | --------------------------------------------------------------------------------