I have a mod_perl handler that I wrote some time ago that I'm now reviewing from the POV of security. It starts roughly like this:
sub handler { my $r = shift; local ($NS::IP_address, %NS::params, %NS::cookies); . . $NS::IP_address = $r->connection()->remote_ip(); . . }
i.e. it localizes some variables in a namespace and then assigns to them, making them globally available throughout the handler.

At the end of the handler, my reasoning was that the dynamic scoping of those variables would ensure that their contents are no longer available to any later request. However, given that those some of those variables contain sensitive data (usernames and password (hashes)), I'd like to be sure that I'm not missing some obvious reason why this could fail in a mod_perl environment.

Any mod_perl gurus out there who can give a definitive yay-or-nay to my approach above ?

Steve Collyer


In reply to mod_perl: globals and security question by scollyer

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.