I have a use case where we are allowing users to upload files. Now in the back end java(controller which extracts file from http request and checks), i want to detect if user uploads any executable file. If he uploads, i have to discard that file. I have googled it but couldn’t find a fine solution. Some people suggested verifying extension(.exe). But i am not sure how far it will filter exe files. I want to completely block executable files from uploading.
If any of you have come across this scenario or have solution about this, please let me know. I would be grateful to you.
I would be more happy if you can point me to any JAVA implementation or Java API or algorithm which cam do this job.
I suspect that, apart from the extension-checking method you have already mentioned, there will be no way to catch every possible case. Executable files are ultimately sequences of machine instructions which make them largely indistinguishable from any other data.
Despite this however, there are things you could look for in certain types of executable. For example:
4d5a(ASCII charactersMZ)7f454c46cafebabe(that’s hex, not ASCII!).feedface(hex again)I suggest you create a
FileInputStreamor similar and read the first few bytes of the file, checking for these magic numbers. It doesn’t detect any file which contains executable code, but it should stop files in these standard executable formats from being allowed, which I think is what you hoped for.So for example:
Also beware that it is possible to get a false positive, where you reject a file which was not executable. I don’t know what type of file you are intending to have uploaded so you should consider how likely it is for this to happen.