How to safely prevent uploaded file from being run via PHP on any server?

后端 未结 10 2100
独厮守ぢ
独厮守ぢ 2021-02-15 13:13

I noticed that it\'s possible to run a file via PHP even if its extension wasn\'t .php, for example file test.xyz.php.whatever.zyx can be still run wit

10条回答
  •  灰色年华
    2021-02-15 14:00

    To be completely secure, you'll need to do a couple of things:

    Set your upload directory above your "public" folder, making it inaccessible from a browser. This setting is in php.ini (php config file). You'll need to restart Apache for this to take effect. On most Redhat / Fedora / CentOS web servers, this can be:

    upload_tmp_dir = "/var/tmp/"
    

    OR, on my local Windows 7 WAMP install, it is set to:

    upload_tmp_dir = "c:/wamp/tmp"
    

    Disable scripts from running on that directory (c:/wamp/tmp), in .htaccess:

    RemoveHandler .php .phtml .php3
    RemoveType .php .phtml .php3
    php_flag engine off
    

    In your PHP script, get the uploaded file, filter it based on mimetype (not filetype extension), change the filename, and put it into a secured publicly accessible folder. In more detail:

    • create a whitelist of filetypes, ex: only images (jpeg, png, gif, bmp). This can be done using mime_content_type() http://php.net/manual/en/function.mime-content-type.php or the newer finfo_file() http://us3.php.net/manual/en/function.finfo-file.php
    • choose a new filename, often it's best to use a random MD5 hash based on the original filename + salt + timestamp.
    • move it to a public folder, ex: "c:/wamp/www/project_name/public/uploads"

    Preferably use an MVC framework, such as Zend Framework, which includes filetype filtering.

    If you do all of that, you should be secure. Obviously you'll never be 100% safe, since there are countless obscure exploits targeting PHP, MySQL, the command line, etc, particularly on older systems. On larger company webservers (what I work on), they disable everything, and selectively enable only what is required for the project. With a system such as WAMP, they enable everything, to ease local development.

    Good practice for working on a professional project is to get a cloud server account with Rackspace or Amazon, and learn how to configure php.ini, and httpd.conf settings, as well as PHP security best practices. In general, do not trust the users input, expect it to be corrupt / malicious / malformed, and in the end you'll be secure.

提交回复
热议问题