-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.yaml
709 lines (709 loc) · 24.5 KB
/
rules.yaml
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
rules:
CWE-1336:
categories:
- ALL
- cwe-1336
- boost-baseline
- boost-hardened
description: The product uses a template engine to insert or process externally-influenced
input, but it does not neutralize or incorrectly neutralizes special elements
or syntax that can be interpreted as template expressions or other code directives
when processed.
group: top10-injection
name: CWE-1336
pretty_name: CWE-1336 - Improper Neutralization of Special Elements Used in a
Template Engine
ref: https://codeql.github.com/codeql-query-help/
CWE-285:
categories:
- ALL
- cwe-285
- boost-hardened
- owasp-top-10
description: The software does not perform or incorrectly performs an authorization
check when an actor attempts to access a resource or perform an action.
group: top10-broken-access-control
name: CWE-285
pretty_name: CWE-285 - Improper Authorization
ref: https://codeql.github.com/codeql-query-help/
CWE-259:
categories:
- ALL
- stored-secrets
- cwe-top-25
- boost-baseline
- boost-hardened
- cwe-259
- cwe-200
- cwe-798
- cwe-522
- owasp-top-10
description: The software contains a hard-coded password, which it uses for its
own inbound authentication or for outbound communication to external components.
group: top10-id-authn-failures
name: CWE-259
pretty_name: CWE-259 - Use of Hard-coded Password
ref: https://codeql.github.com/codeql-query-help/
CWE-284:
categories:
- ALL
- cwe-top-25
- cwe-284
- boost-hardened
- owasp-top-10
group: top10-broken-access-control
name: CWE-284
pretty_name: CWE-284 - Improper Access Control
description: The code does not restrict or incorrectly restricts access to a resource
from an unauthorized actor.
ref: https://codeql.github.com/codeql-query-help/
CWE-320:
categories:
- ALL
- cwe-320
- boost-baseline
- boost-hardened
group: top10-crypto-failures
name: CWE-320
pretty_name: CWE-320 - Key Management Errors
description: Weaknesses in this category are related to errors in the management
of cryptographic keys.
ref: https://codeql.github.com/codeql-query-help/
CWE-319:
categories:
- ALL
- cwe-top-25
- cwe-319
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-crypto-failures
name: CWE-319
pretty_name: CWE-319 - Cleartext Transmission of Sensitive Information
description: The software transmits sensitive or security-critical data in cleartext
in a communication channel that can be sniffed by unauthorized actors.
ref: https://codeql.github.com/codeql-query-help/
CWE-326:
categories:
- ALL
- cwe-326
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-crypto-failures
name: CWE-326
pretty_name: CWE-326 - Inadequate Encryption Strength
description: The software stores or transmits sensitive data using an encryption
scheme that is theoretically sound, but is not strong enough for the level of
protection required.
ref: https://codeql.github.com/codeql-query-help/
CWE-778:
categories:
- ALL
- cwe-778
- boost-hardened
- owasp-top-10
group: top10-security-logging-monitoring-failures
name: CWE-778
pretty_name: CWE-778 - Insufficient Logging
description: When a security-critical event occurs, the software either does not
record the event or omits important details about the event when logging it.
ref: https://codeql.github.com/codeql-query-help/
CWE-287:
categories:
- ALL
- cwe-top-25
- cwe-287
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-id-authn-failures
name: CWE-287
pretty_name: CWE-287 - Improper Authentication
description: When an actor claims to have a given identity, the software does
not prove or insufficiently proves that the claim is correct.
ref: https://codeql.github.com/codeql-query-help/
CWE-200:
categories:
- ALL
- cwe-top-25
- cwe-200
- boost-hardened
- owasp-top-10
group: top10-broken-access-control
name: CWE-200
pretty_name: CWE-200 - Exposure of Sensitive Information to an Unauthorized Actor
description: The code exposes sensitive information to an actor that is not explicitly
authorized to have access to that information.
ref: https://codeql.github.com/codeql-query-help/
CWE-311:
categories:
- ALL
- cwe-311
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-insecure-design
name: CWE-311
pretty_name: CWE-311 - Missing Encryption of Sensitive Data
description: The code does not encrypt sensitive or critical information before
storage or transmission.
ref: https://codeql.github.com/codeql-query-help/
CWE-522:
categories:
- ALL
- cwe-top-25
- cwe-522
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-insecure-design
name: CWE-522
pretty_name: CWE-522 - Insufficiently Protected Credentials
description: The code transmits or stores authentication credentials, but it uses
an insecure method that is susceptible to unauthorized interception and/or retrieval.
ref: https://codeql.github.com/codeql-query-help/
CWE-269:
categories:
- ALL
- cwe-top-25
- cwe-269
- boost-hardened
- owasp-top-10
group: top10-insecure-design
name: CWE-269
pretty_name: CWE-269 - Improper Privilege Management
description: The code does not properly assign, modify, track, or check privileges
for an actor, creating an unintended sphere of control for that actor.
ref: https://codeql.github.com/codeql-query-help/
CWE-250:
categories:
- ALL
- cwe-250
- boost-hardened
group: top10-security-misconfiguration
name: CWE-250
pretty_name: CWE-250 - Execution with Unnecessary Privileges
description: The code performs an operation at a privilege level that is higher
than the minimum level required, which creates new weaknesses or amplifies the
consequences of other weaknesses.
ref: https://codeql.github.com/codeql-query-help/
CWE-798:
categories:
- ALL
- stored-secrets
- cwe-top-25
- boost-baseline
- boost-hardened
- cwe-200
- cwe-798
- cwe-522
- owasp-top-10
group: top10-id-authn-failures
name: CWE-798
pretty_name: CWE-798 - Use of Hard-coded Credentials
description: The code contains hard-coded credentials, such as a password or cryptographic
key, which it uses for its own inbound authentication, outbound communication
to external components, or encryption of internal data.
ref: https://codeql.github.com/codeql-query-help/
CWE-732:
categories:
- ALL
- cwe-top-25
- cwe-732
- boost-hardened
group: top10-broken-access-control
name: CWE-732
pretty_name: CWE-732 - Incorrect Permission Assignment for Critical Resource
description: The code specifies permissions for a security-critical resource in
a way that allows that resource to be read or modified by unintended actors.
ref: https://codeql.github.com/codeql-query-help/
CWE-352:
categories:
- ALL
- cwe-top-25
- cwe-352
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-broken-access-control
name: CWE-352
pretty_name: CWE-352 - Cross-Site Request Forgery (CSRF)
description: The web application does not, or can not, sufficiently verify whether
a well-formed, valid, consistent request was intentionally provided by the user
who submitted the request.
ref: https://codeql.github.com/codeql-query-help/
CWE-614:
categories:
- ALL
- cwe-614
- owasp-top-10
group: top10-security-misconfiguration
name: CWE-614
pretty_name: CWE-614 - Sensitive Cookie in HTTPS Session Without 'Secure' Attribute
description: The Secure attribute for sensitive cookies in HTTPS sessions is not
set, which could cause the user agent to send those cookies in plaintext over
an HTTP session.
ref: https://codeql.github.com/codeql-query-help/
CWE-1004:
categories:
- ALL
- cwe-1004
- owasp-top-10
group: top10-security-misconfiguration
name: CWE-1004
pretty_name: CWE-1004 - Sensitive Cookie Without 'HttpOnly' Flag
description: The code uses a cookie to store sensitive information, but the cookie
is not marked with the HttpOnly flag.
ref: https://codeql.github.com/codeql-query-help/
CWE-89:
categories:
- ALL
- cwe-top-25
- cwe-89
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-89
pretty_name: CWE-89 - Improper Neutralization of Special Elements used in an SQL
Command ('SQL Injection')
description: The code constructs all or part of an SQL command using externally-influenced
input from an upstream component, but it does not neutralize or incorrectly
neutralizes special elements that could modify the intended SQL command when
it is sent to a downstream component.
ref: https://codeql.github.com/codeql-query-help/
CWE-327:
categories:
- ALL
- cwe-327
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-crypto-failures
name: CWE-327
pretty_name: CWE-327 - Use of a Broken or Risky Cryptographic Algorithm
description: The use of a broken or risky cryptographic algorithm is an unnecessary
risk that may result in the exposure of sensitive information.
ref: https://codeql.github.com/codeql-query-help/
CWE-345:
categories:
- ALL
- cwe-345
- boost-hardened
- owasp-top-10
group: top10-software-data-integrity-failures
name: CWE-345
pretty_name: CWE-345 - Insufficient Verification of Data Authenticity
description: The code does not sufficiently verify the origin or authenticity
of data, in a way that causes it to accept invalid data.
ref: https://codeql.github.com/codeql-query-help/
CWE-400:
categories:
- ALL
- cwe-top-25
- cwe-400
group: top10-insecure-design
name: CWE-400
pretty_name: CWE-400 - Uncontrolled Resource Consumption
description: The code does not properly control the allocation and maintenance
of a limited resource, thereby enabling an actor to influence the amount of
resources consumed, eventually leading to the exhaustion of available resources.
ref: https://codeql.github.com/codeql-query-help/
CWE-22:
categories:
- ALL
- cwe-top-25
- cwe-22
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-broken-access-control
name: CWE-22
pretty_name: CWE-22 - Improper Limitation of a Pathname to a Restricted Directory
('Path Traversal')
description: The code uses external input to construct a pathname that is intended
to identify a file or directory that is located underneath a restricted parent
directory, but the software does not properly neutralize special elements within
the pathname that can cause the pathname to resolve to a location that is outside
of the restricted directory.
ref: https://codeql.github.com/codeql-query-help/
CWE-94:
categories:
- ALL
- cwe-top-25
- cwe-94
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-94
pretty_name: CWE-94 - Improper Control of Generation of Code ('Code Injection')
description: The code constructs all or part of a code segment using externally-influenced
input from an upstream component, but it does not neutralize or incorrectly
neutralizes special elements that could modify the syntax or behavior of the
intended code segment.
ref: https://codeql.github.com/codeql-query-help/
CWE-79:
categories:
- ALL
- cwe-top-25
- cwe-79
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-79
pretty_name: CWE-79 - Improper Neutralization of Input During Web Page Generation
('Cross-site Scripting')
description: The code does not neutralize or incorrectly neutralizes user-controllable
input before it is placed in output that is used as a web page that is served
to other users.
ref: https://codeql.github.com/codeql-query-help/
CWE-489:
categories:
- ALL
- cwe-489
- boost-baseline
- boost-hardened
group: top10-security-misconfiguration
name: CWE-489
pretty_name: CWE-489 - Active Debug Code
description: The code is deployed to unauthorized actors with debugging code still
enabled or active, which can create unintended entry points or expose sensitive
information.
ref: https://codeql.github.com/codeql-query-help/
CWE-611:
categories:
- ALL
- cwe-top-25
- cwe-611
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-security-misconfiguration
name: CWE-611
pretty_name: CWE-611 - Improper Restriction of XML External Entity Reference
description: The code processes an XML document that can contain XML entities
with URIs that resolve to documents outside of the intended sphere of control,
causing the product to embed incorrect documents into its output.
ref: https://codeql.github.com/codeql-query-help/
CWE-918:
categories:
- ALL
- cwe-top-25
- cwe-918
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-server-side-request-forgery
name: CWE-918
pretty_name: CWE-918 - Server-Side Request Forgery (SSRF)
description: The code receives a URL or similar request from an upstream component
and retrieves the contents of this URL, but it does not sufficiently ensure
that the request is being sent to the expected destination.
ref: https://codeql.github.com/codeql-query-help/
CWE-601:
categories:
- ALL
- cwe-top-25
- cwe-601
- owasp-top-10
group: top10-broken-access-control
name: CWE-601
pretty_name: CWE-601 - URL Redirection to Untrusted Site ('Open Redirect')
description: The code accepts a user-controlled input that specifies a link to
an external site, and uses that link in a Redirect. This simplifies phishing
attacks.
ref: https://codeql.github.com/codeql-query-help/
CWE-502:
categories:
- ALL
- cwe-top-25
- cwe-502
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-software-data-integrity-failures
name: CWE-502
pretty_name: CWE-502 - Deserialization of Untrusted Data
description: The code deserializes untrusted data without sufficiently verifying
that the resulting data will be valid.
ref: https://codeql.github.com/codeql-query-help/
CWE-96:
categories:
- ALL
- cwe-96
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-96
pretty_name: CWE-96 - Improper Neutralization of Directives in Statically Saved
Code ('Static Code Injection')
description: The code receives input from an upstream component, but it does not
neutralize or incorrectly neutralizes code syntax before inserting the input
into an executable resource, such as a library, configuration file, or template.
ref: https://codeql.github.com/codeql-query-help/
CWE-704:
categories:
- ALL
- cwe-704
group: top10-insecure-design
name: CWE-704
pretty_name: CWE-704 - Incorrect Type Conversion or Cast
description: The code does not correctly convert an object, resource, or structure
from one type to a different type.
ref: https://codeql.github.com/codeql-query-help/
CWE-95:
categories:
- ALL
- cwe-95
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-95
pretty_name: CWE-95 - Improper Neutralization of Directives in Dynamically Evaluated
Code ('Eval Injection')
description: The code receives input from an upstream component, but it does not
neutralize or incorrectly neutralizes code syntax before using the input in
a dynamic evaluation call (e.g. "eval").
ref: https://codeql.github.com/codeql-query-help/
CWE-1236:
categories:
- ALL
- cwe-1236
- boost-hardened
group: top10-injection
name: CWE-1236
pretty_name: CWE-1236 - Improper Neutralization of Formula Elements in a CSV File
description: The code saves user-provided information into a Comma-Separated Value
(CSV) file, but it does not neutralize or incorrectly neutralizes special elements
that could be interpreted as a command when the file is opened by spreadsheet
software.
ref: https://codeql.github.com/codeql-query-help/
CWE-78:
categories:
- ALL
- cwe-top-25
- cwe-78
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-78
pretty_name: CWE-78 - Improper Neutralization of Special Elements used in an OS
Command ('OS Command Injection')
description: The code constructs all or part of an OS command using externally-influenced
input from an upstream component, but it does not neutralize or incorrectly
neutralizes special elements that could modify the intended OS command when
it is sent to a downstream component.
ref: https://codeql.github.com/codeql-query-help/
CWE-116:
categories:
- ALL
- cwe-116
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-116
pretty_name: CWE-116 - Improper Encoding or Escaping of Output
description: The code prepares a structured message for communication with another
component, but encoding or escaping of the data is either missing or done incorrectly.
As a result, the intended structure of the message is not preserved.
ref: https://codeql.github.com/codeql-query-help/
CWE-1275:
categories:
- ALL
- cwe-1275
- owasp-top-10
group: top10-broken-access-control
name: CWE-1275
pretty_name: CWE-1275 - Sensitive Cookie with Improper SameSite Attribute
description: The SameSite attribute for sensitive cookies is not set, or an insecure
value is used.
ref: https://codeql.github.com/codeql-query-help/
CWE-943:
categories:
- ALL
- cwe-943
- boost-baseline
- boost-hardened
group: top10-injection
name: CWE-943
pretty_name: CWE-943 - Improper Neutralization of Special Elements in Data Query
Logic
description: The code generates a query intended to access or manipulate data
in a data store such as a database, but it does not neutralize or incorrectly
neutralizes special elements that can modify the intended logic of the query.
ref: https://codeql.github.com/codeql-query-help/
CWE-295:
categories:
- ALL
- cwe-top-25
- cwe-295
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-id-authn-failures
name: CWE-295
pretty_name: CWE-295 - Improper Certificate Validation
description: The code does not validate, or incorrectly validates, a certificate.
ref: https://codeql.github.com/codeql-query-help/
CWE-706:
categories:
- ALL
- cwe-706
- owasp-top-10
group: top10-broken-access-control
name: CWE-706
pretty_name: CWE-706 - Use of Incorrectly-Resolved Name or Reference
description: The code uses a name or reference to access a resource, but the name/reference
resolves to a resource that is outside of the intended control sphere.
ref: https://codeql.github.com/codeql-query-help/
CWE-276:
categories:
- ALL
- cwe-top-25
- cwe-276
- boost-hardened
- owasp-top-10
group: top10-broken-access-control
name: CWE-276
pretty_name: CWE-276 - Incorrect Default Permissions
description: During installation, installed file permissions are set to allow
anyone to modify those files.
ref: https://codeql.github.com/codeql-query-help/
CWE-915:
categories:
- ALL
- cwe-915
- boost-hardened
- owasp-top-10
group: top10-software-data-integrity-failures
name: CWE-915
pretty_name: CWE-915 - Improperly Controlled Modification of Dynamically-Determined
Object Attributes
description: The code receives input from an upstream component that specifies
multiple attributes, properties, or fields that are to be initialized or updated
in an object, but it does not properly control which attributes can be modified.
ref: https://codeql.github.com/codeql-query-help/
CWE-74:
categories:
- ALL
- cwe-top-25
- cwe-74
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-74
pretty_name: CWE-74 - Improper Neutralization of Special Elements in Output Used
by a Downstream Component ('Injection')
description: The code constructs all or part of a command, data structure, or
record using externally-influenced input from an upstream component, but it
does not neutralize or incorrectly neutralizes special elements that could modify
how it is parsed or interpreted when it is sent to a downstream component.
ref: https://codeql.github.com/codeql-query-help/
CWE-90:
categories:
- ALL
- cwe-90
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-90
pretty_name: CWE-90 - Improper Neutralization of Special Elements used in an LDAP
Query ('LDAP Injection')
description: The code constructs all or part of an LDAP query using externally-influenced
input from an upstream component, but it does not neutralize or incorrectly
neutralizes special elements that could modify the intended LDAP query when
it is sent to a downstream component.
ref: https://codeql.github.com/codeql-query-help/
CWE-346:
categories:
- ALL
- cwe-346
- boost-hardened
- owasp-top-10
group: top10-id-authn-failures
name: CWE-346
pretty_name: CWE-346 - Origin Validation Error
description: The code does not properly verify that the source of data or communication
is valid.
ref: https://codeql.github.com/codeql-query-help/
CWE-1104:
categories:
- ALL
- cwe-1104
- boost-hardened
- owasp-top-10
group: top10-vulnerable-components
name: CWE-1104
pretty_name: CWE-1104 - Use of Unmaintained Third Party Components
description: The code relies on third-party components that are not actively supported
or maintained by the original developer or a trusted proxy for the original
developer.
ref: https://codeql.github.com/codeql-query-help/
CWE-310:
categories:
- ALL
- cwe-top-25
- cwe-310
- boost-hardened
group: top10-crypto-failures
name: CWE-310
pretty_name: CWE-310 - Cryptographic Issues
description: The code contains a weakness related to the design and implementation
of data confidentiality and integrity.
ref: https://codeql.github.com/codeql-query-help/
CWE-20:
categories:
- ALL
- cwe-top-25
- cwe-20
- boost-baseline
- boost-hardened
- owasp-top-10
group: top10-injection
name: CWE-20
pretty_name: CWE-20 - Improper Input Validation
description: The code receives input or data, but it does not validate or incorrectly
validates that the input has the properties that are required to process the
data safely and correctly.
ref: https://codeql.github.com/codeql-query-help/
CWE-693:
categories:
- ALL
- cwe-693
group: top10-insecure-design
name: CWE-693
pretty_name: CWE-693 - Protection Mechanism Failure
description: The code does not use or incorrectly uses a protection mechanism
that provides sufficient defense against directed attacks against the product.
ref: https://codeql.github.com/codeql-query-help/
CWE-494:
categories:
- ALL
- cwe-494
- boost-hardened
- owasp-top-10
group: top10-software-data-integrity-failures
name: CWE-494
pretty_name: CWE-494 - Download of Code Without Integrity Check
description: The code downloads source code or an executable from a remote location
and executes the code without sufficiently verifying the origin and integrity
of the code.
ref: https://codeql.github.com/codeql-query-help/
CWE-UNKNOWN:
categories:
- ALL
- boost-hardened
group: top10-insecure-design
name: CWE-UNKNOWN
pretty_name: CWE-UNKNOWN - Original rule did not map to a known CWE rule
description: The original rule could not be map to a CWE rule
ref: https://codeql.github.com/codeql-query-help/