60Mb private file transfer

  • Thread starter Thread starter Mark Carter
  • Start date Start date
M

Mark Carter

I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.

What's the best way to do it?

FTP seems an obvious choice, but then I've got the hassle of setting up
a user account on our server, plus many people seem to warn me off FTP
owing to its security issues.
 
Mark Carter said:
I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.

What's the best way to do it?

FTP seems an obvious choice, but then I've got the hassle of setting up
a user account on our server, plus many people seem to warn me off FTP
owing to its security issues.
Send it to them rather than have them get it off you?
 
Mark Carter said:
I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.

What's the best way to do it?

FTP seems an obvious choice, but then I've got the hassle of setting up a
user account on our server, plus many people seem to warn me off FTP owing
to its security issues.

May not be secure enough to satisfy your need but there is,
http://www.yousendit.com/
 
Mark said:
I have a 60Mb file which I want a client (as in customer) to be able
to download. The data contains sensitive material, so I don't want
just anybody to be able to access it.

What's the best way to do it?

FTP seems an obvious choice, but then I've got the hassle of setting
up a user account on our server, plus many people seem to warn me off
FTP owing to its security issues.

Burn to a CD and and overnight it? If it's that sensitive you want to
be able to track its movement.
 
I have a 60Mb file which I want a client (as in customer) to be able
to download. The data contains sensitive material, so I don't want
just anybody to be able to access it.

What's the best way to do it?

FTP seems an obvious choice, but then I've got the hassle of setting
up a user account on our server, plus many people seem to warn me off
FTP owing to its security issues.

There is not real secure way outside of encrypting it and then ftping
it. It will take time. That still is not great, but better than
nothing.

--
++++++++++++++++++++++++++++++++++++++++++++++
El Gee // www.mistergeek.com <><
Know Christ, Know Peace - No Christ, No Peace
Remove .yourhat to reply
++++++++++++++++++++++++++++++++++++++++++++++
 
I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.

What's the best way to do it?

If it's that sensitive, then the *only* way to transfer it is by hand,
on a CD. You'll also have the peace of mind of knowing that they
actually received the file.

FTP seems an obvious choice, but then I've got the hassle of setting up
a user account on our server, plus many people seem to warn me off FTP
owing to its security issues.

While this is true no matter how it's set up, FTP can be configured to
be more secure than the World-Wide Web.
 
Mark Carter scribebat:
I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.

Encrypt it with something like GnuPG. Use his public key, then nobody will
be able to read the data. That will also assure that it won't be altered.

bye,

Onno
 
Mark said:
I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.

What's the best way to do it?

FTP seems an obvious choice, but then I've got the hassle of setting up
a user account on our server, plus many people seem to warn me off FTP
owing to its security issues.

UPS a CD. That's how my company does it.
 
I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.

What's the best way to do it?

FTP seems an obvious choice, but then I've got the hassle of setting up
a user account on our server, plus many people seem to warn me off FTP
owing to its security issues.

what about http://www.yousendit.com ? delete the link as soon as they
download it ?
 
qwerty said:
No catch. As for security, just encrypt it first and you're safe.

they also allo sending it through https i do believe (gotta follow the
proper links tho)
 
I have a 60Mb file which I want a client (as in customer) to be able to
download. The data contains sensitive material, so I don't want just
anybody to be able to access it.
What's the best way to do it?

< snip >

Apart from the options already provided you could encrypt the file,
split it into parts, then email the parts to him.

That has worked for me with big files. The two main things to watch
out for are ;

(1) That no individual part will be too big for him/her to receive
<5MB (total) should probably be okay and

(2) That they remove each part from the server as soon as each is
received. Otherwise multiple emails will overflow their mailbox !

Regards, John.
--
****************************************************
,-._|\ (A.C.F FAQ) http://clients.net2000.com.au/~johnf/faq.html
/ Oz \ John Fitzsimons - Melbourne, Australia.
\_,--.x/ http://www.vicnet.net.au/~johnf/welcome.htm
v http://clients.net2000.com.au/~johnf/
 
Mark Carter said:
I have a 60Mb file which I want a client (as in customer) to be
able to download. The data contains sensitive material, so I don't
want just anybody to be able to access it.

What's the best way to do it?

If you have some http webspace, possibly on apache, you may :

1/ secure the access to the directory containing this file (htaccess)

2/ put the file simply online, even in an uncrypted stated
 
Antoine said:
If you have some http webspace, possibly on apache, you may :

1/ secure the access to the directory containing this file (htaccess)

2/ put the file simply online, even in an uncrypted stated

I actually tried that. Didn't seem to like the password, though. I just
kept getting asked for the username and password. AFAIK I set up the
accounts with htpasswd correctly.
 
Back
Top