Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've read alot on here about the security flaws with unlink with php. I was more curious as to whether there is a way round that by possibly md5 hashing the image when it comes to deleting it.

Having the name and the hash stored in the database when uploading a pic, though the hash would only be called upon when trying to delete a picture.

Would that limit the security flaws if possible, and or at least stop people just typing in whatever in the top to delete an image?

share|improve this question
You need to provide more context about what you're deleting and how. Sounds like maybe you have GET requests performing file deletion by a querystring param? – Michael Berkowski Jun 28 '11 at 1:57
If doing unlink('/some/path/to/a/file') is insecure, then so is unlink(md5('/some/path/to/a/file')). Explain your security concern in more detail. – Marc B Jun 28 '11 at 2:11

closed as not a real question by tc., cwallenpoole, C. A. McCann, ircmaxell, Andrew Medico Jun 28 '11 at 2:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.