ssh_scan 0.0.10.beta.1 → 0.0.10.beta.2
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/lib/ssh_scan/scan_engine.rb +4 -0
- data/lib/ssh_scan/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a689938f463c860bb90bb1d4f5772ff961d745d7
|
|
4
|
+
data.tar.gz: a3945bd66434b5e9edd8348d1e65ab96c2214e4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c6a0fde028fc24d8509c8ac3a6572c398c1ac5a85694115772bf1d5a3ee5b9ed8215409deb38ba6cb3682a361d764cb58816e45bf9a45a8a7882849eff33599
|
|
7
|
+
data.tar.gz: 2a345e980a7c53f52834251a5da73e93838c82068629c81e40c75616524b4b4f31256b1077446fe1254b8a53bc9abed16b52b3fd264c8396b2096abfb04cd1ba
|
data/lib/ssh_scan/scan_engine.rb
CHANGED
|
@@ -57,6 +57,10 @@ module SSHScan
|
|
|
57
57
|
warn("WARNING: net-ssh could not find a mutually acceptable encryption algorithm (fingerprints and auth_methods will not be available)")
|
|
58
58
|
result[index]['auth_methods'] = []
|
|
59
59
|
result[index]['fingerprints'] = {}
|
|
60
|
+
elsif e.to_s.match(/could not settle on host_key algorithm/)
|
|
61
|
+
warn("WARNING: net-ssh could not find a mutually acceptable host_key algorithm (fingerprints and auth_methods will not be available)")
|
|
62
|
+
result[index]['auth_methods'] = []
|
|
63
|
+
result[index]['fingerprints'] = {}
|
|
60
64
|
else
|
|
61
65
|
raise e
|
|
62
66
|
end
|
data/lib/ssh_scan/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ssh_scan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.10.beta.
|
|
4
|
+
version: 0.0.10.beta.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Claudius
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bindata
|