Compare commits

...
Author SHA1 Message Date
Carmelo Messina 87004d9443 [TOOLS] Automated update of filter lists: Trim leading and trailing whitespace and skip empty lines or lines starting with # 2026-06-05 13:52:35 +02:00
Carmelo Messina adafd623f6 [TOOLS] use pat 2026-06-05 12:32:38 +02:00
Carmelo Messina 822f836684 [TOOLS] fix branch name 2026-06-05 11:48:03 +02:00
Carmelo Messina 922ed6c8d2 [TOOLS] update filter list 2026-06-05 11:41:37 +02:00
Carmelo Messina 7c1f66263e [TOOLS] Update filter: show download errors 2026-06-05 11:37:10 +02:00
Carmelo Messina 1facdd51de [TOOLS] remove ref 2026-06-05 11:31:38 +02:00
Carmelo Messina 037678c93d [TOOLS] Use @v2 checkout 2026-06-05 11:28:10 +02:00
Carmelo Messina 7cd61d4205 [TOOLS] Update filters action 2026-06-05 11:15:02 +02:00
Carmelo Messina 9c4e2ea0b5 TOOLS: publish filters on git pages 2026-06-05 10:55:06 +02:00
Carmelo Messina c266f670b3 Partition blobs by top frame URL: Fix renderer crash in PublicURLManager and clean up Blob URL partitioning (#2922)
Fix a Null Pointer Dereference crash in `GetInsecureTopLevelSite()`
affecting sites with heavy Service Worker usage (e.g., Discord, Reddit).
This rewrite also hardens our custom `Partition-blobs-by-top-frame-URL`
logic against upstream cross-partition token leak vectors.

In `public_url_manager.cc`, the custom helper was passing the result of
`worker_global_scope->top_level_frame_security_origin()` straight into the
`BlinkSchemefulSite` constructor. However, this property is intentionally
null for Service Workers, causing a fatal null pointer dereference crash.

Additionally, since Cromite's partition checks execute downstream from
vanilla Chromium's native mitigations, the browser-side fallback using
`agent_cluster_id` inside `IsSamePartition()` was redundant dead code.

Changes:
1. Blink: Fully rewrote `GetInsecureTopLevelSite()` using safe `DynamicTo`
   casts. For Service Workers, it now safely pulls the browser-validated
   partition directly via `service_worker->storage_key().top_level_site()`,
   eliminating the null pointer crash surface.
2. Blink / Hardening: Intentionally excluded Shared Workers from Blob URL
   support (`IsSharedWorkerGlobalScope()`) by returning `std::nullopt` to prevent
   unpartitioned fallback vectors in shared contexts.
3. Storage: Streamlined `IsSamePartition()` in `blob_url_store_impl.cc`
   by removing the obsolete `agent_cluster_id` fallback, leaving a clean,
   deterministic verification of the top-level site partition.
2026-06-03 14:54:19 +02:00
3 changed files with 278 additions and 52 deletions
+109
View File
@@ -0,0 +1,109 @@
name: Update Filters
on:
schedule:
- cron: "0 3 */2 * *" # every 2 days at 03:00 UTC
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
# -------------------------------
# Checkout main branch
# -------------------------------
- name: Checkout main branch
uses: actions/checkout@v2
with:
repository: 'uazo/cromite'
path: main
fetch-depth: 1
# -------------------------------
# Checkout pages branch
# -------------------------------
- name: Checkout pages branch
uses: actions/checkout@v2
with:
repository: 'uazo/cromite'
ref: pages
path: pages
fetch-depth: 1
token: ${{ secrets.PAGE_PUBLISH }}
# -------------------------------
# Prepare output directory
# -------------------------------
- name: Prepare output directory
run: mkdir -p main/out/filters
# -------------------------------
# Download filter lists (fail-safe, detailed errors)
# -------------------------------
- name: Download filter lists
run: |
set -e
FAILED=()
while IFS= read -r line || [[ -n "$line" ]]; do
# Trim leading and trailing whitespace
line="${line#"${line%%[![:space:]]*}"}"
line="${line%"${line##*[![:space:]]}"}"
# Skip empty lines or lines starting with #
[[ -z "$line" || "${line:0:1}" == "#" ]] && continue
url=$(echo "$line" | cut -d '=' -f1 | xargs)
file=$(echo "$line" | cut -d '=' -f2 | xargs)
if [ -z "$file" ]; then
file=$(basename "$url")
fi
echo "Downloading $url -> $file"
if ! curl -fsSL "$url" -o "main/out/filters/$file"; then
echo "FAILED: $url"
FAILED+=("$file")
fi
done < main/tools/images/update-cromite-org/filters-sources.txt
if [ ${#FAILED[@]} -ne 0 ]; then
echo "One or more downloads failed. Aborting deploy."
echo "Failed files:"
for f in "${FAILED[@]}"; do
echo "- $f"
done
exit 1
fi
# -------------------------------
# Deploy filters (only .txt)
# -------------------------------
- name: Deploy to pages
run: |
cd pages
rm -rf filters
mkdir -p filters
cp -r ../main/out/filters/. filters/
git config user.name "github-actions"
git config user.email "github-actions@github.com"
# add ONLY .txt files
find filters -type f -name "*.txt" -exec git add {} +
if git diff --cached --quiet; then
echo "No changes detected"
exit 0
fi
git commit -m "Update filters ($(date -u))"
git push https://x-access-token:${{ secrets.PAGE_PUBLISH }}@github.com/uazo/cromite.git HEAD:pages
@@ -2,8 +2,45 @@ From: uazo <uazo@users.noreply.github.com>
Date: Tue, 20 Sep 2022 07:20:01 +0000
Subject: Partition blobs by top frame URL
Verifies that the blob was created with the same top frame URL
or, if not defined, by the same agent cluster.
Introduce a global site-isolation mechanism in Cromite that strictly
partitions the registration, resolution, and token exchange of Blob
URLs based on the top-level frame's site identity. This enforces
robust W3C Storage Partitioning guarantees and neutralizes cross-
partition data exfiltration vectors.
Global Architecture
By default, standard Chromium allows cross-site contexts and identical
third-party iframes to share or guess Blob URL references. This patch
seals these privacy leaks by modifying the entire public URL pipeline
across Blink and the Browser Process:
1. Renderer-Side Context Resolution (Blink): Restructures
PublicURLManager and introduces a centralized helper
(GetInsecureTopLevelSite) to safely compute and propagate the
caller's active top-level site partition. It cleanly differentiates
between graphical windows/iframes and asynchronous background
environments (Dedicated Workers and Service Workers). Service
Workers derive their boundary directly from their browser-validated
StorageKey to maintain first-party compliance while eliminating
historical null-pointer crash surfaces.
2. Intentional Scope Restrictions: To guarantee absolute isolation,
Blob URL support is deliberately dropped for Shared Workers, cutting
off unpartitioned cross-context communication channels.
3. Mojo IPC and Browser Validation (Storage): Extends the BlobURLStore
IPC interface (Register, ResolveAsURLLoaderFactory,
ResolveAsBlobURLToken) to mandate top-level site wire parameters.
The storage backend enforces a strict, deterministic
IsSamePartition() validation check, dropping unauthorized
cross-partition requests on the floor downstream of vanilla
Chromium's native defenses.
This global framework ensures that a Blob URL remains rigidly confined
and sandboxed within the specific top-level site partition that
originally spawned it, drastically enhancing Cromite's privacy profile
without impacting standard web platform compatibility.
Original License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
@@ -12,12 +49,12 @@ License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
.../Partition-blobs-by-top-frame-URL.inc | 1 +
storage/browser/blob/blob_url_registry.cc | 31 +++++++++-
storage/browser/blob/blob_url_registry.h | 11 +++-
storage/browser/blob/blob_url_store_impl.cc | 62 +++++++++++++++++--
storage/browser/blob/blob_url_store_impl.cc | 58 +++++++++++++++++--
storage/browser/blob/blob_url_store_impl.h | 15 ++++-
storage/browser/blob/features.cc | 1 +
.../public/mojom/blob/blob_url_store.mojom | 13 +++-
.../core/fileapi/public_url_manager.cc | 37 ++++++++++-
9 files changed, 158 insertions(+), 15 deletions(-)
.../public/mojom/blob/blob_url_store.mojom | 13 ++++-
.../core/fileapi/public_url_manager.cc | 57 +++++++++++++++++-
9 files changed, 174 insertions(+), 15 deletions(-)
create mode 100644 cromite_flags/third_party/blink/common/features_cc/Partition-blobs-by-top-frame-URL.inc
diff --git a/content/browser/renderer_host/render_frame_host_impl.cc b/content/browser/renderer_host/render_frame_host_impl.cc
@@ -137,7 +174,7 @@ diff --git a/storage/browser/blob/blob_url_registry.h b/storage/browser/blob/blo
diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/blob_url_store_impl.cc
--- a/storage/browser/blob/blob_url_store_impl.cc
+++ b/storage/browser/blob/blob_url_store_impl.cc
@@ -115,9 +115,35 @@ BlobURLStoreImpl::~BlobURLStoreImpl() {
@@ -115,9 +115,33 @@ BlobURLStoreImpl::~BlobURLStoreImpl() {
}
}
@@ -148,13 +185,11 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
+ bool is_same_partition = false;
+ const std::optional<net::SchemefulSite>& top_level_site =
+ registry_->GetUnsafeTopLevelSite(blob_url);
+ const std::optional<base::UnguessableToken> agent_cluster_id =
+ registry_->GetUnsafeAgentClusterID(blob_url);
+ if (top_level_site.has_value()) {
+ is_same_partition = (top_level_site == unsafe_top_level_site);
+ } else {
+ is_same_partition = (agent_cluster_id == unsafe_agent_cluster_id);
+ }
+ // const std::optional<base::UnguessableToken> agent_cluster_id =
+ // registry_->GetUnsafeAgentClusterID(blob_url);
+ // LOG(INFO) << "---BlobURLStoreImpl "
+ // << " is_same_partition=" << is_same_partition
+ // << " blob_url=" << blob_url
@@ -173,7 +208,7 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
RegisterCallback callback) {
// TODO(crbug.com/40061399): Generate blob URLs here, rather than
// validating the URLs the renderer process generated.
@@ -125,10 +151,18 @@ void BlobURLStoreImpl::Register(
@@ -125,10 +149,18 @@ void BlobURLStoreImpl::Register(
std::move(callback).Run();
return;
}
@@ -193,7 +228,7 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
urls_.insert(url);
std::move(callback).Run();
}
@@ -150,7 +184,7 @@ bool BlobURLStoreImpl::ShouldPartitionBlobUrlAccess(
@@ -150,7 +182,7 @@ bool BlobURLStoreImpl::ShouldPartitionBlobUrlAccess(
features::kBlockCrossPartitionBlobUrlFetching) &&
!partitioning_disabled_by_policy_;
@@ -202,7 +237,7 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
has_storage_access_handle &&
mapping_status ==
BlobUrlRegistry::MappingStatus::
@@ -160,7 +194,9 @@ bool BlobURLStoreImpl::ShouldPartitionBlobUrlAccess(
@@ -160,7 +192,9 @@ bool BlobURLStoreImpl::ShouldPartitionBlobUrlAccess(
void BlobURLStoreImpl::ResolveAsURLLoaderFactory(
const GURL& url,
@@ -213,7 +248,7 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
if (!registry_) {
BlobURLLoaderFactory::Create(mojo::NullRemote(), url, std::move(receiver));
return;
@@ -183,6 +219,7 @@ void BlobURLStoreImpl::ResolveAsURLLoaderFactory(
@@ -183,6 +217,7 @@ void BlobURLStoreImpl::ResolveAsURLLoaderFactory(
if (IsBlobUrlAccessCrossPartitionSameOrigin(mapping_status)) {
if (ShouldPartitionBlobUrlAccess(has_storage_access_handle,
mapping_status)) {
@@ -221,21 +256,20 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
partitioning_blob_url_closure_.Run(
url, blink::mojom::PartitioningBlobURLInfo::
kBlockedCrossPartitionFetching);
@@ -194,6 +231,13 @@ void BlobURLStoreImpl::ResolveAsURLLoaderFactory(
@@ -194,6 +229,12 @@ void BlobURLStoreImpl::ResolveAsURLLoaderFactory(
}
}
+ if (!IsSamePartition(url, unsafe_agent_cluster_id, unsafe_top_level_site)) {
+ // LOG(INFO) << "---ResolveAsURLLoaderFactory blocked by IsSamePartition" << url;
+ BlobURLLoaderFactory::Create(mojo::NullRemote(), url, std::move(receiver));
+ //std::move(callback).Run(std::nullopt, std::nullopt);
+ return;
+ }
+ // LOG(INFO) << "---ResolveAsURLLoaderFactory allowed " << url;
BlobURLLoaderFactory::Create(registry_->GetBlobFromUrl(url), url,
std::move(receiver));
}
@@ -201,7 +245,9 @@ void BlobURLStoreImpl::ResolveAsURLLoaderFactory(
@@ -201,7 +242,9 @@ void BlobURLStoreImpl::ResolveAsURLLoaderFactory(
void BlobURLStoreImpl::ResolveAsBlobURLToken(
const GURL& url,
mojo::PendingReceiver<blink::mojom::BlobURLToken> token,
@@ -246,7 +280,7 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
// This function is known to be heap allocation heavy and performance
// critical. Extra memory safety checks can introduce regression
// (https://crbug.com/414710225) and these are disabled here.
@@ -218,6 +264,7 @@ void BlobURLStoreImpl::ResolveAsBlobURLToken(
@@ -218,6 +261,7 @@ void BlobURLStoreImpl::ResolveAsBlobURLToken(
registry_->IsUrlMapped(BlobUrlUtils::ClearUrlFragment(url),
storage_key_);
if (IsBlobUrlAccessCrossPartitionSameOrigin(mapping_status)) {
@@ -254,13 +288,12 @@ diff --git a/storage/browser/blob/blob_url_store_impl.cc b/storage/browser/blob/
if (ShouldPartitionBlobUrlAccess(has_storage_access_handle,
mapping_status)) {
partitioning_blob_url_closure_.Run(
@@ -228,12 +275,17 @@ void BlobURLStoreImpl::ResolveAsBlobURLToken(
@@ -228,12 +272,16 @@ void BlobURLStoreImpl::ResolveAsBlobURLToken(
partitioning_blob_url_closure_.Run(url, std::nullopt);
}
}
+ if (!IsSamePartition(url, unsafe_agent_cluster_id, unsafe_top_level_site)) {
+ // LOG(INFO) << "---ResolveAsBlobURLToken blocked by IsSamePartition" << url;
+ //std::move(callback).Run(std::nullopt);
+ return;
+ }
@@ -371,68 +404,97 @@ diff --git a/third_party/blink/public/mojom/blob/blob_url_store.mojom b/third_pa
diff --git a/third_party/blink/renderer/core/fileapi/public_url_manager.cc b/third_party/blink/renderer/core/fileapi/public_url_manager.cc
--- a/third_party/blink/renderer/core/fileapi/public_url_manager.cc
+++ b/third_party/blink/renderer/core/fileapi/public_url_manager.cc
@@ -61,6 +61,25 @@ static void RemoveFromNullOriginMapIfNecessary(const KURL& blob_url) {
@@ -39,8 +39,10 @@
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/fileapi/url_registry.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
+#include "third_party/blink/renderer/core/workers/dedicated_worker_global_scope.h"
#include "third_party/blink/renderer/core/workers/worker_global_scope.h"
#include "third_party/blink/renderer/core/workers/worklet_global_scope.h"
+#include "third_party/blink/renderer/modules/service_worker/service_worker_global_scope.h"
#include "third_party/blink/renderer/platform/blob/blob_data.h"
#include "third_party/blink/renderer/platform/blob/blob_url.h"
#include "third_party/blink/renderer/platform/blob/blob_url_null_origin_map.h"
@@ -61,6 +63,49 @@ static void RemoveFromNullOriginMapIfNecessary(const KURL& blob_url) {
BlobURLNullOriginMap::GetInstance()->Remove(blob_url);
}
+static std::optional<BlinkSchemefulSite> GetInsecureTopLevelSite(
+ ExecutionContext* execution_context) {
+ std::optional<BlinkSchemefulSite> top_level_site;
+ if (execution_context->IsWindow()) {
+ auto* window = To<LocalDOMWindow>(execution_context);
+ if (window->top() && window->top()->GetFrame()) {
+ top_level_site = BlinkSchemefulSite(window->top()
+ ->GetFrame()
+ ->GetSecurityContext()
+ ->GetSecurityOrigin());
+ }
+ } else if (auto* worker_global_scope =
+ DynamicTo<WorkerGlobalScope>(execution_context)) {
+ top_level_site = BlinkSchemefulSite(
+ worker_global_scope->top_level_frame_security_origin());
+ if (!execution_context) {
+ return std::nullopt;
+ }
+ return top_level_site;
+
+ // Window / Iframe (Secure and partitionable context)
+ if (auto* window = DynamicTo<LocalDOMWindow>(execution_context)) {
+ // LOG(INFO) << "--is window";
+ return window->GetStorageKey().GetTopLevelSite();
+ }
+
+ // Workers
+ if (auto* worker = DynamicTo<WorkerGlobalScope>(execution_context)) {
+ // We explicitly exclude Shared Workers from Blob support
+ if (execution_context->IsSharedWorkerGlobalScope()) {
+ // LOG(INFO) << "--is shared worker";
+ return std::nullopt;
+ }
+
+ // Service Workers and Dedicated Workers continue to use the 3PSP secure flow if set
+ if (worker->top_level_frame_security_origin()) {
+ // LOG(INFO) << "--is worker with top level frame";
+ return BlinkSchemefulSite(worker->top_level_frame_security_origin());
+ }
+
+ // Dedicated Workers are allowed to continue using their own origin.
+ if (auto* dedicated = DynamicTo<DedicatedWorkerGlobalScope>(worker)) {
+ // LOG(INFO) << "--is dedicated";
+ return BlinkSchemefulSite(dedicated->GetSecurityOrigin());
+ }
+
+ if (auto* service_worker = DynamicTo<ServiceWorkerGlobalScope>(worker)) {
+ // LOG(INFO) << "--is service worker";
+ const blink::StorageKey& storage_key = service_worker->storage_key();
+ return BlinkSchemefulSite(storage_key.top_level_site());
+ }
+ }
+
+ // LOG(INFO) << "--is other";
+ return std::nullopt;
+}
+
} // namespace
PublicURLManager::PublicURLManager(ExecutionContext* execution_context)
@@ -158,7 +177,17 @@ String PublicURLManager::RegisterURL(URLRegistrable* registrable) {
@@ -158,7 +203,9 @@ String PublicURLManager::RegisterURL(URLRegistrable* registrable) {
mojo::PendingReceiver<mojom::blink::Blob> blob_receiver =
blob_remote.InitWithNewPipeAndPassReceiver();
- GetBlobURLStore().Register(std::move(blob_remote), url);
+ std::optional<BlinkSchemefulSite> top_level_site;
+ if (GetExecutionContext()->IsWindow()) {
+ auto* window = To<LocalDOMWindow>(GetExecutionContext());
+ if (window->top() && window->top()->GetFrame()) {
+ top_level_site = BlinkSchemefulSite(window->top()
+ ->GetFrame()
+ ->GetSecurityContext()
+ ->GetSecurityOrigin());
+ }
+ }
+ GetBlobURLStore().Register(std::move(blob_remote), url, GetExecutionContext()->GetAgentClusterID(), top_level_site);
+ GetBlobURLStore().Register(std::move(blob_remote), url,
+ GetExecutionContext()->GetAgentClusterID(),
+ GetInsecureTopLevelSite(GetExecutionContext()));
mojo_urls_.insert(url_string);
registrable->CloneMojoBlob(std::move(blob_receiver));
@@ -208,7 +237,8 @@ void PublicURLManager::Resolve(
@@ -208,7 +255,9 @@ void PublicURLManager::Resolve(
DCHECK(url.ProtocolIs("blob"));
- GetBlobURLStore().ResolveAsURLLoaderFactory(url, std::move(factory_receiver));
+ GetBlobURLStore().ResolveAsURLLoaderFactory(url, std::move(factory_receiver),
+ GetExecutionContext()->GetAgentClusterID(), GetInsecureTopLevelSite(GetExecutionContext()));
+ GetExecutionContext()->GetAgentClusterID(),
+ GetInsecureTopLevelSite(GetExecutionContext()));
}
void PublicURLManager::ResolveAsBlobURLToken(
@@ -221,7 +251,8 @@ void PublicURLManager::ResolveAsBlobURLToken(
@@ -221,7 +270,9 @@ void PublicURLManager::ResolveAsBlobURLToken(
DCHECK(url.ProtocolIs("blob"));
GetBlobURLStore().ResolveAsBlobURLToken(url, std::move(token_receiver),
- is_top_level_navigation);
+ is_top_level_navigation,
+ GetExecutionContext()->GetAgentClusterID(), GetInsecureTopLevelSite(GetExecutionContext()));
+ GetExecutionContext()->GetAgentClusterID(),
+ GetInsecureTopLevelSite(GetExecutionContext()));
}
void PublicURLManager::ContextDestroyed() {
@@ -0,0 +1,55 @@
https://badblock.celenity.dev/abp/badblock_lite.txt = badblock_lite.txt
https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt = abp-filters-anti-cv.txt
https://easylist-downloads.adblockplus.org/abpindo+easylist.txt = abpindo+easylist.txt
https://easylist-downloads.adblockplus.org/abpindo.txt = abpindo.txt
https://easylist-downloads.adblockplus.org/abpvn+easylist.txt = abpvn+easylist.txt
https://easylist-downloads.adblockplus.org/abpvn.txt = abpvn.txt
https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt = bulgarian_list+easylist.txt
https://easylist-downloads.adblockplus.org/bulgarian_list.txt = bulgarian_list.txt
https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.txt = dandelion_sprouts_nordic_filters+easylist.txt
https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters.txt = dandelion_sprouts_nordic_filters.txt
https://easylist-downloads.adblockplus.org/easylist.txt = easylist.txt
https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt = easylistchina+easylist.txt
https://easylist-downloads.adblockplus.org/easylistchina.txt = easylistchina.txt
https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt = easylistczechslovak+easylist.txt
https://easylist-downloads.adblockplus.org/easylistczechslovak.txt = easylistczechslovak.txt
https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt = easylistdutch+easylist.txt
https://easylist-downloads.adblockplus.org/easylistdutch.txt = easylistdutch.txt
https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt = easylistgermany+easylist.txt
https://easylist-downloads.adblockplus.org/easylistgermany.txt = easylistgermany.txt
https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt = easylistitaly+easylist.txt
https://easylist-downloads.adblockplus.org/easylistitaly.txt = easylistitaly.txt
https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt = easylistlithuania+easylist.txt
https://easylist-downloads.adblockplus.org/easylistlithuania.txt = easylistlithuania.txt
https://easylist-downloads.adblockplus.org/easylistpolish+easylist.txt = easylistpolish+easylist.txt
https://easylist-downloads.adblockplus.org/easylistpolish.txt = easylistpolish.txt
https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.txt = easylistportuguese+easylist.txt
https://easylist-downloads.adblockplus.org/easylistportuguese.txt = easylistportuguese.txt
https://easylist-downloads.adblockplus.org/easylistspanish+easylist.txt = easylistspanish+easylist.txt
https://easylist-downloads.adblockplus.org/easylistspanish.txt = easylistspanish.txt
https://easylist-downloads.adblockplus.org/fanboy-notifications.txt = fanboy-notifications.txt
https://easylist-downloads.adblockplus.org/fanboy-social.txt = fanboy-social.txt
https://easylist-downloads.adblockplus.org/global-filters+easylist.txt = global-filters+easylist.txt
https://easylist-downloads.adblockplus.org/global-filters.txt = global-filters.txt
https://easylist-downloads.adblockplus.org/hufilter.txt = hufilter.txt
https://easylist-downloads.adblockplus.org/indianlist+easylist.txt = indianlist+easylist.txt
https://easylist-downloads.adblockplus.org/indianlist.txt = indianlist.txt
https://easylist-downloads.adblockplus.org/israellist+easylist.txt = israellist+easylist.txt
https://easylist-downloads.adblockplus.org/israellist.txt = israellist.txt
https://easylist-downloads.adblockplus.org/japanese-filters+easylist.txt = japanese-filters+easylist.txt
https://easylist-downloads.adblockplus.org/japanese-filters.txt = japanese-filters.txt
https://easylist-downloads.adblockplus.org/koreanlist+easylist.txt = koreanlist+easylist.txt
https://easylist-downloads.adblockplus.org/koreanlist.txt = koreanlist.txt
https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt = latvianlist+easylist.txt
https://easylist-downloads.adblockplus.org/latvianlist.txt = latvianlist.txt
https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt = liste_ar+liste_fr+easylist.txt
https://easylist-downloads.adblockplus.org/liste_ar.txt = liste_ar.txt
https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt = liste_fr+easylist.txt
https://easylist-downloads.adblockplus.org/liste_fr.txt = liste_fr.txt
https://easylist-downloads.adblockplus.org/rolist+easylist.txt = rolist+easylist.txt
https://easylist-downloads.adblockplus.org/rolist.txt = rolist.txt
https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt = ruadlist+easylist.txt
https://easylist-downloads.adblockplus.org/ruadlist.txt = ruadlist.txt
https://easylist-downloads.adblockplus.org/turkish-filters+easylist.txt = turkish-filters+easylist.txt
https://easylist-downloads.adblockplus.org/turkish-filters.txt = turkish-filters.txt
https://raw.githubusercontent.com/badmojr/1Hosts/master/Lite/adblock.txt = badmojr-1Hosts-master-Lite-adblock.txt