referrer-spam

Removing spam referrals in Google Analytics doesn't work anymore for some referrers

Deadly 提交于 2020-01-03 03:16:05
问题 I set up some filters in Google Analytics to remove spam referrals. It works great for the majority of the referral links but since last week, three websites are showing up again. What's the reason for this and how to make them disappear again? Filter 1 darodar\.com|priceg\.com|semalt\.com|buttons\-for\-website\.com|makemoneyonline\.com|blackhatworth\.com|hulfingtonpost\.com|bestwebsitesawards\.com|simple\-share\-buttons\.com Filter 2 econom\.co|ilovevitaly\.com|ilovevitaly\.ru

blocking spam referer domain with web.config

[亡魂溺海] 提交于 2019-12-24 02:40:50
问题 I'm trying to block spam referer domains with web.config. I have it (mostly) working. Here's the code I'm using: <rule name="abort referer spam requests" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_REFERER}" pattern="(semalt\.com|Darodar\.com|Priceg\.com|7makemoneyonline\.com|Buttons\-for\-website\.com|Ilovevitaly\.com|Blackhatworth\.com|Econom\.co|Iskalko\.ru|Lomb\.co|Lombia\.co|hulfingtonpost\.com|cenoval\.ru|bestwebsitesawards\.com|o\-o\-6\-o\-o\.com

blocking semalt referrers with htaccess rules

醉酒当歌 提交于 2019-12-18 17:38:06
问题 I have implemented the following code to htaccess but are still seeing referrers from semalt, such as: 74.semalt.com 89.semalt.com The code: # Block visits from semalt.com RewriteEngine on RewriteCond %{HTTP_REFERER} ^http://([^.]+\.)*semalt\.com [NC] RewriteRule .* - [F] Any idea how these referrers are bypassing this rule (which I found online) and how I can fully prevent them? 回答1: Your code looks good, syntax checks out ok! I used these mod_rewrite methods: RewriteCond %{HTTP_REFERER}

How to stop Google Analytics Bots, referral spams in OS Versions, Top Device Models entry for Android

余生长醉 提交于 2019-12-11 03:55:08
问题 I'm surprise to see statistics in Google Analytics page for one of the Android app and noticed the following strange informations Apple iPhone in Top Device Models Strange OS names entry in OS Versions : Macintosh Intel 10.10 Linux x86_64 Windows 7 (not set) (not set) Note: I have answered the the current possible solution, but that doesn't make corrections to the available old data sets please let me know any ways to correct the old data sets and get out of the cons mentioned in my answer!

Nginx block from referrer

天大地大妈咪最大 提交于 2019-12-09 06:54:49
问题 I need block all http connections, who have referrer click2dad.net. I write in mysite.conf: location / { valid_referers ~.*http://click2dad\.net.*; if ($invalid_referer = ''){ return 403; } try_files $uri $uri/ /index.php?$args; } But i still see in nginx logs: HTTP/1.1" 200 26984 "http://click2dad.net/view/VUhfCE4ugTsb0SoKerhgMvPXcmXszU" 200, not 403 As it is correct to block all clients from the click2dad.net ? 回答1: It should be noted that an expression will be matched against the text

Rewrite rule not filtering referral spam correctly (anymore)

可紊 提交于 2019-12-07 15:32:53
问题 I've added below rewrite rule to my web.config. It has worked perfectly, blocking all mentioned referral spam sites. However, today suddenly I noticed that social-buttons.com popped up in my Google Analytics. How is this possible with the rule I have defined below? <rule name="abort referer spam requests" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_REFERER}" pattern="(semalt\.com)|(buttons\-for\-website\.com)|(simple\-share\-buttons\.com)|(darodar\.com)|(social\

Removing spam referrals in Google Analytics doesn't work anymore for some referrers

假如想象 提交于 2019-12-06 15:36:36
I set up some filters in Google Analytics to remove spam referrals. It works great for the majority of the referral links but since last week, three websites are showing up again. What's the reason for this and how to make them disappear again? Filter 1 darodar\.com|priceg\.com|semalt\.com|buttons\-for\-website\.com|makemoneyonline\.com|blackhatworth\.com|hulfingtonpost\.com|bestwebsitesawards\.com|simple\-share\-buttons\.com Filter 2 econom\.co|ilovevitaly\.com|ilovevitaly\.ru|humanorightswatch\.org|free\-share\-buttons\.com|buy\-cheap\-online\.info|domination\.ml|mobiletest\.me|site2\.free\

Rewrite rule not filtering referral spam correctly (anymore)

浪子不回头ぞ 提交于 2019-12-05 20:21:37
I've added below rewrite rule to my web.config. It has worked perfectly, blocking all mentioned referral spam sites. However, today suddenly I noticed that social-buttons.com popped up in my Google Analytics. How is this possible with the rule I have defined below? <rule name="abort referer spam requests" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_REFERER}" pattern="(semalt\.com)|(buttons\-for\-website\.com)|(simple\-share\-buttons\.com)|(darodar\.com)|(social\-buttons\.com)" /> </conditions> <action type="AbortRequest" /> </rule> I had the same problem. social

How to block referral spam using Nginx?

笑着哭i 提交于 2019-12-03 06:18:44
问题 I'm running two mongrels under an Nginx server. I keep getting requests for a nonexistent file. The IP addresses change frequently but the referring URL stays the same. I'd like to resolve this. 回答1: https://calomel.org/nginx.html Block most "referrer spam" -- "more of an annoyance than a problem" nginx.conf ## Deny certain Referers (case insensitive) ## The ~* makes it case insensitive as opposed to just a ~ if ($http_referer ~* (babes|click|diamond|forsale|girl|jewelry|love|nudit|organic

How to block referral spam using Nginx?

余生颓废 提交于 2019-12-02 19:41:53
I'm running two mongrels under an Nginx server. I keep getting requests for a nonexistent file. The IP addresses change frequently but the referring URL stays the same. I'd like to resolve this. https://calomel.org/nginx.html Block most "referrer spam" -- "more of an annoyance than a problem" nginx.conf ## Deny certain Referers (case insensitive) ## The ~* makes it case insensitive as opposed to just a ~ if ($http_referer ~* (babes|click|diamond|forsale|girl|jewelry|love|nudit|organic|poker|porn|poweroversoftware|sex|teen|video|webcam|zippo)) { return 403; } Using Nginx map module is a a bit