PHP

Wednesday, February 16, 2005

Chris Shiflett: More on Filtering Input and Escaping Output

Chris Shiflett: More on Filtering Input and Escaping Output

I found this post quite educational, especially about what items in the various superglobals ($_GET, $_POST, $_SERVER, $_COOKIE, $_SESSION) are tainted. Basically, the gist is that $_GET, $_POST, and $_COOKIE are always provided from the user, and therefore have to be considered tainted. $_SESSION is stored by the server, and shouldn’t be tainted if you did your job right (i.e., you didn’t store any tainted data in the session). $_SERVER, though, is more complex, because some of the values in that array come from the web browser, despite the name of the array. Check the comments for more detail.

Posted in InfoSec, PHP by funkatron on 02/16 at 08:41 AM
(0) Comments

Tuesday, July 27, 2004

OSCON

I’m at OSCON this week. If you are too, or are just in Portland and wanna hang, drop me a line.

Posted in General, InfoSec, The Web Problem, PHP by funkatron on 07/27 at 11:19 AM

Sunday, March 21, 2004

PHP5 up in yo shit

Simon Willison: Zend PHP 5 Goodies

Simon Willison drops some info on new PHP5 tutorials from Zend.com. I’m anxious to start testing these out on the brand spanking new PHP5 install I did at work on Friday.

Posted in PHP by funkatron on 03/21 at 08:41 PM

Thursday, March 18, 2004

PHP 5 Release Candidate 1 Released

Bitflux Blog :: PHP 5 Release Candidate 1 Released

Yay yay yay yay yay. I will be installing this soon on one of our project servers and trying to get coWiki up and running for our Secret Project.

Posted in The Web Problem, PHP by funkatron on 03/18 at 10:12 AM

Tuesday, March 16, 2004

What Felix said about assuming…

It always seemed like a bad idea to do some kind of server or client detection by checking for a short string anywhere in the fingerprint. This is a good example of why.

Posted in The Web Problem, OS X, PHP by funkatron on 03/16 at 07:46 PM
Page 16 of 18 pages « First  <  14 15 16 17 18 >