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?

GETrequests performing file deletion by a querystring param? – Michael Berkowski Jun 28 '11 at 1:57unlink('/some/path/to/a/file')is insecure, then so isunlink(md5('/some/path/to/a/file')). Explain your security concern in more detail. – Marc B Jun 28 '11 at 2:11