php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #79681 mime_content_type/finfo returning incorrect mimetype
Submitted: 2020-06-08 11:19 UTC Modified: 2021-01-05 15:50 UTC
Votes:5
Avg. Score:3.6 ± 1.0
Reproduced:4 of 4 (100.0%)
Same Version:4 (100.0%)
Same OS:0 (0.0%)
From: xandros92 at gmail dot com Assigned: cmb (profile)
Status: Closed Package: *Directory/Filesystem functions
PHP Version: 7.4.6 OS: Windows 10 1909
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: xandros92 at gmail dot com
New email:
PHP Version: OS:

 

 [2020-06-08 11:19 UTC] xandros92 at gmail dot com
Description:
------------
After change php version from 7.3 and 7.2 to 7.4, some applications failed validation uploaded files on mimetype. The problem exist with some audio/mpeg and application/x-gzip.

Test script:
---------------
echo finfo_file(finfo_open(), __DIR__ . '/sample.xml.gz', FILEINFO_MIME);
echo finfo_file(finfo_open(), __DIR__ . '/sample.mp3, FILEINFO_MIME);

Expected result:
----------------
application/x-gzip; charset=binary
audio/mpeg; charset=binary


Actual result:
--------------
application/gzip; charset=binary
application/x-font-gdos; charset=binary


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-06-08 12:33 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2020-06-08 12:33 UTC] cmb@php.net
Can you please make sample.xml.gz and sample.mp3 available for download?
 [2020-06-09 13:49 UTC] cmb@php.net
-Status: Feedback +Status: Analyzed
 [2020-06-09 13:49 UTC] cmb@php.net
Thanks for the samples!

I can confirm the behavior.  Reporting the .xml.gz as
application/gzip is actually an improvement, since this mime type
is registered[1]. Reporting the .mp3 as application/x-font-gdos is
obviously wrong, and has been fixed[2] for file 5.38.

[1] <https://www.iana.org/assignments/media-types/media-types.xhtml>
[2] <https://github.com/file/file/commit/5a55569a35eff686d4b7400b219d380f7c622890>
 [2020-06-10 14:41 UTC] cmb@php.net
Automatic comment on behalf of cmbecker69@gmx.de
Revision: http://git.php.net/?p=php-src.git;a=commit;h=6747068ce716ca9e458b245489086d7ff13109b9
Log: Fix #79681: mime_content_type/finfo returning incorrect mimetype
 [2020-06-10 14:41 UTC] cmb@php.net
-Status: Analyzed +Status: Closed
 [2020-11-19 17:32 UTC] jamier105+php at gmail dot com
Please can this bug be reopened and checked again as I can recreate it using PHP 7.4.12:

$ php7.3 -v
PHP 7.3.24-3+ubuntu18.04.1+deb.sury.org+1 (cli) (built: Oct 31 2020 16:59:59) ( NTS )
Copyright (c) 1997-2018 The PHP Group
$ php7.3 -r 'echo finfo_file(finfo_open(), __DIR__ . "/my_file.mp3", FILEINFO_MIME). "\n";'
audio/mpeg; charset=binary

$ php7.4 -v
PHP 7.4.12 (cli) (built: Oct 31 2020 17:04:09) ( NTS )
Copyright (c) The PHP Group
$ php7.4 -r 'echo finfo_file(finfo_open(), __DIR__ . "/my_file.mp3", FILEINFO_MIME). "\n";'
application/x-font-gdos; charset=binary

An example file can be provided if needed.

Thanks.
 [2020-11-19 17:42 UTC] cmb@php.net
Please provide the example file! :)
 [2020-11-25 13:50 UTC] cmb@php.net
-Status: Closed +Status: Re-Opened
 [2020-11-25 13:50 UTC] cmb@php.net
Thanks for the sample file!  I can confirm the reported behavior,
although the sample provided by xandros92 yields the desired
results for PHP 7.3 and 7.4.  This might be a different issue.
Re-opening for now, to keep track of the issue.
 [2021-01-05 15:50 UTC] cmb@php.net
-Status: Re-Opened +Status: Closed
 [2021-01-05 15:50 UTC] cmb@php.net
It makes no sense to keep this ticket open, since the changelog
already has entries that this issue has been fixed, and quite
obviously, this is yet a different issue.  Therefore I have
reported this as bug #80594.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 16:01:28 2024 UTC