aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/feed.go
blob: 1c15a0a372667b1b333bc6f0c8d59b07a55b5a13 (plain)
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
package feed

import (
  "encoding/json"
  "fmt"
  // "strconv"
  "regexp"
  "time"
)

const (
  CveType = iota  // CVE data type
  MitreFormat     // MITRE data format
  DataVersion40   // Version 4.0

  OrNodeOp        // OR operator
  AndNodeOp       // And operator

  AdjacentNetwork // Adjacent Network attack vector.
  Network         // Network attack vector.
  Local           // Local attack vector.
  Physical        // Physical attack vector.

  None            // no priv req/user interaction
  Low             // low complexity/priv req
  Medium          // medium complexity/priv req
  High            // high complexity/priv req

  Required        // user interaction required

  Changed         // scope changed
  Unchanged       // scope unchanged

  Complete        // complete integrity impact
  Partial         // partial integrity impact

  Critical        // critical severity

  CvssVersion31   // CVSS version 3.1
  CvssVersion20   // CVSS version 2.0

  Single          // Single authentication
)

// TODO: parse cpe, cvss vectors (v3.x, v2)

// Data type for NVD feeds and feed items.
type DataType int

// Unmarshal DataType from JSON.
func (me *DataType) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "CVE":
    *me = CveType
  default:
    // return error
    return fmt.Errorf("unknown data type: %s", s)
  }

  // return success
  return nil
}

// Data format for NVD feeds and feed items.
type DataFormat int

// Unmarshal DataFormat from JSON.
func (me *DataFormat) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "MITRE":
    *me = MitreFormat
  default:
    // return error
    return fmt.Errorf("unknown data format: %s", s)
  }

  // return success
  return nil
}

// Data version for NVD feeds and feed items.
type DataVersion int

// Unmarshal DataVersion from JSON.
func (me *DataVersion) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "4.0":
    *me = DataVersion40
  default:
    // return error
    return fmt.Errorf("unknown data version: %s", s)
  }

  // return success
  return nil
}

// partial timestamp
type PartialTime time.Time

var partialTimeRe = regexp.MustCompile("\\A\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}Z\\z")

// Unmarshal partial timestamp from JSON.
func (me *PartialTime) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // match partial string regex
  if !partialTimeRe.MatchString(s) {
    return fmt.Errorf("invalid partial time string: %s", s)
  }

  // correct string suffix
  s = s[0:16] + ":00Z"

  // unmarshal time
  var t time.Time
  if err := t.UnmarshalText([]byte(s)); err != nil {
    return err
  }

  // return success
  return nil
}

// Configuration node boolean operator.
type NodeOp int

// Unmarshal DataVersion from JSON.
func (me *NodeOp) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "AND":
    *me = AndNodeOp
  case "OR":
    *me = OrNodeOp
  default:
    // return error
    return fmt.Errorf("unknown operator: %s", s)
  }

  // return success
  return nil
}

// CVSS attack vector
type AttackVector int

// Unmarshal CVSS attack vector from JSON.
func (me *AttackVector) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "ADJACENT_NETWORK":
    *me = AdjacentNetwork
  case "LOCAL":
    *me = Local
  case "NETWORK":
    *me = Network
  case "PHYSICAL":
    *me = Physical
  default:
    // return error
    return fmt.Errorf("unknown attack vector: %s", s)
  }

  // return success
  return nil
}

// CVSS attack complexity
type AttackComplexity int

// Unmarshal CVSS attack complexity from JSON.
func (me *AttackComplexity) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "LOW":
    *me = Low
  case "MEDIUM":
    *me = Medium
  case "HIGH":
    *me = High
  default:
    // return error
    return fmt.Errorf("unknown attack complexity: %s", s)
  }

  // return success
  return nil
}

// CVSS privileges required
type PrivilegesRequired int

// Unmarshal CVSS privileges required from JSON.
func (me *PrivilegesRequired) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "NONE":
    *me = None
  case "LOW":
    *me = Low
  case "MEDIUM":
    *me = Medium
  case "HIGH":
    *me = High
  default:
    // return error
    return fmt.Errorf("unknown privileges required: %s", s)
  }

  // return success
  return nil
}

// CVSS user interaction
type UserInteraction int

// Unmarshal CVSS user interaction from JSON.
func (me *UserInteraction) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "NONE":
    *me = None
  case "REQUIRED":
    *me = Required
  default:
    // return error
    return fmt.Errorf("unknown user interaction: %s", s)
  }

  // return success
  return nil
}

// CVSS scope
type Scope int

// Unmarshal CVSS scope from JSON.
func (me *Scope) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "CHANGED":
    *me = Changed
  case "UNCHANGED":
    *me = Unchanged
  default:
    // return error
    return fmt.Errorf("unknown scope: %s", s)
  }

  // return success
  return nil
}

