+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Secure Text - Copy Proof Text

  1. #1
    Zdroyd's Avatar
    Zdroyd is offline x10 Elder Zdroyd is an unknown quantity at this point
    Join Date
    Feb 2008
    Location
    Playing Halo
    Posts
    548

    Secure Text - Copy Proof Text

    Is it possible to set a group of text, or an Iframe, so that the user can Not copy it?

    I plan to place my short stories on my site, and I do not want people copy and pasting it to redistribute. I know it is possible to make it a jpeg image, but that would waist too much memory.

    Is it possible to make Copy Proof Text? (Preferably something simple.)

    Thanks ahead of time.

  2. #2
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Secure Text - Copy Proof Text

    There are right click disable javascripts, but it is impossible to disable someone from viewing the source code to your site. Even for an Iframe, they can track down the page that contains the code and view the source.

    Code:
    <p class="blahblahblah">Even if the text looks like this</p>
    <br />
    <h1>You can still figure out a way to delete the tags and copy it</h1>
    You'd have to use some sort of plugin, ie flash, silverlight, java where the text is not selectable and the source code is invisible. Even still, the user can take screenshots and if they really want to they can transcribe it.

    Long story short, if anyone can read your stories, they can copy them if they really want to. The amount of protection you put up just makes it more annoying to do.
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

  3. #3
    Zdroyd's Avatar
    Zdroyd is offline x10 Elder Zdroyd is an unknown quantity at this point
    Join Date
    Feb 2008
    Location
    Playing Halo
    Posts
    548

    Re: Secure Text - Copy Proof Text

    Quote Originally Posted by garrettroyce View Post
    There are right click disable javascripts, but it is impossible to disable someone from viewing the source code to your site. Even for an Iframe, they can track down the page that contains the code and view the source.

    Code:
    <p class="blahblahblah">Even if the text looks like this</p>
    <br />
    <h1>You can still figure out a way to delete the tags and copy it</h1>
    You'd have to use some sort of plugin, ie flash, silverlight, java where the text is not selectable and the source code is invisible. Even still, the user can take screenshots and if they really want to they can transcribe it.

    Long story short, if anyone can read your stories, they can copy them if they really want to. The amount of protection you put up just makes it more annoying to do.
    Is there anyway to slow them down? Just to make it more difficult so someone can not simply Copy Paste?

    Is there a way I can just make the Iframe non-copyable? So the only way they could get it is if they loaded the Iframes Page?

  4. #4
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Secure Text - Copy Proof Text

    Well, your first line of defense would be to disable right click (for copying and pasting directly), it's explained well in this article:

    http://javascript.about.com/library/blnoright.htm

    Iframes will make the source not directly viewable, but really don't do too much to bolster the security of the text. It adds one more annoyance for a potential thief to overcome.

    Another thought occurs to me; when the GD library is recompiled into the php configuration, you can use this to dynamically create images from text. This will be moderately difficult to code but if you are very worried about people stealing from you, you may want the extra level of protection.
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

  5. #5
    diabolo's Avatar
    diabolo is offline Community Advocate diabolo is on a distinguished road
    Join Date
    Nov 2007
    Location
    Jersey Shore
    Posts
    1,683

    Re: Secure Text - Copy Proof Text

    before you disable right click you might want to check out this article
    http://www.sitepoint.com/article/don...e-right-click/

    to me, I have it when people disable right click because I use the right click very often, esp where there is a link and I want it to open in a new tab. in FF (right click > Open in new tab)

  6. #6
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Secure Text - Copy Proof Text

    @diablo I agree completely and that's in the article I posted. But, short of converting the text to some other format, these few annoyances are the only thing you can do to try to curb plagiarism. Really, if someone can read something in any way, they can simple write it down and copy it that way.
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

  7. #7
    Livewire's Avatar
    Livewire is offline Abuse Compliance Officer Livewire is a glorious beacon of lightLivewire is a glorious beacon of light
    Join Date
    Jun 2005
    Location
    Behind a keyboard.
    Posts
    8,998

    Re: Secure Text - Copy Proof Text

    Quote Originally Posted by garrettroyce View Post
    @diablo I agree completely and that's in the article I posted. But, short of converting the text to some other format, these few annoyances are the only thing you can do to try to curb plagiarism. Really, if someone can read something in any way, they can simple write it down and copy it that way.
    And for that matter it wouldn't surprise me if there's apps available that can read the text off of a jpeg anyways - bots use them to get past poorly designed Captcha's.

    Besides, disabling right-click only works if the user doesn't -disable- javascript. If it's disabled, right click works, and you're back to an unprotected site.


    TOS breakers will be suspended regardless of race, creed, national origin, hair color, or favorite food. Thanks for your understanding!

  8. #8
    sourfacedcyclop's Avatar
    sourfacedcyclop is offline x10 Sophmore sourfacedcyclop is an unknown quantity at this point
    Join Date
    Sep 2007
    Posts
    221

    Re: Secure Text - Copy Proof Text

    Plus there is the fact that you don't need to right click to copy text. Control-C works the same way.
    "Sanity is nothing but our interpretation of reality"

    http://tswebvisions.com - Portfolio

  9. #9
    josephilipraja's Avatar
    josephilipraja is offline x10Hosting Member josephilipraja is an unknown quantity at this point
    Join Date
    Sep 2007
    Location
    Pathanamthitta - Kerala - India
    Posts
    21

    Re: Secure Text - Copy Proof Text

    ... and in browsers like firefox they by default dont allow scripts which tries to disable / change the context menu..

    check Firefox=>Tools=>Options=>Content=>Advanced - Next to "Enable Javascript" Option

    there is an option to allow scripts which tries to disable or change right click menu (context menu).. by default it is not enabled...

    so to those who use firefox and dont bother to enable that option can use your site without any problems... i dont know about other browsers... some may block it too...
    :cool: Jose Philip Raja :cool:
    :cool: ............:naughty:............ :cool:
    :cool: In Celebrity of Being Alive :cool:



  10. #10
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Secure Text - Copy Proof Text

    He's not trying to make his site impenetrable, just secure against the casual plagiarist. It does state in both articles that there are easy workarounds.
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Hybrid's HTML Lessons
    By Hybrid in forum Tutorials
    Replies: 18
    Last Post: 11-28-2009, 02:12 PM
  2. html/css help
    By swantonbomb88 in forum Programming Help
    Replies: 3
    Last Post: 05-01-2008, 09:12 AM
  3. BB Code Guide
    By Jober68 in forum Tutorials
    Replies: 1
    Last Post: 01-10-2008, 05:12 PM
  4. What is Authentication
    By asadislam78 in forum Computers & Technology
    Replies: 1
    Last Post: 12-13-2007, 07:13 AM
  5. |PS|*Blur text Tutorial*
    By |Born2Shoot| in forum Tutorials
    Replies: 7
    Last Post: 06-04-2005, 10:53 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers