in reply to Re: Security with /ee modifier
in thread Security with /ee modifier

Interesting, I like that approach.

Although any time I put arbitary code in my example, it doesn't get run, even though I expected it to be. Whatever I put, other than variable names, just gets printed (other function calls, built-in function names, anything).

Replies are listed 'Best First'.
•Re^3: Security with /ee modifier
by merlyn (Sage) on Sep 26, 2004 at 15:48 UTC
Re^3: Security with /ee modifier
by PodMaster (Abbot) on Sep 26, 2004 at 15:55 UTC
    ...Whatever I put...
    it has to be perl code that compiles, like $with = q|}; warn "\n# Hi" while 1; q{|; or $with = q|${warn "\n# hi" while 1}|;

    MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
    I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
    ** The third rule of perl club is a statement of fact: pod is sexy.

      And now it all becomes clear.

      I'll go with your proposed solution that simply allows backreferences. Thanks.