-
Notifications
You must be signed in to change notification settings - Fork 69
/
code.json
1972 lines (1972 loc) · 119 KB
/
code.json
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
{
"version": "2.0",
"agency": "NSA",
"measurementType": {
"method": "projects"
},
"releases": [
{
"name": "AppLocker-Guidance",
"repositoryURL": "https://github.com/nsacyber/AppLocker-Guidance",
"description": "Configuration guidance for implementing application whitelisting with AppLocker. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/AppLocker-Guidance/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"application-whitelisting",
"applocker",
"microsoft-applocker",
"whitelisting",
"windows"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/AppLocker-Guidance",
"downloadURL": "https://github.com/nsacyber/AppLocker-Guidance/archive/master.zip",
"date": {
"created": "2015-05-01",
"metadataLastUpdated": "2019-01-07",
"lastModified": "2018-07-10"
},
"disclaimerURL": "https://github.com/nsacyber/AppLocker-Guidance/blob/master/DISCLAIMER.md",
"languages": [
"PowerShell",
"Batchfile"
]
},
{
"name": "AtomicWatch",
"repositoryURL": "https://github.com/nsacyber/AtomicWatch",
"description": "Intel Atom C2000 series discovery tool that parses log files and returns results if a positive match is found. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/AtomicWatch/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"atom",
"cpu",
"intel",
"processor"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Archival",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/AtomicWatch",
"downloadURL": "https://github.com/nsacyber/AtomicWatch/archive/master.zip",
"date": {
"created": "2017-06-08",
"metadataLastUpdated": "2019-01-13",
"lastModified": "2017-06-10"
},
"disclaimerURL": "https://github.com/nsacyber/AtomicWatch/blob/master/DISCLAIMER.md",
"languages": [
"Python"
]
},
{
"name": "BitLocker-Guidance",
"repositoryURL": "https://github.com/nsacyber/BitLocker-Guidance",
"description": "Configuration guidance for implementing BitLocker. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/BitLocker-Guidance/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"audit",
"bitlocker",
"bitlocker-drive-encryption",
"encryption",
"full-disk-encryption",
"guidance",
"microsoft",
"nessus",
"windows"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/BitLocker-Guidance",
"downloadURL": "https://github.com/nsacyber/BitLocker-Guidance/archive/master.zip",
"date": {
"created": "2018-02-12",
"metadataLastUpdated": "2019-01-09",
"lastModified": "2018-07-10"
},
"disclaimerURL": "https://github.com/nsacyber/BitLocker-Guidance/blob/master/DISCLAIMER.md",
"languages": [
"PowerShell",
"HTML"
]
},
{
"name": "Certificate-Authority-Situational-Awareness",
"repositoryURL": "https://github.com/nsacyber/Certificate-Authority-Situational-Awareness",
"description": "Identifies unexpected and prohibited certificate authority certificates on Windows systems. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/Certificate-Authority-Situational-Awareness/blob/master/LICENSE.md",
"name": "Unlicense"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"certificate",
"certificate-authorities",
"certificate-authority",
"certificates",
"splunk",
"windows"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Archival",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/Certificate-Authority-Situational-Awareness",
"downloadURL": "https://github.com/nsacyber/Certificate-Authority-Situational-Awareness/archive/master.zip",
"date": {
"created": "2016-05-23",
"metadataLastUpdated": "2019-01-12",
"lastModified": "2016-06-02"
},
"disclaimerURL": "https://github.com/nsacyber/Certificate-Authority-Situational-Awareness/blob/master/DISCLAIMER.md",
"languages": [
"PowerShell",
"Batchfile",
"CSS"
]
},
{
"name": "CodeGov",
"repositoryURL": "https://github.com/nsacyber/CodeGov",
"description": "Creates a code.gov code inventory JSON file based on GitHub repository information. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/CodeGov/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"gov",
"government",
"json",
"powershell-module"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/CodeGov",
"downloadURL": "https://github.com/nsacyber/CodeGov/archive/master.zip",
"date": {
"created": "2017-10-17",
"metadataLastUpdated": "2019-01-07",
"lastModified": "2018-10-13"
},
"disclaimerURL": "https://github.com/nsacyber/CodeGov/blob/master/DISCLAIMER.md",
"languages": [
"PowerShell"
]
},
{
"name": "Control-Flow-Integrity",
"repositoryURL": "https://github.com/nsacyber/Control-Flow-Integrity",
"description": "A proposed hardware-based method for stopping known memory corruption exploitation techniques. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/Control-Flow-Integrity/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"control-flow",
"control-flow-analysis",
"control-flow-integrity"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "control-flow-integrity"
},
"status": "Archival",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/Control-Flow-Integrity",
"downloadURL": "https://github.com/repos/nsacyber/Control-Flow-Integrity/zipball/v1.0.0",
"date": {
"created": "2015-07-23",
"metadataLastUpdated": "2019-01-05",
"lastModified": "2017-05-10"
},
"disclaimerURL": "https://github.com/nsacyber/Control-Flow-Integrity/blob/master/DISCLAIMER.md",
"languages": [
"C"
]
},
{
"name": "datawave",
"repositoryURL": "https://github.com/NationalSecurityAgency/datawave",
"description": "DataWave is an ingest/query framework that leverages Apache Accumulo to provide fast, secure data access.",
"permissions": {
"licenses": [
{
"URL": "https://github.com/NationalSecurityAgency/datawave/blob/master/LICENSE",
"name": "Apache-2.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"tag1",
"tag2"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/what-we-do/research/technology-transfer/",
"name": "NSA Technology Transfer Program",
"phone": "1-866-680-4539"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://code.nsa.gov/datawave",
"downloadURL": "https://github.com/NationalSecurityAgency/datawave/archive/master.zip",
"date": {
"created": "2018-01-10",
"metadataLastUpdated": "2019-01-16",
"lastModified": "2019-01-16"
},
"languages": [
"Java",
"XSLT",
"CSS",
"JavaScript",
"HTML",
"Python",
"Scheme",
"Shell",
"Dockerfile"
]
},
{
"name": "datawave-muchos",
"repositoryURL": "https://github.com/NationalSecurityAgency/datawave-muchos",
"description": "This project leverages Ansible to automate DataWave deployments on your cluster",
"permissions": {
"licenses": [
{
"URL": "https://github.com/NationalSecurityAgency/datawave-muchos/blob/master/LICENSE",
"name": "Apache-2.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"accumulo",
"ansible",
"datawave",
"muchos"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/what-we-do/research/technology-transfer/",
"name": "NSA Technology Transfer Program",
"phone": "1-866-680-4539"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/NationalSecurityAgency/datawave-muchos",
"downloadURL": "https://github.com/repos/NationalSecurityAgency/datawave-muchos/zipball/v1.0",
"date": {
"created": "2018-05-11",
"metadataLastUpdated": "2019-01-16",
"lastModified": "2018-11-19"
},
"languages": [
"Shell"
]
},
{
"name": "DCP",
"repositoryURL": "https://github.com/NationalSecurityAgency/DCP",
"description": "Digest, stat, and copy files from one location to another in the same read pass",
"permissions": {
"licenses": [
{
"URL": "https://github.com/NationalSecurityAgency/DCP/blob/master/LICENSE",
"name": "MIT"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"tag1",
"tag2"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/what-we-do/research/technology-transfer/",
"name": "NSA Technology Transfer Program",
"phone": "1-866-680-4539"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/NationalSecurityAgency/DCP",
"downloadURL": "https://github.com/NationalSecurityAgency/DCP/archive/master.zip",
"date": {
"created": "2016-08-05",
"metadataLastUpdated": "2019-01-14",
"lastModified": "2017-10-04"
},
"languages": [
"C",
"Makefile",
"M4",
"Shell",
"Roff"
]
},
{
"name": "Detect-CVE-2017-15361-TPM",
"repositoryURL": "https://github.com/nsacyber/Detect-CVE-2017-15361-TPM",
"description": "Detects Windows and Linux systems with enabled Trusted Platform Modules (TPM) vulnerable to CVE-2017-15361. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/Detect-CVE-2017-15361-TPM/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"audit",
"cve",
"nessus",
"rsa",
"tpm",
"trusted-platform-module",
"vulnerability"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/Detect-CVE-2017-15361-TPM",
"downloadURL": "https://github.com/nsacyber/Detect-CVE-2017-15361-TPM/archive/master.zip",
"date": {
"created": "2017-10-19",
"metadataLastUpdated": "2019-01-10",
"lastModified": "2018-09-04"
},
"disclaimerURL": "https://github.com/nsacyber/Detect-CVE-2017-15361-TPM/blob/master/DISCLAIMER.md",
"languages": [
"PowerShell",
"Shell"
]
},
{
"name": "Driver-Collider",
"repositoryURL": "https://github.com/nsacyber/Driver-Collider",
"description": "Blocks drivers from loading by using a name collision technique. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/Driver-Collider/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"driver",
"windows"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Archival",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/Driver-Collider",
"downloadURL": "https://github.com/nsacyber/Driver-Collider/archive/master.zip",
"date": {
"created": "2017-10-17",
"metadataLastUpdated": "2019-01-05",
"lastModified": "2017-12-18"
},
"disclaimerURL": "https://github.com/nsacyber/Driver-Collider/blob/master/DISCLAIMER.md",
"languages": [
"C",
"PowerShell",
"Roff"
]
},
{
"name": "emissary",
"repositoryURL": "https://github.com/NationalSecurityAgency/emissary",
"description": "Distributed P2P Data-driven Workflow Framework",
"permissions": {
"licenses": [
{
"URL": "https://github.com/NationalSecurityAgency/emissary/blob/master/LICENSE",
"name": "Apache-2.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"tag1",
"tag2"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/what-we-do/research/technology-transfer/",
"name": "NSA Technology Transfer Program",
"phone": "1-866-680-4539"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/NationalSecurityAgency/emissary",
"downloadURL": "https://github.com/repos/NationalSecurityAgency/emissary/zipball/5.2.0",
"date": {
"created": "2018-06-01",
"metadataLastUpdated": "2019-01-15",
"lastModified": "2019-01-10"
},
"languages": [
"Java",
"CSS",
"JavaScript",
"HTML",
"Shell",
"Dockerfile"
]
},
{
"name": "Event-Forwarding-Guidance",
"repositoryURL": "https://github.com/nsacyber/Event-Forwarding-Guidance",
"description": "Configuration guidance for implementing collection of security relevant Windows Event Log events by using Windows Event Forwarding. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/Event-Forwarding-Guidance/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"event-log",
"siem",
"windows"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/Event-Forwarding-Guidance",
"downloadURL": "https://github.com/nsacyber/Event-Forwarding-Guidance/archive/master.zip",
"date": {
"created": "2015-01-09",
"metadataLastUpdated": "2019-01-16",
"lastModified": "2018-12-10"
},
"disclaimerURL": "https://github.com/nsacyber/Event-Forwarding-Guidance/blob/master/DISCLAIMER.md",
"languages": [
"PowerShell"
]
},
{
"name": "fractalrabbit",
"repositoryURL": "https://github.com/NationalSecurityAgency/fractalrabbit",
"description": "Simulate realistic trajectory data seen through sporadic reporting",
"permissions": {
"licenses": [
{
"URL": "https://github.com/NationalSecurityAgency/fractalrabbit#copyright-and-license",
"name": "Apache-2.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"algorithm-analysis",
"probabilistic-models",
"simulation-modeling"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/what-we-do/research/technology-transfer/",
"name": "NSA Technology Transfer Program",
"phone": "1-866-680-4539"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/NationalSecurityAgency/fractalrabbit",
"downloadURL": "https://github.com/NationalSecurityAgency/fractalrabbit/archive/master.zip",
"date": {
"created": "2018-04-04",
"metadataLastUpdated": "2019-01-09",
"lastModified": "2018-05-23"
},
"languages": [
"Python",
"Mathematica"
]
},
{
"name": "goSecure",
"repositoryURL": "https://github.com/nsacyber/goSecure",
"description": "An easy to use and portable Virtual Private Network (VPN) system built with Linux and a Raspberry Pi. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/goSecure/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"linux",
"raspberry-pi",
"strongswan",
"vpn"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Archival",
"vcs": "git",
"homepageURL": "https://nsacyber.github.io/goSecure/",
"downloadURL": "https://github.com/nsacyber/goSecure/archive/master.zip",
"date": {
"created": "2016-04-28",
"metadataLastUpdated": "2019-01-14",
"lastModified": "2017-06-27"
},
"disclaimerURL": "https://github.com/nsacyber/goSecure/blob/master/DISCLAIMER.md",
"languages": [
"OpenEdge ABL",
"HTML",
"JavaScript",
"CSS",
"Python"
]
},
{
"name": "GRASSMARLIN",
"repositoryURL": "https://github.com/nsacyber/GRASSMARLIN",
"description": "Provides situational awareness of Industrial Control Systems (ICS) and Supervisory Control and Data Acquisition (SCADA) networks in support of network security assessments. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/GRASSMARLIN/blob/master/LICENSE.md",
"name": "LGPL-3.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"analysis",
"control-systems",
"ics",
"ics-scada",
"monitor",
"monitoring",
"network",
"networking",
"scada",
"scada-security",
"visualization"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/GRASSMARLIN",
"downloadURL": "https://github.com/repos/nsacyber/GRASSMARLIN/zipball/v3.2.1",
"date": {
"created": "2015-12-14",
"metadataLastUpdated": "2019-01-16",
"lastModified": "2018-03-09"
},
"disclaimerURL": "https://github.com/nsacyber/GRASSMARLIN/blob/master/DISCLAIMER.md",
"languages": [
"HTML",
"Java",
"ANTLR"
]
},
{
"name": "Hardware-and-Firmware-Security-Guidance",
"repositoryURL": "https://github.com/nsacyber/Hardware-and-Firmware-Security-Guidance",
"description": "Guidance for the Spectre, Meltdown, Speculative Store Bypass, Rogue System Register Read, Lazy FP State Restore, Bounds Check Bypass Store, TLBleed, and L1TF/Foreshadow vulnerabilities as well as general hardware and firmware security guidance. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/Hardware-and-Firmware-Security-Guidance/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"audit",
"cve",
"cve-2017-5715",
"cve-2017-5753",
"cve-2017-5754",
"cve-2018-3639",
"cve-2018-3640",
"cve-2018-3665",
"cve-2018-3693",
"guidance",
"meltdown",
"nessus",
"spectre",
"vulnerability"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/Hardware-and-Firmware-Security-Guidance",
"downloadURL": "https://github.com/nsacyber/Hardware-and-Firmware-Security-Guidance/archive/master.zip",
"date": {
"created": "2018-01-10",
"metadataLastUpdated": "2019-01-09",
"lastModified": "2018-07-30"
},
"disclaimerURL": "https://github.com/nsacyber/Hardware-and-Firmware-Security-Guidance/blob/master/DISCLAIMER.md"
},
{
"name": "HIRS",
"repositoryURL": "https://github.com/nsacyber/HIRS",
"description": "Trusted Computing based services supporting TPM provisioning and supply chain validation concepts. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/HIRS/blob/master/LICENSE.md",
"name": "Apache-2.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"integrity",
"provisioning",
"supply-chain",
"trusted-computing",
"trusted-platform-module",
"validation"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/HIRS",
"downloadURL": "https://github.com/repos/nsacyber/HIRS/zipball/v1.0.2",
"date": {
"created": "2018-01-19",
"metadataLastUpdated": "2019-01-16",
"lastModified": "2019-01-16"
},
"disclaimerURL": "https://github.com/nsacyber/HIRS/blob/master/DISCLAIMER.md",
"languages": [
"Makefile",
"Java",
"Roff",
"CSS",
"JavaScript",
"Python",
"C++",
"Shell",
"CMake",
"Ruby"
]
},
{
"name": "HTTP-Connectivity-Tester",
"repositoryURL": "https://github.com/nsacyber/HTTP-Connectivity-Tester",
"description": "Aids in discovering HTTP and HTTPS connectivity issues. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/HTTP-Connectivity-Tester/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"connection",
"connectivity",
"diagnostic",
"diagnostics",
"http",
"https",
"powershell-module",
"test",
"testing"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/HTTP-Connectivity-Tester",
"downloadURL": "https://github.com/nsacyber/HTTP-Connectivity-Tester/archive/master.zip",
"date": {
"created": "2017-10-17",
"metadataLastUpdated": "2019-01-12",
"lastModified": "2018-12-21"
},
"disclaimerURL": "https://github.com/nsacyber/HTTP-Connectivity-Tester/blob/master/DISCLAIMER.md",
"languages": [
"PowerShell"
]
},
{
"name": "lemongraph",
"repositoryURL": "https://github.com/NationalSecurityAgency/lemongraph",
"description": "Log-based transactional graph engine",
"permissions": {
"licenses": [
{
"URL": "https://github.com/NationalSecurityAgency/lemongraph/blob/master/LICENSE",
"name": "Apache-2.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"tag1",
"tag2"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/what-we-do/research/technology-transfer/",
"name": "NSA Technology Transfer Program",
"phone": "1-866-680-4539"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/NationalSecurityAgency/lemongraph",
"downloadURL": "https://github.com/NationalSecurityAgency/lemongraph/archive/master.zip",
"date": {
"created": "2016-07-25",
"metadataLastUpdated": "2019-01-16",
"lastModified": "2019-01-10"
},
"languages": [
"Makefile",
"HTML",
"Python",
"C++",
"Shell",
"C"
]
},
{
"name": "lemongrenade",
"repositoryURL": "https://github.com/NationalSecurityAgency/lemongrenade",
"description": "Data-driven automation platform",
"permissions": {
"licenses": [
{
"URL": "https://github.com/NationalSecurityAgency/lemongrenade/blob/master/LICENSE",
"name": "Apache-2.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"tag1",
"tag2"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/what-we-do/research/technology-transfer/",
"name": "NSA Technology Transfer Program",
"phone": "1-866-680-4539"
},
"status": "Production",
"vcs": "git",
"homepageURL": "https://github.com/NationalSecurityAgency/lemongrenade",
"downloadURL": "https://github.com/NationalSecurityAgency/lemongrenade/archive/master.zip",
"date": {
"created": "2016-07-25",
"metadataLastUpdated": "2019-01-15",
"lastModified": "2018-10-29"
},
"languages": [
"Java",
"CSS",
"JavaScript",
"HTML",
"Python",
"Shell"
]
},
{
"name": "LOCKLEVEL",
"repositoryURL": "https://github.com/nsacyber/LOCKLEVEL",
"description": "A prototype that demonstrates a method for scoring how well Windows systems have implemented some of the top 10 Information Assurance mitigation strategies. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/LOCKLEVEL/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"assessment",
"compliance",
"scoring",
"windows"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Archival",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/LOCKLEVEL",
"downloadURL": "https://github.com/nsacyber/LOCKLEVEL/archive/master.zip",
"date": {
"created": "2016-05-19",
"metadataLastUpdated": "2019-01-09",
"lastModified": "2016-06-08"
},
"disclaimerURL": "https://github.com/nsacyber/LOCKLEVEL/blob/master/DISCLAIMER.md",
"languages": [
"Objective-C",
"CSS",
"JavaScript",
"HTML",
"Python",
"C++",
"PowerShell",
"C",
"CMake",
"Batchfile"
]
},
{
"name": "Maplesyrup",
"repositoryURL": "https://github.com/nsacyber/Maplesyrup",
"description": "Assesses CPU security of embedded devices. #nsacyber",
"permissions": {
"licenses": [
{
"URL": "https://github.com/nsacyber/Maplesyrup/blob/master/LICENSE.md",
"name": "CC0-1.0"
}
],
"usageType": "openSource"
},
"laborHours": 1,
"tags": [
"arm",
"assessment",
"audit",
"auditing",
"cpu",
"security"
],
"contact": {
"email": "[email protected]",
"URL": "https://www.nsa.gov/about/contact-us/",
"name": "NSA Cybersecurity",
"phone": "410-854-4200"
},
"status": "Archival",
"vcs": "git",
"homepageURL": "https://github.com/nsacyber/Maplesyrup",
"downloadURL": "https://github.com/nsacyber/Maplesyrup/archive/master.zip",
"date": {
"created": "2015-07-24",
"metadataLastUpdated": "2019-01-16",
"lastModified": "2016-06-01"
},
"disclaimerURL": "https://github.com/nsacyber/Maplesyrup/blob/master/DISCLAIMER.md",
"languages": [
"Makefile",
"M4",
"Objective-C",
"Python",
"Shell",
"C",