Convert Figma logo to code with AI

EnergizedProtection logoblock

Let's make an annoyance free, better open internet, altogether!

2,480
198
2,480
236

Top Related Projects

26,451

🔒 Consolidating and extending hosts files from several well-curated sources. Optionally pick extensions for porn, social media, and other categories.

7,036

AdAway is a free and open source ad blocker for Android.

Curated and well-maintained hostfile to block ads, tracking, cryptomining, and more! Updated regularly. ⚡🔒

Automatically updated, moderated and optimized lists for blocking ads, trackers, malware and other garbage

AdGuard Content Blocking Filters

Quick Overview

EnergizedProtection/block is a comprehensive collection of host files and domain lists designed to block ads, trackers, malware, and other unwanted content across various devices and platforms. It offers multiple filter lists of varying sizes and focuses, allowing users to choose the level of protection that suits their needs.

Pros

  • Extensive coverage with millions of domains blocked
  • Regular updates to maintain effectiveness against new threats
  • Flexible options with different list sizes and focuses
  • Compatible with various ad-blocking and DNS-level filtering solutions

Cons

  • May occasionally block legitimate domains, requiring manual whitelisting
  • Larger lists can impact device performance on less powerful hardware
  • Requires some technical knowledge to implement effectively
  • Potential for over-blocking, which might break some websites or services

Getting Started

To use EnergizedProtection/block:

  1. Choose a filter list from the repository (e.g., energized/ultimate/hosts)
  2. Download the raw file or use the direct URL in your ad-blocker or DNS-level filtering solution
  3. For hosts file implementation:
    • On Windows: Copy the contents to C:\Windows\System32\drivers\etc\hosts
    • On macOS/Linux: Copy the contents to /etc/hosts
  4. For ad-blockers like uBlock Origin:
    • Go to the dashboard
    • Under "Custom" in "Filter lists," add the raw URL of the chosen list
  5. For DNS-level filtering (e.g., Pi-hole):
    • Add the raw URL of the chosen list to your blocklist sources

Note: Specific implementation steps may vary depending on your chosen blocking method and device. Always backup your existing configuration before making changes.

Competitor Comparisons

26,451

🔒 Consolidating and extending hosts files from several well-curated sources. Optionally pick extensions for porn, social media, and other categories.

Pros of hosts

  • Simpler, more straightforward approach to blocking
  • Easier to customize and maintain for individual users
  • Widely compatible with various systems and devices

Cons of hosts

  • Less comprehensive coverage compared to block
  • May require more manual intervention for updates
  • Limited flexibility in terms of filtering options

Code Comparison

hosts:

0.0.0.0 example.com
0.0.0.0 ads.example.com

block:

example.com
ads.example.com
||example.com^
||ads.example.com^

Key Differences

  • block offers more extensive blocking lists and categories
  • hosts uses a simpler hosts file format, while block supports various formats
  • block provides more frequent updates and actively maintained lists
  • hosts is more lightweight and easier to implement on a wider range of devices

Use Cases

  • hosts is ideal for users seeking a simple, lightweight solution
  • block is better suited for those wanting comprehensive protection and frequent updates

Community and Support

  • Both projects have active communities and regular contributions
  • block has more frequent releases and a larger variety of list options
  • hosts benefits from its simplicity, making it easier for users to contribute and customize
7,036

AdAway is a free and open source ad blocker for Android.

Pros of AdAway

  • Open-source Android app with a user-friendly interface for ad-blocking
  • Supports custom host files and whitelist/blacklist functionality
  • Allows for local DNS server setup for more efficient ad-blocking

Cons of AdAway

  • Limited to Android devices, not a universal solution
  • Requires root access for full functionality
  • May not be as frequently updated as some other blocklists

Code Comparison

AdAway (Java):

private void applyHostsFile() {
    CommandExecutor.Result result = runScriptAsRoot(Constants.SCRIPT_FILE_PATH);
    if (result.exitCode == 0) {
        // Hosts file applied successfully
    } else {
        // Error applying hosts file
    }
}

EnergizedProtection (Shell script):

#!/bin/sh

HOSTS_FILE="/etc/hosts"
BACKUP_FILE="/etc/hosts.bak"

# Backup original hosts file
cp $HOSTS_FILE $BACKUP_FILE

# Apply new hosts entries
cat blocklist.txt >> $HOSTS_FILE

While AdAway is an Android app with a GUI, EnergizedProtection/block is primarily a collection of blocklists that can be used with various ad-blocking solutions. The code comparison shows the different approaches: AdAway uses Java for its Android implementation, while EnergizedProtection relies on shell scripts for applying blocklists.

