This page is a POC for a concept that allowes us to block ads via Network Filtering (e.g. a DNS) but still allow publishers to monetize via an adblock wall asking for consent to show ads. This solution is fully server side so it works on any platform and in any browser without need to install anything. By using a rolling list of hash based subdomains can we control how long ads are allowed and limit potential abuse from sites.
Demo
Note: Disable any adblocking you have running as it might interfere with the demo.
- This page contains an banner ad, because the domain for bid request is not blocked
- Change DNS server on your device to 31.220.5.246 and reload the page
- An adblocking wall will be displayed, because we detected that ads where not loaded.
- Ads will be loaded when you agreed to "Allow ads"
- If you reload the page will ads still be shown, if you want to try again you can reset the demo
Don't forget to revert to your original DNS
If the demo does not work:
- Check that the bid request server is blocked properly, this page should not be accessible.
- Disable any adblocking extension you have running as they might interfere.
This solution offers us to:
- Block ads via network filtering by blocking bid request
- Offer publishers a 1-click wall that enables ads by doing the bid request via an (to them) unknown subdomain
- Limit misuse and control how long ads will be allowed by cycling the subdomains
Tech spec:
- Detects that the bid-request did not work (ads where not loaded)
- Display a wall asking for consent to display ads
- Requests an active subdomain for this bid-platform from our API
- Reloads the bid script from the working subdomain so the bid request works and ads are loaded
- Saves the subdomain in local storage with an expire time.
- On subsequent visits the subdomain stored in local storage will be used to load the bid script, until it finaly expires.
Detailed spec for this demo
- Page: index.html this static HTML page
- Bid request: bid.js loaded by index.html from bid.othervolt.com (blocked by the test DNS) this script loads the ads
- Subdomain API: json file serving an active subdomain to wall.js
- Wall: wall.js this is the wall script, it's responsible for detecting that ads was not displayed, showing the wall, collecting the subdomain and reloading the bid request JS
- Filter list: Network Filter List containing the blocked bid request server and the temporarily allowlisted subdomain
- DNS Service: DNS Serice setup for this POC that uses the data from the filter list (31.220.5.246)
Detailed spec for real world scenario
- Page: Publisher's page with Readership Links integration
- Bid request: The blocked bid request server used by the Publishers page
- Subdomain API: Our API that serves active working temporary subdomain for bid request servers
- Wall: Readership Link detecting that ads was not displayed, showing the wall, requesting the subdomain from the subdomain API and triggering reloading of the bid request from the subdomain
- Filter list: Our Network Filtering filterlist that blocks the standard bid server, but allows what subdomains are active for each bid platform
- DNS Service: Our or partner DNS service that uses our Network Filter List
Technical Demands on Bid Platform
The bid platform needs to respond to * on their DNS zone. This means that regardless of what subdomain is used, the server will always respond. This is a rudimentary change.
Where Does This Work?
This solution works in all browsers on all platforms, as long as our own DNS is used for the device. Try it in another browser or you mobile phone.
Where Does This Not Work?
This solution does not work in any browser or platform that runs a local ad blocker, such as an extension. Local filters will block the ads from loading, even if the bid request would work.
Who made this?
This demo was done by Linus Olsson and Leif Högberg.