summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBhushan Lokhande <bhushan5640@gmail.com>2016-07-21 17:51:24 +0530
committerGitHub <noreply@github.com>2016-07-21 17:51:24 +0530
commit657e3a6f7c98990dc0970e2fc12c8104f81ed079 (patch)
treeaa78230decec7497bc30d6f77b59cfa789f4391f
parentc041ab79024b5c351410111f19fe0723085b39d3 (diff)
parent96afd367f951654e09748c7d24716369e608871d (diff)
downloadssllabs-scan-657e3a6f7c98990dc0970e2fc12c8104f81ed079.zip
ssllabs-scan-657e3a6f7c98990dc0970e2fc12c8104f81ed079.tar.gz
ssllabs-scan-657e3a6f7c98990dc0970e2fc12c8104f81ed079.tar.bz2
Merge pull request #335 from smarthouse/add-drown-support
Add Drown Support
-rw-r--r--ssllabs-scan.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/ssllabs-scan.go b/ssllabs-scan.go
index 784b829..2f66ee9 100644
--- a/ssllabs-scan.go
+++ b/ssllabs-scan.go
@@ -234,6 +234,15 @@ type LabsHpkpPolicy struct {
Directives map[string]string
}
+type DrownHost struct {
+ Ip string
+ Export bool
+ Port int
+ Special bool
+ Sslv2 bool
+ Status string
+}
+
type LabsEndpointDetails struct {
HostStartTime int64
Key LabsKey
@@ -279,6 +288,9 @@ type LabsEndpointDetails struct {
HstsPreloads []LabsHstsPreload
HpkpPolicy LabsHpkpPolicy
HpkpRoPolicy LabsHpkpPolicy
+ DrownHosts []DrownHost
+ DrownErrors bool
+ DrownVulnerable bool
}
type LabsEndpoint struct {