Pros of GoodbyeAds

  • Specifically targets mobile ads and tracking
  • Includes regional ad blocking lists for certain countries
  • Offers a lightweight version for low-end devices

Cons of GoodbyeAds

  • Less frequent updates compared to EnergizedProtection
  • Smaller community and fewer contributors
  • Limited configuration options

Code Comparison

EnergizedProtection:

0.0.0.0 example-ad-domain.com
0.0.0.0 tracking-pixel.net
0.0.0.0 analytics.service.com

GoodbyeAds:

127.0.0.1 mobile-ad.example.com
127.0.0.1 app-analytics.com
127.0.0.1 tracking.mobileapp.net

Both projects use similar host file formats, but GoodbyeAds tends to focus more on mobile-specific domains. EnergizedProtection often includes a wider range of domains and offers more comprehensive lists.

EnergizedProtection provides more extensive blocking lists with frequent updates and a larger community. It offers various configurations and formats for different use cases. GoodbyeAds, while more focused on mobile ads, has a smaller scope and less frequent updates. However, it may be more suitable for users primarily concerned with mobile ad blocking or those using low-end devices.

Curated and well-maintained hostfile to block ads, tracking, cryptomining, and more! Updated regularly. ⚡🔒

Pros of blacklist

  • Simpler structure with fewer files, making it easier to navigate
  • Focused primarily on adblocking and tracking prevention
  • Regularly updated with community contributions

Cons of blacklist

  • Less comprehensive coverage compared to block
  • Fewer customization options and filter categories
  • Limited documentation and usage instructions

Code Comparison

blacklist:

0.0.0.0 ad.doubleclick.net
0.0.0.0 static.doubleclick.net
0.0.0.0 m.doubleclick.net
0.0.0.0 mediavisor.doubleclick.net

block:

# Energized Protection - block
# https://energized.pro

0.0.0.0 ad.doubleclick.net
0.0.0.0 static.doubleclick.net
0.0.0.0 m.doubleclick.net
0.0.0.0 mediavisor.doubleclick.net

Both repositories use similar formats for blocking domains, with block including additional metadata and comments. The block repository offers more extensive lists and categories, while blacklist provides a more streamlined approach.

block offers a wider range of filter lists and protection options, making it suitable for users who want comprehensive control over their blocking. blacklist, on the other hand, is more straightforward and easier to implement for basic adblocking needs.

Users should choose based on their specific requirements, with block being better for advanced users seeking extensive customization, and blacklist for those preferring a simpler, no-frills approach to adblocking.

Automatically updated, moderated and optimized lists for blocking ads, trackers, malware and other garbage

Pros of hosts-blocklists

  • More frequent updates, providing up-to-date protection against new threats
  • Larger blocklist with a broader range of domains covered
  • Includes additional categories like gambling and social media for more comprehensive blocking options

Cons of hosts-blocklists

  • May cause more false positives due to its extensive blocklist
  • Potentially higher resource usage on devices due to the larger number of entries
  • Less customization options compared to block's variety of list types

Code Comparison

hosts-blocklists:

0.0.0.0 example-ad-domain.com
0.0.0.0 malware-site.net
0.0.0.0 tracking-domain.org

block:

127.0.0.1 localhost
127.0.0.1 example-ad-domain.com
127.0.0.1 malware-site.net
0.0.0.0 tracking-domain.org

Both repositories use similar formats for their blocklists, with hosts-blocklists consistently using 0.0.0.0 as the blocking IP, while block uses a mix of 127.0.0.1 and 0.0.0.0. The block repository also includes the localhost entry, which is not present in hosts-blocklists.

Overall, hosts-blocklists offers a more extensive and frequently updated list, while block provides more customization options and potentially fewer false positives. The choice between the two depends on the user's specific needs and preferences for blocking coverage versus precision.

AdGuard Content Blocking Filters

Pros of AdguardFilters

  • More comprehensive and frequently updated filter lists
  • Supports a wider range of ad-blocking scenarios and use cases
  • Better documentation and community support

Cons of AdguardFilters

  • Larger file sizes, potentially impacting performance on low-end devices
  • More complex structure, which may be overwhelming for beginners
  • Higher likelihood of false positives due to aggressive filtering

Code Comparison

AdguardFilters:

! Title: AdGuard Base filter
! Description: EasyList + AdGuard English filter
! Version: 2.1.45.80
! TimeUpdated: 2023-04-20T12:41:49+00:00
! Expires: 4 days (update frequency)

block:

# Energized Protection - block
# Description: A merged collection of hosts from reputable sources
# Version: 23.04.225
# Release: 225
# Entries: 1,234,567

