New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ssh-tun

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssh-tun - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

4

index.js

@@ -173,3 +173,3 @@ 'use strict';

this._strictHostKeyChecking === false ? '-o StrictHostKeyChecking=no' : '',
this._enableDeprecatedSshRsa && '-o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa',
this._enableDeprecatedSshRsa && ['-o HostKeyAlgorithms=+ssh-rsa', '-o PubkeyAcceptedKeyTypes=+ssh-rsa'],
this._compression !== undefined ?

@@ -181,3 +181,3 @@ util.format('-o Compression=%s', this._compression ? 'yes' : 'no')

(this.user ? this.user + '@' : '') + this.host
].filter(Boolean);
].filter(Boolean).flat();
},

@@ -184,0 +184,0 @@

{
"name": "ssh-tun",
"version": "2.1.0",
"version": "2.1.1",
"description": "Module for establishing ssh tunnel",

@@ -5,0 +5,0 @@ "keywords": [

@@ -206,3 +206,4 @@ var Tunnel = require('../'),

expect(sshArgs).to.contain('-o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa');
expect(sshArgs).to.contain('-o HostKeyAlgorithms=+ssh-rsa');
expect(sshArgs).to.contain('-o PubkeyAcceptedKeyTypes=+ssh-rsa');
});

@@ -209,0 +210,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc