Ok, I am allowing (within a script) for certain types of files to be uploaded via an Forum Admin Defined approach! How can I tell if these files are of the type that the Admin has set to be sure they are not fake files. I currently am using a mime-types approach, but different browsers can set different mime-types, so this doesn't really help much. Checking the file extension doesn't help either, since people can get around this by giving it an extension that is allowed, but would be of a different file type.
Perhaps there is a reference somewhere of a way to check the bytes within many different types of files to be sure that it is of the correct type? Perhaps this can be faked also, but atleast it would be a bit more accurate when using a form to upload files into and submitting them.
Can someone please help me with ideas on this?
Thanks :)
explode(',', $extensions)on it and make sure that the file type is correct for all extensions within that array that gets returned. Is there a way to do this? What files can you read the header on?? And what files can you not read the header on?? Do you have an idea on a better way to implement this that would be better for security and/or code-wise? – SoLoGHoST Jun 23 '11 at 23:29mime_content_type(). – alex Jun 23 '11 at 23:32