I'm doing a security assessment for any unintentional doorways that might allow PHP to upload files to a server. To search for a file upload function, would I only need to grep for "$_FILES" or are there other things I should search for as well?
The goal is to search for all PHP scripts that perform file upload operations. Once found, we'll manually review each one for security issues.
The goal is to search for all PHP scripts that perform file upload operations. Once found, we'll manually review each one for security issues.