// CVSS integrity/availability impact level
type ImpactLevel int

// Unmarshal CVSS integrity/availability impact level from JSON.
func (me *ImpactLevel) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "NONE":
    *me = None
  case "LOW":
    *me = Low
  case "PARTIAL":
    *me = Partial
  case "HIGH":
    *me = High
  case "COMPLETE":
    *me = Complete
  default:
    // return error
    return fmt.Errorf("unknown impact level: %s", s)
  }

  // return success
  return nil
}

// CVSS score
type Score float32

// Unmarshal CVSS score from JSON.
func (me *Score) UnmarshalJSON(b []byte) error {
  // decode float, check for error
  var v float32
  if err := json.Unmarshal(b, &v); err != nil {
    return err
  }

  // check score
  if v < 0.0 || v > 10.0 {
    return fmt.Errorf("score out of bounds: %f", v)
  }

  // save result, return success
  *me = Score(v)
  return nil
}

// CVSS severity
type Severity int

// Unmarshal CVSS severity from JSON.
func (me *Severity) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "LOW":
    *me = Low
  case "MEDIUM":
    *me = Medium
  case "HIGH":
    *me = High
  case "CRITICAL":
    *me = Critical
  default:
    // return error
    return fmt.Errorf("unknown severity: %s", s)
  }

  // return success
  return nil
}

type AccessVector int

// Unmarshal CVSS V2 access vector from JSON.
func (me *AccessVector) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "ADJACENT_NETWORK":
    *me = AdjacentNetwork
  case "LOCAL":
    *me = Local
  case "NETWORK":
    *me = Network
  default:
    // return error
    return fmt.Errorf("unknown CVSS access vector: %s", s)
  }

  // return success
  return nil
}

// CVSS V2 attack complexity
type AccessComplexity int

// Unmarshal CVSS V2 access complexity from JSON.
func (me *AccessComplexity) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "LOW":
    *me = Low
  case "MEDIUM":
    *me = Medium
  case "HIGH":
    *me = High
  default:
    // return error
    return fmt.Errorf("unknown access complexity: %s", s)
  }

  // return success
  return nil
}


// CVSS V2 authentication
type Authentication int

// Unmarshal CVSS V2 authentication from JSON.
func (me *Authentication) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "NONE":
    *me = None
  case "SINGLE":
    *me = Single
  default:
    // return error
    return fmt.Errorf("unknown authentication: %s", s)
  }

  // return success
  return nil
}

// CVE metadata
type CveMetadata struct {
  // CVE ID
  Id        string `json:"ID"`

  // CVE assigner email address
  Assigner  string `json:"ASSIGNER"`
}

// CVE description string.
type Description struct {
  // Language code
  Lang  string `json:"lang"`

  // String value
  Value string `json:"value"`
}

// CVE problem type
type CveProblemType struct {
  // problem type descriptions
  Descriptions []Description `json:"description"`
}

// Slice of CVE problem types.
type CveProblemTypes struct {
  // problem types
  ProblemTypes []CveProblemType `json:"problemtype_data"`
}

// CVE reference
type CveReference struct {
  // reference URL
  Url       string    `json:"url"`

  // reference name
  Name      string    `json:"name"`

  // reference source
  RefSource string    `json:"refsource"`

  // tags
  Tags      []string  `json:"tags"`
}

// Slice of CVE references
type CveReferences struct {
  References []CveReference `json:"reference_data"`
}

// CVE item descriptions
type CveDescription struct {
  // slice of descriptions
  Descriptions  []Description `json:"description_data"`
}

// CVE data
type Cve struct {
  // feed data type
  DataType      DataType        `json:"CVE_data_type"`

  // feed data format
  DataFormat    DataFormat      `json:"CVE_data_format"`

  // feed data format version
  DataVersion   DataVersion     `json:"CVE_data_version"`

  // CVE metadata
  Metadata      CveMetadata     `json:"CVE_data_meta"`

  // CVE problem types
  ProblemTypes CveProblemTypes  `json:"problemtype"`

  // CVE references
  References   CveReferences    `json:"references"`

  // CVE description
  Description  CveDescription   `json:"description"`
}

// CPE match
type CpeMatch struct {
  // Vulnerable?
  Vulnerable bool `json:"vulnerable"`

  VersionEndExcluding string `json:"versionEndExcluding"`

  // CPE URI (FIXME: decode this)
  Cpe23Uri string `json:"cpe23Uri"`

  // CPE names (not sure if this is correct)
  Names []string `json:"cpe_name"`
}

// CVE item configuration node
type ConfigurationNode struct {
  // node operator
  Operator NodeOp `json:"operator"`

  // node children
  Children []ConfigurationNode `json:"children"`

  CpeMatches []CpeMatch `json:"cpe_match"`
}

