Hi Terrence,
The issue is not so much directories being owned by apache as it is system level commands being executed by CGI scripts.

If for instance directory was set to a variable and you did not check to make sure directory only contained valid data (or as most people say now make sure the data is not tainted) then it would be possible for people to try to inject other unsolicited behavior into your commands, such as adding additional directories. If you where doing system or exec this would be worse as they could actually add additional commands to be executed.

The main issue here is that cgi scripts can be called by a user and any thing that a user passes to your scripts canot be trusted without validation. The best thing you can do is to remember that and always hardcode variable results, set them equal to system variables, and/or taint check any user data for things that shouldn't be there.

This is just a short rant and I can provide much more of it if wanted.

Dave -- Saving the world one node at a time


In reply to Re: Re: chmod for cgi by Zapawork
in thread chmod for cgi by terrencebrown

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.