• Resolved clage

    (@clage)


    Looking at the traffic of my wordpress blog in G Analytics, I see there are two pages /www.torture.ml/replyxxxxxx, where xxxxxx are 6 numbers that change.

    This page create a search page, not build by me. How is it possible to introduce it in my blog? Where it is introduced the code? Can you please tell me how to remove that link?

Viewing 6 replies - 16 through 21 (of 21 total)
  • Hi @ipstenu-dh, @crafu

    The .htacces file controls who access your site (among other things).

    The type of referrer spam that @clage mention is commonly called Ghost Referrer Spam because it never accesses/visits your website. For that reason, there’s no point to block them using the .htaccess file.

    It works by hitting random GA tracking-ID’s to show up in your reports. The only way to stop them for now, as @eadusseau says, is by using filters in GA.

    On the other hand, Crawler Referrer Spam like semalt that uses a bot to crawl your site can be blocked by the .htaccess file. But there are just a few of them, the vast majority are Ghost.

    Thread Starter clage

    (@clage)

    Thank you all for the answers and the helps.
    I still have only a doubt. How is it possible that if I put in the address bar the link it open a search page that say oops…its embarassing…the resource you are looking at is unavailable…please search. And this is translated in my natural language – Italian. Is it really part of the wordpress offer?

    That “oops” should just be a standard 404 page. If you typed in youwebsite.com/blahblahblah you would probably get the same result.

    Someone can correct me if I’m wrong, but as far as I know its a good thing that you are seeing that 404 page.

    The alternative would be it actually taking you to that page, and that would mean that someone else had managed to add that torture.ml page to your website.

    securebits

    (@it_solutions-m)

    Here are a example for a .htaccess.

    # Block Semalt related referrer spam
    RewriteEngine on
    RewriteCond %{HTTP_REFERER} ^https://.*youtubedownload\.org/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*simple-share-buttons\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*softomix\.ru/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*zazagames\.org/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*youtubedownload\.org/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*vapmedia\.org/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*soundfrost\.org/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*joingames\.org/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*videofrost\.net/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*softomix\.net/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*feedouble\.net/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*backgroundpictures\.net/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*joinandplay\.me/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*videofrost\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*srecorder\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*softomix\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*openmediasoft\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*openfrost\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*myprintscreen\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*musicprojectfoundation\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*feedouble\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*fbfreegifts\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*extener\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*embedle\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*savetubevideo\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*kambasoft\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} buttons\-for\-website\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*7makemoneyonline.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*semalt\.com/ [NC]
    RewriteCond %{HTTP_REFERER} ^https://.*free-share-button\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*buy-cheap-online\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*best-seo-offer\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*Get-Free-Traffic-Now\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*buttons-for-your-website\.com/ [NC,OR]
    RewriteCond %{HTTP_REFERER} ^https://.*torture\.ml/ [NC,OR]
    RewriteRule ^(.*)$ – [F,L]

    For more information

    Best regards

    Thread Starter clage

    (@clage)

    At the end I confirm they were referral spams and I fixed it adding some code in .htaccess

Viewing 6 replies - 16 through 21 (of 21 total)
  • The topic ‘unwanted guest page in my blog’ is closed to new replies.