Convert Figma logo to code with AI

EnergizedProtection logoblock

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

2,511
202
2,511
234

Top Related Projects

27,319

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

7,559

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

27,319

🔒 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,559

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 ⚡

0.82.a Sat 29, Mar 2025 alpha
ad.nsfw.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 Project with ❤ from Bangladesh.

[⚡︎] Features

  • _domain_based: based on domains.
  • _any_device: seamlessly compatible with all your devices, regardless of the OS.
  • _blockings: strictly eliminates all web annoyances across web browsing and applications.
  • _multiple_formats: supports the most popular, user-friendly formats.
  • _speed_you_need: reduces page loading time by up to half of its original duration!
  • _privacy: helps to increase privacy by blocking spyware and tracking systems.
  • _saves_data: reduces bandwidth usage.
  • _support: user friendly chat group got your back!
  • _clean: no clutter. just a pure, streamlined experience.

[⚡︎] What is this for?

The Energized Protection system is a powerful and flexible solution designed to shield your devices from ads, trackers, and malware—no matter what operating system you use. By combining protection packs from trusted sources, it ensures a secure browsing experience across all platforms, including Windows, macOS, Linux, and mobile devices. Whether you're on a phone, laptop, or desktop, Energized Protection provides seamless, reliable security to keep your digital experience smooth and secure.

[⚡︎] Notice

- We update our packs daily to ensure optimal performance and protection.
- However, we have the flexibility to push more frequent updates when necessary or delay releases when required.
- We’ve rebuilt this project from the ground up to make it better than ever! As a result, some extension packs are still a work in progress and may not be fully ready yet. It will take a little more time to refine everything and ensure top-notch blocking quality.
- We appreciate your patience and support during this process! Feel free to reach out with feedback — we’re always working to improve.

[⚡︎] Changelog

View Latest Release Changes
🔄 Updated Sources
- Synced with the latest upstream releases for improved coverage and accuracy.
- AdAway updated and removed 1 domains.
- AdGuard Tracking Protection filter updated and removed 3 domains.
- AdGuard Tracking Protection filter — third-party trackers updated and removed 3 domains.
- AdGuard DNS filter updated and removed 4 domains.
- EasyList updated and removed 1 domains.
- EasyList adservers updated and removed 1 domains.
- EasyPrivacy updated and removed 3 domains.
- EasyPrivacy trackingservers international updated and removed 2 domains.
- EasyPrivacy trackingservers thirdparty updated and removed 1 domains.
- oisd small updated and removed 5 domains.
- oisd nsfw small updated and added 30 domains.
- NoTrack Tracker Blocklist updated and removed 1 domains.
- Unified hosts, fakenews and gambling updated and removed 3 domains.
- RU Adlist updated and removed 2 domains.
- YousList updated and removed 1 domains.
- WhoTracks.me updated and removed 88 domains.
- Ultimate Ad Filter updated and removed 1 domains.
- Ultimate Privacy Filter updated and removed 3 domains.
- oisd big updated and removed 57 domains.

🧹 Filtered Sources
- Removed dead, inactive, and obsolete domains to maintain efficiency.

🚫 Blocked
- Added new manual entries based on threats and community reports.
- Included user-requested domains to enhance protection.

✅ Unblocked
- Whitelisted legitimate domains previously flagged as false positives.
- Addressed user requests to restore access to safe websites.

[⚡︎] Packs

Basic info about all Energized Protection packs.

PACK NAMEDESCRIPTIONUNIQUE ENTRIESFORMATS
SparkLightweight, essential protection.69,086
3209 Downloads
BluBalanced, extended protection.169,827
4973 Downloads
UltimateComprehensive, full protection.390,742
9796 Downloads

[⚡︎] Extensions

Basic info about all the available extensions.

