in reply to Re: initialize ENV variables under strict
in thread initialize ENV variables under strict

There is no simple way to untaint variables. I can't give you an answer that would fit for every program you'll ever want to write under taint mode because I don't know the details of every program. You have to ask, "Exactly what kind of input do I expect here?" and then you can craft a regular expression to match only that type of input.

  • Comment on Re: Re: initialize ENV variables under strict