Giter Club home page Giter Club logo

rootless-ssh's Introduction

Rootless SSH

A npm package taking advantage of the exec() of child_process to workaround SSH.

Specially made for replit users who can't pay for ssh access. Works on any device as long as it runs windows, linux or mac.

Prerequisites

  1. Installation of NodeJS (>=16)

Limitations

  1. Any command that reads line from terminal or asks for input doesn't work.
  2. You can only send a command when the previous one had responded.
  3. Any command that crashes node on your server will disconnect the websocket.

Server Side

This code would start a websocket on your port 3000 which can be connected to like this wss://<hostname>:3000

const { Server } = require('rootless-ssh');

const server = new Server({
    // these are default values
    welcomemsg: '',
    port: 3000,
    path: '/ssh',
    auth: 'changeme' // unique token that needs to be in the `authorization` header when connecting to websocket as `Bearer <password>`
});

server.start();

Note: Make sure to change the auth property as this can give an attacker access to your terminal. Even without root access, an attacker can do much damage to your system.

Client Side

This code would connect to the websocket and you would be able to enter commands on your console.

const { Client } = require('rootless-ssh');

const client = new Client(url /* wss://<hostname>:<port> */,auth /* auth password */);

client.connect();

Custom Commands

Due to the technical limitations, we had to introduce some custom cli commands for certain works.

dirchange: Works as a cd or chdir command. Same syntax.

More commands will be introduced as we recieve requests.

Bugs

While this package is being actively tested, please know that bugs may appear. If you come across a bug, report in the issues tab on our github.

rootless-ssh's People

Contributors

serverdeveloper9447 avatar raydanomgr 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.