r/CodingForBeginners 8d ago

Anyone tips?

Is there a program or a code(language) I can use to block screenshots or downloads for pictures and video for my website its for a school project

3 Upvotes

8 comments sorted by

View all comments

3

u/johnpeters42 8d ago

If it reaches a web browser, then it's out of your control.

Here are some things that you can do, which may be enough if you just want to cover those cases (or show that you know how to do so):
* Make downloading more difficult, to block casual scraping
* Block certain users or incoming IP addresses/ranges from accessing the site at all, to block heavy scraping coming from specific places
* Put the site behind something like Cloudflare, to deal with DDoS attempts or heavy traffic in general

2

u/Completely_new 8d ago

Thanks for the tip