Skip to content

Commit

Permalink
Merge pull request #47 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 2.1.0
  • Loading branch information
andyone authored Feb 11, 2019
2 parents e5b0ce2 + 65efa2b commit 1767b30
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

const (
APP = "SSLScan Client"
VER = "2.0.1"
VER = "2.1.0"
DESC = "Command-line client for the SSL Labs API"
)

Expand Down
7 changes: 5 additions & 2 deletions cli/details.go
Original file line number Diff line number Diff line change
Expand Up @@ -705,9 +705,12 @@ func printEndpointPoodleStatus(details *sslscan.EndpointDetails) {
func printEndpointDrownStatus(details *sslscan.EndpointDetails) {
fmtc.Printf(" %-40s {s}|{!} ", "DROWN")

if details.DrownVulnerable {
switch {
case details.DrownErrors:
fmtc.Println("{y}Unable to perform this test due to an internal error{!}")
case details.DrownVulnerable:
fmtc.Println("{r}Vulnerable{!}")
} else {
default:
fmtc.Println("No")
}
}
Expand Down
5 changes: 4 additions & 1 deletion common/sslcli.spec
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

Summary: Pretty awesome command-line client for public SSLLabs API
Name: sslcli
Version: 2.0.1
Version: 2.1.0
Release: 0%{?dist}
Group: Applications/System
License: EKOL
Expand Down Expand Up @@ -92,6 +92,9 @@ rm -rf %{buildroot}
################################################################################

%changelog
* Mon Feb 11 2019 Anton Novojilov <[email protected]> - 2.1.0-0
- Improved DROWN check status output

* Sat Feb 09 2019 Anton Novojilov <[email protected]> - 2.0.1-0
- Fixed compatibility with the latest version of ek package

Expand Down

0 comments on commit 1767b30

Please sign in to comment.