ssh_scan 0.0.42 → 0.0.43
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/config/policies/just_etm_macs.yaml +24 -0
- data/lib/ssh_scan/version.rb +1 -1
- data/ssh_scan.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 035ffcd050babf1ef147195f6981a84a331e41d6929479a13383692b7148261f
|
|
4
|
+
data.tar.gz: 5354ffacae2dcf14ecc9a8ebe640baf96cf450ed08ad18dd0fb0bafe818131af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
|
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
|
data/lib/ssh_scan/version.rb
CHANGED
data/ssh_scan.gemspec
CHANGED
|
@@ -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
|
|
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.
|
|
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:
|
|
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
|
|
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
|
|
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
|