-
Notifications
You must be signed in to change notification settings - Fork 5
/
schema.json
1540 lines (1540 loc) · 76.1 KB
/
schema.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
{
"config": {
"schema": "OwaspASVS",
"version": "4.0"
},
"metadata": [
"team",
"security-champion",
"source-code-repo",
"issue-tracking",
"wiki",
"ci-server",
"created-by",
"hide-from-stats"
],
"domains": {
"ASVS": {
"practices": [
"ARCHITECTURE, DESIGN AND THREAT MODELLING",
"AUTHENTICATION",
"SESSION MANAGEMENT",
"ACCESS CONTROL",
"MALICIOUS INPUT HANDLING",
"CRYPTOGRAPHY AT REST",
"ERROR HANDLING AND LOGGING",
"DATA PROTECTION",
"COMMUNICATIONS SECURITY",
"MALICIOUS CONTROLS",
"BUSINESS LOGIC",
"FILES AND RESOURCES",
"WEB SERVICES",
"CONFIGURATION"
]
}
},
"practices": {
"ARCHITECTURE, DESIGN AND THREAT MODELLING": {
"key": "ARCH",
"activities": [
"ARCH.1.1.1",
"ARCH.1.1.2",
"ARCH.1.1.3",
"ARCH.1.1.4",
"ARCH.1.1.5",
"ARCH.1.1.6",
"ARCH.1.1.7",
"ARCH.1.10.1",
"ARCH.1.11.1",
"ARCH.1.11.2",
"ARCH.1.11.3",
"ARCH.1.12.1",
"ARCH.1.12.2",
"ARCH.1.14.1",
"ARCH.1.14.2",
"ARCH.1.14.3",
"ARCH.1.14.4",
"ARCH.1.14.5",
"ARCH.1.14.6",
"ARCH.1.2.1",
"ARCH.1.2.2",
"ARCH.1.2.3",
"ARCH.1.2.4",
"ARCH.1.4.1",
"ARCH.1.4.2",
"ARCH.1.4.3",
"ARCH.1.4.4",
"ARCH.1.4.5",
"ARCH.1.5.1",
"ARCH.1.5.2",
"ARCH.1.5.3",
"ARCH.1.5.4",
"ARCH.1.6.1",
"ARCH.1.6.2",
"ARCH.1.6.3",
"ARCH.1.6.4",
"ARCH.1.7.1",
"ARCH.1.7.2",
"ARCH.1.8.1",
"ARCH.1.8.2",
"ARCH.1.9.1",
"ARCH.1.9.2"
]
},
"AUTHENTICATION": {
"key": "AUTH",
"activities": [
"AUTH.2.1.1",
"AUTH.2.1.10",
"AUTH.2.1.11",
"AUTH.2.1.12",
"AUTH.2.1.2",
"AUTH.2.1.3",
"AUTH.2.1.4",
"AUTH.2.1.5",
"AUTH.2.1.6",
"AUTH.2.1.7",
"AUTH.2.1.8",
"AUTH.2.1.9",
"AUTH.2.10.1",
"AUTH.2.10.2",
"AUTH.2.10.3",
"AUTH.2.10.4",
"AUTH.2.2.1",
"AUTH.2.2.2",
"AUTH.2.2.3",
"AUTH.2.2.4",
"AUTH.2.2.5",
"AUTH.2.2.6",
"AUTH.2.2.7",
"AUTH.2.3.1",
"AUTH.2.3.2",
"AUTH.2.3.3",
"AUTH.2.4.1",
"AUTH.2.4.2",
"AUTH.2.4.3",
"AUTH.2.4.4",
"AUTH.2.4.5",
"AUTH.2.5.1",
"AUTH.2.5.2",
"AUTH.2.5.3",
"AUTH.2.5.4",
"AUTH.2.5.5",
"AUTH.2.5.6",
"AUTH.2.5.7",
"AUTH.2.6.1",
"AUTH.2.6.2",
"AUTH.2.6.3",
"AUTH.2.7.1",
"AUTH.2.7.2",
"AUTH.2.7.3",
"AUTH.2.7.4",
"AUTH.2.7.5",
"AUTH.2.7.6",
"AUTH.2.8.1",
"AUTH.2.8.2",
"AUTH.2.8.3",
"AUTH.2.8.4",
"AUTH.2.8.5",
"AUTH.2.8.6",
"AUTH.2.8.7",
"AUTH.2.9.1",
"AUTH.2.9.2",
"AUTH.2.9.3",
"AUTH.3.1.1"
]
},
"SESSION MANAGEMENT": {
"key": "SESSMGMT",
"activities": [
"SESSMGMT.3.2.1",
"SESSMGMT.3.2.2",
"SESSMGMT.3.2.3",
"SESSMGMT.3.2.4",
"SESSMGMT.3.3.1",
"SESSMGMT.3.3.2",
"SESSMGMT.3.3.3",
"SESSMGMT.3.3.4",
"SESSMGMT.3.4.1",
"SESSMGMT.3.4.2",
"SESSMGMT.3.4.3",
"SESSMGMT.3.4.4",
"SESSMGMT.3.4.5",
"SESSMGMT.3.5.1",
"SESSMGMT.3.5.2",
"SESSMGMT.3.5.3",
"SESSMGMT.3.6.1",
"SESSMGMT.3.6.2",
"SESSMGMT.3.7.1"
]
},
"ACCESS CONTROL": {
"key": "ACCESS",
"activities": [
"ACCESS.4.1.1",
"ACCESS.4.1.2",
"ACCESS.4.1.3",
"ACCESS.4.1.4",
"ACCESS.4.1.5",
"ACCESS.4.2.1",
"ACCESS.4.2.2",
"ACCESS.4.3.1",
"ACCESS.4.3.2",
"ACCESS.4.3.3"
]
},
"MALICIOUS INPUT HANDLING": {
"key": "VALIDATION",
"activities": [
"VALIDATION.5.1.1",
"VALIDATION.5.1.2",
"VALIDATION.5.1.3",
"VALIDATION.5.1.4",
"VALIDATION.5.1.5",
"VALIDATION.5.2.1",
"VALIDATION.5.2.2",
"VALIDATION.5.2.3",
"VALIDATION.5.2.4",
"VALIDATION.5.2.5",
"VALIDATION.5.2.6",
"VALIDATION.5.2.7",
"VALIDATION.5.2.8",
"VALIDATION.5.3.1",
"VALIDATION.5.3.10",
"VALIDATION.5.3.2",
"VALIDATION.5.3.3",
"VALIDATION.5.3.4",
"VALIDATION.5.3.5",
"VALIDATION.5.3.6",
"VALIDATION.5.3.7",
"VALIDATION.5.3.8",
"VALIDATION.5.3.9",
"VALIDATION.5.4.1",
"VALIDATION.5.4.2",
"VALIDATION.5.4.3",
"VALIDATION.5.5.1",
"VALIDATION.5.5.2",
"VALIDATION.5.5.3",
"VALIDATION.5.5.4"
]
},
"CRYPTOGRAPHY AT REST": {
"key": "CRYPTO",
"activities": [
"CRYPTO.6.1.1",
"CRYPTO.6.1.2",
"CRYPTO.6.1.3",
"CRYPTO.6.2.1",
"CRYPTO.6.2.2",
"CRYPTO.6.2.3",
"CRYPTO.6.2.4",
"CRYPTO.6.2.5",
"CRYPTO.6.2.6",
"CRYPTO.6.2.7",
"CRYPTO.6.2.8",
"CRYPTO.6.3.1",
"CRYPTO.6.3.2",
"CRYPTO.6.3.3",
"CRYPTO.6.4.1",
"CRYPTO.6.4.2"
]
},
"ERROR HANDLING AND LOGGING": {
"key": "ERROR",
"activities": [
"ERROR.7.1.1",
"ERROR.7.1.2",
"ERROR.7.1.3",
"ERROR.7.1.4",
"ERROR.7.2.1",
"ERROR.7.2.2",
"ERROR.7.3.1",
"ERROR.7.3.2",
"ERROR.7.3.3",
"ERROR.7.3.4",
"ERROR.7.4.1",
"ERROR.7.4.2",
"ERROR.7.4.3"
]
},
"DATA PROTECTION": {
"key": "DATA",
"activities": [
"DATA.8.1.1",
"DATA.8.1.2",
"DATA.8.1.3",
"DATA.8.1.4",
"DATA.8.1.5",
"DATA.8.1.6",
"DATA.8.2.1",
"DATA.8.2.2",
"DATA.8.2.3",
"DATA.8.3.1",
"DATA.8.3.2",
"DATA.8.3.3",
"DATA.8.3.4",
"DATA.8.3.5",
"DATA.8.3.6",
"DATA.8.3.7",
"DATA.8.3.8"
]
},
"COMMUNICATIONS SECURITY": {
"key": "COMSEC",
"activities": [
"COMSEC.9.1.1",
"COMSEC.9.1.2",
"COMSEC.9.1.3",
"COMSEC.9.2.1",
"COMSEC.9.2.2",
"COMSEC.9.2.3",
"COMSEC.9.2.4",
"COMSEC.9.2.5"
]
},
"MALICIOUS CONTROLS": {
"key": "MALCTRL",
"activities": [
"MALCTRL.10.1.1",
"MALCTRL.10.2.1",
"MALCTRL.10.2.2",
"MALCTRL.10.2.3",
"MALCTRL.10.2.4",
"MALCTRL.10.2.5",
"MALCTRL.10.2.6",
"MALCTRL.10.3.1",
"MALCTRL.10.3.2",
"MALCTRL.10.3.3"
]
},
"BUSINESS LOGIC": {
"key": "BUSINESS",
"activities": [
"BUSINESS.11.1.1",
"BUSINESS.11.1.2",
"BUSINESS.11.1.3",
"BUSINESS.11.1.4",
"BUSINESS.11.1.5",
"BUSINESS.11.1.6",
"BUSINESS.11.1.7",
"BUSINESS.11.1.8"
]
},
"FILES AND RESOURCES": {
"key": "FILES",
"activities": [
"FILES.12.1.1",
"FILES.12.1.2",
"FILES.12.1.3",
"FILES.12.2.1",
"FILES.12.3.1",
"FILES.12.3.2",
"FILES.12.3.3",
"FILES.12.3.4",
"FILES.12.3.5",
"FILES.12.3.6",
"FILES.12.4.1",
"FILES.12.4.2",
"FILES.12.5.1",
"FILES.12.5.2",
"FILES.12.6.1"
]
},
"WEB SERVICES": {
"key": "WS",
"activities": [
"WS.13.1.1",
"WS.13.1.2",
"WS.13.1.3",
"WS.13.1.4",
"WS.13.1.5",
"WS.13.2.1",
"WS.13.2.2",
"WS.13.2.3",
"WS.13.2.4",
"WS.13.2.5",
"WS.13.2.6",
"WS.13.3.1",
"WS.13.3.2",
"WS.13.4.1",
"WS.13.4.2"
]
},
"CONFIGURATION": {
"key": "CONF",
"activities": [
"CONF.14.1.1",
"CONF.14.1.2",
"CONF.14.1.3",
"CONF.14.1.4",
"CONF.14.1.5",
"CONF.14.2.1",
"CONF.14.2.2",
"CONF.14.2.3",
"CONF.14.2.4",
"CONF.14.2.5",
"CONF.14.2.6",
"CONF.14.3.1",
"CONF.14.3.2",
"CONF.14.3.3",
"CONF.14.4.1",
"CONF.14.4.2",
"CONF.14.4.3",
"CONF.14.4.4",
"CONF.14.4.5",
"CONF.14.4.6",
"CONF.14.4.7",
"CONF.14.5.1",
"CONF.14.5.2",
"CONF.14.5.3",
"CONF.14.5.4"
]
}
},
"activities": {
"ARCH.1.1.1": {
"name": "Verify the use of a secure software development lifecycle that addresses security in all stages of development. ([C1](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.1.2": {
"name": "Verify the use of threat modeling for every design change or sprint planning to identify threats, plan for countermeasures, facilitate appropriate risk responses, and guide security testing.",
"level": "2"
},
"ARCH.1.1.3": {
"name": "Verify that all user stories and features contain functional security constraints, such as \"As a user,I should be able to view and edit my profile.I should not be able to view or edit anyone else 's profile\"",
"level": "2"
},
"ARCH.1.1.4": {
"name": "Verify documentation and justification of all the application's trust boundaries, components, and significant data flows.",
"level": "2"
},
"ARCH.1.1.5": {
"name": "Verify definition and security analysis of the application's high-level architecture and all connected remote services. ([C1](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.1.6": {
"name": "Verify implementation of centralized, simple (economy of design), vetted, secure, and reusable security controls to avoid duplicate, missing, ineffective, or insecure controls. ([C10](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.1.7": {
"name": "Verify availability of a secure coding checklist, security requirements, guideline, or policy to all developers and testers.",
"level": "2"
},
"ARCH.1.10.1": {
"name": "Verify that a source code control system is in use, with procedures to ensure that check-ins are accompanied by issues or change tickets. The source code control system should have access control and identifiable users to allow traceability of any changes.",
"level": "2"
},
"ARCH.1.11.1": {
"name": "Verify the definition and documentation of all application components in terms of the business or security functions they provide.",
"level": "2"
},
"ARCH.1.11.2": {
"name": "Verify that all high-value business logic flows, including authentication, session management and access control, do not share unsynchronized state.",
"level": "2"
},
"ARCH.1.11.3": {
"name": "Verify that all high-value business logic flows, including authentication, session management and access control are thread safe and resistant to time-of-check and time-of-use race conditions.",
"level": "3"
},
"ARCH.1.12.1": {
"name": "Verify that user-uploaded files are stored outside of the web root.",
"level": "2"
},
"ARCH.1.12.2": {
"name": "Verify that user-uploaded files - if required to be displayed or downloaded from the application - are served by either octet stream downloads, or from an unrelated domain, such as a cloud file storage bucket. Implement a suitable content security policy to reduce the risk from XSS vectors or other attacks from the uploaded file.",
"level": "2"
},
"ARCH.1.14.1": {
"name": "Verify the segregation of components of differing trust levels through well-defined security controls, firewall rules, API gateways, reverse proxies, cloud-based security groups, or similar mechanisms.",
"level": "2"
},
"ARCH.1.14.2": {
"name": "Verify that if deploying binaries to untrusted devices makes use of binary signatures, trusted connections, and verified endpoints.",
"level": "2"
},
"ARCH.1.14.3": {
"name": "Verify that the build pipeline warns of out-of-date or insecure components and takes appropriate actions.",
"level": "2"
},
"ARCH.1.14.4": {
"name": "Verify that the build pipeline contains a build step to automatically build and verify the secure deployment of the application, particularly if the application infrastructure is software defined, such as cloud environment build scripts.",
"level": "2"
},
"ARCH.1.14.5": {
"name": "Verify that application deployments adequately sandbox, containerize and/or isolate at the network level to delay and deter attackers from attacking other applications, especially when they are performing sensitive or dangerous actions such as deserialization. ([C5](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.14.6": {
"name": "Verify the application does not use unsupported, insecure, or deprecated client-side technologies such as NSAPI plugins, Flash, Shockwave, ActiveX, Silverlight, NACL, or client-side Java applets.",
"level": "2"
},
"ARCH.1.2.1": {
"name": "Verify the use of unique or special low-privilege operating system accounts for all application components, services, and servers. ([C3](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.2.2": {
"name": "Verify that communications between application components, including APIs, middleware and data layers, are authenticated. Components should have the least necessary privileges needed. ([C3](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.2.3": {
"name": "Verify that the application uses a single vetted authentication mechanism that is known to be secure, can be extended to include strong authentication, and has sufficient logging and monitoring to detect account abuse or breaches.",
"level": "2"
},
"ARCH.1.2.4": {
"name": "Verify that all authentication pathways and identity management APIs implement consistent authentication security control strength, such that there are no weaker alternatives per the risk of the application.",
"level": "2"
},
"ARCH.1.4.1": {
"name": "Verify that trusted enforcement points such as at access control gateways, servers, and serverless functions enforce access controls. Never enforce access controls on the client.",
"level": "2"
},
"ARCH.1.4.2": {
"name": "Verify that the chosen access control solution is flexible enough to meet the application's needs.",
"level": "2"
},
"ARCH.1.4.3": {
"name": "Verify enforcement of the principle of least privilege in functions, data files, URLs, controllers, services, and other resources. This implies protection against spoofing and elevation of privilege.",
"level": "2"
},
"ARCH.1.4.4": {
"name": "Verify the application uses a single and well-vetted access control mechanism for accessing protected data and resources. All requests must pass through this single mechanism to avoid copy and paste or insecure alternative paths. ([C7](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.4.5": {
"name": "Verify that attribute or feature-based access control is used whereby the code checks the user's authorization for a feature/data item rather than just their role. Permissions should still be allocated using roles. ([C7](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.5.1": {
"name": "Verify that input and output requirements clearly define how to handle and process data based on type, content, and applicable laws, regulations, and other policy compliance.",
"level": "2"
},
"ARCH.1.5.2": {
"name": "Verify that serialization is not used when communicating with untrusted clients. If this is not possible, ensure that adequate integrity controls (and possibly encryption if sensitive data is sent) are enforced to prevent deserialization attacks including object injection.",
"level": "2"
},
"ARCH.1.5.3": {
"name": "Verify that input validation is enforced on a trusted service layer. ([C5](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.5.4": {
"name": "Verify that output encoding occurs close to or by the interpreter for which it is intended. ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.6.1": {
"name": "Verify that there is an explicit policy for management of cryptographic keys and that a cryptographic key lifecycle follows a key management standard such as NIST SP 800-57.",
"level": "2"
},
"ARCH.1.6.2": {
"name": "Verify that consumers of cryptographic services protect key material and other secrets by using key vaults or API based alternatives.",
"level": "2"
},
"ARCH.1.6.3": {
"name": "Verify that all keys and passwords are replaceable and are part of a well-defined process to re-encrypt sensitive data.",
"level": "2"
},
"ARCH.1.6.4": {
"name": "Verify that symmetric keys, passwords, or API secrets generated by or shared with clients are used only in protecting low risk secrets, such as encrypting local storage, or temporary ephemeral uses such as parameter obfuscation. Sharing secrets with clients is clear-text equivalent and architecturally should be treated as such.",
"level": "2"
},
"ARCH.1.7.1": {
"name": "Verify that a common logging format and approach is used across the system. ([C9](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.7.2": {
"name": "Verify that logs are securely transmitted to a preferably remote system for analysis, detection, alerting, and escalation. ([C9](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.8.1": {
"name": "Verify that all sensitive data is identified and classified into protection levels.",
"level": "2"
},
"ARCH.1.8.2": {
"name": "Verify that all protection levels have an associated set of protection requirements, such as encryption requirements, integrity requirements, retention, privacy and other confidentiality requirements, and that these are applied in the architecture.",
"level": "2"
},
"ARCH.1.9.1": {
"name": "Verify the application encrypts communications between components, particularly when these components are in different containers, systems, sites, or cloud providers. ([C3](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"ARCH.1.9.2": {
"name": "Verify that application components verify the authenticity of each side in a communication link to prevent person-in-the-middle attacks. For example, application components should validate TLS certificates and chains.",
"level": "2"
},
"AUTH.2.1.1": {
"name": "Verify that user set passwords are at least 12 characters in length. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.1.10": {
"name": "Verify that there are no periodic credential rotation or password history requirements.",
"level": "1"
},
"AUTH.2.1.11": {
"name": "Verify that \"paste\" functionality, browser password helpers, and external password managers are permitted.",
"level": "1"
},
"AUTH.2.1.12": {
"name": "Verify that the user can choose to either temporarily view the entire masked password, or temporarily view the last typed character of the password on platforms that do not have this as native functionality.",
"level": "1"
},
"AUTH.2.1.2": {
"name": "Verify that passwords 64 characters or longer are permitted. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.1.3": {
"name": "Verify that passwords can contain spaces and truncation is not performed. Consecutive multiple spaces MAY optionally be coalesced. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.1.4": {
"name": "Verify that Unicode characters are permitted in passwords. A single Unicode code point is considered a character, so 12 emoji or 64 kanji characters should be valid and permitted.",
"level": "1"
},
"AUTH.2.1.5": {
"name": "Verify users can change their password.",
"level": "1"
},
"AUTH.2.1.6": {
"name": "Verify that password change functionality requires the user's current and new password.",
"level": "1"
},
"AUTH.2.1.7": {
"name": "Verify that passwords submitted during account registration, login, and password change are checked against a set of breached passwords either locally (such as the top 1,000 or 10,000 most common passwords which match the system's password policy) or using an external API. If using an API a zero knowledge proof or other mechanism should be used to ensure that the plain text password is not sent or used in verifying the breach status of the password. If the password is breached, the application must require the user to set a new non-breached password. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.1.8": {
"name": "Verify that a password strength meter is provided to help users set a stronger password.",
"level": "1"
},
"AUTH.2.1.9": {
"name": "Verify that there are no password composition rules limiting the type of characters permitted. There should be no requirement for upper or lower case or numbers or special characters. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.10.1": {
"name": "Verify that integration secrets do not rely on unchanging passwords, such as API keys or shared privileged accounts.",
"level": "1"
},
"AUTH.2.10.2": {
"name": "Verify that if passwords are required, the credentials are not a default account.",
"level": "1"
},
"AUTH.2.10.3": {
"name": "Verify that passwords are stored with sufficient protection to prevent offline recovery attacks, including local system access.",
"level": "1"
},
"AUTH.2.10.4": {
"name": "Verify passwords, integrations with databases and third-party systems, seeds and internal secrets, and API keys are managed securely and not included in the source code or stored within source code repositories. Such storage SHOULD resist offline attacks. The use of a secure software key store (L1), hardware trusted platform module (TPM), or a hardware security module (L3) is recommended for password storage.",
"level": "1"
},
"AUTH.2.2.1": {
"name": "Verify that anti-automation controls are effective at mitigating breached credential testing, brute force, and account lockout attacks. Such controls include blocking the most common breached passwords, soft lockouts, rate limiting, CAPTCHA, ever increasing delays between attempts, IP address restrictions, or risk-based restrictions such as location, first login on a device, recent attempts to unlock the account, or similar. Verify that no more than 100 failed attempts per hour is possible on a single account.",
"level": "1"
},
"AUTH.2.2.2": {
"name": "Verify that the use of weak authenticators (such as SMS and email) is limited to secondary verification and transaction approval and not as a replacement for more secure authentication methods. Verify that stronger methods are offered before weak methods, users are aware of the risks, or that proper measures are in place to limit the risks of account compromise.",
"level": "1"
},
"AUTH.2.2.3": {
"name": "Verify that secure notifications are sent to users after updates to authentication details, such as credential resets, email or address changes, logging in from unknown or risky locations. The use of push notifications - rather than SMS or email - is preferred, but in the absence of push notifications, SMS or email is acceptable as long as no sensitive information is disclosed in the notification.",
"level": "1"
},
"AUTH.2.2.4": {
"name": "Verify impersonation resistance against phishing, such as the use of multi-factor authentication, cryptographic devices with intent (such as connected keys with a push to authenticate), or at higher AAL levels, client-side certificates.",
"level": "3"
},
"AUTH.2.2.5": {
"name": "Verify that where a credential service provider (CSP) and the application verifying authentication are separated, mutually authenticated TLS is in place between the two endpoints.",
"level": "3"
},
"AUTH.2.2.6": {
"name": "Verify replay resistance through the mandated use of OTP devices, cryptographic authenticators, or lookup codes.",
"level": "3"
},
"AUTH.2.2.7": {
"name": "Verify intent to authenticate by requiring the entry of an OTP token or user-initiated action such as a button press on a FIDO hardware key.",
"level": "3"
},
"AUTH.2.3.1": {
"name": "Verify system generated initial passwords or activation codes SHOULD be securely randomly generated, SHOULD be at least 6 characters long, and MAY contain letters and numbers, and expire after a short period of time. These initial secrets must not be permitted to become the long term password.",
"level": "1"
},
"AUTH.2.3.2": {
"name": "Verify that enrollment and use of subscriber-provided authentication devices are supported, such as a U2F or FIDO tokens.",
"level": "2"
},
"AUTH.2.3.3": {
"name": "Verify that renewal instructions are sent with sufficient time to renew time bound authenticators.",
"level": "2"
},
"AUTH.2.4.1": {
"name": "Verify that passwords are stored in a form that is resistant to offline attacks. Passwords SHALL be salted and hashed using an approved one-way key derivation or password hashing function. Key derivation and password hashing functions take a password, a salt, and a cost factor as inputs when generating a password hash. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"AUTH.2.4.2": {
"name": "Verify that the salt is at least 32 bits in length and be chosen arbitrarily to minimize salt value collisions among stored hashes. For each credential, a unique salt value and the resulting hash SHALL be stored. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"AUTH.2.4.3": {
"name": "Verify that if PBKDF2 is used, the iteration count SHOULD be as large as verification server performance will allow, typically at least 100,000 iterations. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"AUTH.2.4.4": {
"name": "Verify that if bcrypt is used, the work factor SHOULD be as large as verification server performance will allow, typically at least 13. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"AUTH.2.4.5": {
"name": "Verify that an additional iteration of a key derivation function is performed, using a salt value that is secret and known only to the verifier. Generate the salt value using an approved random bit generator [SP 800-90Ar1] and provide at least the minimum security strength specified in the latest revision of SP 800-131A. The secret salt value SHALL be stored separately from the hashed passwords (e.g., in a specialized device like a hardware security module).",
"level": "2"
},
"AUTH.2.5.1": {
"name": "Verify that a system generated initial activation or recovery secret is not sent in clear text to the user. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.5.2": {
"name": "Verify password hints or knowledge-based authentication (so-called \"secret questions\") are not present.",
"level": "1"
},
"AUTH.2.5.3": {
"name": "Verify password credential recovery does not reveal the current password in any way. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.5.4": {
"name": "Verify shared or default accounts are not present (e.g. \"root\", \"admin\", or \"sa\").",
"level": "1"
},
"AUTH.2.5.5": {
"name": "Verify that if an authentication factor is changed or replaced, that the user is notified of this event.",
"level": "1"
},
"AUTH.2.5.6": {
"name": "Verify forgotten password, and other recovery paths use a secure recovery mechanism, such as TOTP or other soft token, mobile push, or another offline recovery mechanism. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"AUTH.2.5.7": {
"name": "Verify that if OTP or multi-factor authentication factors are lost, that evidence of identity proofing is performed at the same level as during enrollment.",
"level": "2"
},
"AUTH.2.6.1": {
"name": "Verify that lookup secrets can be used only once.",
"level": "2"
},
"AUTH.2.6.2": {
"name": "Verify that lookup secrets have sufficient randomness (112 bits of entropy), or if less than 112 bits of entropy, salted with a unique and random 32-bit salt and hashed with an approved one-way hash.",
"level": "2"
},
"AUTH.2.6.3": {
"name": "Verify that lookup secrets are resistant to offline attacks, such as predictable values.",
"level": "2"
},
"AUTH.2.7.1": {
"name": "Verify that clear text out of band (NIST \"restricted\") authenticators, such as SMS or PSTN, are not offered by default, and stronger alternatives such as push notifications are offered first.",
"level": "1"
},
"AUTH.2.7.2": {
"name": "Verify that the out of band verifier expires out of band authentication requests, codes, or tokens after 10 minutes.",
"level": "1"
},
"AUTH.2.7.3": {
"name": "Verify that the out of band verifier authentication requests, codes, or tokens are only usable once, and only for the original authentication request.",
"level": "1"
},
"AUTH.2.7.4": {
"name": "Verify that the out of band authenticator and verifier communicates over a secure independent channel.",
"level": "1"
},
"AUTH.2.7.5": {
"name": "Verify that the out of band verifier retains only a hashed version of the authentication code.",
"level": "2"
},
"AUTH.2.7.6": {
"name": "Verify that the initial authentication code is generated by a secure random number generator, containing at least 20 bits of entropy (typically a six digital random number is sufficient).",
"level": "2"
},
"AUTH.2.8.1": {
"name": "Verify that time-based OTPs have a defined lifetime before expiring.",
"level": "1"
},
"AUTH.2.8.2": {
"name": "Verify that symmetric keys used to verify submitted OTPs are highly protected, such as by using a hardware security module or secure operating system based key storage.",
"level": "2"
},
"AUTH.2.8.3": {
"name": "Verify that approved cryptographic algorithms are used in the generation, seeding, and verification.",
"level": "2"
},
"AUTH.2.8.4": {
"name": "Verify that time-based OTP can be used only once within the validity period.",
"level": "2"
},
"AUTH.2.8.5": {
"name": "Verify that if a time-based multi factor OTP token is re-used during the validity period, it is logged and rejected with secure notifications being sent to the holder of the device.",
"level": "2"
},
"AUTH.2.8.6": {
"name": "Verify physical single factor OTP generator can be revoked in case of theft or other loss. Ensure that revocation is immediately effective across logged in sessions, regardless of location.",
"level": "2"
},
"AUTH.2.8.7": {
"name": "Verify that biometric authenticators are limited to use only as secondary factors in conjunction with either something you have and something you know.",
"level": "3"
},
"AUTH.2.9.1": {
"name": "Verify that cryptographic keys used in verification are stored securely and protected against disclosure, such as using a TPM or HSM, or an OS service that can use this secure storage.",
"level": "2"
},
"AUTH.2.9.2": {
"name": "Verify that the challenge nonce is at least 64 bits in length, and statistically unique or unique over the lifetime of the cryptographic device.",
"level": "2"
},
"AUTH.2.9.3": {
"name": "Verify that approved cryptographic algorithms are used in the generation, seeding, and verification.",
"level": "2"
},
"AUTH.3.1.1": {
"name": "Verify the application never reveals session tokens in URL parameters or error messages.",
"level": "1"
},
"SESSMGMT.3.2.1": {
"name": "Verify the application generates a new session token on user authentication. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.2.2": {
"name": "Verify that session tokens possess at least 64 bits of entropy. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.2.3": {
"name": "Verify the application only stores session tokens in the browser using secure methods such as appropriately secured cookies (see section 3.4) or HTML 5 session storage.",
"level": "1"
},
"SESSMGMT.3.2.4": {
"name": "Verify that session token are generated using approved cryptographic algorithms. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "2"
},
"SESSMGMT.3.3.1": {
"name": "Verify that logout and expiration invalidate the session token, such that the back button or a downstream relying party does not resume an authenticated session, including across relying parties. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.3.2": {
"name": "If authenticators permit users to remain logged in, verify that re-authentication occurs periodically both when actively used or after an idle period. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.3.3": {
"name": "Verify that the application terminates all other active sessions after a successful password change, and that this is effective across the application, federated login (if present), and any relying parties.",
"level": "2"
},
"SESSMGMT.3.3.4": {
"name": "Verify that users are able to view and log out of any or all currently active sessions and devices.",
"level": "2"
},
"SESSMGMT.3.4.1": {
"name": "Verify that cookie-based session tokens have the 'Secure' attribute set. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.4.2": {
"name": "Verify that cookie-based session tokens have the 'HttpOnly' attribute set. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.4.3": {
"name": "Verify that cookie-based session tokens utilize the 'SameSite' attribute to limit exposure to cross-site request forgery attacks. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.4.4": {
"name": "Verify that cookie-based session tokens use \"__Host-\" prefix (see references) to provide session cookie confidentiality.",
"level": "1"
},
"SESSMGMT.3.4.5": {
"name": "Verify that if the application is published under a domain name with other applications that set or use session cookies that might override or disclose the session cookies, set the path attribute in cookie-based session tokens using the most precise path possible. ([C6](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"SESSMGMT.3.5.1": {
"name": "Verify the application does not treat OAuth and refresh tokens — on their own — as the presence of the subscriber and allows users to terminate trust relationships with linked applications.",
"level": "2"
},
"SESSMGMT.3.5.2": {
"name": "Verify the application uses session tokens rather than static API secrets and keys, except with legacy implementations.",
"level": "2"
},
"SESSMGMT.3.5.3": {
"name": "Verify that stateless session tokens use digital signatures, encryption, and other countermeasures to protect against tampering, enveloping, replay, null cipher, and key substitution attacks.",
"level": "2"
},
"SESSMGMT.3.6.1": {
"name": "Verify that relying parties specify the maximum authentication time to CSPs and that CSPs re-authenticate the subscriber if they haven't used a session within that period.",
"level": "3"
},
"SESSMGMT.3.6.2": {
"name": "Verify that CSPs inform relying parties of the last authentication event, to allow RPs to determine if they need to re-authenticate the user.",
"level": "3"
},
"SESSMGMT.3.7.1": {
"name": "Verify the application ensures a valid login session or requires re-authentication or secondary verification before allowing any sensitive transactions or account modifications.",
"level": "1"
},
"ACCESS.4.1.1": {
"name": "Verify that the application enforces access control rules on a trusted service layer, especially if client-side access control is present and could be bypassed.",
"level": "1"
},
"ACCESS.4.1.2": {
"name": "Verify that all user and data attributes and policy information used by access controls cannot be manipulated by end users unless specifically authorized.",
"level": "1"
},
"ACCESS.4.1.3": {
"name": "Verify that the principle of least privilege exists - users should only be able to access functions, data files, URLs, controllers, services, and other resources, for which they possess specific authorization. This implies protection against spoofing and elevation of privilege. ([C7](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"ACCESS.4.1.4": {
"name": "Verify that the principle of deny by default exists whereby new users/roles start with minimal or no permissions and users/roles do not receive access to new features until access is explicitly assigned. ([C7](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"ACCESS.4.1.5": {
"name": "Verify that access controls fail securely including when an exception occurs. ([C10](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"ACCESS.4.2.1": {
"name": "Verify that sensitive data and APIs are protected against direct object attacks targeting creation, reading, updating and deletion of records, such as creating or updating someone else's record, viewing everyone's records, or deleting all records.",
"level": "1"
},
"ACCESS.4.2.2": {
"name": "Verify that the application or framework enforces a strong anti-CSRF mechanism to protect authenticated functionality, and effective anti-automation or anti-CSRF protects unauthenticated functionality.",
"level": "1"
},
"ACCESS.4.3.1": {
"name": "Verify administrative interfaces use appropriate multi-factor authentication to prevent unauthorized use.",
"level": "1"
},
"ACCESS.4.3.2": {
"name": "Verify that directory browsing is disabled unless deliberately desired. Additionally, applications should not allow discovery or disclosure of file or directory metadata, such as Thumbs.db, .DS_Store, .git or .svn folders.",
"level": "1"
},
"ACCESS.4.3.3": {
"name": "Verify the application has additional authorization (such as step up or adaptive authentication) for lower value systems, and / or segregation of duties for high value applications to enforce anti-fraud controls as per the risk of application and past fraud.",
"level": "2"
},
"VALIDATION.5.1.1": {
"name": "Verify that the application has defenses against HTTP parameter pollution attacks, particularly if the application framework makes no distinction about the source of request parameters (GET, POST, cookies, headers, or environment variables).",
"level": "1"
},
"VALIDATION.5.1.2": {
"name": "Verify that frameworks protect against mass parameter assignment attacks, or that the application has countermeasures to protect against unsafe parameter assignment, such as marking fields private or similar. ([C5](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.1.3": {
"name": "Verify that all input (HTML form fields, REST requests, URL parameters, HTTP headers, cookies, batch files, RSS feeds, etc) is validated using positive validation (whitelisting). ([C5](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.1.4": {
"name": "Verify that structured data is strongly typed and validated against a defined schema including allowed characters, length and pattern (e.g. credit card numbers or telephone, or validating that two related fields are reasonable, such as checking that suburb and zip/postcode match). ([C5](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.1.5": {
"name": "Verify that URL redirects and forwards only allow whitelisted destinations, or show a warning when redirecting to potentially untrusted content.",
"level": "1"
},
"VALIDATION.5.2.1": {
"name": "Verify that all untrusted HTML input from WYSIWYG editors or similar is properly sanitized with an HTML sanitizer library or framework feature. ([C5](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.2.2": {
"name": "Verify that unstructured data is sanitized to enforce safety measures such as allowed characters and length.",
"level": "1"
},
"VALIDATION.5.2.3": {
"name": "Verify that the application sanitizes user input before passing to mail systems to protect against SMTP or IMAP injection.",
"level": "1"
},
"VALIDATION.5.2.4": {
"name": "Verify that the application avoids the use of eval() or other dynamic code execution features. Where there is no alternative, any user input being included must be sanitized or sandboxed before being executed.",
"level": "1"
},
"VALIDATION.5.2.5": {
"name": "Verify that the application protects against template injection attacks by ensuring that any user input being included is sanitized or sandboxed.",
"level": "1"
},
"VALIDATION.5.2.6": {
"name": "Verify that the application protects against SSRF attacks, by validating or sanitizing untrusted data or HTTP file metadata, such as filenames and URL input fields, use whitelisting of protocols, domains, paths and ports.",
"level": "1"
},
"VALIDATION.5.2.7": {
"name": "Verify that the application sanitizes, disables, or sandboxes user-supplied SVG scriptable content, especially as they relate to XSS resulting from inline scripts, and foreignObject.",
"level": "1"
},
"VALIDATION.5.2.8": {
"name": "Verify that the application sanitizes, disables, or sandboxes user-supplied scriptable or expression template language content, such as Markdown, CSS or XSL stylesheets, BBCode, or similar.",
"level": "1"
},
"VALIDATION.5.3.1": {
"name": "Verify that output encoding is relevant for the interpreter and context required. For example, use encoders specifically for HTML values, HTML attributes, JavaScript, URL Parameters, HTTP headers, SMTP, and others as the context requires, especially from untrusted inputs (e.g. names with Unicode or apostrophes, such as ねこ or O'Hara). ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.10": {
"name": "Verify that the application protects against XPath injection or XML injection attacks. ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.2": {
"name": "Verify that output encoding preserves the user's chosen character set and locale, such that any Unicode character point is valid and safely handled. ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.3": {
"name": "Verify that context-aware, preferably automated - or at worst, manual - output escaping protects against reflected, stored, and DOM based XSS. ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.4": {
"name": "Verify that data selection or database queries (e.g. SQL, HQL, ORM, NoSQL) use parameterized queries, ORMs, entity frameworks, or are otherwise protected from database injection attacks. ([C3](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.5": {
"name": "Verify that where parameterized or safer mechanisms are not present, context-specific output encoding is used to protect against injection attacks, such as the use of SQL escaping to protect against SQL injection. ([C3, C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.6": {
"name": "Verify that the application projects against JavaScript or JSON injection attacks, including for eval attacks, remote JavaScript includes, CSP bypasses, DOM XSS, and JavaScript expression evaluation. ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.7": {
"name": "Verify that the application protects against LDAP Injection vulnerabilities, or that specific security controls to prevent LDAP Injection have been implemented. ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.8": {
"name": "Verify that the application protects against OS command injection and that operating system calls use parameterized OS queries or use contextual command line output encoding. ([C4](https://www.owasp.org/index.php/OWASP_Proactive_Controls#tab=Formal_Numbering))",
"level": "1"
},
"VALIDATION.5.3.9": {
"name": "Verify that the application protects against Local File Inclusion (LFI) or Remote File Inclusion (RFI) attacks.",