Both repositories provide filter lists for ad-blocking and privacy protection. AdguardFilters offers a more extensive and frequently updated set of filters, catering to various scenarios. However, this comes at the cost of larger file sizes and potentially more complex management. block, on the other hand, focuses on a simpler, merged collection of hosts from reputable sources, which may be easier to implement but might not cover as many use cases as AdguardFilters.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Cover

Energized Protection - block ⚡

22.12.336.16 _time_stamp_ _time_stamp_
ad.porn.malware blocking.
This repository consolidates several reputable filters, and merges them into couple of protection packs with duplicates and dead/inactive domains removed. A variety of tailored packs are provided.

A Trio Project with ❤ from Bangladesh, India & Zanzibar.

Features

  • hosts based: based on hosts file, all the bad stuffs blocked with 0.0.0.0
  • any device: compatible with all devices, regardless of OS.
  • blockings: strictly blocks advertisements, malwares, spams, spyware, statistics & trackers on both web browsing and applications.
  • multiple formats: different variants for different devices.
  • speed you need: reduces page loading time upto half of its actual time!
  • privacy: helps to increase privacy by blocking spyware and tracking systems.
  • saves expense: reduces bandwidth usage.
  • support: user friendly chat group got your back!
  • clean: no extra abracadabra!

What is this for?

This Energized System is designed for Unix-like systems, gets a list of domains that serve ads, tracking scripts and malware from multiple reputable sources and creates protection packs that prevents your system from connecting to them.

Notice

- Builds updated every 24 hours.

Packs

Basic info about all Energized Protection packs.

PACK NAMEDESCRIPTIONBEST USE DEVICEUNIQUE ENTRIESSIZE (AVG.)SOURCE
SparkTrue lightweight protection.ANY2.5K/spark
Blu GoMid range lightweight protection-go!MID END2.7K/bluGo
BluMid range lightweight protection.MID END2.7K/blu
BasicBalanced protection.HIGH END2.7K/basic
PornPornware blocking.HIGH END0/porn
UltimateFlagship protection.HIGH END2.7K/ultimate
UnifiedFlagship protection with pornware blocking.HIGH END2.7K/unified

Extensions

Basic info about all the available extensions.

PACK NAMEDESCRIPTIONBEST USE DEVICEUNIQUE ENTRIESSIZE (AVG.)SOURCE
Xtreme ExtensionPrivacy protection at its best.ANY12.7K/e/xtreme
Social ExtensionBlock social apps and sites.ANY6,974220K/e/social
Porn Lite ExtensionLite pornware blocking.ANY0/e/porn-lite
Regional ExtensionRegional annoyance blocking.MID - HIGH END63,9721.5M/e/regional
IP ExtensionMalicious IP protection.MID - HIGH END2.2K/e/ips

Expectation: These unified packs should serve all devices, regardless of OS.

Best Use

You can use any practical way you want to use Energized Protection on your devices, if you know what you are doing. But if you are clueless, there are few suggestions.

  • rooted android: Energized Protection Magisk Module makes your experience better on Magisk-ly Rooted Android devices. Grab it from Magisk Manager > Download. If you aren't that familiar with that stuff, then you can use AdAway (Latest) with GIT RAW Sources now.
  • non-rooted android: If you are not using any root solution, then you can use DNS66, BLOKADA, Personal DNS Filter , Nebulo, or RethinkDNS + Firewall with any of the Energized Source.
  • ios: Use any Adblocking Client app with Energized Protection Source.
  • windows: On Windows, you can use HostsMan to get the best Windows Hosts Usage Experience. Make sure to disable DNS Client Service.
  • linux: Energized Protection Linux Script is there for you! Check here for more info. Or, simply use hosts!
  • adblockers: Use filter format with uBlock, AdGuard or any other extension, software & app.

For further assistance, knock us on our Telegram Group.

Formats

Different formats for various devices.

Packs

