🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

ssh2-executor

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssh2-executor

Execute one or more commands on the target machine by ssh2 and reduce results.

0.1.1
latest
Source
npm
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

ssh2-executor

Execute one or more commands on the target machine by ssh2 and reduce results.

Installation

Install ssh2-executor using npm:

$ npm install ssh2-executor --save-dev

Usage

const Executor = require('ssh2-executor');
Executor.run({object} argv, {Array} commands, {function} reduce);
  • argv {object} SSH2 connection options:
    • host {string} Default: localhost
    • port {number} Default: 22
    • username {string} Default: administrator
    • password {string} Default: null
  • commands {Array} Commands to execute
  • reduce {function} Reduce function takes next parameters:
    • resutls {Array} Result outputs according to commands
    • timing {object} total beg, end ms

Example

Execute whoami and hostname commands on the target machine, compare with the expected values and out boolean answer:

'use strict';
const argv = require('optimist').argv;
const Executor = require('ssh2-executor');

Executor.run(argv, [
    'whoami',
    'hostname'

], (results, t) => {
    console.log(/^administrator\s?/.test(results[0]) && /^SuperMachine\s?/.test(results[1]));
    console.log(`Execution Time ${t.end - t.beg} ms`);
});

Output:

true
Execution Time 923 ms

Keywords

ssh2

FAQs

Package last updated on 26 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts