Password in log

Advertisement

tattdogg
Joined:
Posts:
19
Location:
Minsk, Belarus

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

Reply with quote

Advertisement

tattdogg

Re: password in log

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

Reply with quote

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?

Reply with quote

Advertisement

Advertisement

You can post new topics in this forum