Ticket #11122 (closed defect (bug): fixed)

Opened 2 years ago

Last modified 2 years ago

Sanitize filenames with multiple extensions

Reported by: ryan Owned by: ryan
Priority: normal Milestone: 2.8.6
Component: Security Version: 2.8.5
Severity: normal Keywords: health-check
Cc:

Description

Some apache setups will serve foo.php.jpg as a php file. Thwart this by munging intermediate extensions.

Attachments

11122.diff Download (3.3 KB) - added by ryan 2 years ago.

Change History

ryan2 years ago

  • Keywords health-check added

Intriguing behaviour as really only the last part after the last dot is the extension IMHO

should we not just replace all dots bar the last one in the filename?

comment:2   ryan2 years ago

I'd rather not munge .tar.gz, for example.

comment:3   ryan2 years ago

The patch turns .php.jpg into .php_.jpg. .php.jpg.jpg into .php_.jpg.jpg. Anything that looks like an extension (a dot followed by [a-zA-Z]{2,5}\d?) that is not in the whitelist is munged by appending an underscore.

comment:4   ryan2 years ago

(In [12165]) Sanitize filenames with multiple extensions. see #11122

comment:5   ryan2 years ago

(In [12166]) Sanitize filenames with multiple extensions. see #11122

comment:6   ryan2 years ago

  • Milestone changed from 2.9 to 2.8.6

comment:7   ryan2 years ago

  • Status changed from new to closed
  • Resolution set to fixed

Better fix for people with vulnerable hosts. Add this to the top of the root .htaccess file:

RemoveHandler application/x-httpd-php .php
<FilesMatch "\.php$|\.php5$|\.php4$|\.php3$|\.phtml$|\.phpt$">
  SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
 SetHandler application/x-httpd-php-source
</FilesMatch>

This will remove the problem. Verified on a vulnerable shared web host (which shall remain nameless for now).

Tip that we should tell all web hosts: Don't use AddHandler.

This (or similar) is the vulnerability:

AddHandler application/x-httpd-php .php

This is the correct way to do it:

<FilesMatch "\.php$|\.php5$|\.php4$|\.php3$|\.phtml$|\.phpt$">
  SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
 SetHandler application/x-httpd-php-source
</FilesMatch>

Reference step 15 of the install instructions here:  http://php.net/manual/en/install.unix.apache2.php

Note: See TracTickets for help on using tickets.