Giter Site home page Giter Site logo

sitepi / libssh2.js Goto Github PK

View Code? Open in Web Editor NEW
6.0 1.0 4.0 2.85 MB

a porting of libssh2 over STREAMs for browsers or nodejs

License: MIT License

CMake 1.73% C++ 39.96% JavaScript 58.31%
websocket webrtc webassembly ssh-client libssh2 wasm javascript x11 ssh2 ssh datachannel

libssh2.js's Introduction

libssh2.js

is a porting of libssh2 to webassembly for browsers or nodejs

it run on STREAMs. STREAMs is a WebSocket, WebRTC Datachannel, or nodejs net.Socket

a DEMO

tbd

BASIC USAGE

<script src="../dist/libssh2.js"></script>
<script>
	let libssh2, session, channel;
	const user = 'root', passwd='yourpass';
	ssh2Loader().then((wasm) => {
		libssh2 = wasm;
		libssh2.init(0);
		doconn();
	});

	function doconn() {
		const url = 'ws://websocket_to_ssh2/api_url';
		session = libssh2.createSESSION(new WebSocket(url), (rc, err)=> {
			if(rc === libssh2.ERROR.NONE) {
				session.login(user, passwd, (rc, msg) => {
					if(rc === libssh2.ERROR.NONE) {
						session.CHANNEL((rc, _ch) => {
							if(rc === libssh2.ERROR.NONE) {
								channel = _ch;
								doshell();
							}
						});
					}
				});
			}
		});
	}

	function doshell() {
		channel.onmessage((rc, msg) => {
			console.log('got message', msg);
		});
		channel.shell((rc, msg) => {
			console.log(rc, msg);
			if(rc === libssh2.ERROR.NONE) {
				console.log('got shell ok\r\n');
				// some COMMANDs
				channel.send('cat /proc/version\n');
		});
	}
</script>

EXAMPLES

A full shell example is examples/xterm.html

A direct tcpip example is examples/tcpip.html

A x11 forwarding example is examples/x11.html, it success but miss x11 handler

SETUP

you need a websocket service to forwarding SSH message

like

$ websockify 7681 127.0.0.1:22 & 

BUILD

you can build it yourself

SEE BUILD.md

libssh2.js's People

Contributors

sitepi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.