1. Create fake url endpoint. And go to that endpoint in the adversary's website, when your server gets request, flag the ip. Do this nonstop with a script. 2. Create fake html elements and put unique strings inside. And you can search that string in search engines for finding similar fake sites on different domains. 3. Create fake html element and put all request details in encrypted format. Visit adversary's website…
> 5. Instead of banning them, return fake content (fake titles and fake images etc) if proxy is detected OR the ip is flagged. > 6. Don't ban the flagged ip's. She/He's gonna find another one. Make them angry and their user's angry so they give up on you. There's a popular blog that no longer gets linked on HN. The author didn't like the discussions HN had around his writing, so any visitors with HN as the referer ar…
Ask HN: Someone is proxy-mirroring my website, can I do anything?
61–70 of 310 posts
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#62Earlier quoted context omitted.
In my search for this I found @document isn't super supported [0] I suggested something like: a[href*= "sukuns.us.to"] { display:none; } Then use SRI to enforce that CSS. [0]: https://caniuse.com/mdn-css_at-rules_document
Seems like it would be fairly easy to use this pseudo selector, and apply it to every element on the page. Making them show up as empty to the user
then hide the full page with: html {display: none;}
html[data-path*="saashub.com"] {display:block;}Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#63Earlier quoted context omitted.
> 5. Instead of banning them, return fake content (fake titles and fake images etc) if proxy is detected OR the ip is flagged. > 6. Don't ban the flagged ip's. She/He's gonna find another one. Make them angry and their user's angry so they give up on you. There's a popular blog that no longer gets linked on HN. The author didn't like the discussions HN had around his writing, so any visitors with HN as the referer ar…
Goatse? I assume you're referring to jwz - that blog shows a testicle in an egg cup if it sees a HN referrer.
Fortunately, there are many upsetting images for the OP to choose from!
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#64Anyone have any idea what this does? It's embedded in the copycat site's source: earlierindians.com/39faf03aa687eeefffbe787537b56e15/invoke.js
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#65I seem to recall someone doing something similar at one point hosting files and setting up resources that get pulled down only on flagged IPs such as a 300kb gzip encoded file that tries to expand to 100TB.
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#66If the host (DediPath) is not respecting DMCA notices, one other thing you can do is adding the requester's IP address to every page, eg as a div class. If the responses are live proxied, this will surface the cloner's front-facing IP address, and you can block that (and their ASN) specifically.
Oh, I like this idea. Would be pretty easy to automate it by setting up some script scraping the IP revealed on their site, adding it to the block list as they rotate around. Clever.
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#67I wonder what they get out of this. Injecting ads perhaps?
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#68Does copied content even rank in Google? How are they driving the traffic to it?
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#691. Create fake url endpoint. And go to that endpoint in the adversary's website, when your server gets request, flag the ip. Do this nonstop with a script. 2. Create fake html elements and put unique strings inside. And you can search that string in search engines for finding similar fake sites on different domains. 3. Create fake html element and put all request details in encrypted format. Visit adversary's website…
> Create fake big css files (10MB etc). And repeatedly download that from the adversary's website. This should cost them too much money on proxies.
Be careful when doing things like this, including the shock image option mentioned in other comments, as then it could become an arsehole race with them trying to DoS your site in retribution. Then again, going through more official channels could also get the same reaction, so…
> When you detect proxy, return too big fake HTML files (10GB) etc. That could crash their server if they load the HTML into the memory when parsing.
Make sure you are setup to always compress outgoing content, so that you can send GBs of mostly single-token content with MBs of bandwidth.
Re: Ask HN: Someone is proxy-mirroring my website, can I do anything?
#70Put it under a URL only you know, then start DoS-ing it.
Of course that requires you to be able to serve a prepared gzipped resonse, depends on your stack.