Hi.
SimpleSSHServer demo is the problem.
What is the problem?
Environment:
- Windows 7 64bit Ultimate
- Delphi xe2 update4 hotfix 1
- SecureBridge 5.5(04-Feb-13)
Reproduction:
1. Run SimpleSSHServer.exe as administrator.
2. "test" user password = 1.
3. log in to it with PuTTY.
4. PuTTY is disconnected immediately.
SimpleSSHServer demo is the problem.
Re: SimpleSSHServer demo is the problem.
It is possible that your SSH server application doesn't have privileges to create a new process using the CreateProcess function of WinAPI.
To solve the problem, you can set the TScUser.Authentications property for SSH user to the [uaOSAuthentication] value. In this case, SSH server will use the CreateProcessWithLogonW function of WinAPI, and this can solve the problem.
To solve the problem, you can set the TScUser.Authentications property for SSH user to the [uaOSAuthentication] value. In this case, SSH server will use the CreateProcessWithLogonW function of WinAPI, and this can solve the problem.
Re: SimpleSSHServer demo is the problem.
Thank you for your help. It works.