// CVE item configurations
type ItemConfigurations struct {
  // data version
  DataVersion DataVersion `json:"CVE_data_version"`

  // slice of configuration nodes
  Nodes []ConfigurationNode `json:"nodes"`
}

// CVSS version.
type CvssV3Version int

// Unmarshal CVSS version from JSON.
func (me *CvssV3Version) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "3.1":
    *me = CvssVersion31
  default:
    // return error
    return fmt.Errorf("unknown CVSS V3 version: %s", s)
  }

  // return success
  return nil
}

// CVSS V2 version.
type CvssV2Version int

// Unmarshal CVSS version from JSON.
func (me *CvssV2Version) UnmarshalJSON(b []byte) error {
  // decode string, check for error
  var s string
  if err := json.Unmarshal(b, &s); err != nil {
    return err
  }

  // check value
  switch s {
  case "2.0":
    *me = CvssVersion20
  default:
    // return error
    return fmt.Errorf("unknown CVSS V2 version: %s", s)
  }

  // return success
  return nil
}

// CVSS V3
type CvssV3 struct {
  // CVSS V3 version
  Version CvssV3Version `json:"version"`

  // CVSS V3 vector string (FIXME: add custom type)
  VectorString string `json:"vectorString"`

  // attack vector
  AttackVector AttackVector `json:"attackVector"`

  // attack complexity
  AttackComplexity AttackComplexity `json:"attackComplexity"`

  // privileges required
  PrivilegesRequired PrivilegesRequired `json:"privilegesRequired"`

  // user interaction
  UserInteraction UserInteraction `json:"userInteraction"`

  // scope
  Scope Scope `json:"scope"`

  // integrity impact
  IntegrityImpact ImpactLevel `json:"integrityImpact"`

  // availability impact
  AvailabilityImpact ImpactLevel `json:"availabilityImpact"`

  // base score
  BaseScore Score `json:"baseScore"`

  // base severity
  BaseSeverity Severity `json:"baseSeverity"`
}

// CVSS V3 base metrics
type BaseMetricV3 struct {
  CvssV3                CvssV3  `json:"cvssV3"`
  ExploitabilityScore   Score   `json:"exploitabilityScore"`
  ImpactScore           Score   `json:"impactScore"`
}

// CVSS V2
type CvssV2 struct {
  // CVSS V2 version
  Version CvssV2Version `json:"version"`

  // CVSS V3 vector string (FIXME: add custom type)
  VectorString string `json:"vectorString"`

  // attack vector
  AccessVector AccessVector `json:"accessVector"`

  // attack complexity
  AccessComplexity AccessComplexity `json:"accessComplexity"`

  // authentication
  Authentication Authentication `json:"authentication"`

  ConfidentialityImpact ImpactLevel `json:"confidentialityImpact"`
  IntegrityImpact ImpactLevel `json:"integrityImpact"`
  AvailabilityImpact ImpactLevel `json:"availabilityImpact"`

  // base score
  BaseScore Score `json:"baseScore"`
}

// CVSS V2 base metrics
type BaseMetricV2 struct {
  CvssV2                  CvssV2    `json:"cvssV2"`
  severity                Severity  `json:"severity"`
  ExploitabilityScore     Score     `json:"impactScore"`
  ImpactScore             Score     `json:"impactScore"`
  InsufficientInfo        bool      `json:"acInsufInfo"`
  ObtainAllPrivilege      bool      `json:"obtainAllPrivilege"`
  ObtainUserPrivilege     bool      `json:"obtainUserPrivilege"`
  ObtainOtherPrivilege    bool      `json:"obtainOtherPrivilege"`
  UserInteractionRequired bool      `json:"userInteractionRequired"`
}

// Item impact
type Impact struct {
  // CVSS V3 base metrics
  BaseMetricV3 BaseMetricV3 `json:"baseMetricV3"`

  // CVSS V2 base metrics
  BaseMetricV2 BaseMetricV2 `json:"baseMetricV2"`
}

// CVE feed item
type Item struct {
  // item CVE data
  Cve Cve `json:"cve"`

  // item configuration
  Configurations ItemConfigurations `json:"configurations"`

  // item impact
  Impact Impact `json:"impact"`

  // item published date
  PublishedDate PartialTime `json:"publishedDate"`

  // last modification date
  LastModifiedDate PartialTime `json:"lastModifiedDate"`
}

// NVD feed
type Feed struct {
  // feed data type
  DataType      DataType    `json:"CVE_data_type"`

  // feed data format
  DataFormat    DataFormat  `json:"CVE_data_format"`

  // feed data format version
  DataVersion   DataVersion `json:"CVE_data_version"`

  // number of CVEs in feed
  NumCVEs       uint64      `json:"CVE_data_numberOfCVEs,string"`

  // data timestamp
  Timestamp     PartialTime `json:"CVE_data_timestamp"`

  // CVE items
  Items         []Item      `json:"CVE_Items"`
}