PACK NAMEDESCRIPTIONUNIQUE ENTRIESFORMATS
NsfwStrict filtering of nsfw content.67,509
1257 Downloads
Antipopads-reAdvanced protection against intrusive popups.40,425
5905 Downloads
SocialComprehensive social media blocking.14,088
820 Downloads
ExtremeEnhanced privacy with aggressive filtering.38
755 Downloads
RegionalRegional filtering.30,781
1722 Downloads

Expectation: These 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.

For further assistance, knock us on our Telegram Group.

[⚡︎] Package Sources

The sources used by each pack and extension.

View Sources

Packs and Extensions

PackageSourcesTotal
SparkCore, AdAway, AdGuard Base filter, AdGuard Base filter — first-party servers, AdGuard Mobile Ads filter, AdGuard Tracking Protection filter — mobile trackers, EasyList thirdparty, EasyPrivacy specific, EasyPrivacy thirdparty, EasyPrivacy trackingservers general, EasyPrivacy trackingservers thirdparty, EasyList AWRL, NoTrack Malware Blocklist, NoTrack Annoyance Blocklist, Hosts contributed by Steven Black, pgl.yoyo.org, uBlock₀ filters – Badware risks, uBlock₀ filters – Ads, WhoTracks.me and Brave iOS Specific20
BluCore, AdAway, AdGuard Base filter, AdGuard Base filter — first-party servers, AdGuard Mobile Ads filter, AdGuard Tracking Protection filter — third-party trackers, AdGuard Tracking Protection filter — first-party trackers, AdGuard Tracking Protection filter — mobile trackers, AdGuard DNS filter, EasyList adservers, EasyList thirdparty, EasyPrivacy, EasyPrivacy specific, EasyPrivacy thirdparty, EasyPrivacy trackingservers admiral, EasyPrivacy trackingservers general, EasyPrivacy trackingservers thirdparty, EasyList AWRL, NoTrack Malware Blocklist, NoTrack Annoyance Blocklist, someonewhocares, Hosts contributed by Steven Black, pgl.yoyo.org, URLhaus, uBlock₀ filters – Badware risks, uBlock₀ filters – Ads, WhoTracks.me and Brave iOS Specific28
UltimateCore, AdAway, AdGuard Base filter, AdGuard Base filter — first-party servers, AdGuard Mobile Ads filter, AdGuard Tracking Protection filter, AdGuard Tracking Protection filter — third-party trackers, AdGuard Tracking Protection filter — first-party trackers, AdGuard Tracking Protection filter — mobile trackers, AdGuard DNS filter, DigitalSide Threat-Intel, EasyList, EasyList adservers, EasyList thirdparty, EasyPrivacy, EasyPrivacy specific, EasyPrivacy thirdparty, EasyPrivacy trackingservers admiral, EasyPrivacy trackingservers general, EasyPrivacy trackingservers international, EasyPrivacy trackingservers thirdparty, EasyList AWRL, oisd small, NoTrack Tracker Blocklist, NoTrack Malware Blocklist, NoTrack Annoyance Blocklist, someonewhocares, Hosts contributed by Steven Black, Unified hosts, fakenews and gambling, pgl.yoyo.org, URLhaus, Windows Spy Blocker, scamblocklist, uBlock₀ filters – Badware risks, uBlock₀ filters – Ads, WhoTracks.me, Brave iOS Specific, Ultimate Ad Filter, Ultimate Privacy Filter, Malware and Phishing Blocklist, Emerging Threats PiHole (MALICIOUS), Phishing URL Blocklist, Zonefiles Compromised domains, oisd big and Matomo Referrer Spam List45
NsfwCore, ABPindo adult, EasyList adult adservers, EasyList adult adservers popup, EasyList adult thirdparty, oisd nsfw small, Sinfonietta's pornography-hosts and ABPVN Adult8
Antipopads-reCore, EasyList adservers, EasyList adservers popup, EasyList thirdparty popup and AdGuard DNS Popup Hosts filter5
SocialCore, AdGuard Social Media filter and Sinfonietta's social-hosts3
ExtremeCore1
RegionalCore, ABPindo, AdGuard Chinese filter, AdGuard Russian filter, AdGuard German filter, AdGuard Japanese filter, AdGuard Dutch filter, AdGuard Spanish/Portuguese filter, AdGuard Turkish filter, AdGuard French filter, EasyPrivacy thirdparty international, EasyList China, EasyList Germany, EasyList Dutch, EasyList Italy, EasyList Liste AR, EasyList Spanish, RU Adlist, KOR: List-KR DNS, YousList, hostsVN, ABPVN, polish-ads-filter and Red Flag Domains24

