Is it possible to write a javascript SSH client that uses web sockets for transport?
Asked Answered
A

2

7

Would it be possible to write a basic SSH client in pure javascript using something like orbited web sockets as the transport layer? I don't see any examples of this, but it seems like it would be a nice thing to have.

Actinon answered 20/4, 2010 at 18:8 Comment(0)
S
3

You can check out Ajaxterm and rTerm, which uses it.
I really like Orbited and used it on one of my company's internal systems (with RabbitMQ). It should be possible to take the concepts from those applications and use Orbited as the transport layer, though I don't think this is the best use case for it (as the task being single-user and not channel-based etc.).

Semitic answered 20/4, 2010 at 18:52 Comment(1)
Hey, thanks. I think I'm going to use anyterm. Appreciate the help. anyterm.org/1.1/install.htmlActinon
H
2

With a proxy on the server to convert the unpack the WebSocket protocol and tunnel it into SSH, sure, it could be done.

It hasn't been done yet because WebSocket isn't really finished yet and most browsers don't have implementations. You have to fall back to Flash sockets to emulate it.

Hesterhesther answered 20/4, 2010 at 18:34 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.