0

Is using CSS, Javascript, HTML, or images from other websites on our website illegal because the contents may involve trademark or copyrighted assets?

I am using lot of partial or full content from other websites on my website because my website is about reviewing brands and websites, and commenting on the pro's and con's.

Currently I am using iframe, object, wget, file_get_contents, cURL and javascript to scrape or clone partial or full website content for my personal use.

I also generate revenue from using their content from advertising, SEO, affiliates and banners etc.

Would I get penalized by law enforcement if they found me, because I am scarping and cloning websites without the permission of real website owner?

And if it is illegal then why are there so many legal open source or paid software and applications for cloning of website like httrack, cyotek, webcopy etc?

Wikipedia : https://en.wikipedia.org/wiki/Web_scraping#Legal_issues

Stackoverflow : https://stackoverflow.com/questions/70697060/website-cloning-is-ethical-and-acceptable

1 Answers1

5

Both the displayed site (including all text and images) and the html, css, javascript and other code that generates the display are protected by copyright. This is true in pretty much every country. You would not be able to reuse them lawfully without permission, unless an exception to copyright applies. If no exception applies, and you have not obtained permission, this is copyright infringement. In most cases copyright infringement is treated as a tort (a civil matter), not as a crime. This means that law enforcement generally will take no action and have no interest in such a situation.

The copyright owner could sue for infringement, and possibly collect money damages. In the US, statutory damages can be as high as $30,000, or up to $150,000 for "wilful" infringement, or as low as $750 (per work infringed). Or actual damages can be collected instead. In other countries, actual damages plus costs of suit are more likely, but the rule can be different in each country.

The possible exceptions to copyright vary significantly in different countries. In the US the major exception is Fair use. See Is this copyright infringement? Is it fair use? What if I don't make any money off it? and I have a question about copyright. What should I read before I ask it? for more information In general short snippets of code can probably be used under fair use, but substantial parts of the code or the displayed site are less likely to qualify as fair use.

And if it is illegal then why are there so many legal open source or paid software and applications for cloning of website like httrack, cyotek, webcopy etc?

Most of these tools have legitimate uses, including learning how a site is constructed without distributing copied content; and cloning or partial cloning of a site with permission. Even if the tools were mostly used for unlawful copying, that might well not be a high priority for law enforcement, and cross-border law enforcement (which this in many cases would involve) is often much harder for the police and other authorities.

David Siegel
  • 115,406
  • 10
  • 215
  • 408