Comment Re:Marketscore (Score 1) 733
It is trivial to block MarketScore from the server-side, for example if you host websites with sensitive information. In Apache I do this as follows:
RewriteEngine On
RewriteCond %{REMOTE_HOST} ^.+\.marketscore\.com$
RewriteRule ^ http://domain.com/errors/marketscore.html [R,L]
RewriteEngine On
RewriteCond %{REMOTE_HOST} ^.+\.marketscore\.com$
RewriteRule ^ http://domain.com/errors/marketscore.html [R,L]