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.
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.
Share Improve this question asked Apr 20, 2010 at 18:08 BHPBHP 9962 gold badges14 silver badges18 bronze badges2 Answers
Reset to default 3You can check out Ajaxterm and rTerm, which uses it.
I really like Orbited and used it on one of my pany'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.).
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.