ssh_scan 0.0.42 → 0.0.43

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee458d8fcc40240dd30d59da2303ca1892d832e3a4452a04497bd99ed09d8c9d
4
- data.tar.gz: db71d8386efa3988e64d649e942e02afb501416a00aa88c988ca2acc7763b8c6
3
+ metadata.gz: 035ffcd050babf1ef147195f6981a84a331e41d6929479a13383692b7148261f
4
+ data.tar.gz: 5354ffacae2dcf14ecc9a8ebe640baf96cf450ed08ad18dd0fb0bafe818131af
5
5
  SHA512:
6
- metadata.gz: d1d1a3de52debdff193e3a656690f9deafce5a214a25e71710f7b7f4916aff7f624946971efb7c067105681d4a6f65dffb0bb2d6d38e4a3542834587bd243e6a
7
- data.tar.gz: 513ea628c67c480c113b1c9b7af734e88afa286445e38825e77fa2edb55ffa1d7679486383c3ef3e760b329b23dfc0c6c9dbdc558ea4e29400d977b81a19d20f
6
+ metadata.gz: 8a859e1d12f2c6479f15d8e34a2b71c6d040f6d7913ef7d661209ad902f73b901c2fb79f439656d68e43275b57db41e10a7f9d0aa939404e5978dc2067cde124
7
+ data.tar.gz: 596a3102e97a68d74ebe0d698eeaef1687229e896a44fd7152241b658d0f7a6b28c5a9dd1b94e31215b52ebf1ad3179b4a0a614f97cfde9b8f4f7b460c9cf714
data/README.md CHANGED
@@ -9,7 +9,7 @@ A SSH configuration and policy scanner
9
9
 
10
10
  ## Key Benefits
11
11
 
12
- - **Minimal Dependancies** - Uses native Ruby and BinData to do its work, no heavy dependancies.
12
+ - **Minimal Dependencies** - Uses native Ruby and BinData to do its work, no heavy dependencies.
13
13
  - **Not Just a Script** - Implementation is portable for use in another project or for automation of tasks.
14
14
  - **Simple** - Just point `ssh_scan` at an SSH service and get a JSON report of what it supports and its policy status.
15
15
  - **Configurable** - Make your own custom policies that fit your unique policy requirements.
@@ -89,7 +89,7 @@ Examples:
89
89
 
90
90
  ## ssh_scan as a service/api?
91
91
 
92
- This project is soley for ssh_scan engine/command-line usage.
92
+ This project is solely for ssh_scan engine/command-line usage.
93
93
 
94
94
  If you would like to run ssh_scan as a service, please refer to [the ssh_scan_api project](https://github.com/mozilla/ssh_scan_api)
95
95
 
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: Mozilla Modern - with just ETM macs
3
+ ssh_version: 2.0
4
+ auth_methods:
5
+ - publickey
6
+ kex:
7
+ - curve25519-sha256@libssh.org
8
+ - ecdh-sha2-nistp521
9
+ - ecdh-sha2-nistp384
10
+ - ecdh-sha2-nistp256
11
+ - diffie-hellman-group-exchange-sha256
12
+ encryption:
13
+ - chacha20-poly1305@openssh.com
14
+ - aes256-gcm@openssh.com
15
+ - aes128-gcm@openssh.com
16
+ - aes256-ctr
17
+ - aes192-ctr
18
+ - aes128-ctr
19
+ macs:
20
+ - hmac-sha2-512-etm@openssh.com
21
+ - hmac-sha2-256-etm@openssh.com
22
+ - umac-128-etm@openssh.com
23
+ references:
24
+ - https://example.com/custom_policy
@@ -1,3 +1,3 @@
1
1
  module SSHScan
2
- VERSION = '0.0.42'
2
+ VERSION = '0.0.43'
3
3
  end
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
32
32
 
33
33
  s.add_dependency('bindata', '2.4.3')
34
34
  s.add_dependency('netaddr', '1.5.1')
35
- s.add_dependency('net-ssh', '5.0.2')
35
+ s.add_dependency('net-ssh', '5.2.0')
36
36
  s.add_dependency('sshkey')
37
37
  s.add_development_dependency('pry', '0.11.3')
38
38
  s.add_development_dependency('rspec', '3.7.0')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ssh_scan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.42
4
+ version: 0.0.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Claudius
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2019-08-27 00:00:00.000000000 Z
15
+ date: 2020-05-27 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: bindata
@@ -48,14 +48,14 @@ dependencies:
48
48
  requirements:
49
49
  - - '='
50
50
  - !ruby/object:Gem::Version
51
- version: 5.0.2
51
+ version: 5.2.0
52
52
  type: :runtime
53
53
  prerelease: false
54
54
  version_requirements: !ruby/object:Gem::Requirement
55
55
  requirements:
56
56
  - - '='
57
57
  - !ruby/object:Gem::Version
58
- version: 5.0.2
58
+ version: 5.2.0
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: sshkey
61
61
  requirement: !ruby/object:Gem::Requirement
@@ -155,6 +155,7 @@ files:
155
155
  - README.md
156
156
  - Rakefile
157
157
  - bin/ssh_scan
158
+ - config/policies/just_etm_macs.yaml
158
159
  - config/policies/mozilla_intermediate.yml
159
160
  - config/policies/mozilla_modern.yml
160
161
  - data/README