|
Posted by on December 16, 2007, 10:49 pm
If you were Registered and logged in, you could reply and use other advanced thread options > ev...@silenceisdefeat.org wrote:
> >> ev...@silenceisdefeat.org wrote:
> >>> In Core FTP, is it better to use AUTH SSL or SSH/SFTP?
> >> SSL. SSH/SFTP only protects the data transfer channel, not the command
channel.
>
> > I don't know enough about it to understand how that addresses which is
> > better to use.
>
> SSL encrypts and authenticates both command and data channel, SSH/SFTP only
> the latter. The consequence is that authentication credentials on SFTP
> session are transfered in clear text and can be easily sniffed. And since no
> authentication takes places, and attacker can insert arbitrary commands or
> replys.
>
> >> Well, are you doing implicit or explitic SSL authentication?
>
> > Not being familiar with these terms, and failing to find definitions
> > that I could understand, I don't know.
>
> Well, it's trivial: Implicit means that you connect to port 990 and start an
> SSL/TSL session right away, assuming that the server understands it.
> Explitic SSL means that you first connect to port 21, send some clear text
> commands telling the server to start an SSL session, and then doing further
> communication on this new session.
>
> As you can see, in the first case any commands send to the server asking for
> SSL sessions are utterly useless, and since they would mean you're
> requesting for the explicit SSL mode, are typically rejected with the 500 -
> Not Implemented error (since the server only wants to support implicit SSL).
Ok, thanks. Now, just to make sure I understand this...
Core FTP has three options: AUTH TLS (which does not work in the
host's system), SSL Direct-FTPS (which also does not work) and AUTH
SSL, which does work in terms of allowing a connection, but with the
response to AUTH SSL:
500 This security scheme is not implemented. (Then it proceeds with my
login.)
But it IS implemented, at least in terms of encrypting my login and
any data I transfer?
Thanks.
|