From 7c7c0b968969c29cb7d25ae5b6b817f9d1974a9f Mon Sep 17 00:00:00 2001 From: Adam Greene Date: Thu, 4 Mar 2021 13:58:31 -0500 Subject: [PATCH] Add support for specifying the "PortableCiphers" cipher-suite list added in https://github.com/zmap/zcrypto/pull/238 --- tls.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tls.go b/tls.go index 0ca5ff0d..15de7338 100644 --- a/tls.go +++ b/tls.go @@ -91,6 +91,7 @@ func (t *TLSFlags) GetTLSConfigForTarget(target *ScanTarget) (*tls.Config, error // TODO: Find standard names cipherMap := map[string][]uint16{ + "portable": tls.PortableCiphers, "dhe-only": tls.DHECiphers, "ecdhe-only": tls.ECDHECiphers, "exports-dh-only": tls.DHEExportCiphers,