[⚡︎] Sources

Updated sources from the following locations are always merged and included.

NameAuthorDescriptionHome PageSourceLicense
ABPindoABPindoComfortable browsing without adsLinkSourceCC BY-SA 3.0
ABPindo adultABPindoABPindo adult filter.LinkSourceCC BY-SA 3.0
ABPVNbigdargonVietnamese filterLinkSourceMIT
ABPVN AdultbigdargonVietnamese filterLinkSourceMIT
AdAwayAdAwayAdAway HostsLinkSourceCC BY 3.0
AdGuard Base filterAdGuardThird-party advertising networks.LinkSourceGPLv3
AdGuard Base filter cryptominersAdGuardThe list of rules are against crypto-miners.LinkSourceGPLv3
AdGuard Base filter — first-party serversAdGuardAdvertising networks domains (first-party servers).LinkSourceGPLv3
AdGuard Chinese filterAdGuardThird-party Chinese advertising networks domainsLinkSourceGPLv3
AdGuard DNS filterAdGuardDNS-level ad blocking.LinkSourceGPLv3
AdGuard DNS Popup Hosts filterAdGuardDNS-level pop-up blocking.LinkSourceGPLv3
AdGuard Dutch filterAdGuardFilter that enables ad blocking on websites in Dutch language.LinkSourceGPLv3
AdGuard French filterAdGuardFilter that enables ad blocking on websites in French language.LinkSourceGPLv3
AdGuard German filterAdGuardFilter that enables ad blocking on websites in German language.LinkSourceGPLv3
AdGuard Japanese filterAdGuardFilter that enables ad blocking on websites in Japanese language.LinkSourceGPLv3
AdGuard Mobile Ads filterAdGuardThird-party advertising networks domains for mobile devices.LinkSourceGPLv3
AdGuard Russian filterAdGuardFilter that enables ad blocking on websites in Russian language.LinkSourceGPLv3
AdGuard Social Media filterAdGuardFilter for social media widgets such as 'Like' and 'Share' buttons and more.LinkSourceGPLv3
AdGuard Spanish/Portuguese filterAdGuardFilter list that specifically removes ads on websites in Spanish, Portuguese, and Brazilian Portuguese languages.LinkSourceGPLv3
AdGuard Tracking Protection filterAdGuardThe most comprehensive list of various online counters and web analytics tools.LinkSourceGPLv3
AdGuard Tracking Protection filter — first-party trackersAdGuardTracking networks domains (first-party servers).LinkSourceGPLv3
AdGuard Tracking Protection filter — mobile trackersAdGuardMobile analytics and spyware domains.LinkSourceGPLv3
AdGuard Tracking Protection filter — third-party trackersAdGuardThird-party tracking networks domains.LinkSourceGPLv3
AdGuard Turkish filterAdGuardFilter that enables ad blocking on websites in Turkish language.LinkSourceGPLv3
Brave iOS SpecificBraveBrave IOS specific filtersLinkSourceMPL 2.0
DigitalSide Threat-IntelDavide BaglieriMalware analysis and compromised domains.LinkSourceMIT
EasyListEasyListRemove unwanted content from the internet, including annoying adverts, bothersome banners and troublesome tracking.LinkSourceGPLv3
EasyList adserversEasyListEasyList adservers.LinkSourceGPLv3
EasyList adservers popupEasyListEasyList adservers (popup).LinkSourceGPLv3
EasyList adult adserversEasyListEasyList adult adservers.LinkSourceGPLv3
EasyList adult adservers popupEasyListEasyList adult adservers (popup).LinkSourceGPLv3
EasyList adult thirdpartyEasyListEasyList adult adservers thirdparty.LinkSourceGPLv3
EasyList AWRLEasyListAdblock Warning Removal ListLinkSourceGPLv3
EasyList ChinaEasyListEasyList China.LinkSourceGPLv3
EasyList DutchEasyListDutch supplement to EasyListLinkSourceGPLv3
EasyList GermanyEasyListGerman supplement to EasyListLinkSourceGPLv3
EasyList ItalyEasyListItalian supplement to EasyListLinkSourceGPLv3
EasyList Liste AREasyListArabic supplement to EasyListLinkSourceGPLv3
EasyList SpanishEasyListSpanish supplement to EasyListLinkSourceGPLv3
EasyList thirdpartyEasyListEasyList adservers thirdparty.LinkSourceGPLv3
EasyList thirdparty popupEasyListEasyList adservers thirdparty (popup).LinkSourceGPLv3
EasyPrivacyEasyListCompletely removes all forms of tracking from the internet.LinkSourceGPLv3
EasyPrivacy specificEasyListEasyPrivacy specific.LinkSourceGPLv3
EasyPrivacy thirdpartyEasyListEasyPrivacy thirdparty.LinkSourceGPLv3
EasyPrivacy thirdparty internationalEasyListEasyPrivacy thirdparty international.LinkSourceGPLv3
EasyPrivacy trackingservers admiralEasyListEasyPrivacy trackingservers admiral.LinkSourceGPLv3
EasyPrivacy trackingservers generalEasyListEasyPrivacy trackingservers general.LinkSourceGPLv3
EasyPrivacy trackingservers internationalEasyListEasyPrivacy trackingservers international.LinkSourceGPLv3
EasyPrivacy trackingservers thirdpartyEasyListEasyPrivacy trackingservers thirdparty.LinkSourceGPLv3
Emerging Threats PiHole (MALICIOUS)tweedgeBlocks malware, phishing, coin miners, PUPs, exploits, etc.LinkSourceCC BY-SA 4.0
Hosts contributed by Steven BlackSteven BlackHosts contributed by Steven BlackLinkSourceMIT
hostsVNbigdargonHosts block ads of VietnameseLinkSourceMIT
KOR: List-KR DNSList-KRKorean-language website filters listLinkSourceGPLv3
Malware and Phishing BlocklistCyberHost.ukA concise collection of malicious domains.LinkSourceCC BY-SA 4.0
Matomo Referrer Spam ListMatomo Core TeamCommunity-contributed list of referrer spammers.LinkSourcePublic Domain
NoTrack Annoyance BlocklistQuidsUpDomains which fall outside of tracking and advertising, but are annoying if you inadvertently visit themLinkSourceGPLv3
NoTrack Malware BlocklistQuidsUpDomains classified as malware, phishing or adwareLinkSourceGPLv3
NoTrack Tracker BlocklistQuidsUpDomains classified as tracking or advertisingLinkSourceGPLv3
oisd bigsjhgvrBlocks Ads, (Mobile) App Ads, Phishing, Malvertising, Malware, Spyware, Ransomware, CryptoJacking, Scam, Telemetry/Analytics/TrackingLinkSourceGPLv3
oisd nsfw smallsjhgvrNSFW domains found in the top 1 million domainsLinkSourceGPLv3
oisd smallsjhgvrMainly focusses on blocking adsLinkSourceGPLv3
pgl.yoyo.orgPeter LoweBlocklist for use with hosts files to block ads, trackers, and other nasty thingsLinkSourceMCRAE GENERAL PUBLIC LICENSE (version 4.r53)
Phishing Army (Extended)Andrea DraghettiBlocks malware, phishing, coin miners, PUPs, exploits, etc.LinkSourceCC BY-NC 4.0
Phishing URL BlocklistMing Di LeomPhishing URL blocklist.LinkSourceCC BY-SA 4.0
polish-ads-filterMajkiITOfficial Polish filters for Adblock, uBlock Origin, AdguardLinkSourceCC BY-NC-SA 4.0
Red Flag DomainsNicolas PawlakList of very recently registered probably malicious domain names in french TLDs.LinkSourceCC BY-NC-SA 4.0
RU AdlistOther_13Filter for blocking and hiding ads, focused on Russian and Ukrainian-language sites.LinkSourceCC BY-SA 3.0
scamblocklistdurablenapkinA blocklist to protect users against untrustworthy sites.LinkSourceMIT
Sinfonietta's pornography-hostsSinfoniettaA collection of nsfw domainsLinkSourceMIT
Sinfonietta's social-hostsSinfoniettaA collection of social domainsLinkSourceMIT
someonewhocaresDan PollockHow to make the internet not suck (as much)LinkSourceCC BY-NC
uBlock₀ filters – AdsuBlockOriginFor sites documented to put users at risk of installing adware/crapware/malwareLinkSourceGPLv3
uBlock₀ filters – Badware risksuBlockOriginFor sites documented to put users at risk of installing adware/crapware/malwareLinkSourceGPLv3
uBlock₀ filters – PrivacyuBlockOriginFor sites documented to put users at risk of installing adware/crapware/malwareLinkSourceGPLv3
Ultimate Ad FilterAdAvoidBlocks ads, pop-ups, banners, and other ads.LinkSourceGPLv3
Ultimate Privacy FilterAdAvoidBlocks all known tracking technologies.LinkSourceGPLv3
Unified hosts, fakenews and gamblingSteven BlackUnified hosts + fakenews + gamblingLinkSourceMIT
URLhausabuse.chBlocking with ad server and tracking server hostnames.LinkSourceCC0
USOM listUSOMThe threat intelligence data (malicious IP, domain, URL addresses, etc.)LinkSource-
WhoTracks.meGhosteryGhostery Tracker Database (Ads and Analytics).LinkSourceCC BY-NC-SA 4.0
Windows Spy Blockercrazy-maxBlock spying and tracking on WindowsLinkSourceMIT
YousListyousBlock filter for advertisements, mainly on Korean sitesLinkSourceCC BY 4.0
Zonefiles Compromised domainsZonefilesSuspicious, malware, phishing and ransom domain tracker.LinkSourceFREE

[⚡︎] Check

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

[⚡︎] Support

Maintaining a quality blocking project takes a significant amount of time and effort. Energized Protection is fully funded independently, and we’re dedicated to standing up for our users. However, this also means we personally cover the costs to keep everything running smoothly.

This is where you can make a difference. By contributing, you help us spend more time improving Energized Protection instead of managing distractions.

Please note that your donation goes towards supporting our services, not specific packs or resources. Your generosity will directly support the ongoing operation of the project, allowing us to continue providing you with top-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]

[⚡︎] Sponsors

Gold Sponsor

Want yours to be here? Sponsor us!

[⚡︎] Disclaimer

Energized Protection block lists are provided "as is" and are for informational purposes only. By utilizing any of these block lists, you acknowledge that you do so at your own risk. We are not liable for any issues that may arise from their use.

We highly recommend creating a backup of your system and settings before making any changes. If any issues occur, please refer to the official issue tracker on Github Issues.

These lists are intended solely for blocking unwanted domains and improving your browsing experience. Any misuse or unintended consequences are the sole responsibility of the user. We advise thorough testing and review before deployment.

[⚡︎] License

The content of this project is licensed under the MIT License, while 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 ❤

Say Thanks!