diff options
-rw-r--r-- | ssllabs-scan.go | 12 |
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 { |