Search code examples
flashactionscript-3sshtelnet

SSH Through Telnet Connection


Is it possible to connect to an SSH server through a Telnet connection?

I am trying to connect to an SSH server from Flash, but there is no OpenSSH implementation available in ActionScript. I can successfully connect to a Telnet server and execute commands.

I am not able to make any changes on the machine with the SSH server. The machine I am connecting with is running Windows XP SP3. I am willing to get whatever software for the Windows machine that is necessary.


Solution

  • I suppose there is http server on machine with ssh server. You can use php script to execute commands (use ssl to secure connection)

    if you have control over client machine you can write (for example in C) ssh proxy to telnet proxy. I think that will be much easier then writing ssh client in actionscript