bdy 1.23.6-dev → 1.23.7-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/distTs/package.json +10 -2
- package/distTs/src/agent/linux.js +53 -3
- package/distTs/src/agent/manager.js +3 -6
- package/distTs/src/agent/osx.js +51 -3
- package/distTs/src/agent/system.js +400 -21
- package/distTs/src/agent/windows.js +4 -7
- package/distTs/src/command/agent/debug.js +2 -2
- package/distTs/src/command/agent/install.js +37 -10
- package/distTs/src/command/agent/restart.js +2 -2
- package/distTs/src/command/agent/run.js +3 -0
- package/distTs/src/command/agent/start.js +2 -2
- package/distTs/src/command/agent/status.js +19 -0
- package/distTs/src/command/agent/stop.js +2 -2
- package/distTs/src/command/agent/uninstall.js +5 -8
- package/distTs/src/command/agent/update.js +2 -2
- package/distTs/src/command/artifact/publish.js +3 -1
- package/distTs/src/command/version.js +13 -5
- package/distTs/src/logger.js +40 -4
- package/distTs/src/texts.js +35 -19
- package/distTs/src/utils.js +98 -3
- package/node_modules/asn1/Jenkinsfile +65 -0
- package/node_modules/asn1/LICENSE +19 -0
- package/node_modules/asn1/README.md +50 -0
- package/node_modules/asn1/lib/ber/errors.js +13 -0
- package/node_modules/asn1/lib/ber/index.js +27 -0
- package/node_modules/asn1/lib/ber/reader.js +262 -0
- package/node_modules/asn1/lib/ber/types.js +36 -0
- package/node_modules/asn1/lib/ber/writer.js +317 -0
- package/node_modules/asn1/lib/index.js +20 -0
- package/node_modules/asn1/package.json +31 -0
- package/node_modules/bcrypt-pbkdf/CONTRIBUTING.md +13 -0
- package/node_modules/bcrypt-pbkdf/LICENSE +66 -0
- package/node_modules/bcrypt-pbkdf/README.md +45 -0
- package/node_modules/bcrypt-pbkdf/index.js +556 -0
- package/node_modules/bcrypt-pbkdf/package.json +15 -0
- package/node_modules/safer-buffer/LICENSE +21 -0
- package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules/safer-buffer/Readme.md +156 -0
- package/node_modules/safer-buffer/dangerous.js +58 -0
- package/node_modules/safer-buffer/package.json +34 -0
- package/node_modules/safer-buffer/safer.js +77 -0
- package/node_modules/safer-buffer/tests.js +406 -0
- package/node_modules/ssh2/.eslintignore +4 -0
- package/node_modules/ssh2/.eslintrc.js +5 -0
- package/node_modules/ssh2/.github/workflows/ci.yml +110 -0
- package/node_modules/ssh2/.github/workflows/lint.yml +27 -0
- package/node_modules/ssh2/LICENSE +19 -0
- package/node_modules/ssh2/README.md +1529 -0
- package/node_modules/ssh2/SFTP.md +413 -0
- package/node_modules/ssh2/examples/server-chat.js +238 -0
- package/node_modules/ssh2/examples/sftp-server-download-only.js +134 -0
- package/node_modules/ssh2/install.js +27 -0
- package/node_modules/ssh2/lib/Channel.js +295 -0
- package/node_modules/ssh2/lib/agent.js +1123 -0
- package/node_modules/ssh2/lib/client.js +2176 -0
- package/node_modules/ssh2/lib/http-agents.js +84 -0
- package/node_modules/ssh2/lib/index.js +44 -0
- package/node_modules/ssh2/lib/keygen.js +582 -0
- package/node_modules/ssh2/lib/protocol/Protocol.js +2136 -0
- package/node_modules/ssh2/lib/protocol/SFTP.js +4052 -0
- package/node_modules/ssh2/lib/protocol/constants.js +356 -0
- package/node_modules/ssh2/lib/protocol/crypto/binding.gyp +23 -0
- package/node_modules/ssh2/lib/protocol/crypto/poly1305.js +43 -0
- package/node_modules/ssh2/lib/protocol/crypto/src/binding.cc +2300 -0
- package/node_modules/ssh2/lib/protocol/crypto.js +1602 -0
- package/node_modules/ssh2/lib/protocol/handlers.js +16 -0
- package/node_modules/ssh2/lib/protocol/handlers.misc.js +1285 -0
- package/node_modules/ssh2/lib/protocol/kex.js +1908 -0
- package/node_modules/ssh2/lib/protocol/keyParser.js +1484 -0
- package/node_modules/ssh2/lib/protocol/node-fs-compat.js +115 -0
- package/node_modules/ssh2/lib/protocol/utils.js +356 -0
- package/node_modules/ssh2/lib/protocol/zlib.js +255 -0
- package/node_modules/ssh2/lib/server.js +1380 -0
- package/node_modules/ssh2/lib/utils.js +336 -0
- package/node_modules/ssh2/package.json +49 -0
- package/node_modules/ssh2/test/common.js +316 -0
- package/node_modules/ssh2/test/fixtures/bad_rsa_private_key +26 -0
- package/node_modules/ssh2/test/fixtures/https_cert.pem +33 -0
- package/node_modules/ssh2/test/fixtures/https_key.pem +52 -0
- package/node_modules/ssh2/test/fixtures/id_dsa +12 -0
- package/node_modules/ssh2/test/fixtures/id_ecdsa +5 -0
- package/node_modules/ssh2/test/fixtures/id_rsa +15 -0
- package/node_modules/ssh2/test/fixtures/id_rsa.ppk +26 -0
- package/node_modules/ssh2/test/fixtures/id_rsa_enc +30 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa +21 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc +22 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm +23 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa +9 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc +10 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc.pub.result +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm +10 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm.pub.result +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519 +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa +27 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc +28 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc.pub.result +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm +29 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm.pub.result +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa +12 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc +15 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc.pub.result +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa +5 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc.pub.result +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa +27 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc +30 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc.pub.result +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256 +54 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256.pub +1 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256.pub.result +6 -0
- package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256.result +6 -0
- package/node_modules/ssh2/test/fixtures/keyParser/ppk_dsa_enc +17 -0
- package/node_modules/ssh2/test/fixtures/keyParser/ppk_dsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa +26 -0
- package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa_enc +18 -0
- package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa_enc.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa.pub +9 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa2.pub +10 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa2.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa3.pub +11 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa3.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa4.pub +11 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa4.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa5.pub +8 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa5.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa6.pub +13 -0
- package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa6.pub.result +7 -0
- package/node_modules/ssh2/test/fixtures/openssh_new_rsa +27 -0
- package/node_modules/ssh2/test/fixtures/ssh_host_dsa_key +12 -0
- package/node_modules/ssh2/test/fixtures/ssh_host_ecdsa_key +5 -0
- package/node_modules/ssh2/test/fixtures/ssh_host_rsa_key +15 -0
- package/node_modules/ssh2/test/test-exec.js +578 -0
- package/node_modules/ssh2/test/test-integration-openssh.js +486 -0
- package/node_modules/ssh2/test/test-keygen.js +60 -0
- package/node_modules/ssh2/test/test-misc-client-server.js +1460 -0
- package/node_modules/ssh2/test/test-openssh.js +261 -0
- package/node_modules/ssh2/test/test-protocol-crypto.js +631 -0
- package/node_modules/ssh2/test/test-protocol-keyparser.js +177 -0
- package/node_modules/ssh2/test/test-server-hostkeys.js +138 -0
- package/node_modules/ssh2/test/test-sftp.js +842 -0
- package/node_modules/ssh2/test/test-shell.js +109 -0
- package/node_modules/ssh2/test/test-userauth-agent-openssh.js +110 -0
- package/node_modules/ssh2/test/test-userauth-agent.js +171 -0
- package/node_modules/ssh2/test/test-userauth.js +611 -0
- package/node_modules/ssh2/test/test-worker-imports.js +25 -0
- package/node_modules/ssh2/test/test.js +20 -0
- package/node_modules/ssh2/util/build_pagent.bat +2 -0
- package/node_modules/ssh2/util/pagent.c +88 -0
- package/node_modules/ssh2/util/pagent.exe +0 -0
- package/node_modules/tweetnacl/.npmignore +4 -0
- package/node_modules/tweetnacl/AUTHORS.md +28 -0
- package/node_modules/tweetnacl/CHANGELOG.md +221 -0
- package/node_modules/tweetnacl/LICENSE +24 -0
- package/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +20 -0
- package/node_modules/tweetnacl/README.md +459 -0
- package/node_modules/tweetnacl/nacl-fast.js +2388 -0
- package/node_modules/tweetnacl/nacl-fast.min.js +2 -0
- package/node_modules/tweetnacl/nacl.d.ts +98 -0
- package/node_modules/tweetnacl/nacl.js +1175 -0
- package/node_modules/tweetnacl/nacl.min.js +1 -0
- package/node_modules/tweetnacl/package.json +58 -0
- package/package.json +10 -2
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const assert = require('assert');
|
|
4
|
+
const { inspect } = require('util');
|
|
5
|
+
|
|
6
|
+
const {
|
|
7
|
+
fixture,
|
|
8
|
+
mustCall,
|
|
9
|
+
mustCallAtLeast,
|
|
10
|
+
setup: setup_,
|
|
11
|
+
} = require('./common.js');
|
|
12
|
+
|
|
13
|
+
const debug = false;
|
|
14
|
+
|
|
15
|
+
const clientCfg = { username: 'foo', password: 'bar' };
|
|
16
|
+
const serverCfg = { hostKeys: [ fixture('ssh_host_rsa_key') ] };
|
|
17
|
+
|
|
18
|
+
{
|
|
19
|
+
const { client, server } = setup_(
|
|
20
|
+
'Exec with OpenSSH agent forwarding',
|
|
21
|
+
{
|
|
22
|
+
client: {
|
|
23
|
+
...clientCfg,
|
|
24
|
+
agent: '/path/to/agent',
|
|
25
|
+
},
|
|
26
|
+
server: serverCfg,
|
|
27
|
+
|
|
28
|
+
debug,
|
|
29
|
+
},
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
server.on('connection', mustCall((conn) => {
|
|
33
|
+
conn.on('authentication', mustCall((ctx) => {
|
|
34
|
+
ctx.accept();
|
|
35
|
+
})).on('ready', mustCall(() => {
|
|
36
|
+
conn.on('session', mustCall((accept, reject) => {
|
|
37
|
+
let sawAuthAgent = false;
|
|
38
|
+
accept().on('auth-agent', mustCall((accept, reject) => {
|
|
39
|
+
sawAuthAgent = true;
|
|
40
|
+
accept && accept();
|
|
41
|
+
})).on('exec', mustCall((accept, reject, info) => {
|
|
42
|
+
assert(sawAuthAgent, 'Expected auth-agent before exec');
|
|
43
|
+
assert(info.command === 'foo --bar',
|
|
44
|
+
`Wrong exec command: ${info.command}`);
|
|
45
|
+
const stream = accept();
|
|
46
|
+
stream.exit(100);
|
|
47
|
+
stream.end();
|
|
48
|
+
conn.end();
|
|
49
|
+
}));
|
|
50
|
+
}));
|
|
51
|
+
}));
|
|
52
|
+
}));
|
|
53
|
+
|
|
54
|
+
client.on('ready', mustCall(() => {
|
|
55
|
+
client.exec('foo --bar', { agentForward: true }, mustCall((err, stream) => {
|
|
56
|
+
assert(!err, `Unexpected exec error: ${err}`);
|
|
57
|
+
stream.resume();
|
|
58
|
+
}));
|
|
59
|
+
}));
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
{
|
|
63
|
+
const { client, server } = setup_(
|
|
64
|
+
'OpenSSH forwarded UNIX socket connection',
|
|
65
|
+
{
|
|
66
|
+
client: clientCfg,
|
|
67
|
+
server: {
|
|
68
|
+
...serverCfg,
|
|
69
|
+
ident: 'OpenSSH_7.1',
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
debug,
|
|
73
|
+
},
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
const socketPath = '/foo';
|
|
77
|
+
const events = [];
|
|
78
|
+
const expected = [
|
|
79
|
+
['client', 'openssh_forwardInStreamLocal'],
|
|
80
|
+
['server', 'streamlocal-forward@openssh.com', { socketPath }],
|
|
81
|
+
['client', 'forward callback'],
|
|
82
|
+
['client', 'unix connection', { socketPath }],
|
|
83
|
+
['client', 'socket data', '1'],
|
|
84
|
+
['server', 'socket data', '2'],
|
|
85
|
+
['client', 'socket end'],
|
|
86
|
+
['server', 'cancel-streamlocal-forward@openssh.com', { socketPath }],
|
|
87
|
+
['client', 'cancel callback']
|
|
88
|
+
];
|
|
89
|
+
|
|
90
|
+
server.on('connection', mustCall((conn) => {
|
|
91
|
+
conn.on('authentication', mustCall((ctx) => {
|
|
92
|
+
ctx.accept();
|
|
93
|
+
})).on('ready', mustCall(() => {
|
|
94
|
+
conn.once('request', mustCall((accept, reject, name, info) => {
|
|
95
|
+
events.push(['server', name, info]);
|
|
96
|
+
assert(name === 'streamlocal-forward@openssh.com',
|
|
97
|
+
`Wrong request name: ${name}`);
|
|
98
|
+
accept();
|
|
99
|
+
conn.openssh_forwardOutStreamLocal(socketPath,
|
|
100
|
+
mustCall((err, ch) => {
|
|
101
|
+
assert(!err, `Unexpected error: ${err}`);
|
|
102
|
+
ch.write('1');
|
|
103
|
+
ch.on('data', mustCallAtLeast((data) => {
|
|
104
|
+
events.push(['server', 'socket data', data.toString()]);
|
|
105
|
+
ch.close();
|
|
106
|
+
}));
|
|
107
|
+
}));
|
|
108
|
+
|
|
109
|
+
conn.on('request', mustCall((accept, reject, name, info) => {
|
|
110
|
+
events.push(['server', name, info]);
|
|
111
|
+
assert(name === 'cancel-streamlocal-forward@openssh.com',
|
|
112
|
+
`Wrong request name: ${name}`);
|
|
113
|
+
accept();
|
|
114
|
+
}));
|
|
115
|
+
}));
|
|
116
|
+
}));
|
|
117
|
+
}));
|
|
118
|
+
|
|
119
|
+
client.on('ready', mustCall(() => {
|
|
120
|
+
// request forwarding
|
|
121
|
+
events.push(['client', 'openssh_forwardInStreamLocal']);
|
|
122
|
+
client.openssh_forwardInStreamLocal(socketPath, mustCall((err) => {
|
|
123
|
+
assert(!err, `Unexpected error: ${err}`);
|
|
124
|
+
events.push(['client', 'forward callback']);
|
|
125
|
+
}));
|
|
126
|
+
client.on('unix connection', mustCall((info, accept, reject) => {
|
|
127
|
+
events.push(['client', 'unix connection', info]);
|
|
128
|
+
const stream = accept();
|
|
129
|
+
stream.on('data', mustCallAtLeast((data) => {
|
|
130
|
+
events.push(['client', 'socket data', data.toString()]);
|
|
131
|
+
stream.write('2');
|
|
132
|
+
})).on('end', mustCall(() => {
|
|
133
|
+
events.push(['client', 'socket end']);
|
|
134
|
+
client.openssh_unforwardInStreamLocal(socketPath,
|
|
135
|
+
mustCall((err) => {
|
|
136
|
+
assert(!err, `Unexpected error: ${err}`);
|
|
137
|
+
events.push(['client', 'cancel callback']);
|
|
138
|
+
client.end();
|
|
139
|
+
}));
|
|
140
|
+
}));
|
|
141
|
+
}));
|
|
142
|
+
})).on('close', mustCall(() => {
|
|
143
|
+
assert.deepStrictEqual(
|
|
144
|
+
events,
|
|
145
|
+
expected,
|
|
146
|
+
'Events mismatch\n'
|
|
147
|
+
+ `Actual:\n${inspect(events)}\n`
|
|
148
|
+
+ `Expected:\n${inspect(expected)}`
|
|
149
|
+
);
|
|
150
|
+
}));
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
{
|
|
154
|
+
const { client, server } = setup_(
|
|
155
|
+
'OpenSSH UNIX socket connection',
|
|
156
|
+
{
|
|
157
|
+
client: clientCfg,
|
|
158
|
+
server: {
|
|
159
|
+
...serverCfg,
|
|
160
|
+
ident: 'OpenSSH_8.0',
|
|
161
|
+
},
|
|
162
|
+
|
|
163
|
+
debug,
|
|
164
|
+
},
|
|
165
|
+
);
|
|
166
|
+
|
|
167
|
+
const socketPath = '/foo/bar/baz';
|
|
168
|
+
const response = 'Hello World';
|
|
169
|
+
|
|
170
|
+
server.on('connection', mustCall((conn) => {
|
|
171
|
+
conn.on('authentication', mustCall((ctx) => {
|
|
172
|
+
ctx.accept();
|
|
173
|
+
})).on('ready', mustCall(() => {
|
|
174
|
+
conn.on('openssh.streamlocal', mustCall((accept, reject, info) => {
|
|
175
|
+
assert.deepStrictEqual(
|
|
176
|
+
info,
|
|
177
|
+
{ socketPath },
|
|
178
|
+
`Wrong info: ${inspect(info)}`
|
|
179
|
+
);
|
|
180
|
+
|
|
181
|
+
const stream = accept();
|
|
182
|
+
stream.on('close', mustCall(() => {
|
|
183
|
+
client.end();
|
|
184
|
+
})).end(response);
|
|
185
|
+
stream.resume();
|
|
186
|
+
}));
|
|
187
|
+
}));
|
|
188
|
+
}));
|
|
189
|
+
|
|
190
|
+
client.on('ready', mustCall(() => {
|
|
191
|
+
client.openssh_forwardOutStreamLocal(socketPath, mustCall((err, stream) => {
|
|
192
|
+
assert(!err, `Unexpected error: ${err}`);
|
|
193
|
+
let buf = '';
|
|
194
|
+
stream.on('data', mustCallAtLeast((data) => {
|
|
195
|
+
buf += data;
|
|
196
|
+
})).on('close', mustCall(() => {
|
|
197
|
+
assert(buf === response, `Wrong response: ${inspect(buf)}`);
|
|
198
|
+
}));
|
|
199
|
+
}));
|
|
200
|
+
}));
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
{
|
|
204
|
+
const { client, server } = setup_(
|
|
205
|
+
'OpenSSH 5.x workaround for binding on port 0',
|
|
206
|
+
{
|
|
207
|
+
client: clientCfg,
|
|
208
|
+
server: {
|
|
209
|
+
...serverCfg,
|
|
210
|
+
ident: 'OpenSSH_5.3',
|
|
211
|
+
},
|
|
212
|
+
|
|
213
|
+
debug,
|
|
214
|
+
},
|
|
215
|
+
);
|
|
216
|
+
|
|
217
|
+
const boundAddr = 'good';
|
|
218
|
+
const boundPort = 1337;
|
|
219
|
+
const tcpInfo = {
|
|
220
|
+
destIP: boundAddr,
|
|
221
|
+
destPort: boundPort,
|
|
222
|
+
srcIP: 'remote',
|
|
223
|
+
srcPort: 12345,
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
server.on('connection', mustCall((conn) => {
|
|
227
|
+
conn.on('authentication', mustCall((ctx) => {
|
|
228
|
+
ctx.accept();
|
|
229
|
+
})).on('ready', mustCall(() => {
|
|
230
|
+
conn.on('request', mustCall((accept, reject, name, info) => {
|
|
231
|
+
assert(name === 'tcpip-forward', `Unexpected request: ${name}`);
|
|
232
|
+
assert(info.bindAddr === boundAddr, `Wrong addr: ${info.bindAddr}`);
|
|
233
|
+
assert(info.bindPort === 0, `Wrong port: ${info.bindPort}`);
|
|
234
|
+
accept(boundPort);
|
|
235
|
+
conn.forwardOut(boundAddr,
|
|
236
|
+
0,
|
|
237
|
+
tcpInfo.srcIP,
|
|
238
|
+
tcpInfo.srcPort,
|
|
239
|
+
mustCall((err, ch) => {
|
|
240
|
+
assert(!err, `Unexpected error: ${err}`);
|
|
241
|
+
client.end();
|
|
242
|
+
}));
|
|
243
|
+
}));
|
|
244
|
+
}));
|
|
245
|
+
}));
|
|
246
|
+
|
|
247
|
+
client.on('ready', mustCall(() => {
|
|
248
|
+
// request forwarding
|
|
249
|
+
client.forwardIn(boundAddr, 0, mustCall((err, port) => {
|
|
250
|
+
assert(!err, `Unexpected error: ${err}`);
|
|
251
|
+
assert(port === boundPort, `Bad bound port: ${port}`);
|
|
252
|
+
}));
|
|
253
|
+
})).on('tcp connection', mustCall((details, accept, reject) => {
|
|
254
|
+
assert.deepStrictEqual(
|
|
255
|
+
details,
|
|
256
|
+
tcpInfo,
|
|
257
|
+
`Wrong tcp details: ${inspect(details)}`
|
|
258
|
+
);
|
|
259
|
+
accept();
|
|
260
|
+
}));
|
|
261
|
+
}
|