Answer the question
In order to leave comments, you need to log in
How to deal with a website clone?
I found transitions from a domain unknown to me using Yandex metrics, looked at a complete copy of my site. And I tried to send the application form from the site-clone form - the letter fell into my mailbox, that is, everything is like on my site. Block by ip does not work. I wrote a couple of abuses, but I think this will not help, especially since one of the domains uses Cloudflare. Site on WP, no warez, wp-security is worth :) Https is also available. Who knows tell me? How to fight and how to prevent such things. Will cdn help in this situation?
Answer the question
In order to leave comments, you need to log in
If they just proxy the site
1. You can calculate the IP address using the web server logs.
It is enough to go to some UNIQUE page on the parasite to see this transition in the logs of YOUR site.
Because the parasite will go to your server for a page.
Unique because there may be a cache on the side of the parasite, and it must be excluded by requesting a page that no one could request before.
Uniqueness is easy to do with random get parameters: parazit.ru/page/asd ?random=12eqsdasd
After calculation, ban on the server in any convenient way, via iptables for example.
2. If you have not calculated, but it is known for sure that the site still proxies requests to yours, then you can do this
Add to your site
<script>
window.addEventListener("load", function load(event){
if(window.location.hostname == "parazit.ru"){ // Домен сайта паразита
document.write('<iframe width="1903" height="765" src="https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1" frameborder="0" allowfullscreen></iframe>');
}
},false);
</script>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question