How to restrict tracking calls from domains other than you own? | Community
Skip to main content
December 3, 2020
Solved

How to restrict tracking calls from domains other than you own?

  • December 3, 2020
  • 4 replies
  • 3264 views

Since Adobe Analytics has front-end implementation, anyone can copy your tracking script or entire page source and use it on their domain. How to prevent tracking calls made from domain other than you own. May be something like not considering those calls so as to save tracking call cost and keep the data clean?

Thank you,

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Andrey_Osadchuk

As an option you may want to populate a variable with a page URL (or hostname) and then configure a VISTA rule to filter the beacons from undesired websites. However, this will unlikely bring you a positive ROI if the key objective is to reduce the number of server calls as VISTA setup is not free, and I am not sure if filtered server calls are not counted...

If you would like to get rid of the data from undesired websites, consider creating a segment and a virtual report suite with it.

 

Best wishes,
Andrey Osadchuk | Inspect Launch Implementation, Automate Classifications & Data Sources, Essential Bookmarks

4 replies

Andrey_Osadchuk
Andrey_OsadchukAccepted solution
Level 10
December 3, 2020

As an option you may want to populate a variable with a page URL (or hostname) and then configure a VISTA rule to filter the beacons from undesired websites. However, this will unlikely bring you a positive ROI if the key objective is to reduce the number of server calls as VISTA setup is not free, and I am not sure if filtered server calls are not counted...

If you would like to get rid of the data from undesired websites, consider creating a segment and a virtual report suite with it.

 

Best wishes,
Andrey Osadchuk | Inspect Launch Implementation, Automate Classifications & Data Sources, Essential Bookmarks

Jacob-DDdev
Level 6
December 3, 2020

Piggy-backing off of @andrey_osadchuk 's answer, you could also set up your beacons to only fire on conditional events. In particular, create a condition within each rule that the domain meets the specific criteria.

 

The only drawback would be that if someone were that highly motivated to commit fraud, they could just send a ton a requests directly to Adobe's tracking server. Ultimately, you may want to look into what laws your country has to protect against fraud. For example, this would be very easy to prosecute under the United State's Computer Fraud and Abuse Act.

Brian_Johnson_
Level 8
December 3, 2020

I'd go with something like this...

function checkValidDomains(host) { var validDomains = ['x.example.com', 'y.example.com']; if (!(validDomains.indexOf(host) > -1)) { s.abort = true; } } s.doPlugins = function (s) { checkValidDomains(document.location.hostname); };

If you don't already have doPlugins set up in Launch (or your AppMeasurement.js library), it's easy to do, and if someone happens to copy and use your analytics script verbatim, you'd be covered on ALL analytics calls. No need for rule-specific conditions or anything more complicated.

Jacob-DDdev
Level 6
December 4, 2020

Seems like a good solution, but doesn't hide the value of the tracking server. @isinha 's answer is the only one that completely masks all tracking activity from a client.

Adobe Employee
December 4, 2020

You may also want to opt for server side implementation to mitigate such concerns.