Live data from Hacker News

What to do when someone clones your site?

news.ycombinator.com

1–10 of 17 posts

What to do when someone clones your site?

#1
Our AI Agents Directory had its entire website cloned at another domain. The cloner copied design and content with minor tweaks.

I reached out to them, but they plan do nothing with it.

I’ve noticed this is happening to other indie makers too—people are seeing their hard work copied and claimed by others with little effort. It seems like this issue is growing, especially with the rise of AI.

As indie creators, we put a lot of time and effort into creating unique content. But how do we protect our work from being copied? What can we do to ensure our original work isn’t taken and used by others?

Thanks for all your advice!

Re: What to do when someone clones your site?

#2
Cope. HTML and CSS is delivered client-side, for the past 10-odd years any so-inclined asshole dev could slurp up and reproduce your website instantly.

> But how do we protect our work from being copied? What can we do to ensure our original work isn’t taken and used by others?

Simply put; you keep it to yourself, and never share it with another living soul. Further reading: https://en.wikipedia.org/wiki/Tragedy_of_the_commons

Re: What to do when someone clones your site?

#3
post #2

Cope. HTML and CSS is delivered client-side, for the past 10-odd years any so-inclined asshole dev could slurp up and reproduce your website instantly. > But how do we protect our work from being copied? What can we do to ensure our original work isn’t taken and used by others? Simply put; you keep it to yourself, and never share it with another living soul. Further reading: https://en.wikipedia.org/wiki/Tragedy_of_t…

> Simply put; you keep it to yourself, and never share it with another living soul.

Server-side rendering and mandatory logins can go a long way toward making it painful for others to slurp up your IP.

If you build your products the way all the cool kids have been the last ~half decade (i.e., shipping the entire product & business logic to the client), then you may find this kind of frustration inevitable.

Re: What to do when someone clones your site?

#5
I know it's frowned upon here, but there are commercial and open source[1] javascript obfuscators with domain locking functionalities. If your site is already a SPA, they can make it very painful to just lift it (not impossible, obviously, because everything is reverse-engineerable, but the point is to discourage the majority of thiefs). You can be creative: for example, if whoever cloned your site is located in China, you can redirect users to prohibited content if you catch them running your javascript on the wrong domain. If your site calls APIs, you can call them in the wrong way on purpose to get the cloned site banned. You can also triggers those side effects randomly in order to make it more frustrating and untenable to serve your cloned site. This obviously presupposes you're doing all the rendering from the client side.

[1] https://obfuscator.io/

Re: What to do when someone clones your site?

#6

I know it's frowned upon here, but there are commercial and open source[1] javascript obfuscators with domain locking functionalities. If your site is already a SPA, they can make it very painful to just lift it (not impossible, obviously, because everything is reverse-engineerable, but the point is to discourage the majority of thiefs). You can be creative: for example, if whoever cloned your site is located in Chin…

Also, compiling part of your business / checking logic to various Web Assembly modules might make it even more difficult for the thieves to reverse engineer. Of course this would mean more maintenance on your side as well, so you need to choose a reasonable ratio of maintaining complexity vs. fucking with them.

Re: What to do when someone clones your site?

#7

No much we can do. Someone copied two my tools days ago, he didn't even change the UI. When I pointed out, he just said, everybody did this and I cannot judge him.

that's realy sad. at the end of the day there are a lot of bad actors but maybe at some point some techsolution might be created to prevent coping, or at least doing it with reference link

Re: What to do when someone clones your site?

#8

I know it's frowned upon here, but there are commercial and open source[1] javascript obfuscators with domain locking functionalities. If your site is already a SPA, they can make it very painful to just lift it (not impossible, obviously, because everything is reverse-engineerable, but the point is to discourage the majority of thiefs). You can be creative: for example, if whoever cloned your site is located in Chin…

this ia a good point that i need to consider going forward with engineering. thanks

Re: What to do when someone clones your site?

#9
post #3
post #2

Cope. HTML and CSS is delivered client-side, for the past 10-odd years any so-inclined asshole dev could slurp up and reproduce your website instantly. > But how do we protect our work from being copied? What can we do to ensure our original work isn’t taken and used by others? Simply put; you keep it to yourself, and never share it with another living soul. Further reading: https://en.wikipedia.org/wiki/Tragedy_of_t…

> Simply put; you keep it to yourself, and never share it with another living soul. Server-side rendering and mandatory logins can go a long way toward making it painful for others to slurp up your IP. If you build your products the way all the cool kids have been the last ~half decade (i.e., shipping the entire product & business logic to the client), then you may find this kind of frustration inevitable.

valid point. i will need to put more effort in security to minimaze impact of the cloning.

Re: What to do when someone clones your site?

#10
post #2

Cope. HTML and CSS is delivered client-side, for the past 10-odd years any so-inclined asshole dev could slurp up and reproduce your website instantly. > But how do we protect our work from being copied? What can we do to ensure our original work isn’t taken and used by others? Simply put; you keep it to yourself, and never share it with another living soul. Further reading: https://en.wikipedia.org/wiki/Tragedy_of_t…

> Simply put; you keep it to yourself, and never share it with another living soul.

Hey, that's what I do. Also cuts down maintenance, complaints, cost, judgementalism, you name it.

Post reply on HN