CHeck the very last comment on the post "Suggested to me by a colleague: “A better way to deal with reverse proxy sites… add a validation file in WMT and add yourself as an owner, then delist them”https://blog.sucuri.net/2015/09/analyzing-proxy-based-spam-networks.html This seems to be my exact problem, but the issue is how do I find the originating IP address to block it? They are using CloudFlare
CHeck the very last comment on the post "Suggested to me by a colleague: “A better way to deal with reverse proxy sites… add a validation file in WMT and add yourself as an owner, then delist them”
Maybe this can help.
It's a streaming site going through DMCA legal channels won't workOr, you can apply for manual action on the mirror site while providing evidence that your website is the original.
I can set up this kind of site mirroring. Done that. If you have suggestions how to use it to make some solid cash, let's make a JV. Contact me in PM.
Maybe some king of PHP script that is doing get_contents on your website and then altering just the template.Wasn't sure what section this goes in, but what are counter measures to someone completely mirroring your site? I think it's being mirrored but i'm not sure exactly what you would call it. If I post something they immediately have it If i change my sites code they immediately have the change if my website goes down there website goes down what the hell is that?
It is actually very easy to stop. It should be fixed on the front end. Add this simple javascript to the <head> section:I'm trying to stop this from happening to my site and you're trying to advertise it here? Unless you have some insight on how to deal with it please leave
https://blog.sucuri.net/2015/09/analyzing-proxy-based-spam-networks.html This seems to be my exact problem, but the issue is how do I find the originating IP address to block it? They are using CloudFlare
The template isn't altered at all everything is the same theme and all only thing different is the URLMaybe some king of PHP script that is doing get_contents on your website and then altering just the template.
You could file an abuse at cloudflare.
Or you put a link to your page in your content area. If the link in the content stays and don't get stripped, let google pick up the backlink, then disavow in your search console.
Sure I'll pm you nowpm me site that is bothering you, it'd like to have a look at it tonight.
I'll give this ago thank youIt is actually very easy to stop. It should be fixed on the front end. Add this simple javascript to the <head> section:
<script>
document.write('<me'+'ta http-equiv="refr'+'esh" content="0; U'+'R'+'L'+=ht'+'tp'+'://ww'+'your'+'site.c'+'om/"/>');
</script>
Add some extra obfuscation if you want. The "Hacker" will need to fix this manually, what he most probably will not do.
P.S. In this script I forgot to add, that the redirect should occur only if the site domain is different from your domain. (location.href !== 'yoursite.com')
RewriteEngine on
RewriteCond %{HTTP_REFERER} copydomain\.com [NC,OR]
RewriteRule .* - [F]
Adding the above to htaccess brings down the site, but i also lose access to my my wp-admin? How is that possible
If i'm getting this rightThat's wrong to rely on {HTTP_REFERER}, which can be missing.
Just use the javascript solution. Serverside tricks won't work.