forked from cybeats/sbomgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvex.json
More file actions
2207 lines (2207 loc) · 89.9 KB
/
vex.json
File metadata and controls
2207 lines (2207 loc) · 89.9 KB
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
{
"metadata": {
"timestamp": "2024-11-14T22:01:01.227913+00:00",
"tools": [
{
"name": "csv2vex",
"vendor": "Cybeats Technologies",
"version": "0.1.0"
},
{
"externalReferences": [
{
"type": "build-system",
"url": "https://github.com/CycloneDX/cyclonedx-python-lib/actions"
},
{
"type": "distribution",
"url": "https://pypi.org/project/cyclonedx-python-lib/"
},
{
"type": "documentation",
"url": "https://cyclonedx-python-library.readthedocs.io/"
},
{
"type": "issue-tracker",
"url": "https://github.com/CycloneDX/cyclonedx-python-lib/issues"
},
{
"type": "license",
"url": "https://github.com/CycloneDX/cyclonedx-python-lib/blob/main/LICENSE"
},
{
"type": "release-notes",
"url": "https://github.com/CycloneDX/cyclonedx-python-lib/blob/main/CHANGELOG.md"
},
{
"type": "vcs",
"url": "https://github.com/CycloneDX/cyclonedx-python-lib"
},
{
"type": "website",
"url": "https://github.com/CycloneDX/cyclonedx-python-lib/#readme"
}
],
"name": "cyclonedx-python-lib",
"vendor": "CycloneDX",
"version": "7.6.2"
}
]
},
"serialNumber": "urn:uuid:ede93eee-167e-47bf-a6ab-999ce4163183",
"version": 1,
"vulnerabilities": [
{
"advisories": [
{
"title": "Michael Schmitt",
"url": "fields.com"
}
],
"bom-ref": "BomRef.4483974322100295.5489007557709505",
"created": "1993-04-29T00:00:00-04:00",
"cwes": [
74,
192,
230
],
"description": "Sister own dog day. School own push official mother including teacher. Phone audience program kind themselves.",
"detail": "Knowledge store its attorney. Much usually pull money box decide. Reduce home history around nation. Development hot feel.",
"id": "00226c67-77b3-4630-a3b9-f80b81aec873",
"properties": [
{
"name": "random1",
"value": "nicholas baker"
},
{
"name": "random2",
"value": "pamela sanders"
},
{
"name": "random3",
"value": "jeremy blake"
}
],
"published": "2015-07-16T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Deborah Navarro",
"url": "wilson.info"
}
}
],
"recommendation": "Republican cup bar behavior sing energy throw like. Such manager well trade meeting young outside. At stock task money special. Always win beat hospital. How culture book against. Take apply half successful environmental since.",
"updated": "2008-08-13T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Mrs. Lori Ritter PhD",
"url": "hernandez-wolf.net"
}
],
"bom-ref": "BomRef.047770659157231665.018807250740256243",
"created": "1988-03-22T00:00:00-05:00",
"cwes": [
39,
140,
309
],
"description": "Whether cut risk personal. List nor game partner card fact. Single past until serious. Assume organization real section film list reach. Suddenly while speech send avoid phone major often. Among cut fish machine development group.",
"detail": "Full matter wonder body adult address first. Season build thousand benefit player worker. Military decade to professor page arm reveal.",
"id": "05900327-7006-4d5a-afe0-b599d7cbe951",
"properties": [
{
"name": "random1",
"value": "erika short"
},
{
"name": "random2",
"value": "keith perkins"
},
{
"name": "random3",
"value": "kevin richard"
}
],
"published": "2012-12-07T00:00:00-05:00",
"ratings": [
{
"source": {
"name": "Adam Moore",
"url": "compton.com"
}
}
],
"recommendation": "Imagine top road sit feeling girl. Relate help care bank effect reality itself political. Indeed ten much enough protect statement. Even money use society. Now nearly wish rule draw apply price news. Voice buy reach bed reality best appear.",
"updated": "1972-06-24T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Molly Lowery",
"url": "taylor.com"
}
],
"bom-ref": "BomRef.7999520863109765.3266188530962608",
"created": "1993-12-12T00:00:00-05:00",
"cwes": [
1,
263,
423
],
"description": "Surface marriage right. During speak seven reduce get contain moment. Often none leader wife drug threat painting. Eye deal discussion coach director respond. Finish year citizen event event.",
"detail": "Employee allow thank government minute bill effect. Prevent recent form agree everybody daughter that. Four clearly citizen music ever hospital medical generation. Tell nature notice own human. Administration commercial grow agent ball car. Information story child usually southern.",
"id": "0bfe5ccc-13b8-49f9-9a1c-66cd2988c796",
"properties": [
{
"name": "random1",
"value": "debbie jones"
},
{
"name": "random2",
"value": "pamela davenport"
},
{
"name": "random3",
"value": "john haas"
}
],
"published": "2019-05-27T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Grant Nichols",
"url": "perez.net"
}
}
],
"recommendation": "Instead act out new price religious response. Management manager letter kind suggest him push. Front learn indeed. Defense mean dinner though crime let effort member.",
"updated": "2010-08-11T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Johnny Hayes",
"url": "odonnell.info"
}
],
"bom-ref": "BomRef.3786154213451747.7653689808276339",
"created": "1973-05-10T00:00:00-04:00",
"cwes": [
72,
149,
194
],
"description": "Different section second alone represent if Mr. Themselves marriage product behind cost. Bank TV traditional official source street. Research dream current answer lay.",
"detail": "Lay money enough present born generation fish. Watch degree newspaper. Training keep prevent less several. Shoulder some they letter prove its lawyer. Group yes factor chance determine. Bag capital movie leg surface reason.",
"id": "0caa7f8f-871e-48b6-bfd6-81538d213be6",
"properties": [
{
"name": "random1",
"value": "teresa wheeler"
},
{
"name": "random2",
"value": "cheryl scott"
},
{
"name": "random3",
"value": "krista woodard"
}
],
"published": "2005-06-05T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Kevin Williams",
"url": "cooper.com"
}
}
],
"recommendation": "Participant big whatever also. President kind performance within. Four western hit hard phone range strong.",
"updated": "1979-01-12T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Mr. Aaron Miranda DDS",
"url": "wright.com"
}
],
"bom-ref": "BomRef.31609638896155956.0016787649699793183",
"created": "2008-12-23T00:00:00-05:00",
"cwes": [
286,
330,
454
],
"description": "Strong enjoy blue late television can. Less letter tend perform remember. Popular drive truth address some so large hit. Positive decade seat.",
"detail": "Democrat indicate result cut itself follow name. Ever eye believe join teacher table. Road hard public concern.",
"id": "0f0008e0-1e08-4aa5-acce-a9f836f41412",
"properties": [
{
"name": "random1",
"value": "annette mcdonald"
},
{
"name": "random2",
"value": "kristopher thomas"
},
{
"name": "random3",
"value": "kari robbins"
}
],
"published": "1985-06-07T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Kyle Schmidt",
"url": "mitchell-bowen.info"
}
}
],
"recommendation": "Community four true on. Deep drop member talk level example can. Congress floor by.",
"updated": "2010-11-11T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Brian Singh",
"url": "cohen-sanders.com"
}
],
"bom-ref": "BomRef.8338380668425189.953077211408776",
"created": "1978-10-24T00:00:00-04:00",
"cwes": [
108,
291,
317
],
"description": "Individual sport decision. Government over notice prepare station six. To effect recently receive test bad ask. State for event career.",
"detail": "Political where practice cup do just. Generation situation authority cultural vote red response. Inside right eight remember authority determine give. Common society eat skill. Ten girl behind among but eye address. Should financial man add practice.",
"id": "1023af06-abb6-4553-85f0-40e50e4aa90d",
"properties": [
{
"name": "random1",
"value": "sharon franklin"
},
{
"name": "random2",
"value": "michelle jackson"
},
{
"name": "random3",
"value": "bradley cohen"
}
],
"published": "2015-01-30T00:00:00-05:00",
"ratings": [
{
"source": {
"name": "Melissa Fleming",
"url": "duran-mathews.com"
}
}
],
"recommendation": "Mind collection group vote become. Close my now pattern mission industry. Against box student prove. Police the American. Top save Republican head. Hotel be reality another soon. Bank network poor whole a expert store.",
"updated": "1972-05-13T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Benjamin Williams",
"url": "henry-cortez.info"
}
],
"bom-ref": "BomRef.6563093858561145.2501138262002043",
"created": "2002-11-17T00:00:00-05:00",
"cwes": [
112,
356,
483
],
"description": "Beat part tell pull lot return oil. Record form purpose southern perform agreement trial power. Character hand summer action true art year. Peace culture trial laugh.",
"detail": "Until indeed in character maintain. Word study society month me. Project age within. Dark charge certain beat. Amount someone study test mother collection. Cell explain customer of water reason nothing.",
"id": "11bc6d2b-4292-4659-83ff-dfdfada35e85",
"properties": [
{
"name": "random1",
"value": "megan martin"
},
{
"name": "random2",
"value": "deborah white"
},
{
"name": "random3",
"value": "wayne mayer"
}
],
"published": "1994-08-08T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Danielle Smith",
"url": "decker.org"
}
}
],
"recommendation": "Growth need black many year. Issue important gas buy human determine check. Reflect visit rise. Paper without education common production.",
"updated": "2015-09-10T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Alexander Turner",
"url": "fritz-newman.com"
}
],
"bom-ref": "BomRef.9894801140164927.9570637519428912",
"created": "1975-05-12T00:00:00-04:00",
"cwes": [
92,
141,
390
],
"description": "Fund back cultural attack attack throughout. End this provide team small point. Face compare expert prepare grow near. Old last reality these. Along why all dinner.",
"detail": "Reach his know community international artist. Rich detail create entire fill item reason. Such explain article action indeed research cell new.",
"id": "13bf78ff-3946-4202-ba79-720546f9e0a6",
"properties": [
{
"name": "random1",
"value": "marcus george"
},
{
"name": "random2",
"value": "shawn kaiser"
},
{
"name": "random3",
"value": "raymond brown"
}
],
"published": "2008-05-21T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Monique Bates",
"url": "hunt.net"
}
}
],
"recommendation": "Forget result you why hold significant. Read environmental by smile high class. Interest read commercial above.",
"updated": "1973-08-11T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Kevin Lopez",
"url": "allen.com"
}
],
"bom-ref": "BomRef.009803100052123703.5912654516727012",
"created": "2017-01-02T00:00:00-05:00",
"cwes": [
33,
235,
374
],
"description": "Today audience reality top ago bad memory. Test fear everybody information answer learn. Level eye then Mr. All conference company expert weight. Lawyer church hot bar.",
"detail": "Political talk wonder development real risk. Raise oil film next push pass scene. Free live relationship group by. Size minute where be treat those.",
"id": "189c36f1-36f8-4946-ad48-f0187282da01",
"properties": [
{
"name": "random1",
"value": "penny tran"
},
{
"name": "random2",
"value": "bridget berry"
},
{
"name": "random3",
"value": "steven reese"
}
],
"published": "1976-03-30T00:00:00-05:00",
"ratings": [
{
"source": {
"name": "Nicole Jackson",
"url": "bruce.com"
}
}
],
"recommendation": "Three but full become. Individual sign style claim particular at wide. Manage success film thus in firm power process. Officer difference others office weight cup never expert.",
"updated": "2020-01-12T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Steven Gallagher",
"url": "hernandez-lawson.net"
}
],
"bom-ref": "BomRef.974995628603864.6655853895448316",
"created": "2022-01-18T00:00:00-05:00",
"cwes": [
219,
359,
386
],
"description": "Tend similar child fund mother hair. Difficult science hospital friend agree although. Physical tough however. Door game home change realize past. Join inside front foot true season today.",
"detail": "Party way to analysis energy. Miss free themselves tend manager street position. Man animal particularly food wish stuff reason. Provide everybody let family news very message. Wonder development move western. Beautiful final production challenge avoid. Forget everything country would radio foreign common.",
"id": "1bf3e263-12a2-4631-98c8-430ba071a00a",
"properties": [
{
"name": "random1",
"value": "latoya hill"
},
{
"name": "random2",
"value": "amber carpenter"
},
{
"name": "random3",
"value": "johnny ellis"
}
],
"published": "1977-06-12T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Daniel Johnson",
"url": "sims.com"
}
}
],
"recommendation": "North Mr sound few hair. Series budget draw glass. Lot member case reason remember. State stage particular many.",
"updated": "1994-04-16T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Tamara Cochran",
"url": "guerra.com"
}
],
"bom-ref": "BomRef.2581552402336105.5914962494418285",
"created": "1980-02-24T00:00:00-05:00",
"cwes": [
26,
272,
477
],
"description": "Red remember tough direction fund compare bit either. Issue give series. Provide eye apply style center see receive. Guess something study. Commercial may hot responsibility million. Like produce trade eye like particular former.",
"detail": "Much represent cell laugh office should staff. Accept again relationship happy. Prepare leave management price. Skill four after everybody.",
"id": "204e7a56-f530-40d3-af5a-aa4d36f279c8",
"properties": [
{
"name": "random1",
"value": "martha haynes"
},
{
"name": "random2",
"value": "kimberly green"
},
{
"name": "random3",
"value": "jonathan ford"
}
],
"published": "2017-05-30T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Lawrence Bradford",
"url": "ortiz.com"
}
}
],
"recommendation": "Walk own race own place any likely. Despite yeah level remember rate minute. Reduce visit although performance situation. American still back according.",
"updated": "2017-05-20T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Deborah Perez",
"url": "holmes.info"
}
],
"bom-ref": "BomRef.7003024836310597.36563440134841163",
"created": "1996-04-02T00:00:00-05:00",
"cwes": [
61,
182,
470
],
"description": "Game structure source plant. Defense plant increase inside agreement meeting again. President between opportunity remember later three third. Until task do water. Yeah again dinner foreign. Act person service ago learn.",
"detail": "Pull new care general industry medical. Collection over chair official customer box. Begin sing Republican once special write drive. Hundred special song best happy of until. Hospital beautiful small always. Research same wall next soon discussion several.",
"id": "21e87bb9-1c8d-4310-ab49-8222309ee46a",
"properties": [
{
"name": "random1",
"value": "david mckinney"
},
{
"name": "random2",
"value": "christopher christian"
},
{
"name": "random3",
"value": "katie sloan"
}
],
"published": "1976-01-04T00:00:00-05:00",
"ratings": [
{
"source": {
"name": "Lisa Harris",
"url": "gray.com"
}
}
],
"recommendation": "Dinner certain realize over country. Tonight student yes especially part today within. House kid military because daughter. Technology direction against network. Very peace win if spend operation.",
"updated": "2004-07-23T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Michele Park",
"url": "mullins.com"
}
],
"bom-ref": "BomRef.5640058773174847.4527300097188337",
"created": "1985-11-24T00:00:00-05:00",
"cwes": [
286,
299,
380
],
"description": "Share number address real their travel figure. Six through turn structure. Growth everybody according southern while. Travel bag despite doctor.",
"detail": "Stop give trip ahead recognize protect. Customer Republican not summer. Near police performance raise second see. City station majority. Range group hope think. Red turn upon debate we meet.",
"id": "2af6cbd7-bff5-4140-a959-55f12bc2a4e3",
"properties": [
{
"name": "random1",
"value": "beth castro"
},
{
"name": "random2",
"value": "shannon peters"
},
{
"name": "random3",
"value": "antonio landry"
}
],
"published": "1973-06-08T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Richard Rivera",
"url": "lewis.com"
}
}
],
"recommendation": "Mean cell sell attack impact. Look out show its smile. Option action walk boy raise whom. Performance remain fall per generation tell sound.",
"updated": "1989-02-17T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Dana Anderson",
"url": "myers-cline.com"
}
],
"bom-ref": "BomRef.7726385910788478.4295662584816563",
"created": "1981-09-15T00:00:00-04:00",
"cwes": [
186,
254,
315
],
"description": "Quite boy major board history pick. Kind agreement space laugh. Operation hot onto future.",
"detail": "Use ask industry choose example then. Large control learn any loss. Professional feel source international themselves action back once. Some hold others key individual important position. Go movement bar brother person leave rest.",
"id": "3085046e-570b-4254-a815-2dd38d837524",
"properties": [
{
"name": "random1",
"value": "stephen blair"
},
{
"name": "random2",
"value": "richard rodriguez"
},
{
"name": "random3",
"value": "dr. johnny wallace"
}
],
"published": "1971-07-25T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Donna Lopez",
"url": "costa.info"
}
}
],
"recommendation": "Science could cover difficult. Teach wind national image piece quality now trip. Author carry accept sport himself team.",
"updated": "1996-11-23T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Becky Middleton",
"url": "shaffer.com"
}
],
"bom-ref": "BomRef.7506791558805654.3524418768840589",
"created": "1984-12-19T00:00:00-05:00",
"cwes": [
12,
379,
459
],
"description": "See right evening season that. Tax daughter your team. War early action west.",
"detail": "Sell energy color market. Thing thing city art economic. Thousand nature allow that professional ability establish entire. Street catch really any room plant. Source middle population together describe live. Parent nice sign short.",
"id": "3aebd1c8-9600-4d7e-8538-6b6a70d1f41e",
"properties": [
{
"name": "random1",
"value": "kelly alexander"
},
{
"name": "random2",
"value": "jeanette smith"
},
{
"name": "random3",
"value": "wendy kirby"
}
],
"published": "1986-08-17T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Tina Lloyd",
"url": "hutchinson-randall.info"
}
}
],
"recommendation": "Accept he project rule in. Computer pay town give allow. Resource yeah night able somebody later.",
"updated": "2000-04-06T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Donna Powell",
"url": "rojas.com"
}
],
"bom-ref": "BomRef.07288133489959281.9926814503742144",
"created": "1988-11-30T00:00:00-05:00",
"cwes": [
416,
424,
475
],
"description": "College simply particular have Mrs country name. Car woman land can. Certainly senior inside already family low.",
"detail": "Draw skill minute the police onto. Station policy nation someone court still movie. After girl develop baby attention own science.",
"id": "3c557698-c495-40d9-853c-428366f477ab",
"properties": [
{
"name": "random1",
"value": "brian wallace"
},
{
"name": "random2",
"value": "jenna dunlap"
},
{
"name": "random3",
"value": "erika contreras"
}
],
"published": "2000-05-06T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Scott Zimmerman",
"url": "garrett.biz"
}
}
],
"recommendation": "Order poor necessary field television site discover. Suffer technology attention return. Him degree young save shoulder. Direction matter walk learn pattern position debate. So child wonder view money forward.",
"updated": "1970-05-31T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Darren Holmes",
"url": "cox.com"
}
],
"bom-ref": "BomRef.9848761210538547.5429588357364908",
"created": "1975-10-21T00:00:00-04:00",
"cwes": [
106,
414,
476
],
"description": "Represent general go blue. Watch writer able boy else others design. Record speech level black ready rule dark. Expert energy old report. White table Democrat decade card specific. Herself light record set little give only.",
"detail": "Cup gun some. Answer us few after. Street money every office production. Who item others adult particularly letter letter still. Nation up apply marriage.",
"id": "40fb8c30-ec40-4d96-92eb-63ae107d78cc",
"properties": [
{
"name": "random1",
"value": "jessica olson"
},
{
"name": "random2",
"value": "marissa barnes"
},
{
"name": "random3",
"value": "derrick olson"
}
],
"published": "2005-10-24T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Chad Lopez",
"url": "murray-scott.com"
}
}
],
"recommendation": "Fact there tonight case field wind. Ability remain guy hit notice. Exist heart seven person evidence call. Strategy population adult identify product compare use.",
"updated": "1974-08-05T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Tony Ewing",
"url": "meyer.com"
}
],
"bom-ref": "BomRef.46560127323572364.6528682650569481",
"created": "2020-05-03T00:00:00-04:00",
"cwes": [
288,
395,
457
],
"description": "Civil plan drop learn else minute white. Time certain price issue while actually project. Chair paper medical table answer child hear world. Against detail cut attorney.",
"detail": "Most quite agreement. Who born parent yeah dinner ask food. Company discussion machine responsibility age south choose.",
"id": "4785c51c-d965-4ca9-ac03-4671aee5d2ad",
"properties": [
{
"name": "random1",
"value": "calvin stewart"
},
{
"name": "random2",
"value": "john taylor"
},
{
"name": "random3",
"value": "jonathan herrera"
}
],
"published": "2021-01-01T00:00:00-05:00",
"ratings": [
{
"source": {
"name": "Briana Mack",
"url": "hernandez.com"
}
}
],
"recommendation": "Relate not huge anything manage. Be those kid cost contain pull her. End young describe impact song. Require shake central. Animal important Congress child. Whose our hair bill cut street officer.",
"updated": "1979-12-30T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Amber Hill",
"url": "fox-jones.net"
}
],
"bom-ref": "BomRef.3827671824876273.12427605541645814",
"created": "2005-12-16T00:00:00-05:00",
"cwes": [
234,
242,
473
],
"description": "Once away evidence role word message. But myself safe today base race. Option campaign management they growth try. There agreement have government. Edge between his hotel from artist serious.",
"detail": "Summer film enjoy imagine window. Then moment name too serious baby. Letter drug lead. College weight in option. No figure with project soon education similar do.",
"id": "4935b442-b88b-4601-aeaa-e2a6505d4568",
"properties": [
{
"name": "random1",
"value": "ryan gonzalez"
},
{
"name": "random2",
"value": "travis williams"
},
{
"name": "random3",
"value": "cindy mcconnell dds"
}
],
"published": "1989-04-28T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Michael Larsen",
"url": "riley.com"
}
}
],
"recommendation": "Report write time artist. Through anything painting learn arm. Anything whose simply view. Interest environment during. Science wear usually perform dog.",
"updated": "1989-12-20T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Amy Stevens",
"url": "ball.com"
}
],
"bom-ref": "BomRef.5071452269646697.4377241345386992",
"created": "1972-07-31T00:00:00-04:00",
"cwes": [
259,
340,
382
],
"description": "Fight take fill let city course player. Very treat visit learn stage. Talk available together although prove small.",
"detail": "Short mean recently kid recent near reality. Author Mrs carry southern expert determine. Top individual support church maybe expert few. Executive radio general fish understand unit.",
"id": "4955c4b4-a7ad-4f03-ba38-ab5ab1595e74",
"properties": [
{
"name": "random1",
"value": "judy park"
},
{
"name": "random2",
"value": "leslie allen"
},
{
"name": "random3",
"value": "tiffany gonzalez"
}
],
"published": "1999-04-23T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Ryan Chavez",
"url": "hess-boyd.net"
}
}
],
"recommendation": "Despite travel ten each couple summer. Month respond win event use. Hundred final without most help girl.",
"updated": "1985-05-12T00:00:00-04:00"
},
{
"advisories": [
{
"title": "Jeffrey Mcguire",
"url": "smith-wells.net"
}
],
"bom-ref": "BomRef.2768179349732621.35016648551130325",
"created": "1982-09-18T00:00:00-04:00",
"cwes": [
98,
193,
276
],
"description": "Tonight executive compare strong main. Unit north admit series up less local. Series interview allow would. Nice focus above financial magazine half have truth.",
"detail": "Site whatever could state big almost far professional. Office wish stage nation hope like. Senior ever which. General phone room. Rich these feeling.",
"id": "4d877532-66cd-4119-bf55-89f37a086b76",
"properties": [
{
"name": "random1",
"value": "melissa mccoy"
},
{
"name": "random2",
"value": "amy clark"
},
{
"name": "random3",
"value": "lisa johnston"
}
],
"published": "2023-05-13T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Sabrina Davis",
"url": "ford.com"
}
}
],
"recommendation": "Resource right big special beyond. Movie despite another indicate history almost reality develop. Actually human approach medical build yard her.",
"updated": "2001-11-15T00:00:00-05:00"
},
{
"advisories": [
{
"title": "Sherri Pruitt",
"url": "mcdonald-mora.org"
}
],
"bom-ref": "BomRef.9170021050784213.6495900462222202",
"created": "2012-11-13T00:00:00-05:00",
"cwes": [
23,
50,
423
],
"description": "Art suddenly me reach or. Happy family south structure next himself. Operation miss change center bit whether western. Teacher professor because specific pay. Shoulder statement between.",
"detail": "Else nearly study choose born already able. Boy listen serve often table left major. Today decide front partner send. Be use nice eat set. Say knowledge positive see them activity impact. Hit actually grow trade.",
"id": "5537ccf5-6004-414c-87aa-7bbc7fbf70e9",
"properties": [
{
"name": "random1",
"value": "amanda newman"
},
{
"name": "random2",
"value": "karen ramirez"
},
{
"name": "random3",
"value": "matthew bridges"
}
],
"published": "1971-07-25T00:00:00-04:00",
"ratings": [
{
"source": {
"name": "Amber Munoz",
"url": "davis.com"
}
}
],
"recommendation": "Job would teach. Occur safe hard commercial. Teacher picture expect safe any provide green. Think range American wish action world. Pm pretty evidence value simple.",
"updated": "1986-12-18T00:00:00-05:00"
},
{