-1
votes
0answers
58 views

File uploader: Does renaming protect from exploitation [closed]

Is there any way to execute a script uploaded on a server but with a name modified as: USERID.jpg? USERID being a number
6
votes
2answers
1k views

C# Image.FromStream is that secure?

after reading the data from the request as Stream i needed to convert it to Image so i used this Method: Stream inputStream = HttpContext.Current.Request.InputStream; Image img = ...