Can a website detect a copy/paste?

GonnaLearnToday

Regular Member
Joined
Dec 4, 2018
Messages
333
Reaction score
117
Not sure if this is the right spot, but if I were to copy content, past the content (say even just an email address) - can a website detect this?
 
There are some ways you can detect copy.
But there is no way to detect whether they paste it or not. Because it will happen outside your website
 
If you're concerned about duplicate content, just use AI to rephrase it.
 
Not sure if this is the right spot, but if I were to copy content, past the content (say even just an email address) - can a website detect this?
If you mean the copy and paste the content inside the website, then Yes, it can detect that.
 
Yes, the site can detect whether you are copying and pasting content from it or from another source. To do this, various methods can be used, for example, JavaScript to track user actions or compare the entered text with the site's own database.
 
I use this method on a client forum, denied copy + paste is a good option to stop spam, i developed using Javascript
 
Javascript can be disabled, hence your "protection" gets useless.
Text copying can be partially protected with css,
<style>
.noselect{
-webkit-user-select: none;
-webkit-touch-callout: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
 
From my experience, they can detect it. I don't know exactly how they do it.
 
Back
Top