Closed anonymous-matomo-user closed 9 years ago
This option will only be viewable if you login as an admin? Other users that you just want checking stats should be given different login w/o admin credentials so they cannot go to site management.
View access will not show the javascript code shown to track within the Piwik front end.
Piwik relies on information sent by the browser. Whatever we do on the server, there is some implicit trust that what the client sends is not malicious.
Server side filtering might incur the performance penalty concern raised in ticket #9. Redesignating this ticket as a plugin feature request.
A benefit of the current implementation is that discrepancies in one's stats may help to identity copyvio or malicious activity to be blocked.
Requirements:
See also related: #2375
There is now a mechanism that is used to cache site- data in files to be loaded by piwik.php tracker code. That wouldn't add the lookup at tracking time.
on the UI side we already ask for multiple URL alias for the website. we could simply add a checkbox (disabled by default): "Exclude all visits that do not load the Piwik code from one of these URLs".
I agree with vipsoft suggestion of reporting malicious activity, but not in V1.
Also, the http referer should be checked and it should be non empty, and have one of the known domain URL.
The basic check is on the url parameter in the request.
The Referer check has to be separately enabled/disabled to accommodate use cases, such as:
See related #2375 which may be done at the same time
I can't think of a more important feature than this one.
Data integrity is way more important than anything I can think of.
Dali
Agreed. There are several upcoming features/fixes I am looking forward to, but I cant help but ask myself how important new functionality may be when the underlying data is so openly exposed to corruption from any malicious 3rd party.
How's the status of this issue? Is it already integrated to the current Piwik or it is still possible for anyone copy and pasting the tracking js code to spam the piwik tracking db?
I think don't having an option to exclude these spammy 3rd party sites is a major issue. This option should have been available a long time ago!
It would be really important to have this implemented.
No it is not a major issue. But, there are also 400 other tickets opened or so. If you need this implemented soon, then please consider sponsoring this development.
There are several things to consider I guess:
piwik.js
but we would have to make that token limited in time and unique for each piwik.js
. But then again I can visit piwik.org, grab the token and spam demo.piwik.org with fake visits using that token…I don't see a lot of value in fixing 1 if 2 is not fixed.
there is value in (1) because sometimes it can be simple human error that a wrong tracking code is set (or the wrong idsite) and it records wrong data in the UI. When this happens currently there is no way for users to filter out the traffic, which creates bad data (while it's not their fault). Once fixed it'll be just enabling a per-website setting "Only record data from the website URLs" (disabled by default).
i've noticed that quite a few users have asked for this feature in the forums in the past...
maybe we could release it as an open source plugin on the Marketplace? it would be a nice use case for a plugin that adds a new per-website setting and make this easy for developers (maybe we also wait first for the Admin screen redesign in #7492).
@mnapoli maybe for #2 add a maximum actions per visitor value in a certain duration would help ?
Someone using httrack software to download a whole site will get as many hits as you got pages. As a webmaster, I'm not too happy to see +200 actions from a single user in 15 minutes when you have 10 000 pages... But right now I live with it.
I really don't know the complexity behind the general idea but let's be frank, fake visits are nasty.
I read all comments, and I have 2 ideas how we can implement it:
I think the good place for that option is Admin - Manage Websites - Edit Site Form.
Guys, what do you think?
@barbushin we already have the feature to exclude users based on user agents, see Administration > Websites:
We don't need feature to exclude visits based on referrer.
I think this feature could be simply done as a new checkbox, on a per-website basis, something like this:
what do you think?
Notes:
@mattab That looks amazing! 👍
@mattab That's nice to keep it simple and easy to use, but what about subdomains?
Good point, I reckon we allow all subdomains automatically as well, and rename the checkboxes/inline help to clarify this Only track visits for actions on any of the website URLs: $URLs_here (and their subdomains)
@mattab And what if somebody just using multiple site instances on one domain, like dev.piwik.com
, stage.piwik.com
.. and piwik.com
for production, and he don't want to setup different Piwik integration options for different environments?
@barbushin Isn't it always a good practice to include your tracking code based on your environment? My local
, dev
or staging
sites usually don't load the tracking code at all.
@JonasDoebertin Of course it's not a good practice :) But how we can be sure that everybody are as smart as you?
@barbushin I think for our MVP version we can track all subdomains (to KISS / Keep It Simple & Stupid). If users ask for possibility to "not track" sub-domains, we could re-visit our product vision?
@barbushin We can't. But this is something you already had to think about all the time (for nearly any other analytics service, as well).
@mattab Okay, so all we need is to add checkbox Only track visits for actions on any website URLs
. But I'm not sure that I clearly understand what does it mean. Is it validation that referer equals to any of listed URLs?
I think the validation should check &url=
tracking API parameter (not urlref
) and check that this is part of one of the URLs set for this website.
Added FAQ for this feature: How do I force Piwik to only track Page URLs that belong to my website?
I just issued a PR https://github.com/piwik/piwik/pull/9358 to no longer match the subdomain as it was not mentioned in the UI and it was unclear. On the other side if any of these URLs specify a path we will now also check whether the given path is actually present
Hi All I am facing issue with matomo user data info .I added multiple user ids in java script and i am trying to lookup for data on particular id But this data coming under singe user id only .Can anyone please help me for this .Here is my added script _paq.push(['setUserId', 'piwik']); _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']);
Hi All I am facing issue with matomo user data info .I added multiple user ids in java script and i am trying to lookup for data on particular id But this data coming under singe user id only .Can anyone please help me for this .Here is my added script _paq.push(['setUserId', 'piwik']); _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']);
@ramramra May be a late reply but I think you are hardcoding the setUserId to piwik so it will only output piwik as userId. You should fetch the dynamic userId like email or any name and then use that variable. For Eg: var userName= .... _paq.push(['setUserId', userName]);
Hope this helps!
Piwik statistics can be distortet by copying the JavaScript code to third party sites. In the "Websites Management" you can add new sites with their URLs. But everybody can copy your JavaScript code to his own site and manipulate your statistics.
Piwik needs to be updated with a function that defines domains that are allowed to be counted.