On Fri, 29 Aug 2003, Tahir Hashmi wrote:
There might be some PHP frameworks for access control and authorization. Afterall, almost all decent web-apps require this. I guess frameworks like PHPNuke would have it though I never looked at
That isn't what I'm talking about. I'm talking about the -T switch in perl that turns on taint checking. Basically, perl will not execute your program if it appears that the programmer doesn't know what he's doing.
It checks all data for trustworthiness, and will not allow the use of untrusted data in certain situations (opening files, exec, etc.)
perl forces you to preprocess data that you've received from an untrustworthy source.
Philip