Demo : ssh [username]@ssh.kaki87.net -p 3100
Find a file
2020-08-22 11:45:47 +02:00
lib 💫 Display 'Connecting' event on press 2020-06-07 17:09:24 +02:00
test 🎉 Initial commit 2020-06-07 14:03:01 +02:00
.gitignore 🎉 Initial commit 2020-06-07 14:03:01 +02:00
config.example.json 🎉 Initial commit 2020-06-07 14:03:01 +02:00
index.js 🎉 Initial commit 2020-06-07 14:03:01 +02:00
LICENSE.md 🎉 Initial commit 2020-06-07 14:03:01 +02:00
package.json 🎉 Initial commit 2020-06-07 14:03:01 +02:00
README.md 📝 Use --prod flag instead of --production=true 2020-08-22 11:45:47 +02:00
yarn.lock 🎉 Initial commit 2020-06-07 14:03:01 +02:00

synced-over-ssh

This project is, at the same time, an SSH server, an SSH client, and a password manager.

Getting started

Installation

Requirements :

  • nodejs
  • npm
  • yarn
  • ssh-keygen

Start :

  • Run yarn keygen to generate an SSH key pair
  • Copy config.example.json as config.json and specify a custom port
  • Run yarn install --prod to install production dependencies
  • Run yarn start to start the SSH server

Stop : press Ctrl + C

Testing

Start :

  • Run yarn install for development dependencies
  • Run yarn test to run Mocha test suite

Usage

  • Connect using any SSH client
  • Follow the steps

FAQ

Why should I use synced-over-ssh ?

It is open source.

This project is released under the MIT license.

It is multiplatform.

Firstly, the server can run on any platform supporting NodeJS.

Secondly, the server can be accessed from any SSH client.

It respects your privacy.

Your data is encrypted using the AES-256 asymmetric encryption algorithm using your own as password.

The standard TOTP 2FA is supported.

Why shouldn't I use synced-over-ssh ?

No direct connection.

Since this project is a server-side service, the SSH connection to your target host is not initiated from your client itself but from the synced-over-ssh then streamed to you.

Therefore, your SSH client-side logs will always log your connections to the synced-over-ssh server and your SSH server-side logs will always log the connections from the synced-over-ssh server.