I'm wondering why your 'myscript.cgi' is readable by others. If it's the fact that people can simply type some URL into their browser and download the source then there's a significant security hole on the server and you should really get it fixed by contacting the server administrator, or getting another server.

If you're worried about other people logged into the server being able to see it then set the permissions so only the user it runs as can read it. This works far better when you're running on a machine where each script executes as the user who has it in their cgi-bin, or even better a special account for them to run CGIs as.

If this isn't the case on your server then I'd recommend you get another, more secure, server before playing about with encryption as it's a far better way to guarantee safety.

Now for the bit with disclaimers- I'm really not recommending this cause of action, I'm only putting it here in case you're determined to follow this course. Giving you enough rope to shoot yourself in the foot, or somesuch.

If you're just trying to make the script difficult to read for customers etc. to stop them messing with your carefully-crafted code then look at the Obfuscation section of this very site.. many people write 'Obfuscation engines' to hide the meaning of code. This will help to hide the details, but expect a significant performance hit whilst it's decrypted, and make sure you test the encrypted version exceptionally well since it's quite possible it's broken it.


In reply to Re: Encripting scipt by Molt
in thread Encrypting script (was Encripting scipt) by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.