Answered: Removing/Replacing Line feed from a text file in SFTP memory stream
This question is somewhat beyond the scope of Rebex support because it deals with .NET's MemoryStream class rather than Rebex SFTP.Please use general-purpose software development forums such as Stack...
View ArticleAnswered: SFTP Server Application
Hi,1) Yes we have, although it's currenty in beta version - see https://buruserver.com2) Yes -- https://buruserver.com/Docs/buru_pathKind Regards Lukas Paluzga
View ArticleAnswered: Detailed message for SFTP custom authentication provider
The SFTP protocol doesn't define message for SSH_MSG_USERAUTH_FAILURE packet. It is on purpose. Any information in this step gives the attacker knowledge about the process of guessing username and...
View ArticleSupport SFTP server function GetChecksum
Has SFTP server support for client function GetChecksum?Thanks, Marcelo.
View ArticleHow to get microsoft exchange server hostname, when I have only username
Use of 'ExchangeService' object from Microsoft.Exchange.WebServices is quiet comfortable to connect to exchange mailbox , where settings of the mail server are exposed using AutoDiscover Server. In...
View ArticleAnswered: Support SFTP server function GetChecksum
Not yet, but this is one of the features planned for upcoming releases. If you would like us to inform you when a beta is available, please let me know.
View ArticleSFTP password and key authentication
Hi,Is there a way to get on server side, password and key when client sends sftp.Login("user", "password", privateKey)On server event Authentication only arrives the key.Thanks, Marcelo.
View ArticleTlsSocket.EndSend() throws System.InvalidCastException
Hello,I've run into the following issue: whenever I try to finalize an asynchronous send operation with TlsSocket.EndSend(), I get the following exception: System.InvalidCastException:...
View ArticleAnswered: Hide server banner
Hi,This string is not the banner. It's SSH software version string. Those strings are supposed to be used by SSH implementations to decide whether to apply various workarounds - see RFC 4253:The...
View ArticleAnswered: SFTP password and key authentication
Hi,Unfortunately, this is not yet supported at the server-side. It's one of the features we would definitely like to add, but it most likely won't appear in one of the next releases because we are...
View ArticleAfter the uploading file to FTP, the construction client.GetInfo(path, false)...
Hi.We use rebex .net component for the correct work with FTP Server.After the uploading file to FTP, the construction client.GetInfo(path, false) returns null. But the file is uploaded on FTP...
View ArticleRebex SFTP - Target Server Change
Hi,We are currently using Rebex in our .NET Web server to sFTP a daily file to a Unix server.The target server is being upgraded to a new server. There is no change in the DNS name of the server and...
View ArticleAnswered: After the uploading file to FTP, the construction...
Hi, this is apparently caused by a bug in the FTP server. GetInfo method uses MLST FTP command when available, and although your FTP server claims to support it, the response it provided violates the...
View ArticleRebex.Mail.MailMessage - Save as Outlook message to be sent - From address issue
I have asked this question before for an older version of Rebex.Mail. Back then the provided answer worked, but as of a while ago (unfortunately I don't know since when) it does not seem to work...
View ArticleUsing SSH as data transport layer only
How do I do if all I need is raw data send and receive over SSH?Following is one way to use SSH as a pure data transport layer. public Test() { var ssh = new Rebex.Net.Ssh(); ssh.Connect(sHost, nPort);...
View ArticleWhy I got System.Net.WebException : More compressed data expected.
(Note: this was originally asked at comment)Hi Lukas,below is the response am getting from server - seems the Request XML size is big? 2018-04-11 12:28:33 VERBOSE HttpRequest(1)[105316382] HTTP:...
View ArticleStoring authentication keys in windows key container
I would like to generate and store the private authentication key for an SFTP connection securely. I would then like to display the public key for copying and pasting into the sftp server. I am unclear...
View ArticleAnswered: Using SSH as data transport layer only
If you want to access raw SSH channel using low-level API, you can use IShellChannelFactory.CreateShellChannel() method.It can be used like this:var ssh = new Ssh(); ssh.Connect(...); ssh.Login(...);...
View ArticleAnswered: Rebex.Mail.MailMessage - Save as Outlook message to be sent - From...
Can you please verify that you are still able to send the mail 'manually' as before:When I remove the pre-filled email address and manually type in the exact same address, I am able to send the...
View ArticleDoes the file server disconnect or force authentication of users after a...
Is there a setting in SFTP server which defines the max inactivity time for sessions? I'm looking at ServerSettings.MaxSessionDuration, but it's not clear whether it refers to the whole session...
View Article