Quantcast
Channel: Rebex Q&A Forum - Recent questions and answers
Browsing all 3860 articles
Browse latest View live

Answered: Sftp login fail

Hello,Are you able to connect using SftpWinFormClient sample?This looks like the SFTP/SSH server is trying to ask the user for some additional information, or it's trying to ask for the password using...

View Article


Answered: Create a simple API for local and remote portforwarding

A simple API for local and remote SSH port forwarding (tunneling) has been added in Rebex Terminal Emulation 2016 R1. Check out some sample code, and sorry for the long wait!

View Article


Answered: Read telnet output in while

Hello,I suppose you would like to write a script that behaves like you described. It can be done like this:Telnet telnet = new Telnet(serverName); // get the scripting object Scripting scripting =...

View Article

Answered: Decrypting a file that has been encrypted twice

Hi, with Rebex Security this is possible. Just apply the Encrypt method once again to the output of the previously encrypted file. This is a code sample that encrypts the file with TwoFish and then...

View Article

Is there a ssh scripting ReadUntilPrompt async method?

I'm trying to use your ssh component in WPF to run remote changes into a unix box.I can achieve what I want but not without locking up the user interface.I see there is a runcommandasync. But I can't...

View Article


Can commands be directly executed from the ssh-server?

Hello, i try to implement an ssh server with rebex. I added to the example the ShellCommand EventHandler so i could react on commands like:if (e.Command == "hello") { .... But can i execute all...

View Article

Answered: Is there a ssh scripting ReadUntilPrompt async method?

Hi,unfortunately, there are no async method on Scripting class for sending commands and receiving theirs output. You have to write a workaround for it. Here is a sample code:Using ssh As Rebex.Net.Ssh...

View Article

Answered: Regarding UI for terminal emulation in android

Please note, that data are not processed automatically. You have to instruct the terminal what to do.In your case, you want to process received data continuously, so add this line at the end:while...

View Article


Using Rebex.Mail in a Windows Service : Rebex.Mail assembly not found

I am having trouble getting a Windows Service which uses Rebex Mail to install properly. The installation stops with the error that the assembly Rebex.Mail, Version=2.0.5715.0..." cannot be found.This...

View Article


Answered: Using Rebex.Mail in a Windows Service : Rebex.Mail assembly not found

.NET doesn't search Rebex Components install folders when loading referenced DLL, which means that in order to deploy your application, you should either deploy the referenced DLLs such as...

View Article

Do you use MD5 hashing in establishing your TLS connections?

We are using your SFTP library and we were wondering if your library is affected by the SLOTH vulnerability (CVE-2015-0777).In more technical terms, does your library use the MD5 hashing algorithm when...

View Article

Check the connection/tunnel with SSH Client

Hi,I have been using the SSH forwarding tunnel API from the SSH total pack beta build for a few days now and have a question. Is there a way to check wether you are still connected (sudden internet...

View Article

Answered: Do you use MD5 hashing in establishing your TLS connections?

Rebex SFTP library runs over SSH, not TLS/SSL, and thus remains unaffected until practical collision attacks on SHA-1 appear. The SLOTH paper recommends disabling SHA-1 signatures "as soon as...

View Article


best practices when sending small batches of emails

We want to send out reminder emails via autheticated SMTP in small batches, fewer than one hundred (100) per batch. The content of each email is different, and each has only one recipient.The process...

View Article

New mail received event

Are there any events the client can subscribe to, like:Session expiredNew mail receivedThe aim is to know when a new mail is received. So that there is not need to put our own logic to check for new...

View Article


FTP UWP Support

Will the FTP component support Universal Windows Platform in the near future?

View Article

Getting Certificate Error

It appears that in your older version, people were able to pass in TlsParameters to overcome Server certificate was rejected by the verifier because of an unknown certificate authority errors while...

View Article


Answered: Decrypting a file that has been encrypted twice

Can you see why the following code is not working? Encrypting: var file = "test.txt.plain";            var password = "123";            var cryptor = new FileEncryption { EncryptionAlgorithm =...

View Article

Answered: best practices when sending small batches of emails

Actually the SMTP client is not capable of sending multiple messages at the same time, so I would recommend to connect and login to the SMTP server once and then send the messages one by one as in this...

View Article

Answered: New mail received event

For a new mail received event, please use the Imap.Notification event in combination with Imap.CheckForUpdates method.The IMAP protocol features the IDLE command that lets you instruct the server to...

View Article
Browsing all 3860 articles
Browse latest View live