Saturday 13 June 2015

Protect Your Blog/Website Images From Hackers

Hey, These Day Hackers Are Steeling Our Precious Data And The Images Which We Own. Everyone is trying to Stop them but no one can be Fully Successful!! O know that’s Sad, But True. There Are Some Ways We can Protect Out Copyrighted Content And Images.
FIRST WAY
First Way Is That We Should Add Watermarks To Our Website’s Images And Add Our Website Name While Writing Content.
Here is an Example :-
Learn to Create Audio Analyser Bar Animation
This Way No one can Easily Use Our Content And There Is No Possible Way To Use Those Images Again Which Have Watermark. If they Would Use Then You Can Become Popular As people Who See your Websites Name There.
SECOND WAY
Second Way Can Be Nice But Not Too Secure To Protect the Images From Good Programmers. This Way Is to Disable Right Click On Your Website. Now You would say that How to disable Right Click On your Website. Where Is The Code. See Below Is the Image Of the Full Coding.
image1

And now below is the Code that you just need to Inject in The Script Section or Anywhere in the Head Section. And Add One Attribute to The Body Section. That Is oncontextmenu=”return false” .
image2

And below is the Code.
<script>
document.onmousedown=disableclick;
status=”Right Click Disabled”;
Function disableclick(event)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>
<body oncontextmenu=”return false”>
Some Content Here!!!
</body>

By these two methods you can protect your Images which you really own from stealers. I would Suggest You Use Both Methods. Use Watermark In your Images And Disable Right Click. Watermarks are awesome because if someone even steels your images he advertises your images. If i missed any thing then Comment in Section Below!!!

No comments:

Post a Comment