PACKAGEENTRIESHOSTS RAWHOSTS IPV6HOSTS TXTADBLOCK FILTERDOMAINSONE-LINEDNSMASQDNSMASQ IPV6UNBOUNDRPZRULESET
Spark****RAW (2.5K)TXT (2.5K)TXT (2.5K)FILTER (2.1K)LIST (2.1K)TXT (0)CONF (2.0K)CONF IPV6 (0)CONF (0)TXT (0)DAT (0)
Blu Go****RAW (2.7K)TXT (2.7K)TXT (2.7K)FILTER (2.1K)LIST (2.2K)TXT (0)CONF (2.2K)CONF IPV6 (2.2K)CONF (2.2K)TXT (2.3K)DAT (0)
Blu****RAW (2.7K)TXT (2.7K)TXT (2.7K)FILTER (2.3K)LIST (2.2K)TXT (2.1K)CONF (2.2K)CONF IPV6 (2.2K)CONF (2.2K)TXT (2.3K)DAT (0)
Basic****RAW (2.7K)TXT (2.7K)TXT (2.7K)FILTER (2.3K)LIST (2.2K)TXT (2.2K)CONF (2.2K)CONF IPV6 (2.2K)CONF (2.2K)TXT (2.4K)-
Porn****RAW (0)TXT (6.7K)TXT (0)FILTER (11K)LIST (11K)TXT (6.2K)CONF (11K)CONF IPV6 (11K)CONF (11K)TXT (6.5K)-
Ultimate****RAW (2.7K)TXT (2.7K)TXT (2.7K)FILTER (2.3K)LIST (2.3K)TXT (2.3K)CONF (2.2K)CONF IPV6 (2.3K)CONF (2.2K)TXT (2.5K)-
Unified****RAW (2.7K)TXT (2.7K)TXT (2.7K)FILTER (2.3K)LIST (2.3K)TXT (2.3K)CONF (2.3K)CONF IPV6 (2.3K)CONF (2.3K)TXT (2.5K)-

Note. Due to size issue, filter DAT (Ruleset) format is only available for Spark, Blu, BluGo and Extensions.

Extensions

PACKAGEENTRIESHOSTS RAWHOSTS IPV6ADBLOCK FILTERDOMAINS/IPsONE-LINEDNSMASQDNSMASQ IPV6UNBOUNDRPZRULESET
Xtreme Extension1RAWTXTFILTERLISTTXTCONFCONF IPV6CONFTXTDAT
Social Extension6,974RAWTXTFILTERLISTTXTCONFCONF IPV6CONFTXTDAT
Porn Lite Extension****RAWTXTFILTERLISTTXTCONFCONF IPV6CONFTXTDAT
Regional Extension63,972RAWTXTFILTERLISTTXTCONFCONF IPV6CONFTXTDAT
IP Extension****---LIST------

Note. Xtreme Pack is an enhanced protection pack. May break apps and sites.

Package Sources

Sources each pack and extension uses.

Packs

PackageSourcesTotal
SparkCore List + Adaway, Adguard Mobile Ads, MVPS hosts file, someonewhocares, Steven Black's Hosts and PGL yoyo.org7
Blu GoCore List + Spark + 280blocker, add.207Net, add.Dead, add.Risk, add.Spam, ad-wars, AdGuard Mobile Ads Filter, Mobile Specific & Spyware Firstparty, AntiPopAds, blackbook, EasyList Adservers, EasyPrivacy and Steven Black's Hosts21
BluCore List + Blu Go + AdGuard DNS & Tracking, Anudeep's Adservers, Better.fyi Trackers, Disconnect Advertising Filter List, EasyPrivacy, Hexxium Creations Threat List, hosts-blocklists, KADhosts, neoHosts, and YousList30
BasicCore List + Blu + 1Hosts PRO, Adguard Tracking Servers & Tracking Firstparty, DigitalSide Threat-Intel, ETH Phishing Detect, GNU Blacklist, Prigent Ads, Cryptojacking & Gambling, Quidsup Notrack Malware and WindowsSpyBlocker Hosts Spy42
PornCore Porn List + Airelle's Anti-Sex Hosts, Clefspeare's Pornhosts, EasyList Adult Adservers, Specific & Thirdparty, PornAway Blacklist, Porn List Light and Sinfonietta's Pornhosts9
UltimateCore List + Basic + 1Hosts (Pro), BarbBlock, Bjornstar's Hosts, Cybercrime, Disconnect Malvertising & Tracking Filter List, EasyPrivacy Specific, Thirdparty & Tracking Servers, Matomo Referrer Spam Blacklist, Openphish, Phishing Bad Sites, Phishing Hosts, Prigent's Malware & Phishing, Quidsup NoTrack and StopForumSpam57
UnifiedCore List + Core Porn List + Ultimate and Porn66

Extensions

ExtensionSourcesTotal
XtremeCore Xtreme List1
SocialCore Social List + AdGuard Social Media filter, Pop-Ups & Trackers, Adversity - Antisocial, Facebook Zero Hosts Block, Prigent Social Networks and Sinfonietta's Social7
Porn LiteCore Porn List + Clefspeare's Pornhosts, EasyList Adult Adservers, Specific & Thirdparty, PornAway Blacklist, Porn List Light and Sinfonietta's Pornhosts8
RegionalABPindo, AdBlockID, Adblock Estonian & Iran, Adguard Dutch, English, French, German, Japanese, Russian, Turkish & Spanish - Portuguese Filter, Dandelion Sprout's Nordic Filters, Easylist Brasil, China, Czech & Slovak, Dutch, French, Germany, Italy, India, Korea, Polish, Russian, Spanish and Thailand, Fanboy's Indian & Vietnamese, HostsVN, hufilter, Liste AR, Polish Adblock & Privacy Filters, RUAdList and Thai Ads Filter28
IPsFirehol 1, 2 & 3 IPs, GreenSnow Blacklisted IPs, IPsum, Malc0de IP Blacklist and yoyo.org IPs13

