net-ssh 6.0.2 → 7.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +2 -1
- data/.dockerignore +6 -0
- data/.github/config/rubocop_linter_action.yml +4 -0
- data/.github/workflows/ci-with-docker.yml +44 -0
- data/.github/workflows/ci.yml +87 -0
- data/.github/workflows/rubocop.yml +16 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +12 -1
- data/.rubocop_todo.yml +474 -375
- data/CHANGES.txt +51 -3
- data/Dockerfile +27 -0
- data/Dockerfile.openssl3 +17 -0
- data/Gemfile +2 -0
- data/Gemfile.noed25519 +2 -0
- data/README.md +19 -8
- data/Rakefile +59 -0
- data/SECURITY.md +4 -0
- data/docker-compose.yml +23 -0
- data/lib/net/ssh/authentication/agent.rb +29 -13
- data/lib/net/ssh/authentication/certificate.rb +14 -11
- data/lib/net/ssh/authentication/constants.rb +0 -1
- data/lib/net/ssh/authentication/ed25519.rb +12 -7
- data/lib/net/ssh/authentication/ed25519_loader.rb +4 -7
- data/lib/net/ssh/authentication/key_manager.rb +46 -34
- data/lib/net/ssh/authentication/methods/abstract.rb +12 -3
- data/lib/net/ssh/authentication/methods/hostbased.rb +3 -5
- data/lib/net/ssh/authentication/methods/keyboard_interactive.rb +2 -2
- data/lib/net/ssh/authentication/methods/none.rb +6 -9
- data/lib/net/ssh/authentication/methods/password.rb +2 -3
- data/lib/net/ssh/authentication/methods/publickey.rb +56 -16
- data/lib/net/ssh/authentication/pageant.rb +97 -97
- data/lib/net/ssh/authentication/pub_key_fingerprint.rb +2 -2
- data/lib/net/ssh/authentication/session.rb +18 -17
- data/lib/net/ssh/buffer.rb +71 -51
- data/lib/net/ssh/buffered_io.rb +24 -25
- data/lib/net/ssh/config.rb +33 -20
- data/lib/net/ssh/connection/channel.rb +84 -82
- data/lib/net/ssh/connection/constants.rb +0 -4
- data/lib/net/ssh/connection/event_loop.rb +30 -24
- data/lib/net/ssh/connection/keepalive.rb +12 -12
- data/lib/net/ssh/connection/session.rb +109 -108
- data/lib/net/ssh/connection/term.rb +56 -58
- data/lib/net/ssh/errors.rb +12 -12
- data/lib/net/ssh/key_factory.rb +7 -8
- data/lib/net/ssh/known_hosts.rb +84 -15
- data/lib/net/ssh/loggable.rb +8 -9
- data/lib/net/ssh/packet.rb +1 -1
- data/lib/net/ssh/prompt.rb +9 -11
- data/lib/net/ssh/proxy/command.rb +1 -1
- data/lib/net/ssh/proxy/errors.rb +2 -4
- data/lib/net/ssh/proxy/http.rb +18 -20
- data/lib/net/ssh/proxy/https.rb +8 -10
- data/lib/net/ssh/proxy/jump.rb +8 -10
- data/lib/net/ssh/proxy/socks4.rb +2 -4
- data/lib/net/ssh/proxy/socks5.rb +3 -5
- data/lib/net/ssh/service/forward.rb +7 -7
- data/lib/net/ssh/test/channel.rb +24 -26
- data/lib/net/ssh/test/extensions.rb +35 -35
- data/lib/net/ssh/test/kex.rb +6 -8
- data/lib/net/ssh/test/local_packet.rb +0 -2
- data/lib/net/ssh/test/packet.rb +3 -3
- data/lib/net/ssh/test/remote_packet.rb +6 -8
- data/lib/net/ssh/test/script.rb +25 -27
- data/lib/net/ssh/test/socket.rb +12 -15
- data/lib/net/ssh/test.rb +4 -5
- data/lib/net/ssh/transport/algorithms.rb +37 -21
- data/lib/net/ssh/transport/cipher_factory.rb +28 -28
- data/lib/net/ssh/transport/constants.rb +3 -3
- data/lib/net/ssh/transport/ctr.rb +7 -7
- data/lib/net/ssh/transport/hmac/abstract.rb +4 -5
- data/lib/net/ssh/transport/hmac/md5.rb +0 -2
- data/lib/net/ssh/transport/hmac/md5_96.rb +0 -2
- data/lib/net/ssh/transport/hmac/none.rb +0 -2
- data/lib/net/ssh/transport/hmac/ripemd160.rb +0 -2
- data/lib/net/ssh/transport/hmac/sha1.rb +0 -2
- data/lib/net/ssh/transport/hmac/sha1_96.rb +0 -2
- data/lib/net/ssh/transport/hmac.rb +12 -12
- data/lib/net/ssh/transport/identity_cipher.rb +11 -13
- data/lib/net/ssh/transport/kex/abstract.rb +12 -5
- data/lib/net/ssh/transport/kex/abstract5656.rb +1 -1
- data/lib/net/ssh/transport/kex/curve25519_sha256.rb +2 -1
- data/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +4 -4
- data/lib/net/ssh/transport/kex/diffie_hellman_group14_sha256.rb +11 -0
- data/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +21 -21
- data/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +1 -2
- data/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +2 -2
- data/lib/net/ssh/transport/kex.rb +8 -6
- data/lib/net/ssh/transport/key_expander.rb +7 -8
- data/lib/net/ssh/transport/openssl.rb +51 -26
- data/lib/net/ssh/transport/packet_stream.rb +2 -3
- data/lib/net/ssh/transport/server_version.rb +17 -16
- data/lib/net/ssh/transport/session.rb +9 -7
- data/lib/net/ssh/transport/state.rb +43 -43
- data/lib/net/ssh/verifiers/accept_new.rb +0 -2
- data/lib/net/ssh/verifiers/accept_new_or_local_tunnel.rb +1 -2
- data/lib/net/ssh/verifiers/always.rb +6 -4
- data/lib/net/ssh/verifiers/never.rb +0 -2
- data/lib/net/ssh/version.rb +3 -3
- data/lib/net/ssh.rb +11 -7
- data/net-ssh-public_cert.pem +8 -8
- data/net-ssh.gemspec +2 -2
- data/support/ssh_tunnel_bug.rb +3 -3
- data.tar.gz.sig +0 -0
- metadata +24 -15
- metadata.gz.sig +0 -0
- data/.travis.yml +0 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69f379018d9756042dedb6948dda7f92b8d866a0fd3beb7745a11ab1da739001
|
4
|
+
data.tar.gz: 8e5b659e405ea5403ce34fec03e05c1abe1d3dcf6b8962610d7b6c62c6df7794
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 065e5076a1d6ed2af0ca3b51f6dc885cf05d09b93ba8a9f5ad003031b5ab3b652e1289b4c5ff9b2e9865db3c12f58874b1ec504044ee17fe1551396e4081daa9
|
7
|
+
data.tar.gz: c27bb7b11148313012628ada70d22e5e425ef4b36c7645e40bd422ad86a2b9495de1b71fa70ad8ae2b9584d4cbbe8fef3030883f29df0c7551f8e3d8eddc4339
|
checksums.yaml.gz.sig
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
L��߮^���Ϲ�RC�V[o�$��P҅����'�ӭ����r�7^��'�bO�L��Zhs�����_-�:]D9e����7|Eӈ��x�}���1R2!(z�s{Um�Ij�9�\4��ԯQ:�X�R,��$��4O�,m��\�]�#�!r�nP��l�G��ff�HC�
|
2
|
+
Fp7�����I2c���:�&NH���<"�g��:7�u�=$|j����'V̭̑�.��19���Q�|��
|
data/.dockerignore
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
name: Test
|
2
|
+
on:
|
3
|
+
pull_request:
|
4
|
+
push: { branches: master }
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
test:
|
8
|
+
name: Run test suite with docker
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
env:
|
11
|
+
COMPOSE_FILE: docker-compose.yml
|
12
|
+
|
13
|
+
steps:
|
14
|
+
- name: Checkout code
|
15
|
+
uses: actions/checkout@v3
|
16
|
+
|
17
|
+
- name: Build docker images
|
18
|
+
run: docker-compose build
|
19
|
+
|
20
|
+
- name: Run ruby 2.6
|
21
|
+
run: docker-compose run ruby-2.6
|
22
|
+
|
23
|
+
- name: Run ruby 2.7
|
24
|
+
run: docker-compose run ruby-2.7
|
25
|
+
|
26
|
+
- name: Run ruby 3.0
|
27
|
+
run: docker-compose run ruby-3.0
|
28
|
+
|
29
|
+
- name: Run ruby 3.1
|
30
|
+
run: docker-compose run ruby-3.1
|
31
|
+
|
32
|
+
test_openssl3:
|
33
|
+
name: Run test suite with docker and openssl 3.0
|
34
|
+
runs-on: ubuntu-latest
|
35
|
+
|
36
|
+
steps:
|
37
|
+
- name: Checkout code
|
38
|
+
uses: actions/checkout@v3
|
39
|
+
|
40
|
+
- name: Build docker images
|
41
|
+
run: docker build -t netssh_openssl3 -f Dockerfile.openssl3 .
|
42
|
+
|
43
|
+
- name: Run ruby 3.0 with openssl3
|
44
|
+
run: docker run --rm netssh_openssl3
|
@@ -0,0 +1,87 @@
|
|
1
|
+
name: CI
|
2
|
+
on:
|
3
|
+
pull_request:
|
4
|
+
push: { branches: master }
|
5
|
+
jobs:
|
6
|
+
test:
|
7
|
+
runs-on: ubuntu-18.04
|
8
|
+
strategy:
|
9
|
+
matrix:
|
10
|
+
ruby-version: [2.6.6, 2.7.2, 3.0.1, 3.1.1]
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v3
|
13
|
+
|
14
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: ${{ matrix.ruby-version }}
|
18
|
+
- name: Set up Python ${{ matrix.python-version }}
|
19
|
+
uses: actions/setup-python@v2
|
20
|
+
with:
|
21
|
+
python-version: 3.8
|
22
|
+
|
23
|
+
- name: Cache bundler
|
24
|
+
uses: actions/cache@v1
|
25
|
+
id: bundler-cache
|
26
|
+
with:
|
27
|
+
path: vendor/bundle
|
28
|
+
key: ${{ runner.os }}-${{ matrix.ruby-version }}-gem-v3-${{ hashFiles('**/Gemfile') }}-${{ hashFiles('**/net-ssh.gemspec') }}
|
29
|
+
restore-keys: |
|
30
|
+
${{ runner.os }}-${{ matrix.ruby-version }}-gem-v3-
|
31
|
+
|
32
|
+
- name: Cache pip
|
33
|
+
uses: actions/cache@v1
|
34
|
+
id: pip-cache
|
35
|
+
with:
|
36
|
+
path: ~/.cache/pip
|
37
|
+
key: ${{ runner.os }}-pip-v1
|
38
|
+
restore-keys: |
|
39
|
+
${{ runner.os }}-pip-v1
|
40
|
+
- name: Bundle install
|
41
|
+
run: |
|
42
|
+
gem install bundler
|
43
|
+
bundle config set path 'vendor/bundle'
|
44
|
+
bundle config set --local path 'vendor/bundle'
|
45
|
+
bundle install --jobs 4 --retry 3 --path vendor/bundle
|
46
|
+
BUNDLE_GEMFILE=./Gemfile.noed25519 bundle install --jobs 4 --retry 3 --path vendor/bundle
|
47
|
+
env:
|
48
|
+
BUNDLE_PATH: vendor/bundle
|
49
|
+
|
50
|
+
- name: Add to etc/hosts
|
51
|
+
run: |
|
52
|
+
sudo echo "127.0.0.1 gateway.netssh" | sudo tee -a /etc/hosts
|
53
|
+
- name: Check sshd_config
|
54
|
+
run: sudo cat '/etc/ssh/sshd_config' || true
|
55
|
+
- name: Check sshd_config2
|
56
|
+
run: sudo cat /etc/ssh/sshd_config.d/*.conf || true
|
57
|
+
- name: Check sshd pid
|
58
|
+
run: sudo ps aux | grep sshd
|
59
|
+
- name: Ansible install
|
60
|
+
run: |
|
61
|
+
python -m pip install --upgrade pip
|
62
|
+
pip install ansible urllib3 pyOpenSSL ndg-httpsclient pyasn1
|
63
|
+
ansible-galaxy install rvm.ruby
|
64
|
+
pwd
|
65
|
+
uname -a
|
66
|
+
export
|
67
|
+
who am i
|
68
|
+
ansible-playbook ./test/integration/playbook.yml -i "localhost," --become -c local -e 'no_rvm=true' -e 'myuser=runner' -e 'mygroup=runner' -e 'homedir=/home/runner'
|
69
|
+
- name: Check sshd_config
|
70
|
+
run: sudo cat '/etc/ssh/sshd_config' || true
|
71
|
+
- name: Check sshd pid
|
72
|
+
run: sudo ps aux | grep sshd
|
73
|
+
- name: Check sshd_config2
|
74
|
+
run: sudo cat /etc/ssh/sshd_config.d/*.conf || true
|
75
|
+
- name: Run Tests
|
76
|
+
run: bundle exec rake test
|
77
|
+
env:
|
78
|
+
NET_SSH_RUN_INTEGRATION_TESTS: 1
|
79
|
+
CI: 1
|
80
|
+
- name: Run Tests (without ed25519)
|
81
|
+
run: bundle exec rake test
|
82
|
+
env:
|
83
|
+
BUNDLE_GEMFILE: ./Gemfile.noed25519
|
84
|
+
NET_SSH_RUN_INTEGRATION_TESTS: 1
|
85
|
+
CI: 1
|
86
|
+
- name: Run test helper test
|
87
|
+
run: bundle exec rake test_test
|
@@ -0,0 +1,16 @@
|
|
1
|
+
name: Rubocop
|
2
|
+
|
3
|
+
on: [push]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
steps:
|
9
|
+
- uses: actions/checkout@v3
|
10
|
+
- name: Set up Ruby 3.1
|
11
|
+
uses: ruby/setup-ruby@v1
|
12
|
+
with:
|
13
|
+
ruby-version: 3.1
|
14
|
+
bundler-cache: true
|
15
|
+
- name: Run RuboCop
|
16
|
+
run: bundle exec rubocop
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,11 +1,22 @@
|
|
1
|
+
AllCops:
|
2
|
+
Exclude:
|
3
|
+
- 'tryout/**/*'
|
4
|
+
- "vendor/**/.*"
|
5
|
+
- "vendor/**/*"
|
6
|
+
NewCops: enable
|
7
|
+
TargetRubyVersion: 2.6
|
8
|
+
|
1
9
|
inherit_from: .rubocop_todo.yml
|
2
10
|
|
3
11
|
Style/DoubleNegation:
|
4
12
|
Exclude:
|
5
13
|
- 'lib/net/ssh/key_factory.rb'
|
6
14
|
|
7
|
-
|
15
|
+
Layout/LineLength:
|
8
16
|
Max: 150
|
9
17
|
Exclude:
|
10
18
|
- 'test/**/*.rb'
|
11
19
|
- 'net-ssh.gemspec'
|
20
|
+
|
21
|
+
Style/EmptyLiteral:
|
22
|
+
Enabled: false
|