I run an asp.net 2 application and am looking for a way to have users upload files from my web app. The main issue here is that I want this to be secure. What is the best way to accomplish this?
Asked
Active
Viewed 235 times
2 Answers
0
What do you mean by secure? Secure can mean anything from HTTP Authentication to TLS/SSL data encryption.
If you want the connection to the server to be "secure", using SSL will encrypt the data transmitted between the client and the server.
Using e.g. HTTP Authentication, only the people who has the correct credentials will be able to access your pages, but people sniffing the network packets will not have a hard time viewing the data transmitted unless the connection is encrypted.
What I suspect you would want, if this should be an application with an above average security level, is to use ASP.NET Forms Authentication along with SSL using https.

sshow
- 8,820
- 4
- 51
- 82
-
By security, I am concerned more with people uploading malicious files – Davis Dimitriov Mar 09 '12 at 17:03
0
There is a similar solution. But it is for php. You may rewrite the code for checking file type.

Community
- 1
- 1