-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
1006 lines (919 loc) · 30.2 KB
/
models.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package tlsmodel
import (
"bytes"
"crypto/dsa"
"crypto/ecdsa"
"crypto/rsa"
"crypto/tls"
"crypto/x509"
"encoding/gob"
"fmt"
"log"
"net"
"sort"
"strconv"
"strings"
"time"
)
// Signature algorithms for TLS 1.2 (See RFC 5246, section A.4.1)
const (
signatureAnonymous = 0
signatureRSA = 1
signatureDSA = 2
signatureECDSA = 3
)
//CipherConfig extracts the important elements of a Ciphersuit based on its name
type CipherConfig struct {
Cipher string
KeyExchange string
Authentication string
IsExport bool
Encryption string
MACPRF string //MAC (TLS <=1.1) or PseudoRandomFunction (TLS >= 1.2)
}
//IsAuthenticated returns whether the cipher supports authentication
func (cc *CipherConfig) IsAuthenticated() bool {
return !(cc.Authentication == "NULL" || cc.Authentication == "anon")
}
//GetEncryptionKeyLength returns the effective key lengths of encryption algorithms used in the cipher
//See https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-57pt1r4.pdf for details
func (cc *CipherConfig) GetEncryptionKeyLength() int {
kl := -1 //key length
enc := cc.Encryption
switch {
case enc == "NULL" || cc.Cipher == "TLS_EMPTY_RENEGOTIATION_INFO_SCSV" || cc.Cipher == "TLS_FALLBACK_SCSV":
kl = 0
case strings.Contains(enc, "3DES"):
kl = 112
case strings.Contains(enc, "DES40") || strings.Contains(enc, "CBC_40"):
kl = 40
case enc == "DES_CBC":
kl = 56
case enc == "SEED_CBC" || enc == "IDEA_CBC": //see https://tools.ietf.org/html/rfc4269 for SEED.
kl = 128
case enc == "CHACHA20_POLY1305": //see https://tools.ietf.org/html/rfc7539#section-4
kl = 256
case len(strings.Split(enc, "_")) >= 2:
k := strings.Split(enc, "_")[1]
kk, err := strconv.Atoi(k)
if err != nil {
kl = -1
} else {
kl = kk
}
}
return kl
}
//GetKeyExchangeKeyLength returns the key length indicated by the cipher
func (cc *CipherConfig) GetKeyExchangeKeyLength(cipher, protocol uint16, scan ScanResult) int {
kl := -1
kx := cc.KeyExchange
switch {
case kx == "NULL":
kl = 0
case kx == "RSA" || (cc.Authentication == "RSA" && strings.Contains(kx, "DH") && func() bool {
//deal with DH ciphers that use RSA for key exchange
ex, ok := scan.KeyExchangeByProtocolByCipher[protocol]
if ok {
if _, ok2 := ex[cipher]; !ok2 { //ensure that the cipher does not actually exchange keys
return true
}
}
return false
}()):
if c, ok := scan.CertificatesPerProtocol[protocol]; ok {
certs, err := c.GetCertificates()
if err == nil && len(certs) > 0 && certs[0].PublicKeyAlgorithm.String() == "RSA" {
if pub, ok := certs[0].PublicKey.(*rsa.PublicKey); ok {
kl = pub.N.BitLen()
}
}
}
case strings.Contains(kx, "DH"): // see https://www.ietf.org/rfc/rfc5480.txt and pp 133 https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-56Ar3.pdf for comparable strength
if ex, ok := scan.KeyExchangeByProtocolByCipher[protocol]; ok {
if kex, ok := ex[cipher]; ok {
if key := kex.Key; len(key) > 2 {
cid := uint16(key[1])<<8 | uint16(key[2])
if k, ok := NamedCurveStrength[cid]; ok {
kl = k
}
}
}
}
}
return kl
}
//GetCipherConfig extracts a `CipherConfig` from the Cipher's IANA string name
// does some basic sanity checks and returns an error if the input cipher name is not sane
// NOTE however, only IANA names from here are assumed and "supported": https://www.iana.org/assignments/tls-parameters/tls-parameters.txt
func GetCipherConfig(cipher string) (config CipherConfig, err error) {
config.Cipher = cipher
if cipher == "TLS_EMPTY_RENEGOTIATION_INFO_SCSV" || cipher == "TLS_FALLBACK_SCSV" {
return
}
cipher = strings.TrimPrefix(cipher, "TLS_")
cs := strings.Split(cipher, "_WITH_")
if len(cs) != 2 {
return config, fmt.Errorf("Expects a cipher name that contains _WITH_ but got %s", config.Cipher)
}
kxAuth, encMAC := cs[0], cs[1]
config.IsExport = strings.Contains(kxAuth, "EXPORT")
ka := strings.Split(kxAuth, "_")
if len(ka) == 1 {
config.KeyExchange = ka[0]
config.Authentication = ka[0]
}
if len(ka) >= 2 {
if ka[1] == "EXPORT" {
config.KeyExchange = kxAuth
config.Authentication = kxAuth
} else {
config.KeyExchange = ka[0]
config.Authentication = ka[1]
}
}
em := strings.Split(encMAC, "_")
m := em[len(em)-1]
if strings.Contains(m, "SHA") || strings.Contains(m, "MD5") || m == "NULL" {
config.MACPRF = m
config.Encryption = strings.Join(em[:len(em)-1], "_")
} else {
config.Encryption = encMAC
}
return
}
//ScanRequest is a model to describe a given TLS Audit scan
type ScanRequest struct {
CIDRs []string
Config ScanConfig
Day string //Date the scan was run in the format yyyy-mm-dd
ScanID string //Non-empty ScanID means this is a ScanRequest to resume an existing, possibly incomplete, scan
}
//PersistedScanRequest persisted version of ScanRequest
type PersistedScanRequest struct {
Request ScanRequest
Hosts []string
ScanStart time.Time
ScanEnd time.Time
Progress int
}
// //ServerResultSummary is a mini report of scan result
// type ServerResultSummary struct {
// Server string
// HostName string
// Port string
// Grade string
// }
//ScanResultSummary is the summary of a scan result session
type ScanResultSummary struct {
Request ScanRequest
ScanStart time.Time
ScanEnd time.Time
Progress int
HostCount int
PortCount int
BestGrade string
WorstGrade string
HostGrades map[string]string
GradeToHostPorts map[string][]string
}
//Marshall scan request
func (psr PersistedScanRequest) Marshall() []byte {
result := bytes.Buffer{}
gob.Register(PersistedScanRequest{})
err := gob.NewEncoder(&result).Encode(&psr)
if err != nil {
log.Print(err)
}
return result.Bytes()
}
//UnmasharlPersistedScanRequest builds PersistedScanRequest from bytes
func UnmasharlPersistedScanRequest(data []byte) (PersistedScanRequest, error) {
psr := PersistedScanRequest{}
gob.Register(psr)
buf := bytes.NewBuffer(data)
err := gob.NewDecoder(buf).Decode(&psr)
if err != nil {
return psr, err
}
return psr, nil
}
//ScanProgress contains partial scam results with an indication of progress
type ScanProgress struct {
ScanID string
Progress float32
ScanResults []HumanScanResult // this is the latest scan results delta, at the end of scan all cummulative scans are sent
Narrative string //freeflow text
}
//ScanConfig describes details of how the TLS scan should be carried out
type ScanConfig struct {
ProtocolsOnly bool
Timeout int
//Number of Packets per Second to send out during underlying port scan
PacketsPerSecond int
//Suppress certificate output
HideCerts bool
//control whether to produce a running commentary of scan progress or stay quiet till the end
Quiet bool
}
//SecurityScore contains the overall grading of a TLS/SSL port
type SecurityScore struct {
ProtocolScore int
KeyExchangeScore int
CipherEncryptionScore int
CertificateScore int
Grade string
Warnings []string
}
//OrderGrade allows a simple numeric ordering of TLS grades. Actual values don't matter
func (SecurityScore) OrderGrade(grade string) int {
switch grade {
case "A+":
return 120
case "A":
return 118
case "B":
return 116
case "C":
return 114
case "D":
return 112
case "E":
return 110
case "F":
return 108
case "T":
return 106
case "TA+":
return 20
case "TA":
return 18
case "TB":
return 16
case "TC":
return 14
case "TD":
return 12
case "TE":
return 10
case "TF":
return 8
case "U":
return 6
case "Worst": // used to indicate worst case before data
return -200
case "Best": //used to indicate best case before data
return 200
case "":
return 200
default:
return -200
}
}
// KeyExchangeAlgorithm says what it is
type KeyExchangeAlgorithm int
//HostAndPort is a model representing a hostname and a given port
type HostAndPort struct {
Hostname string
Port string
}
// ServerHelloMessage is the TLS server hello message
type ServerHelloMessage struct {
Raw []byte
Vers uint16
Random []byte
SessionId []byte
CipherSuite uint16
CompressionMethod uint8
NextProtoNeg bool
NextProtos []string
OcspStapling bool
Scts [][]byte
TicketSupported bool
SecureRenegotiation []byte
SecureRenegotiationSupported bool
AlpnProtocol string
}
// ServerKeyExchangeMsg is the key exchange message
type ServerKeyExchangeMsg struct {
Raw []byte
Key []byte
}
// HelloAndKey bundles server hello and ServerKeyExchange messages
type HelloAndKey struct {
Hello ServerHelloMessage
Key ServerKeyExchangeMsg
HasKey bool
}
// CertificateMessage simply exporting the internal certificateMsg
type CertificateMessage struct {
Raw []byte
Certificates [][]byte
}
//GetCertificates returns the list of certificates in a TLS certificate message
func (cert CertificateMessage) GetCertificates() (certs []*x509.Certificate, e error) {
for _, c := range cert.Certificates {
cc, err := x509.ParseCertificate(c)
if err != nil {
return certs, err
}
certs = append(certs, cc)
}
return
}
// ScanResult is the scan result of a server TLS settings
type ScanResult struct {
Server string
Port string
SupportedProtocols []uint16
HasCipherPreferenceOrderByProtocol map[uint16]bool
CipherPreferenceOrderByProtocol map[uint16][]uint16
OcspStaplingByProtocol map[uint16]bool
SelectedCipherByProtocol map[uint16]uint16
ALPNByProtocol map[uint16]string
SecureRenegotiationSupportedByProtocol map[uint16]bool
CipherSuiteByProtocol map[uint16][]uint16
ServerHelloMessageByProtocolByCipher map[uint16]map[uint16]ServerHelloMessage
CertificatesPerProtocol map[uint16]CertificateMessage
KeyExchangeByProtocolByCipher map[uint16]map[uint16]ServerKeyExchangeMsg
IsSTARTLS bool
IsSSH bool
SupportsTLSFallbackSCSV bool
}
//UnmarsharlScanResult builds ScanResults from bytes
func UnmarsharlScanResult(data []byte) ([]ScanResult, error) {
sr := []ScanResult{}
gob.Register(sr)
buf := bytes.NewBuffer(data)
err := gob.NewDecoder(buf).Decode(&sr)
if err != nil {
return sr, err
}
return sr, nil
}
//HumanScanResult is a Stringified version of ScanResult
type HumanScanResult struct {
Server string
HostName string
Port string
SupportsTLS bool
SupportedProtocols []string
HasCipherPreferenceOrderByProtocol map[string]bool
CipherPreferenceOrderByProtocol map[string][]string
OcspStaplingByProtocol map[string]bool
SelectedCipherByProtocol map[string]string
ALPNByProtocol map[string]string
SecureRenegotiationSupportedByProtocol map[string]bool
CipherSuiteByProtocol map[string][]string
// ServerHelloMessageByProtocolByCipher map[string]map[string]ServerHelloMessage
CertificatesPerProtocol map[string][]HumanCertificate
// KeyExchangeByProtocolByCipher map[string]map[string]ServerKeyExchangeMsg
IsSTARTLS bool
IsSSH bool
SupportsTLSFallbackSCSV bool
Score SecurityScore
}
//HumanCertificate is a "string" representation of various attributes of a certificate
type HumanCertificate struct {
Subject string
SubjectSerialNo string
SubjectCN string
SubjectAN string
SerialNumber string
Issuer string
PublicKeyAlgorithm string
ValidFrom string
ValidUntil string
Key string
SignatureAlgorithm string
Signature string
OcspStapling bool
RevocationDetail string
}
func getCurve(protocol, cipher uint16, scan ScanResult) string {
curveID := ""
if c, ok := scan.KeyExchangeByProtocolByCipher[protocol]; ok {
if ex, ok := c[cipher]; ok {
key := ex.Key
if len(key) > 4 && key[0] == 3 {
//named curve
cid := uint16(key[1])<<8 | uint16(key[2])
curveID = fmt.Sprintf(" (Named Curve: %s)", NamedCurves[cid])
}
}
}
return fmt.Sprintf("%s (0x%x) %s", CipherSuiteMap[cipher], cipher, curveID)
}
//ToStringStruct returns a string-decoded form of ScanResult
func (s ScanResult) ToStringStruct() (out HumanScanResult) {
out.Server = s.Server
ip, err := net.LookupAddr(s.Server)
if err == nil {
out.HostName = strings.Join(ip, ", ")
}
out.Port = s.Port
out.SupportsTLS = s.SupportsTLS()
for _, p := range s.SupportedProtocols {
out.SupportedProtocols = append(out.SupportedProtocols, TLSVersionMap[p])
}
out.HasCipherPreferenceOrderByProtocol = make(map[string]bool)
for p := range s.HasCipherPreferenceOrderByProtocol {
out.HasCipherPreferenceOrderByProtocol[TLSVersionMap[p]] = s.HasCipherPreferenceOrderByProtocol[p]
}
out.CipherPreferenceOrderByProtocol = make(map[string][]string)
for k, v := range s.CipherPreferenceOrderByProtocol {
ciphers := []string{}
if s.HasCipherPreferenceOrderByProtocol[k] {
for _, c := range v {
ciphers = append(ciphers, fmt.Sprintf("%s,%s", getCurve(k, c, s), scoreCipher(c, k, s)))
}
}
out.CipherPreferenceOrderByProtocol[TLSVersionMap[k]] = ciphers
}
out.OcspStaplingByProtocol = make(map[string]bool)
for k, v := range s.OcspStaplingByProtocol {
out.OcspStaplingByProtocol[TLSVersionMap[k]] = v
}
out.SelectedCipherByProtocol = make(map[string]string)
for k, v := range s.SelectedCipherByProtocol {
out.SelectedCipherByProtocol[TLSVersionMap[k]] = getCurve(k, v, s)
}
out.ALPNByProtocol = make(map[string]string)
for k, v := range s.ALPNByProtocol {
out.ALPNByProtocol[TLSVersionMap[k]] = v
}
out.SecureRenegotiationSupportedByProtocol = make(map[string]bool)
for k, v := range s.SecureRenegotiationSupportedByProtocol {
out.SecureRenegotiationSupportedByProtocol[TLSVersionMap[k]] = v
}
out.CipherSuiteByProtocol = make(map[string][]string)
for k, v := range s.CipherSuiteByProtocol {
ciphers := []string{}
for _, c := range v {
ciphers = append(ciphers, fmt.Sprintf("%s,%s", getCurve(k, c, s), scoreCipher(c, k, s)))
}
out.CipherSuiteByProtocol[TLSVersionMap[k]] = ciphers
}
out.CertificatesPerProtocol = make(map[string][]HumanCertificate)
for p, c := range s.CertificatesPerProtocol {
certs, err := c.GetCertificates()
out.CertificatesPerProtocol[TLSVersionMap[p]] = []HumanCertificate{}
if err != nil {
continue
}
for _, cert := range certs {
certKey := ""
if key, ok := cert.PublicKey.(*rsa.PublicKey); ok {
certKey = fmt.Sprintf("%d bits (e %d)", key.N.BitLen(), key.E)
}
sigLen := len(cert.Signature) - 1
sig := fmt.Sprintf("%x...%x", cert.Signature[:8], cert.Signature[sigLen-8:sigLen])
ocsp := false
if o, ok := s.OcspStaplingByProtocol[p]; ok {
ocsp = o
}
out.CertificatesPerProtocol[TLSVersionMap[p]] = append(out.CertificatesPerProtocol[TLSVersionMap[p]],
HumanCertificate{
Subject: cert.Subject.String(),
SubjectSerialNo: cert.Subject.SerialNumber,
SubjectCN: cert.Subject.CommonName,
SubjectAN: strings.Join(cert.DNSNames, ", "),
SerialNumber: cert.SerialNumber.String(),
Issuer: cert.Issuer.String(),
PublicKeyAlgorithm: cert.PublicKeyAlgorithm.String(),
ValidFrom: cert.NotBefore.String(),
ValidUntil: cert.NotAfter.String(),
Key: certKey,
SignatureAlgorithm: cert.SignatureAlgorithm.String(),
Signature: sig,
OcspStapling: ocsp,
RevocationDetail: revokers(cert),
})
}
}
out.IsSTARTLS = s.IsSTARTLS
out.IsSSH = s.IsSSH
out.SupportsTLSFallbackSCSV = s.SupportsTLSFallbackSCSV
out.Score = s.CalculateScore()
return
}
func revokers(cert *x509.Certificate) string {
revs := []string{}
ocsp := ""
crl := ""
if len(cert.OCSPServer) > 0 {
revs = append(revs, "OCSP")
ocsp = fmt.Sprintf("OCSP: %s ", strings.Join(cert.OCSPServer, ", "))
}
if len(cert.CRLDistributionPoints) > 0 {
revs = append(revs, "CRL")
crl = fmt.Sprintf("CRL: %s ", strings.Join(cert.CRLDistributionPoints, ", "))
}
return fmt.Sprintf("%s. %s%s", strings.Join(revs, " and "), ocsp, crl)
}
//ToJSON returns a JSON-formatted string representation of the ScanResult
func (s ScanResult) ToJSON() (js string) {
return
}
// SupportsTLS determines whether the port on the specified server supports TLS at all
func (s ScanResult) SupportsTLS() bool {
if len(s.SupportedProtocols) == 0 {
return false
}
return true
}
//ToString generates a string output
func (s ScanResult) ToString(config ScanConfig) (result string) {
hn, err := net.LookupAddr(s.Server)
hostname := s.Server
if err == nil {
hostname = strings.Join(hn, ",")
}
result += fmt.Sprintf("%s (%s)\n\tPort: %s\n", s.Server, hostname, s.Port)
if len(s.SupportedProtocols) == 0 {
result += "\tNo supported SSL/TLS protocol found\n"
} else {
sortedSupportedProtocols := s.SupportedProtocols
sort.Slice(sortedSupportedProtocols, func(i, j int) bool { return sortedSupportedProtocols[i] > sortedSupportedProtocols[j] })
for _, tls := range sortedSupportedProtocols {
startTLS := ""
if s.IsSTARTLS {
startTLS = " (STARTTLS)"
}
result += fmt.Sprintf("\t%s%s:\n", TLSVersionMap[tls], startTLS)
result += fmt.Sprintf("\t\tSupports secure renegotiation: %t\n", s.SecureRenegotiationSupportedByProtocol[tls])
result += fmt.Sprintf("\t\tApplication Layer Protocol Negotiation: %s\n", s.ALPNByProtocol[tls])
if !config.ProtocolsOnly {
result += fmt.Sprintf("\t\tHas a cipher preference order: %t\n", s.HasCipherPreferenceOrderByProtocol[tls])
result += fmt.Sprintf("\t\tSelected cipher when all client ciphers (in numerical order) are presented: %s\n", CipherSuiteMap[s.SelectedCipherByProtocol[tls]])
if s.HasCipherPreferenceOrderByProtocol[tls] {
result += "\t\tSupported Ciphersuites (in order of preference):\n"
for _, cipher := range s.CipherPreferenceOrderByProtocol[tls] {
result += fmt.Sprintf("\t\t\t%s - %s\n", getCurve(tls, cipher, s), scoreCipher(cipher, tls, s))
}
} else {
result += "\n\t\tSupported Ciphersuites (server has no order preference):\n"
for _, cipher := range s.CipherSuiteByProtocol[tls] {
result += fmt.Sprintf("\t\t\t%s - %s\n", getCurve(tls, cipher, s), scoreCipher(cipher, tls, s))
}
}
}
if certM, ok := s.CertificatesPerProtocol[tls]; !config.HideCerts && ok {
certs, err := certM.GetCertificates()
if err == nil && len(certs) > 0 {
result += "\tCertificate Information:\n"
cert := certs[0]
result += "\t\tSubject: " + cert.Subject.String() + "\n\t\tSubject Serial Number: " + cert.Subject.SerialNumber + "\n"
result += "\t\tSubject Common names: " + cert.Subject.CommonName + "\n"
result += "\t\tAlternative names: " + strings.Join(cert.DNSNames, ", ") + "\n"
result += fmt.Sprintf("\t\tSerial Number: %x\n", cert.SerialNumber)
result += "\t\tValid from: " + cert.NotBefore.String() + "\n"
result += "\t\tValid until: " + cert.NotAfter.String() + "\n"
result += "\t\tIssuer: " + cert.Issuer.String() + "\n"
result += "\t\tSignature algorithm: " + cert.SignatureAlgorithm.String() + "\n"
sigLen := len(cert.Signature) - 1
result += fmt.Sprintf("\t\tSignature: %x...%x\n", cert.Signature[:8], cert.Signature[sigLen-8:sigLen])
if key, ok := cert.PublicKey.(*rsa.PublicKey); ok {
result += fmt.Sprintf("\t\tKey: %d bits (e %d)\n", key.N.BitLen(), key.E)
}
result += fmt.Sprintf("\t\tSupports OCSP stapling: %t\n", s.OcspStaplingByProtocol[tls])
result += fmt.Sprintf("\t\tChain length: %d\n", len(certs))
if len(certs) > 1 {
for i := 0; i < len(certs); i++ {
c := certs[i]
result += fmt.Sprintf("\t\t\tChain %d (CA: %t): %s. (Expires: %s)\n", len(certs)-i-1, c.IsCA, c.Subject.String(), c.NotAfter.String())
}
}
}
}
}
}
score := s.CalculateScore()
result += fmt.Sprintf("\nOverall Grade for %s (%s) on Port %s: %s\n", s.Server, hostname, s.Port, score.Grade)
result += fmt.Sprintf("Protocol score: %d, Cipher key exchange score: %d, Cipher encryption score: %d\n", score.ProtocolScore, score.KeyExchangeScore, score.CipherEncryptionScore)
return
}
func (s ScanResult) String() string {
return s.ToString(ScanConfig{})
}
//CalculateScore computes an SSLLab-esque score for the scan
// https://github.com/ssllabs/research/wiki/SS
// https://community.qualys.com/docs/DOC-6321-ssl-labs-grading-2018
//SecurityScoreL-Server-Rating-Guide contains the overall grading of a TLS/SSL port
func (s *ScanResult) CalculateScore() (result SecurityScore) {
max := uint16(0)
min := uint16(1000)
for _, p := range s.SupportedProtocols {
if p > max {
max = p
}
if p < min {
min = p
}
}
highProtocol := scoreProtocol(max)
lowProtocol := scoreProtocol(min)
result.ProtocolScore = (highProtocol + lowProtocol) / 2
if s.SupportsTLS() {
cipherKeyExchangeScore := 1000
cipherStrengthMinScore := 1000
cipherStrengthMaxScore := 0
for _, p := range s.SupportedProtocols {
c := s.SelectedCipherByProtocol[p]
selectMinimalKeyExchangeScore(c, p, &cipherKeyExchangeScore, &cipherStrengthMinScore, &cipherStrengthMaxScore, *s)
if s.HasCipherPreferenceOrderByProtocol[p] {
for _, c := range s.CipherPreferenceOrderByProtocol[p] {
selectMinimalKeyExchangeScore(c, p, &cipherKeyExchangeScore, &cipherStrengthMinScore, &cipherStrengthMaxScore, *s)
}
} else {
for _, c := range s.CipherSuiteByProtocol[p] {
selectMinimalKeyExchangeScore(c, p, &cipherKeyExchangeScore, &cipherStrengthMinScore, &cipherStrengthMaxScore, *s)
}
}
}
result.KeyExchangeScore = cipherKeyExchangeScore
result.CipherEncryptionScore = (cipherStrengthMaxScore + cipherStrengthMinScore) / 2
result.Grade = toTLSGrade((30*result.ProtocolScore + 30*result.KeyExchangeScore + 40*result.CipherEncryptionScore) / 100)
scoreCertificate(&result, s)
result.adjustScore(*s)
} else {
//No TLS
result.Grade = toTLSGrade(-1)
}
return
}
func scoreCertificate(score *SecurityScore, scan *ScanResult) {
for _, c := range scan.CertificatesPerProtocol {
certs, err := c.GetCertificates()
if err != nil || len(certs) == 0 {
println("Certificate Error: ", err.Error())
cap(score, "T", "Error in obtaining certificates. Untrusted")
return
}
_, err = certs[0].Verify(x509.VerifyOptions{
Roots: nil,
})
if err != nil {
println("Certificate Error: ", err.Error(), certs[0].Subject.String())
cap(score, "T", "Fails common public CA verification. "+err.Error())
return
}
}
score.CertificateScore = 100
println("Final certificate score ", score.CertificateScore)
}
func scoreProtocol(protocol uint16) (score int) {
switch protocol {
case VersionSSL20:
score = 0
case tls.VersionSSL30:
score = 80
case tls.VersionTLS10:
score = 90
case tls.VersionTLS11:
score = 95
case tls.VersionTLS12:
score = 100
case VersionTLS13:
score = 100
}
return
}
//SecurityScore contains the overall grading of a TLS/SSL port
func (score *SecurityScore) adjustScore(scan ScanResult) {
if !supportsTLS12(scan) {
cap(score, "C", "TLS v1.2 not suported")
}
if !supportsPFS(scan) {
cap(score, "B", "Forward Secrecy not suported")
}
if !supportsAEAD(scan) {
cap(score, "B", "Authenticated Encryption (AEAD) not suported")
}
adjustUsingCertificateSecurity(score, scan)
if scan.SupportsTLSFallbackSCSV {
if score.Grade == "A" {
score.Grade = "A+"
} else if score.Grade == "TA" {
score.Grade = "TA+"
}
}
}
func adjustUsingCertificateSecurity(score *SecurityScore, scan ScanResult) {
for _, c := range scan.CertificatesPerProtocol {
certs, err := c.GetCertificates()
if err != nil {
cap(score, "T", "Error in obtaining certificates. Untrusted")
return
}
for _, cert := range certs {
publicKey := cert.PublicKey
switch cert.SignatureAlgorithm {
case signatureRSA:
if pk, ok := publicKey.(*rsa.PublicKey); ok {
bitlength := pk.N.BitLen()
switch {
case bitlength >= 1024 && bitlength < 2048:
cap(score, "B", fmt.Sprintf("Public key length is %d (< 2048)", bitlength))
case bitlength < 1024:
cap(score, "F", fmt.Sprintf("Public key length is %d (< 1024)", bitlength))
}
} else {
cap(score, "T", fmt.Sprintf("Got malformed public key format"))
}
case signatureECDSA:
if pk, ok := publicKey.(*ecdsa.PublicKey); ok {
bitlength := pk.Y.BitLen()
switch {
case bitlength >= 1024 && bitlength < 2048:
cap(score, "B", fmt.Sprintf("Public key length is %d (< 2048)", bitlength))
case bitlength < 1024:
cap(score, "F", fmt.Sprintf("Public key length is %d (< 1024)", bitlength))
}
} else {
cap(score, "T", fmt.Sprintf("Got malformed public key format"))
}
case signatureDSA:
if pk, ok := publicKey.(*dsa.PublicKey); ok {
bitlength := pk.Y.BitLen()
switch {
case bitlength >= 1024 && bitlength < 2048:
cap(score, "B", fmt.Sprintf("Public key length is %d (< 2048)", bitlength))
case bitlength < 1024:
cap(score, "F", fmt.Sprintf("Public key length is %d (< 1024)", bitlength))
}
} else {
cap(score, "T", fmt.Sprintf("Got malformed public key format"))
}
case signatureAnonymous:
cap(score, "T", "Using anonymous signature algorithm")
}
sigAlgo := cert.SignatureAlgorithm.String()
switch {
case strings.Contains(sigAlgo, "MD"): //cap MD2 and MD5 signatures to F
cap(score, "T", fmt.Sprintf("Insecure/Untrusted %s signature algorithm", sigAlgo))
case strings.Contains(sigAlgo, "SHA1") || strings.Contains(sigAlgo, "SHA-1"):
cap(score, "T", fmt.Sprintf("Insecure/Untrusted %s signature algorithm", sigAlgo))
}
}
}
}
//SecurityScore contains the overall grading of a TLS/SSL port
func cap(score *SecurityScore, grade, reason string) {
score.Warnings = append(score.Warnings, fmt.Sprintf("%s. Grade capped to %s", reason, grade))
if grade == "T" && score.OrderGrade(score.Grade) > score.OrderGrade("T") {
score.Grade = "T" + score.Grade
} else if strings.HasPrefix(score.Grade, "T") && score.OrderGrade(score.Grade) > score.OrderGrade("T"+grade) {
score.Grade = "T" + grade
} else if score.OrderGrade(score.Grade) > score.OrderGrade(grade) {
score.Grade = grade
}
}
func supportsTLS12(scan ScanResult) (yes bool) {
for _, p := range scan.SupportedProtocols {
if p == tls.VersionTLS12 {
yes = true
break
}
}
return
}
//check Forward Secrecy support
func supportsPFS(scan ScanResult) bool {
pfs := true
for _, p := range scan.SupportedProtocols {
cipher := scan.SelectedCipherByProtocol[p]
cc, _ := GetCipherConfig(CipherSuiteMap[cipher])
if !strings.Contains(cc.KeyExchange, "DHE") {
pfs = false
break
}
if !pfs {
break
}
}
return pfs
}
//check for Authenticate Encryption with Associated Data (AEAD) support
func supportsAEAD(scan ScanResult) bool {
aead := false
aeadProtocols := []uint16{tls.VersionTLS12}
for _, aeP := range aeadProtocols {
for _, p := range scan.SupportedProtocols {
if p == aeP {
var ciphers []uint16
if scan.HasCipherPreferenceOrderByProtocol[p] {
ciphers = scan.CipherPreferenceOrderByProtocol[p]
} else {
ciphers = scan.CipherSuiteByProtocol[p]
}
for _, c := range ciphers {
cc, _ := GetCipherConfig(CipherSuiteMap[c])
if strings.Contains(cc.Encryption, "GCM") || strings.Contains(cc.Encryption, "POLY1305") || strings.Contains(cc.Encryption, "CCM") {
aead = true
break
}
}
if aead {
break
}
}
}
}
return aead
}
func toTLSGrade(score int) (grade string) {
switch {
case score >= 80:
grade = "A"
case score >= 65:
grade = "B"
case score >= 50:
grade = "C"
case score >= 35:
grade = "D"
case score >= 20:
grade = "E"
case score < 0:
grade = "U" // for untrusted, possibly plaintext connection
default:
grade = "F"
}
return
}
func mapKeyExchangeKeylengthToScore(kl int) (score int) {
switch {
case kl >= 4096:
score = 100
case kl >= 2048:
score = 90
case kl >= 1024:
score = 80
case kl >= 512:
score = 40
case kl > 0:
score = 20
default:
score = 0
}
return
}
func mapEncKeyLengthToScore(kl int) (score int) {
switch {
case kl >= 256:
score = 100
case kl >= 128:
score = 80
case kl > 0:
score = 20
default:
score = 0
}
return
}
func selectMinimalKeyExchangeScore(cipher, protocol uint16, keyExchangeScore, cipherStrengthMinScore, cipherStrengthMaxScore *int, scan ScanResult) {
if c, ok := CipherSuiteMap[cipher]; ok {
if cc, err := GetCipherConfig(c); err == nil {
kl := cc.GetKeyExchangeKeyLength(cipher, protocol, scan)
if score := mapKeyExchangeKeylengthToScore(kl); score < *keyExchangeScore {
*keyExchangeScore = score
}
ks := cc.GetEncryptionKeyLength()
score := mapEncKeyLengthToScore(ks)
if *cipherStrengthMinScore > score {
*cipherStrengthMinScore = score
}
if *cipherStrengthMaxScore < score {
*cipherStrengthMaxScore = score
}
}
}
}
func scoreCipher(cipher, protocol uint16, scan ScanResult) (score string) {
if cc, err := GetCipherConfig(CipherSuiteMap[cipher]); err == nil {
s := (40*mapEncKeyLengthToScore(cc.GetEncryptionKeyLength()) + 30*scoreProtocol(protocol) +
30*mapKeyExchangeKeylengthToScore(cc.GetKeyExchangeKeyLength(cipher, protocol, scan))) / 100
return toTLSGrade(s)
}
return
}
//TLSAuditConfig is the configuration of the nmap runner
type TLSAuditConfig struct {
DailySchedules []string `yaml:"dailySchedules"` // in the format 13:45, 01:20 etc
DB string `yaml:"db"`
Table string `yaml:"hostTable"`
IsProduction bool `yaml:"isProduction"`
PacketsPerSecond int `yaml:"packetsPerSecond"`
Timeout int `yaml:"timeout"`
CIDRRanges []string `yaml:"cidrRanges"`
}
//TLSAuditSnapshot a snapshot representing the results of a given scan session
type TLSAuditSnapshot struct {
Timestamp time.Time
ScanResults []ScanResult
}