Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

tattdogg

Will it work with a PrivateKeyPassphrase?
sessionOptions.PrivateKeyPassphrase = "abc";
tattdogg

thank you
tattdogg

Re: password in log

This is what I do right now. I just wondering if I could use some property to exclude the password from your output stream.
The password can be stolen from the memory stream that way... Is it possible to add this functionality in next versions of package?
martin

Re: password in log

So, it's your log file. Filter the password before writing the entry to the log.
tattdogg

Re: password in log

session.OutputDataReceived += SessionOnOutputDataReceived;
...
private void SessionOnOutputDataReceived(object sender, OutputDataReceivedEventArgs args)
{
     Logger.Trace(args.Data);
}
martin

Re: password in log

What log is that?
tattdogg

Password in log

Is there any way not to show password in logs?
winscp> open "sftp://logn:password@127.0.0.1:22" -hostkey="ssh-rsa 2048 ..." -timeout=15