Security issue?

2019-07-06 12:27发布

问题:

I am writing a small PHP application and I am not sure whether I have a security issue. So this is what the application does:

  • the user can upload either image files (png, gif, jpg, jpeg, tiff and a few others) or zip files

I check for mime-type and extension and if it's not an allowed I don't allow the upload (this is not the part I am worried about).

Now once uploaded I rename the file to a unique hash and store in a folder outside root access.

The user can now access the file through a short URL. I make the file accessible by setting the right mime-type for the header and then I just use readfile().

My question is whether the exploit where a jar file is included inside the image file works here? I am serving the image as a pure image.

If it does what are ways to prevent this?

Thanks.

回答1:

MIME type checks will not solve the GIFAR issue. 2009's JREs are already patched, but if you want to solve the issue you can either

  • Serve your images from a different domain
  • Run a server side code to check if an image contains a valid JAR, like mentioned here

Anything else (short of denying the file to any Java enabled browser with an old enough JRE) may fail on specific cases.

Also remember that to perform a good attack with this technique your server infrastructure would have to be somewhat open (the fact that a request comes from the same domain doesn't mean that you should give any information it asks for.)



回答2:

Checking the mime-type is not sufficient because that (or any other) HTTP header field can be forged. The best way to confirm that a file is a valid image is to attempt to read it as an image programatically. If it can be parsed as an image, you can be reasonably confident that it's not malicious code.



回答3:

Related: ensuring uploaded files are safe

Any kind of hidden exploit like you describe should not affect the server because of the way you handle it. You're simply storing binary information, and retrieving binary information, without processing it in anyway. Browsers attempting to display exploited content might be at risk, but standard image types are fairly safe.

If you'd like to be safer, you could run an anti-virus on each uploaded file. If you're on a *nix platform, you can use the industry-standard ClamAV.

I'd be more worried of someone trying to upload a very large image file.



回答4:

You can do 2 things. Serve your images from images.domain.com. this would have to be on another physical/virtual server, or firewall'd such that no open ports on the server can be accessed from that domain.

Or you can run the image file thru a java script (not javascript) like the one here. This will tell you if there is a jar file embedded in the image.

More info on this issue here:

http://www.gnucitizen.org/blog/java-jar-attacks-and-features/



回答5:

I didn't actually even hear about this attack before your question, so first off, thanks for enlightening me! Googling around, it seems that there are basically two different attack vectors here. Both include the attacker luring "regular" users to a malicious site pointing to the masqueraded JAR file, and both have to do with the fact that the JAR will be executing in the "context" of your site (i.e. the origin will be your site).

First attack has to do with the applet being able to read user cookies, which basically means it'll be able to steal the user's login information for your domain.

The second one has to do with the fact that the applet is now allowed to open connections to other sockets within your domain, which is pretty bad if one of the users behind your server's firewall visits the malicious page (enabling the attacker to effectively bypass your firewall).

So this attack does not necessarily harm your server directly, but it does harm your users - and hopefully you care about your users. The two things you can do ensure their safety have already been mentioned in most of the other answers and are summarized on this page.



标签: php security