Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

DevShed:
Sanitizing Input with PHP
Dec 13, 2011 @ 17:49:31

DevShed.com has a new tutorial posted today looking at how to sanitize data in your application, specifically data coming from the user, when calling shell commands.

Neglecting to sanitize user input that may subsequently be passed to system-level functions could allow attackers to do massive internal damage to your information store and operating system, deface or delete Web files, and otherwise gain unrestricted access to your server. And that's only the beginning.

He starts with a "real world" example of non-filtered data that could pass through a "rm" command and erase your entire drive. He offers two solutions for preventing this sort of hack using the escapeshellcmd and escapeshellarg functions.

tagged: sanitize input shell command tutorial escapeshellcmd escapeshellarg

Link:


Trending Topics: