a nice secure file uploader?

kermalou

Diamond Member
Jun 22, 2001
6,237
0
0
i want to let my clients upload some files to my server and want it to be more secure than email.

anything out there?

thanks
 

Nothinman

Elite Member
Sep 14, 2001
30,672
0
0
Depends on what you want to implement on the server, there are tons of ways to implement it: FTPS, SFTP, HTTPS POST, etc.
 

Cheetah8799

Diamond Member
Apr 12, 2001
4,508
0
76
SSH/SCP would be a good choice, or SFTP. If you have a web server you could setup a web page to accept file uploads via a secure connection and an authentication page (either built-into the web page or in Apache/IIS).

Where I work now, we have "two-factor authentication". In reality, we require users on the outside to have a signed certificate from us. They request it from our Microsoft Certificate Server. It gets approved from someone here, then the user is able to get through our proxy web server. That proxy server is setup to direct the user to specific sites on another internal server where we have some custom file upload pages. All built in PHP, they use Apache's basic authentication for the 2nd layer of protection. We also have SSL setup on both layers. It may not be the uber best solution, but it gets the job done.