Sources

Updated sources from the following locations are always merged and included. Note. Active Source means the hosts file we use after whitelisting legit domains and removing dead inactive domains. Social and IP sources don't have active lists as for now.

SourceMaintainer(s)DescriptionHome PageRAW SourceLicenseActive/Filter Source
1HostsbadmojrA merged hosts file from a variety of other listsLINKRAWAll Rights ReservedSOURCE
1Hosts (Pro)badmojrPro pack from 1HostsLINKRAWAll Rights ReservedSOURCE
280blockerAppliliZMobile Adblock & Smartphone site ad blockLINKRAWCC BY-NC-ND 4.0SOURCE
ABPindoABPindoComfortable browsing without adsLINKRAWCC BY-SA 3.0SOURCE
ad-warsjdlingyuGreat Holy Purification (Translated)LINKRAWAll Rights ReservedSOURCE
AdAwayAdaway ORGAdAway is an open source ad blocker for Android using the hosts fileLINKRAWCC BY 3.0SOURCE
AdBlockIDrealodixIndonesian ad block filter listLINKRAWGPLv3SOURCE
Adblock EstonianGURUD.EEInternet almost without advertising for Estonian UserLINKRAWAll Rights ReservedSOURCE
Adblock IranfarrokhiAd blocking rules for websitesLINKRAWBSD-2-ClauseSOURCE
add.2o7NetFadeMind2o7Net tracking sites based on BadHosts contentLINKRAWMITSOURCE
add.DeadFadeMindDead sites based on BadHosts contentLINKRAWMITSOURCE
add.RiskFadeMindRisk content sites based on BadHosts contentLINKRAWMITSOURCE
add.SpamFadeMindSpam sites based on BadHosts contentLINKRAWMITSOURCE
AdGuard DNSAdguard TeamAdGuard Simplified Domain names filterLINKRAWCC BY-SA 3.0SOURCE
AdGuard Dutch FilterAdguard TeamAdGuard Dutch Adblocking FiltersLINKRAWCC BY-SA 3.0SOURCE
AdGuard English FilterAdguard TeamAdGuard English Adblocking FiltersLINKRAWCC BY-SA 3.0SOURCE
AdGuard French FilterAdguard TeamAdGuard French Adblocking FiltersLINKRAWCC BY-SA 3.0SOURCE
AdGuard German FilterAdguard TeamAdGuard German Adblocking FiltersLINKRAWCC BY-SA 3.0SOURCE
AdGuard Japanese FilterAdguard TeamAdGuard Japanese Adblocking FiltersLINKRAWCC BY-SA 3.0SOURCE
AdGuard Mobile Ads FilterAdguard TeamFilter that blocks ads on mobile devicesLINKRAWCC BY-SA 3.0SOURCE
AdGuard Mobile AdserversAdguard TeamMobile advertising networksLINKRAWCC BY-SA 3.0SOURCE
AdGuard Mobile SpecificAdguard TeamSpecific Applications BlocklistLINKRAWCC BY-SA 3.0SOURCE
AdGuard Russian FilterAdguard TeamAdGuard Russian Adblocking FiltersLINKRAWCC BY-SA 3.0SOURCE
AdGuard SafariAdguard TeamFilter that blocks ads on iOS mobile devices in Safari browserLINKRAWCC BY-SA 3.0SOURCE
AdGuard Social Media filterAdguard TeamFilter for social mediaLINKRAWCC BY-SA 3.0SOURCE
AdGuard Social Media Pop-UpsAdguard TeamFilter for social media popupsLINKRAWCC BY-SA 3.0FILTER
AdGuard Social TrackersAdguard TeamFilter for social media trackersLINKRAWCC BY-SA 3.0FILTER
Adguard Spanish/Portuguese FilterAdguard TeamFilter that enables removing of the ads from websites in SpanishLINKRAWCC BY-SA 3.0SOURCE
Adguard Tracking FirstpartyAdguard TeamBlocklist of tracking serversLINKRAWCC BY-SA 3.0SOURCE
Adguard Tracking ProtectionAdguard TeamComprehensive list of various online counters and web analytics toolsLINKRAWCC BY-SA 3.0SOURCE
Adguard Tracking ServersAdguard TeamBlocklist of tracking serversLINKRAWCC BY-SA 3.0SOURCE
Adguard Turkish FilterAdguard TeamAdGuard Turkish Adblocking FiltersLINKRAWCC BY-SA 3.0SOURCE
Adversity - AntisocialHubird-auSocial filters listLINKRAWCC BY 3.0SOURCE
Adware FiltersEasylistBlocks ads injected by adawareLINKRAWCC BY-SA 3.0SOURCE
Airelle's Anti-Sex HostsAirelleA hosts list blocking adult/pornographic sitesLINKRAWCC BY-NC 3.0SOURCE
AntiPopAdsYhonayList of popads.net domains for use in adblockLINKRAWWTFPLSOURCE
Anudeep's AdserversAnudeepCurated and well-maintained host file to block adsLINKRAWMITSOURCE
BarbBlockpaulgbBlacklists sites which have used DMCA takedownsLINKRAWMITSOURCE
Better.fyi TrackersBetter.fyiBetter.fyi Trackers BlocklistLINKRAWCC BY-SA 4.0SOURCE
Bjornstar's HostsBjorn StrombergHosts file, filled with advertisers and other purveyors of worthless contentLINKRAWThe UnlicenseSOURCE
blackbookstamparmNewly reported entries from public lists of malicious URLsLINKRAWThe UnlicenseSOURCE
Bulgarian List + EasyListThe EasyList Authors & Alex StanevA list combining Bulgarian List and EasyListLINKRAWGPLv3SOURCE
Clefspeare's PornhostsClefspeare13A consolidated anti porn hosts fileLINKRAWMITSOURCE
Cybercrime--LINKRAW-SOURCE
Dandelion Sprout's Nordic FiltersDandelion SproutRemoves adverts on Norwegian-, Danish- and Icelandic-language websitesLINKRAWDandelicenceSOURCE
DigitalSide Threat-IntelDavide BaglieriCyber Threat URLs, IPs and domainsLINKRAWMITSOURCE
Disconnect Advertising Filter ListDisconnectBlocks advertisementsLINKRAWGPLv3SOURCE
Disconnect Malvertising Filter ListDisconnectBlocks malvertisingLINKRAWGPLv3SOURCE
Disconnect Tracking Filter ListDisconnectBlocks trackersLINKRAWGPLv3SOURCE
EasyList AdserversThe EasyList AuthorsEasyList Adservers Blocking FilterLINKRAWGPLv3SOURCE
EasyList Adult AdserversThe EasyList AuthorsEasyList Adult Adservers Blocking FilterLINKRAWGPLv3SOURCE
EasyList Adult SpecificThe EasyList AuthorsEasyList Adult Adservers Specific Blocking FilterLINKRAWGPLv3SOURCE
EasyList Adult ThirdpartyThe EasyList AuthorsEasyList Adult Adservers Thirdparty Blocking FilterLINKRAWGPLv3SOURCE
EasyList Brasilinvisible666Complementary subscription to EasyListLINKRAWCC BY-SA 4.0SOURCE
EasyList ChinaJohn and LiChinese supplement for the EasyList filtersLINKRAWGPLv3SOURCE
EasyList Czech and SlovakTomáš TaroOfficial filter list file used for blocking ads on Czech and Slovak websitesLINKRAWCC BY-SA 4.0SOURCE
EasyList DutchThe EasyList AuthorsRemoves adverts on Dutch language websitesLINKRAWGPLv3SOURCE
EasyList FrenchThe EasyList AuthorsA merged list of Liste FR and EasyListLINKRAWCC BY-NC-SA 3.0SOURCE
EasyList GermanyThe EasyList AuthorsRemoves adverts on German language websitesLINKRAWGPLv3SOURCE
EasyList HebrewBsTRemoves adverts on Hebrew language websitesLINKRAWPermissiveSOURCE
EasyList ItalyThe EasyList AuthorsRemoves adverts on Italian language websitesLINKRAWGPLv3SOURCE
EasyList IndiaThe EasyList AuthorsRemoves adverts on Indian language websitesLINKRAWGPLv3SOURCE
EasyList KoreaThe EasyList AuthorsRemoves adverts on Korean language websitesLINKRAWGPLv3SOURCE
EasyList LatvianThe EasyList AuthorsA list combining Latvian List and EasyListLINKRAWCC BY-SA 4.0SOURCE
EasyList LiteAdBlockFilters that actually block and hide ads on the websites people visit mostLINKRAWGPLv3SOURCE
EasyList PolishThe EasyList AuthorsRemoves adverts on Polish language websitesLINKRAWGPLv3SOURCE
EasyList RomanianThe EasyList AuthorsRemoves adverts on Romanian language websitesLINKRAWAll Rights ReservedSOURCE
EasyList RussianThe EasyList AuthorsA list combining RuAdList List and EasyListLINKRAWCC BY-SA 3.0SOURCE
EasyList SpanishThe EasyList AuthorsSpanish supplement for EasyListLINKRAWGPLv3SOURCE
EasyListThe EasyList AuthorsPrimary Easylist FilterLINKRAWGPLv3SOURCE
EasyPrivacy SpecificThe EasyList AuthorsEasyPrivacy Specific FilterLINKRAWGPLv3SOURCE
EasyPrivacy ThirdpartyThe EasyList AuthorsEasyPrivacy Thirdparty FilterLINKRAWGPLv3SOURCE
EasyPrivacy Tracking ServersThe EasyList AuthorsEasyPrivacy Tracking Block FilterLINKRAWGPLv3SOURCE
EasyPrivacyThe EasyList AuthorsFilter list that completely removes all forms of tracking from the internetLINKRAWGPLv3SOURCE
ETH Phishing DetectMetaMaskUtility for detecting phishing domains targeting Ethereum usersLINKRAW"Don't Be A Dick" Public LicenseSOURCE
Facebook Zero Hosts BlockKowith Singkornkeereehosts that serve all Facebook contents and resources from alternative "Free Basics" serversLINKRAWCC BY-NC 4.0-
Fanboy's Annoyance ListfanboyIn page Pop-Ups and other annoyancesLINKRAWCC BY 3.0SOURCE
Fanboy's Complete ListfanboyA list combining EasyList, EasyPrivacy, and Fanboy's Enhanced Tracking ListLINKRAWCC BY 3.0SOURCE
Fanboy's Cookiemonster ListfanboyThis will remove cookie and privacy warningsLINKRAWCC BY 3.0SOURCE
Fanboy's Enhanced Tracking ListfanboyBlocks common tracking scriptsLINKRAWCC BY 3.0SOURCE
Fanboy's IndianfanboyBlocks Indian regional advertisements and trackersLINKRAWCC BY 3.0SOURCE
Fanboy's Ultimate ListfanboyA list combined Enhanced Tracking ListLINKRAWCC BY 3.0SOURCE
Fanboy's VietnamesefanboyBlocks Vietnamese regional advertisements and trackersLINKRAWCC BY 3.0SOURCE
Firehol Level 1 IPsfirehol.orgMaximum protection with minimum false positivesLINKRAWAll Rights Reserved-
Firehol Level 2 IPsfirehol.orgLast 48 hours track listLINKRAWAll Rights Reserved-
Firehol Level 3 IPsfirehol.orgAn ipset made from blocklists that track attacks, spyware, virusesLINKRAWAll Rights Reserved-
GNU BlacklistGnuzillaBlock all well known privacy trackersLINKRAWAll Rights ReservedSOURCE
GreenSnow Blacklisted IPsGreenSnowThe blacklisted list of IPs for online serversLINKRAWAll Rights Reserved-
hBlockhectormImprove your security and privacy by blocking ads, tracking and malware domainsLINKRAWMITSOURCE
Hexxium Creations Threat ListHexxiumCreationsBlocks scams/phishing/malware/malvertising/exploits - and other general threatsLINKRAWAll Rights ReservedSOURCE
hosts-blocklistsNotrackingBlocks ads, fake sites, shock sites, malware hosts and trackersLINKRAWAll Rights ReservedSOURCE
HostsVNbigdargonBlocks ads and tracking in VietnamRAWLINKMITSOURCE
IPsumMiroslav StamparDaily feed of bad IPsLINKRAWAll Rights Reserved-
KADhostsazet12Fraud/adware/scam websitesLINKRAWCC BY-SA 4.0SOURCE
lightswitch Ads & Trackinglightswitch05Expanded list of hosts used for advertisements and trackingLINKRAWApache 2.0SOURCE
lightswitch Ads & Tracking Extendedlightswitch05Aggressive block list for tracking, geo-targeting, & adsLINKRAWApache 2.0SOURCE
Liste ARCrits & smed79Removes adverts on Arabic language websitesLINKRAWCC BY-NC-SA 3.0SOURCE
Malc0de IP Blacklistmalc0deLast 30 days of malicious IP addressesLINKRAWAll Rights Reserved-
Matomo Referrer Spam BlacklistMatomoA community-contributed list of referrer spammersLINKRAWPublic DomainSOURCE
MobileAdTrackersjawz101Taken from DNS logs, formatted in hostfile formatLINKRAWNo LicenseSOURCE
MVPS hosts fileThe purpose of this site is to provide the user with a high quality custom HOSTS file.LINKRAWCC BY-NC-SA 4.0SOURCE
neoHostsneoFelhzFree ads blocking hosts projectLINKRAWMITSOURCE
oisd.nl - BasicsjhgvrPrimarily blocks Ads, (Mobile) App Ads.LINKRAWAll Rights ReservedSOURCE
OpenphishOpenPhishActive Phishing BlocklistLINKRAWAll Rights ReservedSOURCE
Phishing Bad Sitesmailscanner.infoBlocks fraudulent and generally dangerousLINKRAWAll Rights ReservedSOURCE
Phishing HostsKurobeatsA host file generated from updated phishing site feedsLINKRAWGPLv2SOURCE
Polish Adblock FiltersMajkiITOfficial Polish Filters for AdBlock, uBlock Origin & AdGuardLINKRAWCC BY-NC-SA 4.0SOURCE
Polish Privacy FiltersolegwukrPolish language privacy filtersLINKRAWCC BY-SA 4.0SOURCE
Porn List LightChad Mayfielda correlated list to only block porn sites that appear on Alex'a top 1m site listLINKRAWGPLv3SOURCE
PornAway BlacklistmhxionBlock Porn SitesLINKRAWMITSOURCE
Prigent AdsFabrice PrigentBlocks adsLINKRAWCC BY-SA 4.0SOURCE
Prigent AdultFabrice PrigentBlocks adult sitesLINKRAWCC BY-SA 4.0SOURCE
Prigent CryptojackingFabrice PrigentBlocks miningLINKRAWCC BY-SA 4.0SOURCE
Prigent GamblingFabrice PrigentBlocks gamblingLINKRAWCC BY-SA 4.0SOURCE
Prigent MalwareFabrice PrigentBlocks malware domainsLINKRAWCC BY-SA 4.0SOURCE
Prigent PhishingFabrice PrigentBlocks phishingLINKRAWCC BY-SA 4.0SOURCE
Prigent Social NetworksFabrice PrigentBlocks social sitesLINKRAWCC BY-SA 4.0-
Quidsup NoTrackquidsupBlocks Tracking SitesLINKRAWGPLv3SOURCE
Quidsup NoTrack MalwarequidsupBlocks Malware SitesLINKRAWGPLv3SOURCE
RuAdListRU AdListBlocks adverts on Russian language websitesLINKRAWPermissiveSOURCE
Sinfonietta's PornhostsSinfoniettaA collection of porn domainsLINKRAWMITSOURCE
Sinfonietta's SocialSinfoniettaA collection of social domainsLINKRAWMIT-
someonewhocaresDan PollockHow to make the internet not suck (as much)LINKRAWNon-Commercial with AttributionSOURCE
Steven Black's HostsSteven BlackHosts contributed by Steven BlackLINKRAWMITSOURCE
StopForumSpamStopForumSpamForum spammersLINKRAWCC BY-NC-ND 3.0SOURCE
Unified HostsSteven BlackExtending and consolidating hosts files from a variety of sourcesLINKRAWMITSOURCE
WindowsSpyBlocker Hosts Spycrazy-maxBlock spying and tracking on WindowsLINKRAWsMITSOURCE
YousListyousBlocks Korean regional advertisements and trackersLINKRAWCC BY 4.0SOURCE
yoyo.orgPeter LoweBlocking with ad server and tracking server hostnamesLINKRAWMCRAE GENERAL PUBLIC LICENSE (version 4.r53)SOURCE
yoyo.org IPsPeter LoweIPs (Singular or singular+range)LINKRAWMCRAE GENERAL PUBLIC LICENSE (version 4.r53)-

Note. '[D]' - Discontinued & '-' - Either used directly or not filtered

Check Energized

Check whether Energized Protection is working or not! Check via our checking page here.

Sponsors

Gold Sponsor

Support

Maintaining a quality blocking project takes a lot of time. Energized Protection is completely independently funded. We fight for our users. This does mean however that we also have to spend our owns to pay the bills. This is where you can help: by chipping in you can ensure more time is spent improving Energized rather than dealing with distractions.

This donation is for our services, not for any pack, resource or any other mean. Your support will help us keep the project running and provide you quality service.

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

Disclaimer

Energized Protection Block Lists are basically blacklists files to block access to domains. If you don't know how it works, then please try this at your own risk. I won't be responsible for any damage or loss. Never forget to make backup.

License

The content of this project itself is licensed under the MIT license, and the underlying source code used to format and display that content is licensed under the CC BY-NC-SA 4.0 license.


Let's make an annoyance free better open internet, altogether!

A project by Ador with ❤