Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
J RJ RPriority
BlockerFix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneAffects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
J R
J RPriority
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Affects versions
Created 13 October 2017 at 19:58
Updated 8 May 2020 at 19:18
Resolved 19 February 2018 at 08:12
Behaviour of <cffile action="upload" ...> appears to have changed in 5.2.2.71 which result in the contentsubtype getting reported incorrectly for all MS Office documents and potentially others.
Following are the results of some test done with two MS Word 2016 docx files, one with content and the other without. A simple reproduction test is attached.
On 5.2.1.9
Uploading a Word 2016 file with content:
contentsubtype = vnd.openxmlformats-officedocument.wordprocessingml.document
Uploading a Word 2016 file without content
contentsubtype = vnd.openxmlformats-officedocument.wordprocessingml.document
On 5.2.2.71 and up
Uploading a Word 2016 file with content
contentsubtype = x-tika-ooxml
Uploading a Word 2016 file without content
contentsubtype = octet-stream
Replication:
Isolated the issue to a simple form post with a cfml page to handle the form submit.
<!-- index.html --> <form id="frm-upload" name="frm-upload" enctype="multipart/form-data" action="index.cfm" method="post"> <input type="file" name="myfile" id="myfile"><br> <input type="submit" id="submit"> </form>
//index.cfm <cffile action="upload" filefield="form.myfile" result="fileResult" destination="#GetTempDirectory()#" nameconflict="makeunique"> <cfdump var="#fileResult#">
Test files (can't attach an empty docx):