-
Notifications
You must be signed in to change notification settings - Fork 0
/
kumu-data.json
16514 lines (16514 loc) · 428 KB
/
kumu-data.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
{
"elements": [
{
"Label": "S0001",
"Type": "Skills",
"Description": "Skill in conducting vulnerability scans and recognizing vulnerabilities in security systems.",
"Topic": "",
"Source": [
"NCWF S0001"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0002",
"Type": "Skills",
"Description": "Skill in conducting software debugging.",
"Topic": "",
"Source": [
"NCWF S0014"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0003",
"Type": "Skills",
"Description": "Skill in creating programs that validate and process multiple inputs including command line arguments, environmental variables, and input streams.",
"Topic": "",
"Source": [
"NCWF S0017"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0004",
"Type": "Skills",
"Description": "Skill in designing countermeasures to identified security risks.",
"Topic": "",
"Source": [
"NCWF S0022"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0005",
"Type": "Skills",
"Description": "Skill in developing and applying security system access controls.",
"Topic": "",
"Source": [
"NCWF S0031"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0006",
"Type": "Skills",
"Description": "Skill in discerning the protection needs (i.e., security controls) of information systems and networks.",
"Topic": "",
"Source": [
"NCWF S0034"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0007",
"Type": "Skills",
"Description": "Skill in writing code in a currently supported programming language (e.g., Java, C++).",
"Topic": "",
"Source": [
"NCWF S0060"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0008",
"Type": "Skills",
"Description": "Skill in secure test plan design (e. g. unit, integration, system, acceptance).",
"Topic": "",
"Source": [
"NCWF S0135"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0009",
"Type": "Skills",
"Description": "Skill in using Public-Key Infrastructure (PKI) encryption and digital signature capabilities into applications (e.g., S/MIME email, SSL traffic).",
"Topic": "",
"Source": [
"NCWF S0138"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0010",
"Type": "Skills",
"Description": "Skill in developing applications that can log and handle errors, exceptions, and application faults and logging.",
"Topic": "",
"Source": [
"NCWF S0149"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0011",
"Type": "Skills",
"Description": "Skill in using code analysis tools.",
"Topic": "",
"Source": [
"NCWF S0174"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0012",
"Type": "Skills",
"Description": "Skill in performing root cause analysis.",
"Topic": "",
"Source": [
"NCWF S0175"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0013",
"Type": "Skills",
"Description": "Skill to apply cybersecurity and privacy principles to organizational requirements (relevant to confidentiality, integrity, availability, authentication, non-repudiation).",
"Topic": "",
"Source": [
"NCWF S0367"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "S0014",
"Type": "Skills",
"Description": "Skill in parsing command line arguments using built-in functionality.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0015",
"Type": "Skills",
"Description": "Skill in registering a Gitlab runner.",
"Topic": "CI/CD",
"Source": [
" "
],
"OPR": " "
},
{
"Label": "S0016",
"Type": "Skills",
"Description": "Skill in debugging a C program.",
"Topic": "C",
"Source": [
" "
],
"OPR": " "
},
{
"Label": "S0017",
"Type": "Skills",
"Description": "Skill in debugging a python script.",
"Topic": "Python",
"Source": [
" "
],
"OPR": " "
},
{
"Label": "S0018",
"Type": "Skills",
"Description": "Skill in snapshotting a project",
"Topic": "Git",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0019",
"Type": "Skills",
"Description": "Skill in branching and merging a project",
"Topic": "Git",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0020",
"Type": "Skills",
"Description": "Skill in updating a project",
"Topic": "Git",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0021",
"Type": "Skills",
"Description": "Skill in inspecting and comparing a project",
"Topic": "Git",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0022",
"Type": "Skills",
"Description": "Skill in cloning a project",
"Topic": "Git",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0023",
"Type": "Skills",
"Description": "Demonstrate skill in proper declaration and implementation of Python data types.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0024",
"Type": "Skills",
"Description": "Demonstrate skill in proper declaration and implementation of Python container data type.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0025",
"Type": "Skills",
"Description": "Demonstrate skill in converting Python 2 code to Python 3.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0026",
"Type": "Skills",
"Description": "Demonstrate skill in utilizing modules in the standard library.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0027",
"Type": "Skills",
"Description": "Demonstrate skill in implementing a PIP install for a Python package.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0028",
"Type": "Skills",
"Description": "Demonstrate skill in setting up and replicating a Python Virtual Environment.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0029",
"Type": "Skills",
"Description": "Demonstrate skill in utilizing arithmetic operators (PEMDAS +, -, *, /, %).",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0030",
"Type": "Skills",
"Description": "Demonstrate skill in utilizing bitwise operators.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0031",
"Type": "Skills",
"Description": "Demonstrate skill in utilizing logical operators.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0032",
"Type": "Skills",
"Description": "Demonstrate skill in utilizing relational operators.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0033",
"Type": "Skills",
"Description": "Demonstrate skill in utilizing assignment operators.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0034",
"Type": "Skills",
"Description": "Demonstrate skill in proper declaration and implementation of C data types.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0035",
"Type": "Skills",
"Description": "Demonstrate skill in proper declaration and implementation of arrays and muli-dimensioanl arrays.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0036",
"Type": "Skills",
"Description": "Demonstrate skill in proper declaration and implementation of a char * array (string).",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0037",
"Type": "Skills",
"Description": "Demonstrate skill in opening, closing an existing file.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0038",
"Type": "Skills",
"Description": "Demonstrate skill in reading, parsing, writing (append, insert, modify) file data.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0039",
"Type": "Skills",
"Description": "Demonstrate skill in creating, deleting a new file.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0040",
"Type": "Skills",
"Description": "Demonstrate skill to determine the size of a file.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0041",
"Type": "Skills",
"Description": "Demonstrate skill to determine location within a file.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0042",
"Type": "Skills",
"Description": "Demonstrate skill in opening, closing an existing file.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0043",
"Type": "Skills",
"Description": "Demonstrate skill in reading, parsing, writing (append, insert, modify) file data.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0044",
"Type": "Skills",
"Description": "Demonstrate skill in creating, deleting a new file.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0045",
"Type": "Skills",
"Description": "Demonstrate skill to determine the size of a file.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0046",
"Type": "Skills",
"Description": "Demonstrate skill to determine location within a file.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0047",
"Type": "Skills",
"Description": "Demonstrate skill to write a function that returns multiple values.",
"Topic": "Python",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0048",
"Type": "Skills",
"Description": "Demonstrate skill to write a function that receives input parameters.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0049",
"Type": "Skills",
"Description": "Demonstrate skill to write a recursive function.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0050",
"Type": "Skills",
"Description": "Demonstrate skill to create a function that doesn't return a value.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0051",
"Type": "Skills",
"Description": "Demonstrate skill to create a function that implements pass by reference input parameters.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0052",
"Type": "Skills",
"Description": "Demonstrate skill to create a function that returns a single value.",
"Topic": "Programming Fundamentals",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0053",
"Type": "Skills",
"Description": "Demonstrate skill to create a function that returns a memory reference.",
"Topic": "C",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0054",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Weighted Graph.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0055",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0056",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Doubly Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0057",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Circularly Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0058",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Queue.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0059",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Tree.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0060",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Binary Search Tree.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0061",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Hash Table.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0062",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Stack.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0063",
"Type": "Skills",
"Description": "Demonstrate skill to find item in a Weighted Graph.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0064",
"Type": "Skills",
"Description": "Demonstrate skill to add, remove nodes from a a Weighted Graph.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0065",
"Type": "Skills",
"Description": "Demonstrate skill to find an item in a Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0066",
"Type": "Skills",
"Description": "Demonstrate skill to add, remove nodes from a Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0067",
"Type": "Skills",
"Description": "Demonstrate skill to find an item in a Doubly Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0068",
"Type": "Skills",
"Description": "Demonstrate skill to add, remove nodes from a Doubly Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0069",
"Type": "Skills",
"Description": "Demonstrate skill to find an item in a Circularly Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0070",
"Type": "Skills",
"Description": "Demonstrate skill to add, remove nodes from a Circularly Linked List.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0071",
"Type": "Skills",
"Description": "Demonstrate skill to enqueue, dequeue a Queue.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0072",
"Type": "Skills",
"Description": "Demonstrate skill to find item in a Tree.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0073",
"Type": "Skills",
"Description": "Demonstrate skill to add, remove nodes from a Tree.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0074",
"Type": "Skills",
"Description": "Demonstrate skill to find an item in a Binary Search Tree.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0075",
"Type": "Skills",
"Description": "Demonstrate skill to create, destroy a Binary Search Tree.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0076",
"Type": "Skills",
"Description": "Demonstrate skill to find an item in a Hash Table.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0077",
"Type": "Skills",
"Description": "Demonstrate skill to add, remove items from a Hash Table.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "S0078",
"Type": "Skills",
"Description": "Demonstrate skill to push, pop a Stack.",
"Topic": "Data Structures",
"Source": [
" "
],
"OPR": ""
},
{
"Label": "T0001",
"Type": "Tasks",
"Description": "(U) Modify cyber capabilites to detect and disrupt nation-state cyber threat actors across the threat chain (kill chain) of adversary execution",
"Topic": "Mission",
"Source": [
"JCT&CS T001"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0002",
"Type": "Tasks",
"Description": "(U) Create or enhance cyberspace capabilities to compromise, deny, degrade, disrupt, destroy, or manipulate automated information systems.",
"Topic": "Mission",
"Source": [
"JCT&CS T002"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0003",
"Type": "Tasks",
"Description": "(U) Create or enhance cyberspace solutions to enable surveillance and reconnaissance of automated information systems.",
"Topic": "Mission",
"Source": [
"JCT&CS T003"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0004",
"Type": "Tasks",
"Description": "(U) Create or enhance cyberspace solutions to enable the defense of national interests.",
"Topic": "Mission",
"Source": [
"JCT&CS T004"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0005",
"Type": "Tasks",
"Description": "(U) Interpret customer requirements and evaluate resource and system constraints to create solution design specifications.",
"Topic": "Agile",
"Source": [
"JCT&CS T005"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0006",
"Type": "Tasks",
"Description": "(U) Reference capability repositories and other sources to identify existing capabilities which fully/partially meet customer requirements (with or without modification).",
"Topic": "Agile",
"Source": [
"JCT&CS T006"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0007",
"Type": "Tasks",
"Description": "(U) Collaborate with stakeholders to identify and/or develop appropriate cyberspace solutions.",
"Topic": "Agile",
"Source": [
"JCT&CS T007"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0008",
"Type": "Tasks",
"Description": "(U) Analyze, modify, develop, debug and document software and applications which run in kernel and user space.",
"Topic": "Kernel Development",
"Source": [
"JCT&CS T008"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0009",
"Type": "Tasks",
"Description": "(U) Analyze, modify, develop, debug and document software and applications in C programming language.",
"Topic": "C",
"Source": [
"JCT&CS T009"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0010",
"Type": "Tasks",
"Description": "(U) Analyze, modify, develop, debug and document software and applications in Python programming language.",
"Topic": "Python",
"Source": [
"JCT&CS T010"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0011",
"Type": "Tasks",
"Description": "(U) Analyze, modify, develop, debug and document software and applications utilizing standard, non-standard, specialized, and/or unique network communication protocols.",
"Topic": "Network Analysis/Programming",
"Source": [
"JCT&CS T011"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0012",
"Type": "Tasks",
"Description": "(U) Analyze, modify, develop, debug and document custom interface specifications between interconnected systems.",
"Topic": "Software Engineering",
"Source": [
"JCT&CS T012"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0013",
"Type": "Tasks",
"Description": "(U) Manage source code using version control (e.g. Git)",
"Topic": "Version Control",
"Source": [
"JCT&CS T013"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0014",
"Type": "Tasks",
"Description": "(U) Develop, modify, and utilize automation technologies to enable employment of capabilities as efficiently as possible (e.g. TDD, CI/CD, etc.)",
"Topic": "DevOps",
"Source": [
"JCT&CS T014"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0015",
"Type": "Tasks",
"Description": "(U) Build, test, and modify prototypes using representative environments.",
"Topic": "Software Testing",
"Source": [
"JCT&CS T015"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0016",
"Type": "Tasks",
"Description": "(U) Analyze and correct technical problems encountered during testing and implementation of cyberspace solutions.",
"Topic": "Software Testing",
"Source": [
"JCT&CS T016"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0017",
"Type": "Tasks",
"Description": "(U) Analyze, modify, develop, debug and document software and applications using assembly languages.",
"Topic": "Assembly Programming",
"Source": [
"JCT&CS T017"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0018",
"Type": "Tasks",
"Description": "(U) Utilize tools to decompile, disassembe, analzye, and reverse engineer compiled binaries.",
"Topic": "Reverse Engineering",
"Source": [
"JCT&CS T018"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0019",
"Type": "Tasks",
"Description": "(U) Make use of compiler attributes and platform-specific features.",
"Topic": "Programming",
"Source": [
"JCT&CS T019"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0020",
"Type": "Tasks",
"Description": "(U) Perform static and dynamic analysis in order to find errors and flaws.",
"Topic": "Debugging",
"Source": [
"JCT&CS T020"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0021",
"Type": "Tasks",
"Description": "(U) Conduct hardware and/or software static and dynamic analysis to reverse engineer malicious or benign systems",
"Topic": "Reverse Engineering",
"Source": [
"JCT&CS T021"
],
"OPR": "USCYBERCOM/J7"
},
{
"Label": "T0022",
"Type": "Tasks",
"Description": "(U) Research, reference, discover, analyze, modify, develop and document known and new vulnerabilities in computer systems.",
"Topic": "Vulnerability Research",
"Source": [
"JCT&CS T022"
],