vrt 0.8.1 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,75 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "title": "VRT to Remediation Advice",
4
+ "description": "Mapping from the Vulnerability Rating Taxonomy to Remediation Advice",
5
+ "definitions": {
6
+ "MappingMetadata": {
7
+ "type": "object",
8
+ "properties": {
9
+ "default": { "type": "null" },
10
+ "keys": { "type": "array",
11
+ "items": { "type": "string", "enum": ["remediation_advice", "references"] },
12
+ "minItems": 2,
13
+ "uniqueItems": true
14
+ }
15
+ },
16
+ "required": ["default", "keys"]
17
+ },
18
+ "VRTid": { "type": "string", "pattern": "^[a-z_]*$" },
19
+ "RemediationAdvice": { "type": "string" },
20
+ "References": { "type" : "array",
21
+ "items" : { "type": "string", "pattern": "^http[s]?:\/\/.*$" },
22
+ "minItems": 1,
23
+ "uniqueItems": true
24
+ },
25
+ "Mapping": {
26
+ "type": "object",
27
+ "properties": {
28
+ "id": { "$ref": "#/definitions/VRTid" },
29
+ "remediation_advice" : { "$ref": "#/definitions/RemediationAdvice" },
30
+ "references" : { "$ref": "#/definitions/References" }
31
+ },
32
+ "required": ["id"],
33
+ "anyOf": [
34
+ { "required": ["remediation_advice"] },
35
+ { "required": ["references"] }
36
+ ],
37
+ "additionalProperties": false
38
+ },
39
+ "MappingParent": {
40
+ "type": "object",
41
+ "properties": {
42
+ "id": { "$ref": "#/definitions/VRTid" },
43
+ "children": {
44
+ "type": "array",
45
+ "items" : {
46
+ "anyOf": [
47
+ { "$ref": "#/definitions/MappingParent" },
48
+ { "$ref": "#/definitions/Mapping" }
49
+ ]
50
+ }
51
+ },
52
+ "remediation_advice" : { "$ref": "#/definitions/RemediationAdvice" },
53
+ "references" : { "$ref": "#/definitions/References" }
54
+ },
55
+ "required": ["id", "children"],
56
+ "additionalProperties": false
57
+ }
58
+ },
59
+ "type": "object",
60
+ "required": ["metadata", "content"],
61
+ "properties": {
62
+ "metadata": {
63
+ "$ref": "#/definitions/MappingMetadata"
64
+ },
65
+ "content": {
66
+ "type": "array",
67
+ "items" : {
68
+ "anyOf": [
69
+ { "$ref": "#/definitions/MappingParent" },
70
+ { "$ref": "#/definitions/Mapping" }
71
+ ]
72
+ }
73
+ }
74
+ }
75
+ }
@@ -0,0 +1,63 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "title": "Vulnerability Rating Taxonomy",
4
+ "description": "A Taxonomy of potential vulnerabilities with suggested technical priority rating",
5
+ "definitions": {
6
+ "VRTmetadata": {
7
+ "type": "object",
8
+ "properties": {
9
+ "release_date": { "type": "string", "format": "date-time" }
10
+ }
11
+ },
12
+ "VRT": {
13
+ "type": "object",
14
+ "properties": {
15
+ "id": { "type": "string", "pattern": "^[a-z_]*$" },
16
+ "type": { "type": "string", "enum": [ "category", "subcategory", "variant" ] },
17
+ "name": { "type": "string", "pattern": "^[ a-zA-Z0-9-+()\/,.<]*$" },
18
+ "priority": {
19
+ "anyOf": [
20
+ { "type": "number", "minimum": 1, "maximum": 5 },
21
+ { "type": "null" }
22
+ ]
23
+ }
24
+ },
25
+ "required": ["id", "name", "type", "priority"]
26
+ },
27
+ "VRTparent": {
28
+ "type": "object",
29
+ "properties": {
30
+ "id": { "type": "string", "pattern": "^[a-z_]*$" },
31
+ "name": { "type": "string", "pattern": "^[ a-zA-Z0-9-+()\/,.<]*$" },
32
+ "type": { "type": "string", "enum": [ "category", "subcategory" ] },
33
+ "children": {
34
+ "type": "array",
35
+ "items" : {
36
+ "anyOf": [
37
+ { "$ref": "#/definitions/VRTparent" },
38
+ { "$ref": "#/definitions/VRT" }
39
+ ]
40
+ },
41
+ "minItems": 1
42
+ }
43
+ },
44
+ "required": ["id", "name", "type", "children"]
45
+ }
46
+ },
47
+ "type": "object",
48
+ "required": ["metadata", "content"],
49
+ "properties": {
50
+ "metadata": {
51
+ "$ref": "#/definitions/VRTmetadata"
52
+ },
53
+ "content": {
54
+ "type": "array",
55
+ "items" : {
56
+ "anyOf": [
57
+ { "$ref": "#/definitions/VRTparent" },
58
+ { "$ref": "#/definitions/VRT" }
59
+ ]
60
+ }
61
+ }
62
+ }
63
+ }
@@ -0,0 +1,1948 @@
1
+ {
2
+ "metadata": {
3
+ "release_date": "2019-09-25T00:00:00+00:00"
4
+ },
5
+ "content": [
6
+ {
7
+ "id": "server_security_misconfiguration",
8
+ "name": "Server Security Misconfiguration",
9
+ "type": "category",
10
+ "children": [
11
+ {
12
+ "id": "unsafe_cross_origin_resource_sharing",
13
+ "name": "Unsafe Cross-Origin Resource Sharing",
14
+ "type": "subcategory",
15
+ "priority": null
16
+ },
17
+ {
18
+ "id": "path_traversal",
19
+ "name": "Path Traversal",
20
+ "type": "subcategory",
21
+ "priority": null
22
+ },
23
+ {
24
+ "id": "directory_listing_enabled",
25
+ "name": "Directory Listing Enabled",
26
+ "type": "subcategory",
27
+ "children": [
28
+ {
29
+ "id": "sensitive_data_exposure",
30
+ "name": "Sensitive Data Exposure",
31
+ "type": "variant",
32
+ "priority": null
33
+ },
34
+ {
35
+ "id": "non_sensitive_data_exposure",
36
+ "name": "Non-Sensitive Data Exposure",
37
+ "type": "variant",
38
+ "priority": 5
39
+ }
40
+ ]
41
+ },
42
+ {
43
+ "id": "same_site_scripting",
44
+ "name": "Same-Site Scripting",
45
+ "type": "subcategory",
46
+ "priority": 5
47
+ },
48
+ {
49
+ "id": "ssl_attack_breach_poodle_etc",
50
+ "name": "SSL Attack (BREACH, POODLE etc.)",
51
+ "type": "subcategory",
52
+ "priority": null
53
+ },
54
+ {
55
+ "id": "using_default_credentials",
56
+ "name": "Using Default Credentials",
57
+ "type": "subcategory",
58
+ "priority": 1
59
+ },
60
+ {
61
+ "id": "misconfigured_dns",
62
+ "name": "Misconfigured DNS",
63
+ "type": "subcategory",
64
+ "children": [
65
+ {
66
+ "id": "basic_subdomain_takeover",
67
+ "name": "Basic Subdomain Takeover",
68
+ "type": "variant",
69
+ "priority": 3
70
+ },
71
+ {
72
+ "id": "high_impact_subdomain_takeover",
73
+ "name": "High Impact Subdomain Takeover",
74
+ "type": "variant",
75
+ "priority": 2
76
+ },
77
+ {
78
+ "id": "zone_transfer",
79
+ "name": "Zone Transfer",
80
+ "type": "variant",
81
+ "priority": 4
82
+ },
83
+ {
84
+ "id": "missing_caa_record",
85
+ "name": "Missing Certification Authority Authorization (CAA) Record",
86
+ "type": "variant",
87
+ "priority": 5
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ "id": "mail_server_misconfiguration",
93
+ "name": "Mail Server Misconfiguration",
94
+ "type": "subcategory",
95
+ "children": [
96
+ {
97
+ "id": "no_spoofing_protection_on_email_domain",
98
+ "name": "No Spoofing Protection on Email Domain",
99
+ "type": "variant",
100
+ "priority": 3
101
+ },
102
+ {
103
+ "id": "email_spoofing_to_inbox_due_to_missing_or_misconfigured_dmarc_on_email_domain",
104
+ "name": "Email Spoofing to Inbox due to Missing or Misconfigured DMARC on Email Domain",
105
+ "type": "variant",
106
+ "priority": 4
107
+ },
108
+ {
109
+ "id": "email_spoofing_to_spam_folder",
110
+ "name": "Email Spoofing to Spam Folder",
111
+ "type": "variant",
112
+ "priority": 5
113
+ },
114
+ {
115
+ "id": "missing_or_misconfigured_spf_and_or_dkim",
116
+ "name": "Missing or Misconfigured SPF and/or DKIM",
117
+ "type": "variant",
118
+ "priority": 5
119
+ },
120
+ {
121
+ "id": "email_spoofing_on_non_email_domain",
122
+ "name": "Email Spoofing on Non-Email Domain",
123
+ "type": "variant",
124
+ "priority": 5
125
+ }
126
+ ]
127
+ },
128
+ {
129
+ "id": "dbms_misconfiguration",
130
+ "name": "Database Management System (DBMS) Misconfiguration",
131
+ "type": "subcategory",
132
+ "children": [
133
+ {
134
+ "id": "excessively_privileged_user_dba",
135
+ "name": "Excessively Privileged User / DBA",
136
+ "type": "variant",
137
+ "priority": 4
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ "id": "lack_of_password_confirmation",
143
+ "name": "Lack of Password Confirmation",
144
+ "type": "subcategory",
145
+ "children": [
146
+ {
147
+ "id": "change_email_address",
148
+ "name": "Change Email Address",
149
+ "type": "variant",
150
+ "priority": 5
151
+ },
152
+ {
153
+ "id": "change_password",
154
+ "name": "Change Password",
155
+ "type": "variant",
156
+ "priority": 5
157
+ },
158
+ {
159
+ "id": "delete_account",
160
+ "name": "Delete Account",
161
+ "type": "variant",
162
+ "priority": 4
163
+ },
164
+ {
165
+ "id": "manage_two_fa",
166
+ "name": "Manage 2FA",
167
+ "type": "variant",
168
+ "priority": 5
169
+ }
170
+ ]
171
+ },
172
+ {
173
+ "id": "no_rate_limiting_on_form",
174
+ "name": "No Rate Limiting on Form",
175
+ "type": "subcategory",
176
+ "children": [
177
+ {
178
+ "id": "registration",
179
+ "name": "Registration",
180
+ "type": "variant",
181
+ "priority": 4
182
+ },
183
+ {
184
+ "id": "login",
185
+ "name": "Login",
186
+ "type": "variant",
187
+ "priority": 4
188
+ },
189
+ {
190
+ "id": "email_triggering",
191
+ "name": "Email-Triggering",
192
+ "type": "variant",
193
+ "priority": 4
194
+ },
195
+ {
196
+ "id": "sms_triggering",
197
+ "name": "SMS-Triggering",
198
+ "type": "variant",
199
+ "priority": 4
200
+ }
201
+ ]
202
+ },
203
+ {
204
+ "id": "unsafe_file_upload",
205
+ "name": "Unsafe File Upload",
206
+ "type": "subcategory",
207
+ "children": [
208
+ {
209
+ "id": "no_antivirus",
210
+ "name": "No Antivirus",
211
+ "type": "variant",
212
+ "priority": 5
213
+ },
214
+ {
215
+ "id": "no_size_limit",
216
+ "name": "No Size Limit",
217
+ "type": "variant",
218
+ "priority": 5
219
+ },
220
+ {
221
+ "id": "file_extension_filter_bypass",
222
+ "name": "File Extension Filter Bypass",
223
+ "type": "variant",
224
+ "priority": 5
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "id": "cookie_scoped_to_parent_domain",
230
+ "name": "Cookie Scoped to Parent Domain",
231
+ "type": "subcategory",
232
+ "priority": 5
233
+ },
234
+ {
235
+ "id": "missing_secure_or_httponly_cookie_flag",
236
+ "name": "Missing Secure or HTTPOnly Cookie Flag",
237
+ "type": "subcategory",
238
+ "children": [
239
+ {
240
+ "id": "session_token",
241
+ "name": "Session Token",
242
+ "type": "variant",
243
+ "priority": 4
244
+ },
245
+ {
246
+ "id": "non_session_cookie",
247
+ "name": "Non-Session Cookie",
248
+ "type": "variant",
249
+ "priority": 5
250
+ }
251
+ ]
252
+ },
253
+ {
254
+ "id": "clickjacking",
255
+ "name": "Clickjacking",
256
+ "type": "subcategory",
257
+ "children": [
258
+ {
259
+ "id": "sensitive_action",
260
+ "name": "Sensitive Click-Based Action",
261
+ "type": "variant",
262
+ "priority": 4
263
+ },
264
+ {
265
+ "id": "form_input",
266
+ "name": "Form Input",
267
+ "type": "variant",
268
+ "priority": 5
269
+ },
270
+ {
271
+ "id": "non_sensitive_action",
272
+ "name": "Non-Sensitive Action",
273
+ "type": "variant",
274
+ "priority": 5
275
+ }
276
+ ]
277
+ },
278
+ {
279
+ "id": "oauth_misconfiguration",
280
+ "name": "OAuth Misconfiguration",
281
+ "type": "subcategory",
282
+ "children": [
283
+ {
284
+ "id": "account_takeover",
285
+ "name": "Account Takeover",
286
+ "type": "variant",
287
+ "priority": 2
288
+ },
289
+ {
290
+ "id": "missing_state_parameter",
291
+ "name": "Missing/Broken State Parameter",
292
+ "type": "variant",
293
+ "priority": null
294
+ },
295
+ {
296
+ "id": "insecure_redirect_uri",
297
+ "name": "Insecure Redirect URI",
298
+ "type": "variant",
299
+ "priority": null
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "id": "captcha",
305
+ "name": "CAPTCHA",
306
+ "type": "subcategory",
307
+ "children": [
308
+ {
309
+ "id": "implementation_vulnerability",
310
+ "name": "Implementation Vulnerability",
311
+ "type": "variant",
312
+ "priority": 4
313
+ },
314
+ {
315
+ "id": "brute_force",
316
+ "name": "Brute Force",
317
+ "type": "variant",
318
+ "priority": 5
319
+ },
320
+ {
321
+ "id": "missing",
322
+ "name": "Missing",
323
+ "type": "variant",
324
+ "priority": 5
325
+ }
326
+ ]
327
+ },
328
+ {
329
+ "id": "exposed_admin_portal",
330
+ "name": "Exposed Admin Portal",
331
+ "type": "subcategory",
332
+ "children": [
333
+ {
334
+ "id": "to_internet",
335
+ "name": "To Internet",
336
+ "type": "variant",
337
+ "priority": 5
338
+ }
339
+ ]
340
+ },
341
+ {
342
+ "id": "missing_dnssec",
343
+ "name": "Missing DNSSEC",
344
+ "type": "subcategory",
345
+ "priority": 5
346
+ },
347
+ {
348
+ "id": "fingerprinting_banner_disclosure",
349
+ "name": "Fingerprinting/Banner Disclosure",
350
+ "type": "subcategory",
351
+ "priority": 5
352
+ },
353
+ {
354
+ "id": "username_enumeration",
355
+ "name": "Username/Email Enumeration",
356
+ "type": "subcategory",
357
+ "children": [
358
+ {
359
+ "id": "brute_force",
360
+ "name": "Brute Force",
361
+ "type": "variant",
362
+ "priority": 5
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "id": "potentially_unsafe_http_method_enabled",
368
+ "name": "Potentially Unsafe HTTP Method Enabled",
369
+ "type": "subcategory",
370
+ "children": [
371
+ {
372
+ "id": "options",
373
+ "name": "OPTIONS",
374
+ "type": "variant",
375
+ "priority": 5
376
+ },
377
+ {
378
+ "id": "trace",
379
+ "name": "TRACE",
380
+ "type": "variant",
381
+ "priority": 5
382
+ }
383
+ ]
384
+ },
385
+ {
386
+ "id": "insecure_ssl",
387
+ "name": "Insecure SSL",
388
+ "type": "subcategory",
389
+ "children": [
390
+ {
391
+ "id": "lack_of_forward_secrecy",
392
+ "name": "Lack of Forward Secrecy",
393
+ "type": "variant",
394
+ "priority": 5
395
+ },
396
+ {
397
+ "id": "insecure_cipher_suite",
398
+ "name": "Insecure Cipher Suite",
399
+ "type": "variant",
400
+ "priority": 5
401
+ },
402
+ {
403
+ "id": "certificate_error",
404
+ "name": "Certificate Error",
405
+ "type": "variant",
406
+ "priority": 5
407
+ }
408
+ ]
409
+ },
410
+ {
411
+ "id": "rfd",
412
+ "name": "Reflected File Download (RFD)",
413
+ "type": "subcategory",
414
+ "priority": 5
415
+ },
416
+ {
417
+ "id": "lack_of_security_headers",
418
+ "name": "Lack of Security Headers",
419
+ "type": "subcategory",
420
+ "children": [
421
+ {
422
+ "id": "x_frame_options",
423
+ "name": "X-Frame-Options",
424
+ "type": "variant",
425
+ "priority": 5
426
+ },
427
+ {
428
+ "id": "cache_control_for_a_non_sensitive_page",
429
+ "name": "Cache-Control for a Non-Sensitive Page",
430
+ "type": "variant",
431
+ "priority": 5
432
+ },
433
+ {
434
+ "id": "x_xss_protection",
435
+ "name": "X-XSS-Protection",
436
+ "type": "variant",
437
+ "priority": 5
438
+ },
439
+ {
440
+ "id": "strict_transport_security",
441
+ "name": "Strict-Transport-Security",
442
+ "type": "variant",
443
+ "priority": 5
444
+ },
445
+ {
446
+ "id": "x_content_type_options",
447
+ "name": "X-Content-Type-Options",
448
+ "type": "variant",
449
+ "priority": 5
450
+ },
451
+ {
452
+ "id": "content_security_policy",
453
+ "name": "Content-Security-Policy",
454
+ "type": "variant",
455
+ "priority": 5
456
+ },
457
+ {
458
+ "id": "public_key_pins",
459
+ "name": "Public-Key-Pins",
460
+ "type": "variant",
461
+ "priority": 5
462
+ },
463
+ {
464
+ "id": "x_content_security_policy",
465
+ "name": "X-Content-Security-Policy",
466
+ "type": "variant",
467
+ "priority": 5
468
+ },
469
+ {
470
+ "id": "x_webkit_csp",
471
+ "name": "X-Webkit-CSP",
472
+ "type": "variant",
473
+ "priority": 5
474
+ },
475
+ {
476
+ "id": "content_security_policy_report_only",
477
+ "name": "Content-Security-Policy-Report-Only",
478
+ "type": "variant",
479
+ "priority": 5
480
+ },
481
+ {
482
+ "id": "cache_control_for_a_sensitive_page",
483
+ "name": "Cache-Control for a Sensitive Page",
484
+ "type": "variant",
485
+ "priority": 4
486
+ }
487
+ ]
488
+ },
489
+ {
490
+ "id": "waf_bypass",
491
+ "name": "Web Application Firewall (WAF) Bypass",
492
+ "type": "subcategory",
493
+ "children": [
494
+ {
495
+ "id": "direct_server_access",
496
+ "name": "Direct Server Access",
497
+ "type": "variant",
498
+ "priority": 4
499
+ }
500
+ ]
501
+ },
502
+ {
503
+ "id": "race_condition",
504
+ "name": "Race Condition",
505
+ "type": "subcategory",
506
+ "priority": null
507
+ },
508
+ {
509
+ "id": "cache_poisoning",
510
+ "name": "Cache Poisoning",
511
+ "type": "subcategory",
512
+ "priority": null
513
+ },
514
+ {
515
+ "id": "bitsquatting",
516
+ "name": "Bitsquatting",
517
+ "type": "subcategory",
518
+ "priority": 5
519
+ }
520
+ ]
521
+ },
522
+ {
523
+ "id": "server_side_injection",
524
+ "name": "Server-Side Injection",
525
+ "type": "category",
526
+ "children": [
527
+ {
528
+ "id": "file_inclusion",
529
+ "name": "File Inclusion",
530
+ "type": "subcategory",
531
+ "children": [
532
+ {
533
+ "id": "local",
534
+ "name": "Local",
535
+ "type": "variant",
536
+ "priority": 1
537
+ }
538
+ ]
539
+ },
540
+ {
541
+ "id": "parameter_pollution",
542
+ "name": "Parameter Pollution",
543
+ "type": "subcategory",
544
+ "children": [
545
+ {
546
+ "id": "social_media_sharing_buttons",
547
+ "name": "Social Media Sharing Buttons",
548
+ "type": "variant",
549
+ "priority": 5
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "id": "remote_code_execution_rce",
555
+ "name": "Remote Code Execution (RCE)",
556
+ "type": "subcategory",
557
+ "priority": 1
558
+ },
559
+ {
560
+ "id": "sql_injection",
561
+ "name": "SQL Injection",
562
+ "type": "subcategory",
563
+ "priority": 1
564
+ },
565
+ {
566
+ "id": "xml_external_entity_injection_xxe",
567
+ "name": "XML External Entity Injection (XXE)",
568
+ "type": "subcategory",
569
+ "priority": 1
570
+ },
571
+ {
572
+ "id": "http_response_manipulation",
573
+ "name": "HTTP Response Manipulation",
574
+ "type": "subcategory",
575
+ "children": [
576
+ {
577
+ "id": "response_splitting_crlf",
578
+ "name": "Response Splitting (CRLF)",
579
+ "type": "variant",
580
+ "priority": 3
581
+ }
582
+ ]
583
+ },
584
+ {
585
+ "id": "content_spoofing",
586
+ "name": "Content Spoofing",
587
+ "type": "subcategory",
588
+ "children": [
589
+ {
590
+ "id": "iframe_injection",
591
+ "name": "iframe Injection",
592
+ "type": "variant",
593
+ "priority": 3
594
+ },
595
+ {
596
+ "id": "external_authentication_injection",
597
+ "name": "External Authentication Injection",
598
+ "type": "variant",
599
+ "priority": 4
600
+ },
601
+ {
602
+ "id": "flash_based_external_authentication_injection",
603
+ "name": "Flash Based External Authentication Injection",
604
+ "type": "variant",
605
+ "priority": 5
606
+ },
607
+ {
608
+ "id": "email_html_injection",
609
+ "name": "Email HTML Injection",
610
+ "type": "variant",
611
+ "priority": 4
612
+ },
613
+ {
614
+ "id": "email_hyperlink_injection_based_on_email_provider",
615
+ "name": "Email Hyperlink Injection Based on Email Provider",
616
+ "type": "variant",
617
+ "priority": 5
618
+ },
619
+ {
620
+ "id": "text_injection",
621
+ "name": "Text Injection",
622
+ "type": "variant",
623
+ "priority": 5
624
+ },
625
+ {
626
+ "id": "homograph_idn_based",
627
+ "name": "Homograph/IDN-Based",
628
+ "type": "variant",
629
+ "priority": 5
630
+ },
631
+ {
632
+ "id": "rtlo",
633
+ "name": "Right-to-Left Override (RTLO)",
634
+ "type": "variant",
635
+ "priority": 5
636
+ }
637
+ ]
638
+ }
639
+ ]
640
+ },
641
+ {
642
+ "id": "broken_authentication_and_session_management",
643
+ "name": "Broken Authentication and Session Management",
644
+ "type": "category",
645
+ "children": [
646
+ {
647
+ "id": "authentication_bypass",
648
+ "name": "Authentication Bypass",
649
+ "type": "subcategory",
650
+ "priority": 1
651
+ },
652
+ {
653
+ "id": "two_fa_bypass",
654
+ "name": "Second Factor Authentication (2FA) Bypass",
655
+ "type": "subcategory",
656
+ "priority": 3
657
+ },
658
+ {
659
+ "id": "privilege_escalation",
660
+ "name": "Privilege Escalation",
661
+ "type": "subcategory",
662
+ "priority": null
663
+ },
664
+ {
665
+ "id": "cleartext_transmission_of_session_token",
666
+ "name": "Cleartext Transmission of Session Token",
667
+ "type": "subcategory",
668
+ "priority": 4
669
+ },
670
+ {
671
+ "id": "weak_login_function",
672
+ "name": "Weak Login Function",
673
+ "type": "subcategory",
674
+ "children": [
675
+ {
676
+ "id": "not_operational",
677
+ "name": "Not Operational or Intended Public Access",
678
+ "type": "variant",
679
+ "priority": 5
680
+ },
681
+ {
682
+ "id": "other_plaintext_protocol_no_secure_alternative",
683
+ "name": "Other Plaintext Protocol with no Secure Alternative",
684
+ "type": "variant",
685
+ "priority": 4
686
+ },
687
+ {
688
+ "id": "lan_only",
689
+ "name": "LAN Only",
690
+ "type": "variant",
691
+ "priority": 4
692
+ },
693
+ {
694
+ "id": "http_and_https_available",
695
+ "name": "HTTP and HTTPS Available",
696
+ "type": "variant",
697
+ "priority": 4
698
+ },
699
+ {
700
+ "id": "https_not_available_or_http_by_default",
701
+ "name": "HTTPS not Available or HTTP by Default",
702
+ "type": "variant",
703
+ "priority": 3
704
+ }
705
+ ]
706
+ },
707
+ {
708
+ "id": "session_fixation",
709
+ "name": "Session Fixation",
710
+ "type": "subcategory",
711
+ "children": [
712
+ {
713
+ "id": "remote_attack_vector",
714
+ "name": "Remote Attack Vector",
715
+ "type": "variant",
716
+ "priority": 3
717
+ },
718
+ {
719
+ "id": "local_attack_vector",
720
+ "name": "Local Attack Vector",
721
+ "type": "variant",
722
+ "priority": 5
723
+ }
724
+ ]
725
+ },
726
+ {
727
+ "id": "failure_to_invalidate_session",
728
+ "name": "Failure to Invalidate Session",
729
+ "type": "subcategory",
730
+ "children": [
731
+ {
732
+ "id": "on_logout",
733
+ "name": "On Logout (Client and Server-Side)",
734
+ "type": "variant",
735
+ "priority": 4
736
+ },
737
+ {
738
+ "id": "on_logout_server_side_only",
739
+ "name": "On Logout (Server-Side Only)",
740
+ "type": "variant",
741
+ "priority": 5
742
+ },
743
+ {
744
+ "id": "on_password_change",
745
+ "name": "On Password Reset and/or Change",
746
+ "type": "variant",
747
+ "priority": 4
748
+ },
749
+ {
750
+ "id": "all_sessions",
751
+ "name": "Concurrent Sessions On Logout",
752
+ "type": "variant",
753
+ "priority": 5
754
+ },
755
+ {
756
+ "id": "on_email_change",
757
+ "name": "On Email Change",
758
+ "type": "variant",
759
+ "priority": 5
760
+ },
761
+ {
762
+ "id": "on_two_fa_activation_change",
763
+ "name": "On 2FA Activation/Change",
764
+ "type": "variant",
765
+ "priority": 5
766
+ },
767
+ {
768
+ "id": "long_timeout",
769
+ "name": "Long Timeout",
770
+ "type": "variant",
771
+ "priority": 5
772
+ }
773
+ ]
774
+ },
775
+ {
776
+ "id": "concurrent_logins",
777
+ "name": "Concurrent Logins",
778
+ "type": "subcategory",
779
+ "priority": 5
780
+ },
781
+ {
782
+ "id": "weak_registration_implementation",
783
+ "name": "Weak Registration Implementation",
784
+ "type": "subcategory",
785
+ "children": [
786
+ {
787
+ "id": "over_http",
788
+ "name": "Over HTTP",
789
+ "type": "variant",
790
+ "priority": 4
791
+ }
792
+ ]
793
+ }
794
+ ]
795
+ },
796
+ {
797
+ "id": "sensitive_data_exposure",
798
+ "name": "Sensitive Data Exposure",
799
+ "type": "category",
800
+ "children": [
801
+ {
802
+ "id": "critically_sensitive_data",
803
+ "name": "Critically Sensitive Data",
804
+ "type": "subcategory",
805
+ "children": [
806
+ {
807
+ "id": "password_disclosure",
808
+ "name": "Password Disclosure",
809
+ "type": "variant",
810
+ "priority": 1
811
+ },
812
+ {
813
+ "id": "private_api_keys",
814
+ "name": "Private API Keys",
815
+ "type": "variant",
816
+ "priority": 1
817
+ }
818
+ ]
819
+ },
820
+ {
821
+ "id": "exif_geolocation_data_not_stripped_from_uploaded_images",
822
+ "name": "EXIF Geolocation Data Not Stripped From Uploaded Images",
823
+ "type": "subcategory",
824
+ "children": [
825
+ {
826
+ "id": "automatic_user_enumeration",
827
+ "name": "Automatic User Enumeration",
828
+ "type": "variant",
829
+ "priority": 3
830
+ },
831
+ {
832
+ "id": "manual_user_enumeration",
833
+ "name": "Manual User Enumeration",
834
+ "type": "variant",
835
+ "priority": 4
836
+ }
837
+ ]
838
+ },
839
+ {
840
+ "id": "visible_detailed_error_page",
841
+ "name": "Visible Detailed Error/Debug Page",
842
+ "type": "subcategory",
843
+ "children": [
844
+ {
845
+ "id": "detailed_server_configuration",
846
+ "name": "Detailed Server Configuration",
847
+ "type": "variant",
848
+ "priority": 4
849
+ },
850
+ {
851
+ "id": "full_path_disclosure",
852
+ "name": "Full Path Disclosure",
853
+ "type": "variant",
854
+ "priority": 5
855
+ },
856
+ {
857
+ "id": "descriptive_stack_trace",
858
+ "name": "Descriptive Stack Trace",
859
+ "type": "variant",
860
+ "priority": 5
861
+ }
862
+ ]
863
+ },
864
+ {
865
+ "id": "disclosure_of_known_public_information",
866
+ "name": "Disclosure of Known Public Information",
867
+ "type": "subcategory",
868
+ "priority": 5
869
+ },
870
+ {
871
+ "id": "token_leakage_via_referer",
872
+ "name": "Token Leakage via Referer",
873
+ "type": "subcategory",
874
+ "children": [
875
+ {
876
+ "id": "trusted_third_party",
877
+ "name": "Trusted 3rd Party",
878
+ "type": "variant",
879
+ "priority": 5
880
+ },
881
+ {
882
+ "id": "untrusted_third_party",
883
+ "name": "Untrusted 3rd Party",
884
+ "type": "variant",
885
+ "priority": 4
886
+ },
887
+ {
888
+ "id": "over_http",
889
+ "name": "Over HTTP",
890
+ "type": "variant",
891
+ "priority": 4
892
+ }
893
+ ]
894
+ },
895
+ {
896
+ "id": "sensitive_token_in_url",
897
+ "name": "Sensitive Token in URL",
898
+ "type": "subcategory",
899
+ "children": [
900
+ {
901
+ "id": "user_facing",
902
+ "name": "User Facing",
903
+ "type": "variant",
904
+ "priority": 4
905
+ },
906
+ {
907
+ "id": "in_the_background",
908
+ "name": "In the Background",
909
+ "type": "variant",
910
+ "priority": 5
911
+ },
912
+ {
913
+ "id": "on_password_reset",
914
+ "name": "On Password Reset",
915
+ "type": "variant",
916
+ "priority": 5
917
+ }
918
+ ]
919
+ },
920
+ {
921
+ "id": "non_sensitive_token_in_url",
922
+ "name": "Non-Sensitive Token in URL",
923
+ "type": "subcategory",
924
+ "priority": 5
925
+ },
926
+ {
927
+ "id": "weak_password_reset_implementation",
928
+ "name": "Weak Password Reset Implementation",
929
+ "type": "subcategory",
930
+ "children": [
931
+ {
932
+ "id": "password_reset_token_sent_over_http",
933
+ "name": "Password Reset Token Sent Over HTTP",
934
+ "type": "variant",
935
+ "priority": 4
936
+ },
937
+ {
938
+ "id": "token_leakage_via_host_header_poisoning",
939
+ "name": "Token Leakage via Host Header Poisoning",
940
+ "type": "variant",
941
+ "priority": 2
942
+ }
943
+ ]
944
+ },
945
+ {
946
+ "id": "mixed_content",
947
+ "name": "Mixed Content (HTTPS Sourcing HTTP)",
948
+ "type": "subcategory",
949
+ "priority": 5
950
+ },
951
+ {
952
+ "id": "sensitive_data_hardcoded",
953
+ "name": "Sensitive Data Hardcoded",
954
+ "type": "subcategory",
955
+ "children": [
956
+ {
957
+ "id": "oauth_secret",
958
+ "name": "OAuth Secret",
959
+ "type": "variant",
960
+ "priority": 5
961
+ },
962
+ {
963
+ "id": "file_paths",
964
+ "name": "File Paths",
965
+ "type": "variant",
966
+ "priority": 5
967
+ }
968
+ ]
969
+ },
970
+ {
971
+ "id": "internal_ip_disclosure",
972
+ "name": "Internal IP Disclosure",
973
+ "type": "subcategory",
974
+ "priority": 5
975
+ },
976
+ {
977
+ "id": "xssi",
978
+ "name": "Cross Site Script Inclusion (XSSI)",
979
+ "type": "subcategory",
980
+ "priority": null
981
+ },
982
+ {
983
+ "id": "json_hijacking",
984
+ "name": "JSON Hijacking",
985
+ "type": "subcategory",
986
+ "priority": 5
987
+ }
988
+ ]
989
+ },
990
+ {
991
+ "id": "cross_site_scripting_xss",
992
+ "name": "Cross-Site Scripting (XSS)",
993
+ "type": "category",
994
+ "children": [
995
+ {
996
+ "id": "stored",
997
+ "name": "Stored",
998
+ "type": "subcategory",
999
+ "children": [
1000
+ {
1001
+ "id": "non_admin_to_anyone",
1002
+ "name": "Non-Privileged User to Anyone",
1003
+ "type": "variant",
1004
+ "priority": 2
1005
+ },
1006
+ {
1007
+ "id": "privileged_user_to_privilege_elevation",
1008
+ "name": "Privileged User to Privilege Elevation",
1009
+ "type": "variant",
1010
+ "priority": 3
1011
+ },
1012
+ {
1013
+ "id": "privileged_user_to_no_privilege_elevation",
1014
+ "name": "Privileged User to No Privilege Elevation",
1015
+ "type": "variant",
1016
+ "priority": 4
1017
+ },
1018
+ {
1019
+ "id": "url_based",
1020
+ "name": "CSRF/URL-Based",
1021
+ "type": "variant",
1022
+ "priority": 3
1023
+ },
1024
+ {
1025
+ "id": "self",
1026
+ "name": "Self",
1027
+ "type": "variant",
1028
+ "priority": 5
1029
+ }
1030
+ ]
1031
+ },
1032
+ {
1033
+ "id": "reflected",
1034
+ "name": "Reflected",
1035
+ "type": "subcategory",
1036
+ "children": [
1037
+ {
1038
+ "id": "non_self",
1039
+ "name": "Non-Self",
1040
+ "type": "variant",
1041
+ "priority": 3
1042
+ },
1043
+ {
1044
+ "id": "self",
1045
+ "name": "Self",
1046
+ "type": "variant",
1047
+ "priority": 5
1048
+ }
1049
+ ]
1050
+ },
1051
+ {
1052
+ "id": "flash_based",
1053
+ "name": "Flash-Based",
1054
+ "type": "subcategory",
1055
+ "priority": 4
1056
+ },
1057
+ {
1058
+ "id": "cookie_based",
1059
+ "name": "Cookie-Based",
1060
+ "type": "subcategory",
1061
+ "priority": 5
1062
+ },
1063
+ {
1064
+ "id": "ie_only",
1065
+ "name": "IE-Only",
1066
+ "type": "subcategory",
1067
+ "children": [
1068
+ {
1069
+ "id": "ie_eleven",
1070
+ "name": "IE11",
1071
+ "type": "variant",
1072
+ "priority": 4
1073
+ },
1074
+ {
1075
+ "id": "xss_filter_disabled",
1076
+ "name": "XSS Filter Disabled",
1077
+ "type": "variant",
1078
+ "priority": 5
1079
+ },
1080
+ {
1081
+ "id": "older_version_ie_eleven",
1082
+ "name": "Older Version (< IE11)",
1083
+ "type": "variant",
1084
+ "priority": 5
1085
+ }
1086
+ ]
1087
+ },
1088
+ {
1089
+ "id": "referer",
1090
+ "name": "Referer",
1091
+ "type": "subcategory",
1092
+ "priority": 4
1093
+ },
1094
+ {
1095
+ "id": "trace_method",
1096
+ "name": "TRACE Method",
1097
+ "type": "subcategory",
1098
+ "priority": 5
1099
+ },
1100
+ {
1101
+ "id": "universal_uxss",
1102
+ "name": "Universal (UXSS)",
1103
+ "type": "subcategory",
1104
+ "priority": 4
1105
+ },
1106
+ {
1107
+ "id": "off_domain",
1108
+ "name": "Off-Domain",
1109
+ "type": "subcategory",
1110
+ "children": [
1111
+ {
1112
+ "id": "data_uri",
1113
+ "name": "Data URI",
1114
+ "type": "variant",
1115
+ "priority": 4
1116
+ }
1117
+ ]
1118
+ }
1119
+ ]
1120
+ },
1121
+ {
1122
+ "id": "broken_access_control",
1123
+ "name": "Broken Access Control (BAC)",
1124
+ "type": "category",
1125
+ "children": [
1126
+ {
1127
+ "id": "idor",
1128
+ "name": "Insecure Direct Object References (IDOR)",
1129
+ "type": "subcategory",
1130
+ "priority": null
1131
+ },
1132
+ {
1133
+ "id": "server_side_request_forgery_ssrf",
1134
+ "name": "Server-Side Request Forgery (SSRF)",
1135
+ "type": "subcategory",
1136
+ "children": [
1137
+ {
1138
+ "id": "internal_high_impact",
1139
+ "name": "Internal High Impact",
1140
+ "type": "variant",
1141
+ "priority": 2
1142
+ },
1143
+ {
1144
+ "id": "internal_scan_and_or_medium_impact",
1145
+ "name": "Internal Scan and/or Medium Impact",
1146
+ "type": "variant",
1147
+ "priority": 3
1148
+ },
1149
+ {
1150
+ "id": "external",
1151
+ "name": "External",
1152
+ "type": "variant",
1153
+ "priority": 4
1154
+ },
1155
+ {
1156
+ "id": "dns_query_only",
1157
+ "name": "DNS Query Only",
1158
+ "type": "variant",
1159
+ "priority": 5
1160
+ }
1161
+ ]
1162
+ },
1163
+ {
1164
+ "id": "username_enumeration",
1165
+ "name": "Username/Email Enumeration",
1166
+ "type": "subcategory",
1167
+ "children": [
1168
+ {
1169
+ "id": "non_brute_force",
1170
+ "name": "Non-Brute Force",
1171
+ "type": "variant",
1172
+ "priority": 4
1173
+ }
1174
+ ]
1175
+ },
1176
+ {
1177
+ "id": "exposed_sensitive_android_intent",
1178
+ "name": "Exposed Sensitive Android Intent",
1179
+ "type": "subcategory",
1180
+ "priority": null
1181
+ },
1182
+ {
1183
+ "id": "exposed_sensitive_ios_url_scheme",
1184
+ "name": "Exposed Sensitive iOS URL Scheme",
1185
+ "type": "subcategory",
1186
+ "priority": null
1187
+ }
1188
+ ]
1189
+ },
1190
+ {
1191
+ "id": "cross_site_request_forgery_csrf",
1192
+ "name": "Cross-Site Request Forgery (CSRF)",
1193
+ "type": "category",
1194
+ "children": [
1195
+ {
1196
+ "id": "application_wide",
1197
+ "name": "Application-Wide",
1198
+ "type": "subcategory",
1199
+ "priority": 2
1200
+ },
1201
+ {
1202
+ "id": "action_specific",
1203
+ "name": "Action-Specific",
1204
+ "type": "subcategory",
1205
+ "children": [
1206
+ {
1207
+ "id": "authenticated_action",
1208
+ "name": "Authenticated Action",
1209
+ "type": "variant",
1210
+ "priority": null
1211
+ },
1212
+ {
1213
+ "id": "unauthenticated_action",
1214
+ "name": "Unauthenticated Action",
1215
+ "type": "variant",
1216
+ "priority": null
1217
+ },
1218
+ {
1219
+ "id": "logout",
1220
+ "name": "Logout",
1221
+ "type": "variant",
1222
+ "priority": 5
1223
+ }
1224
+ ]
1225
+ },
1226
+ {
1227
+ "id": "csrf_token_not_unique_per_request",
1228
+ "name": "CSRF Token Not Unique Per Request",
1229
+ "type": "subcategory",
1230
+ "priority": 5
1231
+ }
1232
+ ]
1233
+ },
1234
+ {
1235
+ "id": "application_level_denial_of_service_dos",
1236
+ "name": "Application-Level Denial-of-Service (DoS)",
1237
+ "type": "category",
1238
+ "children": [
1239
+ {
1240
+ "id": "critical_impact_and_or_easy_difficulty",
1241
+ "name": "Critical Impact and/or Easy Difficulty",
1242
+ "type": "subcategory",
1243
+ "priority": 2
1244
+ },
1245
+ {
1246
+ "id": "high_impact_and_or_medium_difficulty",
1247
+ "name": "High Impact and/or Medium Difficulty",
1248
+ "type": "subcategory",
1249
+ "priority": 3
1250
+ },
1251
+ {
1252
+ "id": "app_crash",
1253
+ "name": "App Crash",
1254
+ "type": "subcategory",
1255
+ "children": [
1256
+ {
1257
+ "id": "malformed_android_intents",
1258
+ "name": "Malformed Android Intents",
1259
+ "type": "variant",
1260
+ "priority": 5
1261
+ },
1262
+ {
1263
+ "id": "malformed_ios_url_schemes",
1264
+ "name": "Malformed iOS URL Schemes",
1265
+ "type": "variant",
1266
+ "priority": 5
1267
+ }
1268
+ ]
1269
+ }
1270
+ ]
1271
+ },
1272
+ {
1273
+ "id": "unvalidated_redirects_and_forwards",
1274
+ "name": "Unvalidated Redirects and Forwards",
1275
+ "type": "category",
1276
+ "children": [
1277
+ {
1278
+ "id": "open_redirect",
1279
+ "name": "Open Redirect",
1280
+ "type": "subcategory",
1281
+ "children": [
1282
+ {
1283
+ "id": "get_based",
1284
+ "name": "GET-Based",
1285
+ "type": "variant",
1286
+ "priority": 4
1287
+ },
1288
+ {
1289
+ "id": "post_based",
1290
+ "name": "POST-Based",
1291
+ "type": "variant",
1292
+ "priority": 5
1293
+ },
1294
+ {
1295
+ "id": "header_based",
1296
+ "name": "Header-Based",
1297
+ "type": "variant",
1298
+ "priority": 5
1299
+ },
1300
+ {
1301
+ "id": "flash_based",
1302
+ "name": "Flash-Based",
1303
+ "type": "variant",
1304
+ "priority": 5
1305
+ }
1306
+ ]
1307
+ },
1308
+ {
1309
+ "id": "tabnabbing",
1310
+ "name": "Tabnabbing",
1311
+ "type": "subcategory",
1312
+ "priority": 5
1313
+ },
1314
+ {
1315
+ "id": "lack_of_security_speed_bump_page",
1316
+ "name": "Lack of Security Speed Bump Page",
1317
+ "type": "subcategory",
1318
+ "priority": 5
1319
+ }
1320
+ ]
1321
+ },
1322
+ {
1323
+ "id": "external_behavior",
1324
+ "name": "External Behavior",
1325
+ "type": "category",
1326
+ "children": [
1327
+ {
1328
+ "id": "browser_feature",
1329
+ "name": "Browser Feature",
1330
+ "type": "subcategory",
1331
+ "children": [
1332
+ {
1333
+ "id": "plaintext_password_field",
1334
+ "name": "Plaintext Password Field",
1335
+ "type": "variant",
1336
+ "priority": 5
1337
+ },
1338
+ {
1339
+ "id": "save_password",
1340
+ "name": "Save Password",
1341
+ "type": "variant",
1342
+ "priority": 5
1343
+ },
1344
+ {
1345
+ "id": "autocomplete_enabled",
1346
+ "name": "Autocomplete Enabled",
1347
+ "type": "variant",
1348
+ "priority": 5
1349
+ },
1350
+ {
1351
+ "id": "autocorrect_enabled",
1352
+ "name": "Autocorrect Enabled",
1353
+ "type": "variant",
1354
+ "priority": 5
1355
+ },
1356
+ {
1357
+ "id": "aggressive_offline_caching",
1358
+ "name": "Aggressive Offline Caching",
1359
+ "type": "variant",
1360
+ "priority": 5
1361
+ }
1362
+ ]
1363
+ },
1364
+ {
1365
+ "id": "csv_injection",
1366
+ "name": "CSV Injection",
1367
+ "type": "subcategory",
1368
+ "priority": 5
1369
+ },
1370
+ {
1371
+ "id": "captcha_bypass",
1372
+ "name": "Captcha Bypass",
1373
+ "type": "subcategory",
1374
+ "children": [
1375
+ {
1376
+ "id": "crowdsourcing",
1377
+ "name": "Crowdsourcing",
1378
+ "type": "variant",
1379
+ "priority": 5
1380
+ }
1381
+ ]
1382
+ },
1383
+ {
1384
+ "id": "system_clipboard_leak",
1385
+ "name": "System Clipboard Leak",
1386
+ "type": "subcategory",
1387
+ "children": [
1388
+ {
1389
+ "id": "shared_links",
1390
+ "name": "Shared Links",
1391
+ "type": "variant",
1392
+ "priority": 5
1393
+ }
1394
+ ]
1395
+ },
1396
+ {
1397
+ "id": "user_password_persisted_in_memory",
1398
+ "name": "User Password Persisted in Memory",
1399
+ "type": "subcategory",
1400
+ "priority": 5
1401
+ }
1402
+ ]
1403
+ },
1404
+ {
1405
+ "id": "insufficient_security_configurability",
1406
+ "name": "Insufficient Security Configurability",
1407
+ "type": "category",
1408
+ "children": [
1409
+ {
1410
+ "id": "weak_password_policy",
1411
+ "name": "Weak Password Policy",
1412
+ "type": "subcategory",
1413
+ "priority": 5
1414
+ },
1415
+ {
1416
+ "id": "no_password_policy",
1417
+ "name": "No Password Policy",
1418
+ "type": "subcategory",
1419
+ "priority": 4
1420
+ },
1421
+ {
1422
+ "id": "weak_password_reset_implementation",
1423
+ "name": "Weak Password Reset Implementation",
1424
+ "type": "subcategory",
1425
+ "children": [
1426
+ {
1427
+ "id": "token_is_not_invalidated_after_use",
1428
+ "name": "Token is Not Invalidated After Use",
1429
+ "type": "variant",
1430
+ "priority": 4
1431
+ },
1432
+ {
1433
+ "id": "token_is_not_invalidated_after_email_change",
1434
+ "name": "Token is Not Invalidated After Email Change",
1435
+ "type": "variant",
1436
+ "priority": 5
1437
+ },
1438
+ {
1439
+ "id": "token_is_not_invalidated_after_password_change",
1440
+ "name": "Token is Not Invalidated After Password Change",
1441
+ "type": "variant",
1442
+ "priority": 5
1443
+ },
1444
+ {
1445
+ "id": "token_has_long_timed_expiry",
1446
+ "name": "Token Has Long Timed Expiry",
1447
+ "type": "variant",
1448
+ "priority": 5
1449
+ },
1450
+ {
1451
+ "id": "token_is_not_invalidated_after_new_token_is_requested",
1452
+ "name": "Token is Not Invalidated After New Token is Requested",
1453
+ "type": "variant",
1454
+ "priority": 5
1455
+ },
1456
+ {
1457
+ "id": "token_is_not_invalidated_after_login",
1458
+ "name": "Token is Not Invalidated After Login",
1459
+ "type": "variant",
1460
+ "priority": 5
1461
+ }
1462
+ ]
1463
+ },
1464
+ {
1465
+ "id": "lack_of_verification_email",
1466
+ "name": "Lack of Verification Email",
1467
+ "type": "subcategory",
1468
+ "priority": 5
1469
+ },
1470
+ {
1471
+ "id": "lack_of_notification_email",
1472
+ "name": "Lack of Notification Email",
1473
+ "type": "subcategory",
1474
+ "priority": 5
1475
+ },
1476
+ {
1477
+ "id": "weak_registration_implementation",
1478
+ "name": "Weak Registration Implementation",
1479
+ "type": "subcategory",
1480
+ "children": [
1481
+ {
1482
+ "id": "allows_disposable_email_addresses",
1483
+ "name": "Allows Disposable Email Addresses",
1484
+ "type": "variant",
1485
+ "priority": 5
1486
+ }
1487
+ ]
1488
+ },
1489
+ {
1490
+ "id": "weak_two_fa_implementation",
1491
+ "name": "Weak 2FA Implementation",
1492
+ "type": "subcategory",
1493
+ "children": [
1494
+ {
1495
+ "id": "two_fa_secret_cannot_be_rotated",
1496
+ "name": "2FA Secret Cannot be Rotated",
1497
+ "type": "variant",
1498
+ "priority": 4
1499
+ },
1500
+ {
1501
+ "id": "two_fa_secret_remains_obtainable_after_two_fa_is_enabled",
1502
+ "name": "2FA Secret Remains Obtainable After 2FA is Enabled",
1503
+ "type": "variant",
1504
+ "priority": 4
1505
+ },
1506
+ {
1507
+ "id": "missing_failsafe",
1508
+ "name": "Missing Failsafe",
1509
+ "type": "variant",
1510
+ "priority": 5
1511
+ }
1512
+ ]
1513
+ }
1514
+ ]
1515
+ },
1516
+ {
1517
+ "id": "using_components_with_known_vulnerabilities",
1518
+ "name": "Using Components with Known Vulnerabilities",
1519
+ "type": "category",
1520
+ "children": [
1521
+ {
1522
+ "id": "rosetta_flash",
1523
+ "name": "Rosetta Flash",
1524
+ "type": "subcategory",
1525
+ "priority": 4
1526
+ },
1527
+ {
1528
+ "id": "outdated_software_version",
1529
+ "name": "Outdated Software Version",
1530
+ "type": "subcategory",
1531
+ "priority": 5
1532
+ },
1533
+ {
1534
+ "id": "captcha_bypass",
1535
+ "name": "Captcha Bypass",
1536
+ "type": "subcategory",
1537
+ "children": [
1538
+ {
1539
+ "id": "ocr_optical_character_recognition",
1540
+ "name": "OCR (Optical Character Recognition)",
1541
+ "type": "variant",
1542
+ "priority": 5
1543
+ }
1544
+ ]
1545
+ }
1546
+ ]
1547
+ },
1548
+ {
1549
+ "id": "insecure_data_storage",
1550
+ "name": "Insecure Data Storage",
1551
+ "type": "category",
1552
+ "children": [
1553
+ {
1554
+ "id": "sensitive_application_data_stored_unencrypted",
1555
+ "name": "Sensitive Application Data Stored Unencrypted",
1556
+ "type": "subcategory",
1557
+ "children": [
1558
+ {
1559
+ "id": "on_external_storage",
1560
+ "name": "On External Storage",
1561
+ "type": "variant",
1562
+ "priority": 4
1563
+ },
1564
+ {
1565
+ "id": "on_internal_storage",
1566
+ "name": "On Internal Storage",
1567
+ "type": "variant",
1568
+ "priority": 5
1569
+ }
1570
+ ]
1571
+ },
1572
+ {
1573
+ "id": "server_side_credentials_storage",
1574
+ "name": "Server-Side Credentials Storage",
1575
+ "type": "subcategory",
1576
+ "children": [
1577
+ {
1578
+ "id": "plaintext",
1579
+ "name": "Plaintext",
1580
+ "type": "variant",
1581
+ "priority": 4
1582
+ }
1583
+ ]
1584
+ },
1585
+ {
1586
+ "id": "non_sensitive_application_data_stored_unencrypted",
1587
+ "name": "Non-Sensitive Application Data Stored Unencrypted",
1588
+ "type": "subcategory",
1589
+ "priority": 5
1590
+ },
1591
+ {
1592
+ "id": "screen_caching_enabled",
1593
+ "name": "Screen Caching Enabled",
1594
+ "type": "subcategory",
1595
+ "priority": 5
1596
+ }
1597
+ ]
1598
+ },
1599
+ {
1600
+ "id": "lack_of_binary_hardening",
1601
+ "name": "Lack of Binary Hardening",
1602
+ "type": "category",
1603
+ "children": [
1604
+ {
1605
+ "id": "lack_of_exploit_mitigations",
1606
+ "name": "Lack of Exploit Mitigations",
1607
+ "type": "subcategory",
1608
+ "priority": 5
1609
+ },
1610
+ {
1611
+ "id": "lack_of_jailbreak_detection",
1612
+ "name": "Lack of Jailbreak Detection",
1613
+ "type": "subcategory",
1614
+ "priority": 5
1615
+ },
1616
+ {
1617
+ "id": "lack_of_obfuscation",
1618
+ "name": "Lack of Obfuscation",
1619
+ "type": "subcategory",
1620
+ "priority": 5
1621
+ },
1622
+ {
1623
+ "id": "runtime_instrumentation_based",
1624
+ "name": "Runtime Instrumentation-Based",
1625
+ "type": "subcategory",
1626
+ "priority": 5
1627
+ }
1628
+ ]
1629
+ },
1630
+ {
1631
+ "id": "insecure_data_transport",
1632
+ "name": "Insecure Data Transport",
1633
+ "type": "category",
1634
+ "children": [
1635
+ {
1636
+ "id": "cleartext_transmission_of_sensitive_data",
1637
+ "name": "Cleartext Transmission of Sensitive Data",
1638
+ "type": "subcategory",
1639
+ "priority": null
1640
+ },
1641
+ {
1642
+ "id": "executable_download",
1643
+ "name": "Executable Download",
1644
+ "type": "subcategory",
1645
+ "children": [
1646
+ {
1647
+ "id": "no_secure_integrity_check",
1648
+ "name": "No Secure Integrity Check",
1649
+ "type": "variant",
1650
+ "priority": 4
1651
+ },
1652
+ {
1653
+ "id": "secure_integrity_check",
1654
+ "name": "Secure Integrity Check",
1655
+ "type": "variant",
1656
+ "priority": 5
1657
+ }
1658
+ ]
1659
+ }
1660
+ ]
1661
+ },
1662
+ {
1663
+ "id": "insecure_os_firmware",
1664
+ "name": "Insecure OS/Firmware",
1665
+ "type": "category",
1666
+ "children": [
1667
+ {
1668
+ "id": "command_injection",
1669
+ "name": "Command Injection",
1670
+ "type": "subcategory",
1671
+ "priority": 1
1672
+ },
1673
+ {
1674
+ "id": "hardcoded_password",
1675
+ "name": "Hardcoded Password",
1676
+ "type": "subcategory",
1677
+ "children": [
1678
+ {
1679
+ "id": "privileged_user",
1680
+ "name": "Privileged User",
1681
+ "type": "variant",
1682
+ "priority": 1
1683
+ },
1684
+ {
1685
+ "id": "non_privileged_user",
1686
+ "name": "Non-Privileged User",
1687
+ "type": "variant",
1688
+ "priority": 2
1689
+ }
1690
+ ]
1691
+ }
1692
+ ]
1693
+ },
1694
+ {
1695
+ "id": "broken_cryptography",
1696
+ "name": "Broken Cryptography",
1697
+ "type": "category",
1698
+ "children": [
1699
+ {
1700
+ "id": "cryptographic_flaw",
1701
+ "name": "Cryptographic Flaw",
1702
+ "type": "subcategory",
1703
+ "children": [
1704
+ {
1705
+ "id": "incorrect_usage",
1706
+ "name": "Incorrect Usage",
1707
+ "type": "variant",
1708
+ "priority": 1
1709
+ }
1710
+ ]
1711
+ }
1712
+ ]
1713
+ },
1714
+ {
1715
+ "id": "privacy_concerns",
1716
+ "name": "Privacy Concerns",
1717
+ "type": "category",
1718
+ "children": [
1719
+ {
1720
+ "id": "unnecessary_data_collection",
1721
+ "name": "Unnecessary Data Collection",
1722
+ "type": "subcategory",
1723
+ "children": [
1724
+ {
1725
+ "id": "wifi_ssid_password",
1726
+ "name": "WiFi SSID+Password",
1727
+ "type": "variant",
1728
+ "priority": 4
1729
+ }
1730
+ ]
1731
+ }
1732
+ ]
1733
+ },
1734
+ {
1735
+ "id": "network_security_misconfiguration",
1736
+ "name": "Network Security Misconfiguration",
1737
+ "type": "category",
1738
+ "children": [
1739
+ {
1740
+ "id": "telnet_enabled",
1741
+ "name": "Telnet Enabled",
1742
+ "type": "subcategory",
1743
+ "priority": 5
1744
+ }
1745
+ ]
1746
+ },
1747
+ {
1748
+ "id": "mobile_security_misconfiguration",
1749
+ "name": "Mobile Security Misconfiguration",
1750
+ "type": "category",
1751
+ "children": [
1752
+ {
1753
+ "id": "ssl_certificate_pinning",
1754
+ "name": "SSL Certificate Pinning",
1755
+ "type": "subcategory",
1756
+ "children": [
1757
+ {
1758
+ "id": "absent",
1759
+ "name": "Absent",
1760
+ "type": "variant",
1761
+ "priority": 5
1762
+ },
1763
+ {
1764
+ "id": "defeatable",
1765
+ "name": "Defeatable",
1766
+ "type": "variant",
1767
+ "priority": 5
1768
+ }
1769
+ ]
1770
+ },
1771
+ {
1772
+ "id": "tapjacking",
1773
+ "name": "Tapjacking",
1774
+ "type": "subcategory",
1775
+ "priority": 5
1776
+ },
1777
+ {
1778
+ "id": "clipboard_enabled",
1779
+ "name": "Clipboard Enabled",
1780
+ "type": "subcategory",
1781
+ "priority": 5
1782
+ }
1783
+ ]
1784
+ },
1785
+ {
1786
+ "id": "client_side_injection",
1787
+ "name": "Client-Side Injection",
1788
+ "type": "category",
1789
+ "children": [
1790
+ {
1791
+ "id": "binary_planting",
1792
+ "name": "Binary Planting",
1793
+ "type": "subcategory",
1794
+ "children": [
1795
+ {
1796
+ "id": "privilege_escalation",
1797
+ "name": "Default Folder Privilege Escalation",
1798
+ "type": "variant",
1799
+ "priority": 3
1800
+ },
1801
+ {
1802
+ "id": "non_default_folder_privilege_escalation",
1803
+ "name": "Non-Default Folder Privilege Escalation",
1804
+ "type": "variant",
1805
+ "priority": 5
1806
+ },
1807
+ {
1808
+ "id": "no_privilege_escalation",
1809
+ "name": "No Privilege Escalation",
1810
+ "type": "variant",
1811
+ "priority": 5
1812
+ }
1813
+ ]
1814
+ }
1815
+ ]
1816
+ },
1817
+ {
1818
+ "id": "automotive_security_misconfiguration",
1819
+ "name": "Automotive Security Misconfiguration",
1820
+ "type": "category",
1821
+ "children": [
1822
+ {
1823
+ "id": "infotainment",
1824
+ "name": "Infotainment",
1825
+ "type": "subcategory",
1826
+ "children": [
1827
+ {
1828
+ "id": "pii_leakage",
1829
+ "name": "PII Leakage",
1830
+ "type": "variant",
1831
+ "priority": 1
1832
+ },
1833
+ {
1834
+ "id": "code_execution_can_bus_pivot",
1835
+ "name": "Code Execution (CAN Bus Pivot)",
1836
+ "type": "variant",
1837
+ "priority": 2
1838
+ },
1839
+ {
1840
+ "id": "code_execution_no_can_bus_pivot",
1841
+ "name": "Code Execution (No CAN Bus Pivot)",
1842
+ "type": "variant",
1843
+ "priority": 3
1844
+ },
1845
+ {
1846
+ "id": "unauthorized_access_to_services",
1847
+ "name": "Unauthorized Access to Services (API / Endpoints)",
1848
+ "type": "variant",
1849
+ "priority": 3
1850
+ },
1851
+ {
1852
+ "id": "source_code_dump",
1853
+ "name": "Source Code Dump",
1854
+ "type": "variant",
1855
+ "priority": 4
1856
+ },
1857
+ {
1858
+ "id": "dos_brick",
1859
+ "name": "Denial of Service (DoS / Brick)",
1860
+ "type": "variant",
1861
+ "priority": 4
1862
+ },
1863
+ {
1864
+ "id": "default_credentials",
1865
+ "name": "Default Credentials",
1866
+ "type": "variant",
1867
+ "priority": 4
1868
+ }
1869
+ ]
1870
+ },
1871
+ {
1872
+ "id": "rf_hub",
1873
+ "name": "RF Hub",
1874
+ "type": "subcategory",
1875
+ "children": [
1876
+ {
1877
+ "id": "key_fob_cloning",
1878
+ "name": "Key Fob Cloning",
1879
+ "type": "variant",
1880
+ "priority": 1
1881
+ },
1882
+ {
1883
+ "id": "can_injection_interaction",
1884
+ "name": "CAN Injection / Interaction",
1885
+ "type": "variant",
1886
+ "priority": 2
1887
+ },
1888
+ {
1889
+ "id": "data_leakage_pull_encryption_mechanism",
1890
+ "name": "Data Leakage / Pull Encryption Mechanism",
1891
+ "type": "variant",
1892
+ "priority": 3
1893
+ },
1894
+ {
1895
+ "id": "unauthorized_access_turn_on",
1896
+ "name": "Unauthorized Access / Turn On",
1897
+ "type": "variant",
1898
+ "priority": 4
1899
+ },
1900
+ {
1901
+ "id": "roll_jam",
1902
+ "name": "Roll Jam",
1903
+ "type": "variant",
1904
+ "priority": 5
1905
+ },
1906
+ {
1907
+ "id": "replay",
1908
+ "name": "Replay",
1909
+ "type": "variant",
1910
+ "priority": 5
1911
+ },
1912
+ {
1913
+ "id": "relay",
1914
+ "name": "Relay",
1915
+ "type": "variant",
1916
+ "priority": 5
1917
+ }
1918
+ ]
1919
+ },
1920
+ {
1921
+ "id": "can",
1922
+ "name": "CAN",
1923
+ "type": "subcategory",
1924
+ "children": [
1925
+ {
1926
+ "id": "injection_disallowed_messages",
1927
+ "name": "Injection (Disallowed Messages)",
1928
+ "type": "variant",
1929
+ "priority": 4
1930
+ },
1931
+ {
1932
+ "id": "injection_dos",
1933
+ "name": "Injection (DoS)",
1934
+ "type": "variant",
1935
+ "priority": 4
1936
+ }
1937
+ ]
1938
+ }
1939
+ ]
1940
+ },
1941
+ {
1942
+ "id": "indicators_of_compromise",
1943
+ "name": "Indicators of Compromise",
1944
+ "type": "category",
1945
+ "priority": null
1946
+ }
1947
+ ]
1948
+ }