Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

push2cloud-cf-adapter

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

push2cloud-cf-adapter - npm Package Compare versions

Comparing version 1.6.2 to 1.6.3

3

CHANGELOG.md

@@ -0,1 +1,4 @@

## [v1.6.3](https://github.com/push2cloud/cf-adapter/compare/v1.6.2...v1.6.3)
- createTunnel: disable strict host key checking for ssh fallback
## [v1.6.2](https://github.com/push2cloud/cf-adapter/compare/v1.6.1...v1.6.2)

@@ -2,0 +5,0 @@ - optimize createTunnel

2

fns/createTunnel.js

@@ -72,3 +72,3 @@ const _ = require('lodash');

const childProcess = exec(`sshpass -p ${config.password} ssh -L ${config.localPort}:${config.dstHost}:${config.dstPort} ${config.username}@${config.host} -p ${config.port} -N`, (err) => {
const childProcess = exec(`sshpass -p ${config.password} ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -L ${config.localPort}:${config.dstHost}:${config.dstPort} ${config.username}@${config.host} -p ${config.port} -N`, (err) => {
if (err) debug(err);

@@ -75,0 +75,0 @@ });

{
"name": "push2cloud-cf-adapter",
"version": "1.6.2",
"version": "1.6.3",
"description": "abstracts cloud foundry api",

@@ -5,0 +5,0 @@ "main": "index.js",

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