forked from projectdiscovery/nuclei-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplates-checksum.txt
More file actions
11894 lines (11894 loc) · 985 KB
/
templates-checksum.txt
File metadata and controls
11894 lines (11894 loc) · 985 KB
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
CODE_OF_CONDUCT.md:5c581b341cecd31ea4a275098ec84be9951f1593
CONTRIBUTING.md:46e3b2587d9c787915e5cb7e85b7469772956a87
LICENSE.md:e8be6d192a31325529d5762e0712aa76501a01d0
PULL_REQUEST_TEMPLATE.md:c8aba78d67442f639483a10fa74681dea94faeb7
README.md:ae8273cc66e5814f246833df3abbb15178ad77b5
README_CN.md:8674ad377f43a518cb134a496ebd5e38be272a27
README_JA.md:1d51d07fc938a8a01ea25cf9226137e539308274
README_KR.md:e680a25f280cdac47d9d9a97233febd6e54bd1b4
TEMPLATE-CREATION-GUIDE.md:ce8255a0dd52c3eae1c3adcf3660a49d2dde6f5d
TEMPLATE-REVIEW-GUIDE.md:c9801d97f4c93d23e8482666753a20d40d0f9fa8
TEMPLATES-STATS.json:d518290d6237b398f1b891be6541b19f85abcf58
TEMPLATES-STATS.md:c2b54ebe23f4d9f28aaf5db5eba79bd92c39ac1f
TOP-10.md:80f3ece83873b54f74217d666a8741e1ca075b95
Templates-Bounty-FAQ.md:15fd7eb53ca2041a99d2d59c9031f872d0e16e38
cloud/alibaba/ack/ack-cluster-api-public.yaml:80cef6b9efe2b82a1820802fb804865266a6125f
cloud/alibaba/ack/ack-cluster-auditing-disable.yaml:429049185cc17881cb0066b906e347710c591eec
cloud/alibaba/ack/ack-cluster-cloud-monitor-disable.yaml:4e6db2ffe2238afcb2c8e3cadc4574ff99e9f23f
cloud/alibaba/ack/ack-cluster-health-disable.yaml:1a7a44be9ca0067581c1dc06bceb8db5e3877690
cloud/alibaba/ack/ack-cluster-network-policies-disable.yaml:5f719ba982ffdcc08a72e36ada810dd0bfcf3346
cloud/alibaba/ack/ack-cluster-network-policies-missing.yaml:2f558246901dc27c9594f64d2b95beb970798f05
cloud/alibaba/ack/kubernetes-dashboard-enabled.yaml:ce2dcb810e75c8789cc846f0c0565c0fc7ce7bde
cloud/alibaba/actiontrail/multi-region-logging-disabled.yaml:28194332abb26390e225ebae6419ab3751a56bf7
cloud/alibaba/actiontrail/public-actiontrail-bucket.yaml:5d365c45bb1d66faad86127f4112f350e8cdb83e
cloud/alibaba/alibaba-cloud-code-env.yaml:51071f6dbe2746def6cb2194e2c96e96974894af
cloud/alibaba/ecs/os-patches-outdated.yaml:c9e1f087daa0ea2ce07e6b02584db2c53d0c899e
cloud/alibaba/ecs/unattached-disk-encryption-disabled.yaml:ae799c12ee45abf3f3bca4de8a20a1b24816ff00
cloud/alibaba/ecs/unattached-vminstance-encryption-disabled.yaml:e7c926dae3273189e511bfd54497220cbef8b583
cloud/alibaba/ecs/unrestricted-rdp-access.yaml:dddb32f8e127d63c42c16bbe4c2aae6c77fd6c49
cloud/alibaba/ecs/unrestricted-ssh-access.yaml:79905c708741cd3e0b45c497900133b50effd435
cloud/alibaba/oss/access-logoss-disabled.yaml:35ba5c4bbdda550da2c213b697ad5b14a59572a5
cloud/alibaba/oss/improper-bucket-sse.yaml:ed499db106b9d8f75192682fb23b6f001d438429
cloud/alibaba/oss/limit-networkaccess-disabled.yaml:b26e2f7965759cbded3ff2c0480a9fa0b2ac45fc
cloud/alibaba/oss/oos-bucket-public-access.yaml:9fae6b4a9d72423de57df8214bcb0ad67985c44c
cloud/alibaba/oss/secure-transfeross-disabled.yaml:8387899557785be627763a2793383392be2bc0ec
cloud/alibaba/oss/sse-cmk-disabled.yaml:fb77e8b219ebf70da0618ab45ff36842fb80da42
cloud/alibaba/oss/sse-smk-disabled.yaml:abb493d26617924309433ff2bb369d309d9e70d3
cloud/alibaba/ram/custom-ram-policy-admin-priv.yaml:b30ddab411a09083255cf584e07a43de36ef780e
cloud/alibaba/ram/max-password-retry-disabled.yaml:87a4ba88f160a16b85bada99776b2d9d0afc8e97
cloud/alibaba/ram/mfa-console-password-disabled.yaml:d7b1997641601e96505f4291d681c0aa598239e7
cloud/alibaba/ram/password-policy-expiration-unconfigured.yaml:bcdef8ddbd20de717dcc359cf03da519f4031988
cloud/alibaba/ram/password-policy-length-unconfigured.yaml:7d3de90afa79c0fff61a195d5f90b93fcc4e9493
cloud/alibaba/ram/password-policy-lowercase-unconfigured.yaml:3a2cd77d4411b946cea07dd39590ccf736d7ff83
cloud/alibaba/ram/password-policy-num-unconfigured.yaml:1144cb257c227820f6423371195adfeb44980ecf
cloud/alibaba/ram/password-policy-reuse-enabled.yaml:827de9678e3c4da9fc84ffc1714b1e3b50fe354b
cloud/alibaba/ram/password-policy-symbol-unconfigured.yaml:66a3b4e56acc30bf9a9d9f8139284c326e3fcc01
cloud/alibaba/ram/password-policy-uppercase-unconfigured.yaml:f0d73b139163a4ff55daae7bcc45c4cd98a182c2
cloud/alibaba/rds/encryption-intransit-disabled.yaml:b81b0ddc272f7ced5294320275824b47a0868d80
cloud/alibaba/rds/log-connections-disabled.yaml:ef53f9671a739757257acb5be22bd16ccb885cf0
cloud/alibaba/rds/log-disconnections-disabled.yaml:52e7ce29979d994321bc3a86999e98928586ac49
cloud/alibaba/rds/log-duration-disabled.yaml:775dea5be08704d9d264dabacd07f36519a322d8
cloud/alibaba/rds/mssql-audit-disabled.yaml:77fb05a14237bdf5ab37446247ab945b3c974fa3
cloud/alibaba/rds/mysql-audit-disabled.yaml:63f47c2bf8ad590a93ab5f6929a63ba15aa27c88
cloud/alibaba/rds/postgresql-audit-disabled.yaml:8e654f2b345eef1f951d7eabbe52a126427905d3
cloud/alibaba/rds/rds-audit-disabled.yaml:480a833e891d4a8c370f8d61f6812094115286bb
cloud/alibaba/rds/transparent-encryption-disabled.yaml:c45acf83c4ce259e288b749384c7212e3e9c99a5
cloud/alibaba/security-center/scheduled-vulnscan-disabled.yaml:298e297a9838355a93428690ac29d7605993c7fa
cloud/alibaba/security-center/security-notification-disabled.yaml:bf9d35160c003cc50e862ca7cbb57ac70ba42b69
cloud/alibaba/security-center/security-plan-disabled.yaml:a629b2df6a89de1f1f78b6912f9e71d70a69c9b2
cloud/alibaba/vpc/vpc-flow-disabled.yaml:b604b44fb9adce3905f7c8dd41fcdf94165e908d
cloud/aws/acm/acm-cert-expired.yaml:1332a9f9a974e4000f16ceaed34191db69e72c8e
cloud/aws/acm/acm-cert-renewal-30days.yaml:d93ba2b6bc9c784899f89aea2925c439ef64eb55
cloud/aws/acm/acm-cert-renewal-45days.yaml:233b53a08533dd15341a07fbd50a185102b28840
cloud/aws/acm/acm-cert-validation.yaml:5c6fc9f5a40b21573198ebfa62cb22b4ce383d6c
cloud/aws/acm/acm-wildcard-cert.yaml:d32f77f205b34b4c4060143581b97efee7968745
cloud/aws/aws-code-env.yaml:7e29e9a539325fdc089ca43359e568466740939d
cloud/aws/cloudformation/stack-notification-disabled.yaml:d46bdda0089b826bd89a144b212d2ad70368722e
cloud/aws/cloudformation/stack-policy-not-inuse.yaml:384672dbe8da7cd0ff599e031ebe945f3020bbb2
cloud/aws/cloudformation/stack-termination-disabled.yaml:8a23d5abd099f347e3906d72955f8575d6e037c9
cloud/aws/cloudfront/cloudfront-compress-object.yaml:18e0a22d4c802158805a2ffae8f3b76c05af095a
cloud/aws/cloudfront/cloudfront-custom-certificates.yaml:c89d414c21fc74570cca6a0e0245dfa412e0fc0a
cloud/aws/cloudfront/cloudfront-geo-restriction.yaml:77174deeae8f2f9b0854138fc9a0f5362e7d8927
cloud/aws/cloudfront/cloudfront-insecure-protocol.yaml:535ed433f0c6367c0496c7d4311ef2a806935d13
cloud/aws/cloudfront/cloudfront-integrated-waf.yaml:d658a406b6a39f0fdf33bc3fadc695573874e131
cloud/aws/cloudfront/cloudfront-logging-disabled.yaml:08629774d9250321a1d70f2edae1426095944333
cloud/aws/cloudfront/cloudfront-origin-shield.yaml:6b3c0af979aed188ac4db0adeb20798fad1e5164
cloud/aws/cloudfront/cloudfront-security-policy.yaml:0019e21e17ba7eaedd702be6c870aa589969ce5e
cloud/aws/cloudfront/cloudfront-traffic-unencrypted.yaml:6d8d4dbca704239d39bbb2f36c35703ef4585c2b
cloud/aws/cloudfront/cloudfront-viewer-policy.yaml:c58102eb1ec58974ca800090f649bef934214751
cloud/aws/cloudtrail/cloudtrail-data-events.yaml:399dda4caca7ae755df211847fc8f28b90a36ee6
cloud/aws/cloudtrail/cloudtrail-disabled.yaml:672222958af5f3e53aba18082b10ee2a46729381
cloud/aws/cloudtrail/cloudtrail-dup-logs.yaml:91ff3226fcdde8d3d8f8a91ef36711c7167b164c
cloud/aws/cloudtrail/cloudtrail-global-disabled.yaml:b458eaf7640c700e7e22d8f92d780b34857c2471
cloud/aws/cloudtrail/cloudtrail-integrated-cloudwatch.yaml:d768f823ef72558f57665536647f9eccc6cc663c
cloud/aws/cloudtrail/cloudtrail-log-integrity.yaml:65af2ea615783b009b6091be99b0040d6beb2253
cloud/aws/cloudtrail/cloudtrail-logs-not-encrypted.yaml:425b6157a5a597c2a9199d5b4f2005ff37752318
cloud/aws/cloudtrail/cloudtrail-mfa-delete.yaml:81dbfeff18255eb85363c8e771720f9da3e67d87
cloud/aws/cloudtrail/cloudtrail-mgmt-events.yaml:81f1f72650c839d99d9d3a45c67cd9f111893f28
cloud/aws/cloudtrail/cloudtrail-public-buckets.yaml:1e2204fc3858cca73ddc980275c7d08a6739e722
cloud/aws/cloudtrail/cloudtrail-s3-bucket-logging.yaml:71bcf5a36b7d324463a4206676dce7d1d327db21
cloud/aws/cloudtrail/s3-object-lock-not-enabled.yaml:66cefedfd9f9d62cd45a37b4e68cdbf846819b61
cloud/aws/cloudwatch/cw-alarm-action-set.yaml:dcafad6d4ecf376c2dcd462aa0f6e18c80317921
cloud/aws/cloudwatch/cw-alarms-actions.yaml:fef08c874b4db12403ab5241c660a851f727c70c
cloud/aws/dms/dms-multi-az.yaml:5a511dc2cd90a9ce03a932824d948bb9e806289a
cloud/aws/dms/dms-public-access.yaml:5410405002f5ffc4617e0a222da85ea1f00f25b6
cloud/aws/dms/dms-version-upgrade.yaml:23ee1abf198b4d1ec1ab428578beec30f1a3481d
cloud/aws/ebs/ebs-encryption-disabled.yaml:839f9c5c8dd8011aa1189f43c5d1795b8f444ef7
cloud/aws/ec2/ec2-imdsv2.yaml:6b8550f29b99ee4e16d499016be91d232b8f8a70
cloud/aws/ec2/ec2-public-ip.yaml:3090daa952d735e6642073c14f89856303390a5e
cloud/aws/ec2/ec2-sg-egress-open.yaml:70e06acbc6b726b154603242808c380cc06a8c96
cloud/aws/ec2/ec2-sg-ingress.yaml:55b16b7351a871e0ac30f20803e6f4898ddfcf61
cloud/aws/ec2/ec2-unrestricted-cifs.yaml:d68ec1eecd81baa1b0b9cccb1524f6ed7551f029
cloud/aws/ec2/ec2-unrestricted-dns.yaml:077f537962db6af93f8bed4721e77476e6328218
cloud/aws/ec2/ec2-unrestricted-ftp.yaml:4efb97cbe8c89bfc0e5f53bc28516c6ec8d52e03
cloud/aws/ec2/ec2-unrestricted-http.yaml:ce2cf84ce32592b2589bdb4e8a3df1bf86a8e15a
cloud/aws/ec2/ec2-unrestricted-https.yaml:a28a72b59e1ff822f96c5f2fef1ff4c676a5269c
cloud/aws/ec2/ec2-unrestricted-icmp.yaml:185b6335c7698428e74a870a7846b9b798aceea6
cloud/aws/ec2/ec2-unrestricted-memcached.yaml:246332bcb3bb8923617e00db025fa73eb6789773
cloud/aws/ec2/ec2-unrestricted-mongodb.yaml:8cab13ea3aa836654b01070f07e3dab8369bd6a9
cloud/aws/ec2/ec2-unrestricted-mssql.yaml:3baa35542875caf830d5e289e1d18564854cc5cd
cloud/aws/ec2/ec2-unrestricted-mysql.yaml:367f2f1c120fad15c0bca827b980ed0859b2f156
cloud/aws/ec2/ec2-unrestricted-netbios.yaml:9725733d8e11e50b50059345f3f3b83ef9dcd450
cloud/aws/ec2/ec2-unrestricted-opensearch.yaml:8287c377e4687bcfb5d807b5717de36eddffcf6b
cloud/aws/ec2/ec2-unrestricted-oracle.yaml:162ae08f83b6d7b82ee6ad20f7b2f1175c907c1e
cloud/aws/ec2/ec2-unrestricted-pgsql.yaml:6b1508ad58dee577e137dea96ee6b0f69737ce5a
cloud/aws/ec2/ec2-unrestricted-rdp.yaml:aa073a04092030f070fcaba7f4f3031862e8e77a
cloud/aws/ec2/ec2-unrestricted-redis.yaml:c3c43621fbce53e39cefb8b59928bae7f53ac02a
cloud/aws/ec2/ec2-unrestricted-smtp.yaml:32bdcefb38691639de3560b3865d54d35a0d6079
cloud/aws/ec2/ec2-unrestricted-ssh.yaml:410a448d9c2443b08ed7512fe1eb264cff1032c4
cloud/aws/ec2/ec2-unrestricted-telnet.yaml:51a4b293807c9584217c02e5a3b46295fdea4e88
cloud/aws/ec2/publicly-shared-ami.yaml:74f8436e4d211fc839fe6a31b1bc9208dc8339c8
cloud/aws/ec2/unencrypted-aws-ami.yaml:e583b3e9ceed2fa90384fcf38ac833f01754fe97
cloud/aws/efs/efs-encryption-disabled.yaml:f94605b221f232eee79d07575f18503cd56aa80f
cloud/aws/eks/eks-aws-managed-iam-policy.yaml:3a85a0c7a3d34c0c7ed37e1aefbe73e6ab9c232b
cloud/aws/eks/eks-cluster-logging.yaml:12d6babe36375fd7e4368e40a2a2c1198c4a6f5b
cloud/aws/eks/eks-endpoint-access.yaml:89008378663bb2127e0e6d95e497ebffc356e802
cloud/aws/eks/eks-iam-managed-policy-networking.yaml:f7c63f1543396cc70d6b965cfab0ba26c85e029a
cloud/aws/eks/eks-kubernetes-secrets-encryption.yaml:2846cf831a5e5ec0f203d44cae52d37f0fd5b2ca
cloud/aws/eks/eks-logging-kubes-api-calls.yaml:0dfff7ceb142e6a01c5207039170c198a670099b
cloud/aws/eks/eks-long-running-pods.yaml:9de8fa181aa9676d53008d24e51f00971f25e3d2
cloud/aws/eks/eks-managed-policy-ecr-access.yaml:48947b15dbe7fb7f8e0493582962602b67fc4c8d
cloud/aws/eks/eks-node-group-remote-access.yaml:e73f4852d81d9bd8c71e749183e9c3fc9826b31b
cloud/aws/elasticache/cache-automatic-backups-disabled.yaml:88c5aad803f4a069769211d20710bfd42c61c1cf
cloud/aws/elasticache/cache-event-notification-disabled.yaml:56850b76d437a3867d44de0f58e2e001147ecdaf
cloud/aws/elasticache/cache-redis-encryption-disabled.yaml:02eb626eba9767ab26b25eda7825d1d795d95e02
cloud/aws/elasticache/cache-redis-multiaz-disabled.yaml:dcc6347331ffc41e3d975b9f0084d19bf116fa9b
cloud/aws/elb/elb-delete-protection-disabled.yaml:a8437ff156986a92ddddb9a38f98c594b4a8f902
cloud/aws/firehose/firehose-server-destination-encryption.yaml:70a01840391d5ad0e55e44a06f3057eda5c7de31
cloud/aws/firehose/firehose-server-side-encryption.yaml:8098b259d2ae9727d3d56f5a20f1260e08742a21
cloud/aws/guardduty/guardduty-findings.yaml:2635047c12584f15f5e8a6ed5b1cfe9f62157c22
cloud/aws/guardduty/guardduty-not-enabled.yaml:ecf3d42dd99202dc87af25fab517fdd23c13dcb8
cloud/aws/guardduty/malware-protection-disabled.yaml:e23fc6bb91b004c0f0598553db2341f7cec4f852
cloud/aws/guardduty/s3-protection-disabled.yaml:e371fedc302de55dc0c61e636648747066b37d64
cloud/aws/iam/iam-access-analyzer.yaml:7308e04d111f8fd150519a6e78000c2dff06a3e8
cloud/aws/iam/iam-expired-ssl.yaml:26446ccd3ebc94137230bdd32b07956efff55022
cloud/aws/iam/iam-full-admin-privileges.yaml:552e15cad99f9829a5fd5e15b3d58a1cab535f29
cloud/aws/iam/iam-key-rotation-90days.yaml:755a7c783f2f761c74a6a58267d0dd4f67baface
cloud/aws/iam/iam-mfa-enable.yaml:cc2fc501c1a09d419f63e5070ab37ddf24aec82b
cloud/aws/iam/iam-password-policy.yaml:3794822a24f8fd847f705a43b899346852e29f56
cloud/aws/iam/iam-root-mfa.yaml:6b1e95b7b9b1d48dd0201de7c5844bb40518819c
cloud/aws/iam/iam-ssh-keys-rotation.yaml:7b7bf867e5de8fe7faa512478f4e4177783a73f1
cloud/aws/iam/iam-unapproved-policy.yaml:7ca396c2e3fb8ffadcc93dc90673b4bfae985e01
cloud/aws/iam/iam-user-password-change.yaml:4ba5f8b1115e201dcab230aeb7fd1c5dd7cc3b46
cloud/aws/iam/ssl-cert-renewal.yaml:97cab10c05f70c5f601d19074fce2da56749daf6
cloud/aws/inspector2/inspector2-disabled.yaml:4f28b4c136905f0e903a61c773e708d134e73773
cloud/aws/rds/aurora-copy-tags-snap.yaml:740f9e8dfe8239900fbe43944afb23303201a15e
cloud/aws/rds/aurora-delete-protect.yaml:1d3bcb49fb986911dfcd154b1cd9061e12858ec6
cloud/aws/rds/iam-db-auth.yaml:d6a57c3d7d0b8c2168c3ea041031db17bcea1f1a
cloud/aws/rds/rds-auto-minor-upgrade-disabled.yaml:1797e5ad21fd541fc0d00560d7e80616b70b1c5f
cloud/aws/rds/rds-automated-backup-disabled.yaml:4a19378d6cd2853bfadb8d29931b8f1ae43b1714
cloud/aws/rds/rds-backtrack-disabled.yaml:02f4f73c9c59f51601262530332a26eb86743e7a
cloud/aws/rds/rds-backup-enable.yaml:46ae3f8a44bdc761f2ca67a89f33b40fdb2c5fd7
cloud/aws/rds/rds-cluster-protection-disabled.yaml:233350c0726dccc9311d8be48956e65c7257e003
cloud/aws/rds/rds-copy-snap.yaml:799be95afb5454bb9390c3a140dcc5ad730fa18b
cloud/aws/rds/rds-deletion-protection.yaml:6e41e11fd906b47bada85389ad9db3308da7b959
cloud/aws/rds/rds-encryption-check.yaml:09d3f8a1d407d05b1e46271c5b3e1aa5ccc628b6
cloud/aws/rds/rds-event-notify.yaml:bb476f12e7a67c900843d5c120fff6fe7322b22e
cloud/aws/rds/rds-event-sub-enable.yaml:1980d864a7bb62596dc4a8e4858943128b1953c2
cloud/aws/rds/rds-event-sub.yaml:95d6bc08e8f86664cf1c917c0ad1f27f0b351a7c
cloud/aws/rds/rds-gp-ssd-usage.yaml:95aaccae51aea299696327654b8035ec528c7a5b
cloud/aws/rds/rds-insights-disabled.yaml:e461c62eeed234b3b1bf8aec7a43520cb5d674fd
cloud/aws/rds/rds-instance-autoscaling-disabled.yaml:2afa4604dfbe86d63076849a66f45fa3efe255be
cloud/aws/rds/rds-log-export-disabled.yaml:38c346eae29a39797584fd36c4899dd6f028d003
cloud/aws/rds/rds-multi-az.yaml:4b24e734620cc084aea395042cf077e8467dbb6d
cloud/aws/rds/rds-public-access.yaml:d124edd23e3a33a61c08c5763d41e5c7aa555d87
cloud/aws/rds/rds-public-snapshot.yaml:33f616e72ec82b95e55123ac83fe711ca289cd7c
cloud/aws/rds/rds-public-subnet.yaml:d6efbc1644b935c3d1d54601a6c2db7021da3817
cloud/aws/rds/rds-ri-payment-fail.yaml:cce8f1dcb35c6d0c9bc4048495cceeca8a8a5614
cloud/aws/rds/rds-snapshot-encryption.yaml:5556cf7024d63469852e6ccf9cb4f42cddbe09d4
cloud/aws/route53/route53-dns-query-disabled.yaml:e4ef0e0072d87c5a76cdbf565a7eebda47f23619
cloud/aws/route53/route53-dnssec-signing-disabled.yaml:21a719474adccbac1ff3d2cc5974f83adbdc010e
cloud/aws/s3/s3-access-logging.yaml:15ce2d85045885efc7c0323ccd3a9d2809859732
cloud/aws/s3/s3-auth-fullcontrol.yaml:8b941b22f4db5c823fa22b1b0469abcf4ae61e54
cloud/aws/s3/s3-bucket-key.yaml:d89341fb4d245c35f165b3b9c1dd18206f292470
cloud/aws/s3/s3-bucket-policy-public-access.yaml:a8cef3433d44a2af9f7a95d307c8a5e79013cd4b
cloud/aws/s3/s3-mfa-delete-check.yaml:143836945e4a4b8669837e408a86f2b3cb2a1822
cloud/aws/s3/s3-public-read-acp.yaml:7e74a675df0e432d328fa1d872e1372b8e720a8f
cloud/aws/s3/s3-public-read.yaml:f5e90baf2f1356ba34f82270f3176ee079cf73c1
cloud/aws/s3/s3-public-write-acp.yaml:e9d7e73b6571531a82afda1744d2845c2614371b
cloud/aws/s3/s3-public-write.yaml:0d3467005dc68b458dff55542601f5986c05ec9e
cloud/aws/s3/s3-server-side-encryption.yaml:67ec573f75254eca3d49e6010978a51457a75dd9
cloud/aws/s3/s3-versioning.yaml:7f1a007e27e2c5975776e6025eac5c7bbde93eef
cloud/aws/secrets-manager/secret-manager-not-inuse.yaml:05f6ee020bbec21402deef2301d53bafba12d704
cloud/aws/secrets-manager/secret-rotation-interval.yaml:9ccf9087155e8202a234c96e446d044c5dfa5054
cloud/aws/secrets-manager/secrets-rotation-disabled.yaml:658901e101cd4818b636e927a2811dc0e119a18d
cloud/aws/sns/sns-public-subscribe-access.yaml:cb5887c447b05ef4ab7c398963229371f9689be4
cloud/aws/sns/sns-topic-public-accessible.yaml:bdcba8f1922a8671aa8c976b3e8c6dedae873f7c
cloud/aws/sqs/sqs-deadletter-disabled.yaml:5e2af7f38ea7e177807f91dbc8d5a45d6f9e5214
cloud/aws/sqs/sqs-encryption-disabled.yaml:bd9c0f493af9bcf832170a40918a8ebc6fb96934
cloud/aws/sqs/sqs-queue-exposed.yaml:8c50b37e689216d3476a8113cb4a9c80aa4513fa
cloud/aws/vpc/nacl-open-inbound.yaml:3c20461190a1e11df5df2212b99e448a777169d4
cloud/aws/vpc/nacl-outbound-restrict.yaml:1f67dcd9c641896a110c484b39b2485f2e9ce7f8
cloud/aws/vpc/nat-gateway-usage.yaml:ccfd5cffcae842624488d2be29f45a0e5f33d9a5
cloud/aws/vpc/unrestricted-admin-ports.yaml:6f8c80e038fe24fc203e119171a5359f35134f36
cloud/aws/vpc/vpc-endpoint-exposed.yaml:910bb845ee536beff2c31eb1ffec829b21340683
cloud/aws/vpc/vpc-endpoints-not-deployed.yaml:35744fc393d25e9d0b90a095e174da53551a6aaf
cloud/aws/vpc/vpc-flowlogs-not-enabled.yaml:f951733ba2ac03932e800f48b4e445473f8cb8ef
cloud/aws/vpc/vpn-tunnel-down.yaml:28fcda6c6602194382eaeb2bef1da474414125d7
cloud/azure/accesscontrol/azure-custom-admin-role-unrestricted.yaml:d8434e4699b543b1ef9f8a41f34b02b11898e135
cloud/azure/accesscontrol/azure-custom-owner-role-unrestricted.yaml:7def919377e98de125cacff5692e2d6291c6c58a
cloud/azure/accesscontrol/azure-iam-role-resource-lock-unassigned.yaml:4d2ab5150c70bdb66f633c71dc425892a796e417
cloud/azure/activedirectory/azure-entra-id-guest-users-unmonitored.yaml:f1ddfd764f59c713c877a51dc97e122e4f691556
cloud/azure/activedirectory/azure-mfa-not-enabled-privileged-users.yaml:c863397f9fa83506dd2beea33147cbdf3ec06d05
cloud/azure/activitylog/azure-db-mysql-delete-unalerted.yaml:eb7e02b61e23bf0c627e3659ed1b5f936e7062d0
cloud/azure/activitylog/azure-delete-lb-alert-unconfigured.yaml:8a10014163e200bdfc60c6a956c100bfa8903aee
cloud/azure/activitylog/azure-key-vault-delete-unalerted.yaml:ad81ef4d4789c80ff57366a1cd5ff2942f23b90d
cloud/azure/activitylog/azure-keyvault-update-unalerted.yaml:0f6cbe2e7250b54ac658d9ecede3399ee9051fee
cloud/azure/activitylog/azure-lb-create-update-missing.yaml:0d56c97986c60d8ed0afcb560330d6f85eb29c59
cloud/azure/activitylog/azure-mysql-db-update-unalerted.yaml:55cd174561bf944fbbd65d99012b57f87f9d79c4
cloud/azure/activitylog/azure-nsg-create-update-unalerted.yaml:1d6b00600a21ca8c6d33d913d5d523ab5bed06bc
cloud/azure/activitylog/azure-nsg-delete-unalerted.yaml:1542ba9b9a82526bffabf150562b8096f8c5da76
cloud/azure/activitylog/azure-nsg-rule-delete-unalerted.yaml:a6c7035154f22376f590766c2c248163e2e7507a
cloud/azure/activitylog/azure-nsg-rule-update-unalerted.yaml:b152930d353378fe5089af25f6f72b56c3e3fe6e
cloud/azure/activitylog/azure-policy-assignment-create-alert-missing.yaml:593e9cf7d707b086a8285f3469fccec5e8b77c0b
cloud/azure/activitylog/azure-policy-assignment-delete-unalerted.yaml:f391150880cf41dbc5970a6ba1cf9348989ff1e3
cloud/azure/activitylog/azure-postgresql-db-delete-unalerted.yaml:24c2e30b4035820ff0053a69b6cb8f06e2dbcd09
cloud/azure/activitylog/azure-postgresql-db-update-unalerted.yaml:7821e7cd9fec871eb3af12f7bd448dba8e5ab212
cloud/azure/activitylog/azure-public-ip-delete-unalerted.yaml:10fd1041ba527e555af55046af105e2442b43e77
cloud/azure/activitylog/azure-public-ip-update-unalerted.yaml:9c5712062e92c9cb1ebce75f5935d7a0d8998fe9
cloud/azure/activitylog/azure-security-policy-update-unalerted.yaml:ff0f5cb453b40df0cb2e86484de7b1c22539503e
cloud/azure/activitylog/azure-security-solution-delete-unalerted.yaml:d4df564994389ba9c8f114b3c81877a2f1b5f44a
cloud/azure/activitylog/azure-security-solutions-update-unalerted.yaml:7f2c9b8c235cd569cce69b0f955aa17ba3f013bd
cloud/azure/activitylog/azure-sql-database-rename-unalerted.yaml:7da7d79e9929f3e7f6f7776f0abd62f4064d4e28
cloud/azure/activitylog/azure-sql-db-update-unalerted.yaml:a696a3a1d2b475661da965ae66961bf1edbf5989
cloud/azure/activitylog/azure-sql-delete-db-unalerted.yaml:1511f4c555f0228c2ccd3b1d1de01d34a29878dc
cloud/azure/activitylog/azure-sql-fw-rule-unalerted.yaml:c99804b91765861db119506dd1537e4b229ef11a
cloud/azure/activitylog/azure-storage-account-delete-unalerted.yaml:f62e6093e0962a7ce71b2fcf887d398543cdfec1
cloud/azure/activitylog/azure-storage-account-update-unalerted.yaml:23f7a58464fb6e22d9adadbe2234fd8ebd537541
cloud/azure/activitylog/azure-vm-create-update-unalerted.yaml:b05e6d097478ce9ad9d7f5c33f917e812f125fd9
cloud/azure/activitylog/azure-vm-deallocate-unalerted.yaml:46cc8e03f0ae5120a6f7b7a1ac79fefd4ba8bb61
cloud/azure/activitylog/azure-vm-delete-unalerted.yaml:e60d7e7a646e7b6417e50d490e8cd4a36df11946
cloud/azure/activitylog/azure-vm-poweroff-unalerted.yaml:ac34c2989e22124ea49fa35195160d9992a72a04
cloud/azure/aiservices/azure-openai-cmk-not-enabled.yaml:eaaed6ff7c4855e2ac68e4ebee0d05b87604ab80
cloud/azure/aiservices/azure-openai-managed-identity-not-used.yaml:c5cf7dd9984b5b001cfbb876fdb91486e1adfd95
cloud/azure/aiservices/azure-openai-private-endpoints-unconfigured.yaml:0da52f1fde5873399e8a66e82971bd4e637ec877
cloud/azure/aiservices/azure-openai-public-access-disabled.yaml:06f3734f84d0ceda59867e443fad40a97bd786e9
cloud/azure/aks/azure-aks-api-unrestricted.yaml:7f6a09d846ebb335f33ffb85612fea89359f25d0
cloud/azure/aks/azure-aks-api-version-not-latest.yaml:e482c938a931db3ab7ca93929048d0226f0d30ac
cloud/azure/aks/azure-aks-cni-not-configured.yaml:e39446d864b847fc15eb57bdf300664ca7909076
cloud/azure/aks/azure-aks-entra-id-unintegrated.yaml:976511718044ea311b3ab619b254025d9fd720d8
cloud/azure/aks/azure-aks-kubernetes-version-outdated.yaml:45f7e23493232ac308c8212b370c1b8ce4fd454c
cloud/azure/aks/azure-aks-managed-identity-unassigned.yaml:f0897e5e812bda22f1af02187cc422876a983c3c
cloud/azure/aks/azure-aks-network-contrib-unassigned.yaml:441f6d718700241af0a88303a0f0f87b6a7657f7
cloud/azure/aks/azure-aks-not-user-assigned.yaml:784be340d02944a14d12d981a7cc4dd1ecb9d7f2
cloud/azure/aks/azure-aks-rbac-unconfigured.yaml:8aedf31872be87b01f0a9f60364c0f3bc2e688b8
cloud/azure/aks/azure-aks-use-private-kv.yaml:d8117f013563f617b8af842c10a6c91d02441d8d
cloud/azure/apimanagement/azure-apim-http2-not-enabled.yaml:bbaab4c223bf78ae554060fc5e2846ed969b6c41
cloud/azure/apimanagement/azure-apim-https-enforcement-missing.yaml:3a57f0b55e6d9416bf54f7c2ac281bfbf4fd8a96
cloud/azure/apimanagement/azure-apim-nv-plaintext-exposure.yaml:fe9f2b6bcb8afde477c51f31cddfef500cc65765
cloud/azure/apimanagement/azure-apim-public-access-disabled.yaml:0de1528b0c93e917f81bd92c793f1e6577e53925
cloud/azure/apimanagement/azure-apim-resource-logs-not-configured.yaml:2fed1c4f8c1642d17c83c5311bc19ccd79a98b97
cloud/azure/apimanagement/azure-apim-system-assigned-identity-unconfigured.yaml:32a2369883d2c0e0a39682ac3cf6b0d1405d3ef4
cloud/azure/apimanagement/azure-apim-tls-config-weak.yaml:7dab268c36b38fb93e9e952e2bbd15721c0bb793
cloud/azure/apimanagement/azure-apim-user-assigned-id-not-used.yaml:97df4e998c23dd8d3ebd640f0dc0a310658b413e
cloud/azure/appservice/azure-appservice-always-on-disabled.yaml:d88b5a828d2d97882c863d94a593c2eab6fc9128
cloud/azure/appservice/azure-appservice-auth-disabled.yaml:c57533a531d872292aebb2f005947f541f2b153b
cloud/azure/appservice/azure-appservice-backup-not-enabled.yaml:c2e819bd2dd74e833349c8ed69ad71d1a7380d97
cloud/azure/appservice/azure-appservice-backup-retention-missing.yaml:bedd55dffc97357f27a763930f9b45b68335c711
cloud/azure/appservice/azure-appservice-client-cert-disabled.yaml:d275eaf158d7f4f8d65c5f7bc9aded9188ff3e2b
cloud/azure/appservice/azure-appservice-entra-id-missing.yaml:8d95a933490140594470b7a53017d07fadb258bc
cloud/azure/appservice/azure-appservice-ftp-deployment-disabled.yaml:c2abef7f1b01ff3f66c3bc0ae37b5320e31a408f
cloud/azure/appservice/azure-appservice-ftps-only-not-enabled.yaml:03d5ac51829d67b87449b6258dfde406aa203629
cloud/azure/appservice/azure-appservice-http2-not-enabled.yaml:34835788b4404600804ba12378524a14538aa47c
cloud/azure/appservice/azure-appservice-https-only-not-enforced.yaml:94fe566b5719fbe1ad4ab5a851d0cdd57b3893ad
cloud/azure/appservice/azure-appservice-insights-not-enabled.yaml:f39f9cc226892a52e3686e388ec616eeb4b78b40
cloud/azure/appservice/azure-appservice-remote-debugging-enabled.yaml:29c8e77a870a9bd55547e4c199e2781db45d1fb3
cloud/azure/appservice/azure-appservice-tls-latest-version-missing.yaml:995d0dc265a9dc953cd8383d176ca53f04764220
cloud/azure/azure-env.yaml:6e60ef9141a0882b984067171b35c1ad34bc6bd0
cloud/azure/cosmosdb/azure-cosmosdb-auto-failover-missing.yaml:bcec1b8a93a956bd57007aecaf49f0ab05465259
cloud/azure/cosmosdb/azure-cosmosdb-default-network-access-unrestricted.yaml:507a10a44033e6aaa6061daa166a5a1917d86a84
cloud/azure/functions/azure-functionapp-access-keys-missing.yaml:0edab6566407016a17f86b693e250703635235d2
cloud/azure/functions/azure-functionapp-admin-privileges.yaml:023684b659ab2e365df03da17bb62c245c704953
cloud/azure/functions/azure-functionapp-appinsights-missing.yaml:c9d6c18ac156b1837250ba02c0333a8b27170f0e
cloud/azure/functions/azure-functionapp-public-exposure.yaml:6cd42b14f96e79da6f9658b024f9f4d3ed0026cc
cloud/azure/functions/azure-functionapp-system-assigned-missing.yaml:063a6426141fcf452ab78c145b73ea494eedc1d2
cloud/azure/functions/azure-functionapp-user-assigned-id-missing.yaml:6b0fa9540d968a6f169f2b324b2ad789496246d7
cloud/azure/functions/azure-functionapp-vnet-integration-missing.yaml:75c5aa93889e9464fef5c6e3283db0332a110f07
cloud/azure/keyvault/azure-app-tier-cmk-untagged.yaml:60169a4e23adec7bc42cf9b241effcfd667061b5
cloud/azure/keyvault/azure-database-tier-cmk-absent.yaml:2fa4063ce9efed0e85e63843b747eb89adec0faf
cloud/azure/keyvault/azure-keyvault-audit-not-enabled.yaml:a00b2cb08e4ee06a85d340333672fb6080a9e14b
cloud/azure/keyvault/azure-keyvault-cert-keytype-unapproved.yaml:f457643198af843daa08e9b5fe9fddcbfc2ea7dc
cloud/azure/keyvault/azure-keyvault-cert-transparency-missing.yaml:b5b74a36ef406d508e2748714b6833d4dacba660
cloud/azure/keyvault/azure-keyvault-certificate-insufficient-autorenew.yaml:1dea56b6bc5ad786831311a8d26698ab92725f1d
cloud/azure/keyvault/azure-keyvault-network-unrestricted.yaml:29c1e0b4220e7f76ff98fa92641d4420eec9b974
cloud/azure/keyvault/azure-keyvault-recoverability-unconfigured.yaml:1e8ce01a36e15c934aa5ee96ab7507f558e62d98
cloud/azure/keyvault/azure-keyvault-ssl-autorenewal-missing.yaml:f7543600c31ddf675ecdacc68af3e92c05fbee42
cloud/azure/keyvault/azure-keyvault-trusted-ms-unrestricted.yaml:0aeb04d41ad37f2125f2ff62ec15a8b735687bce
cloud/azure/locks/azure-keyvault-resource-lock-check.yaml:4a9987e022d46692446333b5ad13ddc045d66935
cloud/azure/monitor/azure-diag-logs-not-enabled.yaml:1fb228ffb53defe1a1c2361679da5f475e5fd37a
cloud/azure/monitor/azure-diagnostic-categories-misconfigured.yaml:f2c2fdf20c72763de72293db6137bf9308648dc6
cloud/azure/monitor/azure-log-profile-all-activities.yaml:3263529218265841d67625f4577f62919bb0b5bf
cloud/azure/monitor/azure-monitor-diagnostic-unrestricted.yaml:d9d12c973046076baae6d80d842056d5b801ca06
cloud/azure/network/azure-network-watcher.yaml:c61d0384d408908de57f8e59870791491a0a821f
cloud/azure/network/azure-nic-ip-forwarding-check.yaml:1f8ce635655fa1f97909ed6028315560ad454436
cloud/azure/network/azure-nsg-cifs-unrestricted.yaml:dcb69c68e64a72ed5a761b7aca2e8d2c5a09df32
cloud/azure/network/azure-nsg-dns-unrestricted.yaml:0cf48dfc73e1c149bca9f9d28a23b06d94bc60c2
cloud/azure/network/azure-nsg-ftp-unrestricted.yaml:91b005debd241e2b33962c1ec3e0111b0d100539
cloud/azure/network/azure-nsg-http-unrestricted.yaml:4bb1aa69f880e914ed429997b477b6338940a023
cloud/azure/network/azure-nsg-https-unrestricted.yaml:10b7e089c475f372e51a7cc40155d47d16796a06
cloud/azure/network/azure-nsg-icmp-unrestricted.yaml:b57a843f73828673edd939882281e0ff3caf14d6
cloud/azure/network/azure-nsg-mongodb-unrestricted.yaml:239a998bda64b50dd050b81e0b4f9b403e152ff4
cloud/azure/network/azure-nsg-mssql-unrestricted.yaml:1f6d5ca4b7bfbc3473abacee27b168cba4bb3f55
cloud/azure/network/azure-nsg-mysql-unrestricted.yaml:7f0b3026c966cde3f1fa5953778b91bbd4e337c3
cloud/azure/network/azure-nsg-netbios-unrestricted.yaml:f4587756bffa426bacb2a54029cd23eadb321520
cloud/azure/network/azure-nsg-oracle-db-unrestricted.yaml:4b51f9e29ad964312413a12cad4ab6f258eb9e1f
cloud/azure/network/azure-nsg-postgresql-unrestricted.yaml:d2c72c5cea408b3e193444942f9c86bff2cd79a9
cloud/azure/network/azure-nsg-rdp-unrestricted.yaml:ee0f8923be3a35e33063a0a2e3346fbe67ce7b0a
cloud/azure/network/azure-nsg-rpc-unrestricted.yaml:3e5d9607cbcd119c1b4cb502a8570d414c6ac8b5
cloud/azure/network/azure-nsg-smtp-unrestricted.yaml:2e6f98b09559ff84f9e54d58951a85b42184745b
cloud/azure/network/azure-nsg-ssh-unrestricted.yaml:4a8873af3d8ab7a4135ff7d04d3a003a0c8ed808
cloud/azure/network/azure-nsg-telnet-unrestricted.yaml:6b04109ed34899a0807a3bc07544c0c77d95f7b9
cloud/azure/network/azure-nsg-udp-unrestricted.yaml:03f53dc9443461b691750e1b65c28a2ab5289719
cloud/azure/network/azure-nsg-unrestricted-port-range.yaml:a7f666027e1b3ea5fd8a5f97b0533ef6331a4fd2
cloud/azure/network/azure-vnet-ddos-protection.yaml:b791ee38b0310bf90612b45c454419fef24bf1b4
cloud/azure/postgresql/azure-postgres-allow-azure-services-disabled.yaml:4c833037c3b2f72e3eb468a1a3c7eee808fdd2ef
cloud/azure/postgresql/azure-postgres-connection-throttling-disabled.yaml:14c3ecd01982445cc2f9429a36bdf91d4250218d
cloud/azure/postgresql/azure-postgres-double-encryption-disabled.yaml:8a9bbfc50150a22fa167551d3d4627d8fd070721
cloud/azure/postgresql/azure-postgres-log-checkpoints-disabled.yaml:e9ba62cda5ab65cf04e39bed738bfcb25560b25c
cloud/azure/postgresql/azure-postgres-log-connections-disabled.yaml:9cdbfaa125aa898f4c7bcdb8572a0c8874273a9c
cloud/azure/postgresql/azure-postgres-log-disconnections-disabled.yaml:18a0b569f35a8d23358042653a573d4767d043f6
cloud/azure/postgresql/azure-postgres-log-duration-disabled.yaml:544f4e49fd0403558bbd31ed774c6c72b8a2a926
cloud/azure/postgresql/azure-postgresql-geo-backup-disabled.yaml:17c5d10148e23fb78b68dfafe743448591a822f9
cloud/azure/postgresql/azure-postgresql-ssl-enforcement.yaml:dff85d6c783dad43ec73208a838a2836eaa5a515
cloud/azure/postgresql/azure-postgresql-storage-autogrow-disabled.yaml:40a8dee922b45cc7c38474765a7cc305e21991de
cloud/azure/redis/azure-redis-nonssl-port-disabled.yaml:bc235678132e7e5f1b606e3c4f88748a0eff8aee
cloud/azure/redis/azure-redis-tls-version-outdated.yaml:064f645ba8c240e0eb14428e8086322f3584dc96
cloud/azure/search/azure-search-service-managed-identity-disabled.yaml:1a1e03a045f2751733cf378d753e0fd696a9f9e4
cloud/azure/securitycenter/azure-defender-auto-provisioning-disabled.yaml:6cd60552905d4cf0d1474c5ce54fe567761e8205
cloud/azure/servicebus/azure-servicebus-public-access-disabled.yaml:13433d5260074839175ac681661c5b9b428562e6
cloud/azure/servicebus/azure-servicebus-tls-version-outdated.yaml:90d5d56a0e1b418545bf21f2e41656e8c154a75b
cloud/azure/sql/azure-sql-auditing-disabled.yaml:e78ffcd49bae2e745be57d1c97c7c2307a7547e4
cloud/azure/sql/azure-sql-failover-not-enabled.yaml:53ad0cd5ed05886080f453d3b0ad33c082961304
cloud/azure/sql/azure-sql-mi-tde-cmk-not-enabled.yaml:e5724826ca95ac66a0de47ab6f4a2aa5c4f05e17
cloud/azure/sql/azure-sql-mi-tls-version-outdated.yaml:9928d4bfe9855314c6e3c1eda53f9cc4504b6eee
cloud/azure/sql/azure-sql-tde-cmk-not-used.yaml:74d80c5345aaaf969334e0c6ffbe638fd56aee39
cloud/azure/sql/azure-sql-tde-not-enabled.yaml:9e527a6323fbd65b437e68980e0525b850096506
cloud/azure/sql/azure-sql-va-emails-unconfigured.yaml:7a62ad757dfeab7c54a8e7559c0badb1373c027b
cloud/azure/storageaccounts/azure-blob-anonymous-access-disabled.yaml:aca3d25561f6cda31404997934cf9d28614ca5ba
cloud/azure/storageaccounts/azure-blob-immutable-not-enabled.yaml:0b80358e6f53d0eac90d88cbfbb09fb9250cbcc0
cloud/azure/storageaccounts/azure-blob-lifecycle-not-enabled.yaml:3be825ca3490c73478225e6f3d6b8e0a6a103823
cloud/azure/storageaccounts/azure-blob-service-logging-disabled.yaml:89293380a590d60378d65c1a7f9b6f4b4f8732ae
cloud/azure/storageaccounts/azure-blob-soft-delete-disabled.yaml:97c8ac5d7310fc78057b10e944c5a7f978a87077
cloud/azure/storageaccounts/azure-storage-blob-public-access.yaml:16538c1d5593004e7cd877589c41f1d9f5a10a66
cloud/azure/storageaccounts/azure-storage-byok-not-used.yaml:11e80dc245351bd0bcaa082c2090d13ac7a76f61
cloud/azure/storageaccounts/azure-storage-cmk-not-used.yaml:760bd10aa6865caae205f31eb7e3cec6c435e9d2
cloud/azure/storageaccounts/azure-storage-cross-tenant-replication-disabled.yaml:c48af0c25f257c864e43110a35c5c634da1d33b2
cloud/azure/storageaccounts/azure-storage-encryption-missing.yaml:9bc3b46b2d9ecb1d594e93df5f7c86ea158b0bd6
cloud/azure/storageaccounts/azure-storage-min-tls-version.yaml:c6be31f504692d0041ea7dea417f0aa898d4930b
cloud/azure/storageaccounts/azure-storage-network-unrestricted.yaml:002983828090370f16d33ad789d2fc5389f88a32
cloud/azure/storageaccounts/azure-storage-overly-permissive-sap.yaml:5e9b006aa2aaa846800775dcd291dfe7fbeb82bc
cloud/azure/storageaccounts/azure-storage-private-endpoint-unconfigured.yaml:2cb1135ef85a806b7b1036391d336a87e2370048
cloud/azure/storageaccounts/azure-storage-public-access.yaml:693d84cf8c906aa5523737a895eb8c13703350d5
cloud/azure/storageaccounts/azure-storage-queue-logging-disabled.yaml:4b56236b1e4a702ddbe8217584eef50e5a1b04bc
cloud/azure/storageaccounts/azure-storage-secure-transfer.yaml:31f10d10013e18dfe018bf80605e001f5a8240e2
cloud/azure/storageaccounts/azure-storage-static-website-review.yaml:c8107d51add2585a8dedc523ef53047835409794
cloud/azure/storageaccounts/azure-storage-table-logging-disabled.yaml:597d03ae2444e29692963e5dcfa78d8a766fb8fb
cloud/azure/storageaccounts/azure-storage-trusted-access-disabled.yaml:08478360f130616853f982415bbee501369a6f68
cloud/azure/subscriptions/azure-budget-alerts-missing.yaml:218e1ba7f64c2d45de6c11dfb7adaaaf875450b4
cloud/azure/subscriptions/azure-policy-not-allowed-types-unassigned.yaml:15b33568fdee2358ea9ace262180280721bc6050
cloud/azure/synapse/azure-synapse-sqlpool-tde-disabled.yaml:02738b7315b0526ab17bb17c60a109d4f1faab0f
cloud/azure/tags/azure-vm-tags-schema-noncompliant.yaml:5f187619c948f1f491555511493e26f7f5644b8a
cloud/azure/virtualmachines/azure-app-tier-vm-disk-unencrypted.yaml:59fa4da1e4ecd5ff1bafdcdf231d23d373d18577
cloud/azure/virtualmachines/azure-disk-encryption-unattached-volumes.yaml:7eebf577a152bcfa844ba42499ba5ed8d6eb6c63
cloud/azure/virtualmachines/azure-lb-unused.yaml:d6e7a2d2e1cf2c3a37723ae770324c126aa2b0db
cloud/azure/virtualmachines/azure-vm-accelerated-networking-disabled.yaml:1e8d4205164a26d503d18cbe6f75d768ef5d9702
cloud/azure/virtualmachines/azure-vm-accelerated-networking-not-enabled.yaml:8b2dd1d43f325dca1520c183afbcc1f5c9a19335
cloud/azure/virtualmachines/azure-vm-boot-diagnostics-not-enabled.yaml:383b360c7c0d5e95bba2c603a56ed751afa8e4b7
cloud/azure/virtualmachines/azure-vm-boot-disk-unencrypted.yaml:d7cd7e1ec30e0346e504fa182f80d0bd6514b34a
cloud/azure/virtualmachines/azure-vm-byok-disk-volumes-not-enabled.yaml:3520bf6784559e77455c382531555f7e10e9c744
cloud/azure/virtualmachines/azure-vm-endpoint-protection-missing.yaml:b218f52af2f2ae79426f1e024c252be8d3ffba05
cloud/azure/virtualmachines/azure-vm-entra-id-unenabled.yaml:013618ec82f937d1a759f74ff79957f72b293a96
cloud/azure/virtualmachines/azure-vm-guest-diagnostics-unenabled.yaml:38581a849ce0b11f48d56114b46b4eacfb3a8014
cloud/azure/virtualmachines/azure-vm-jit-access-not-enabled.yaml:67dbb12858e35ab39073809dc99c44483024136f
cloud/azure/virtualmachines/azure-vm-managed-identity-unassigned.yaml:63a4bff1ffc5dd0d76f694d075a117d7de01ccff
cloud/azure/virtualmachines/azure-vm-performance-diagnostics-unenabled.yaml:c68ba7f8a7e4060f4070d8bf580c53bc760794a6
cloud/azure/virtualmachines/azure-vm-ssh-auth-type.yaml:bbd143ba027c448cb37c6b055169e0f9292335b3
cloud/azure/virtualmachines/azure-vm-standard-ssd-required.yaml:82acd475ed04f61c345af608f6cdd62360ac4efe
cloud/azure/virtualmachines/azure-vm-trusted-launch-disabled.yaml:f68a62f52477a41e6cd07510bb5fb86933b985e2
cloud/azure/virtualmachines/azure-vm-unapproved-image.yaml:79ec3c71a533dbca60799129dd78524a677f4b8d
cloud/azure/virtualmachines/azure-vm-unmanaged-disk-volumes.yaml:e1ffbe8b94a3ae3749477292429ca26ffd42d83e
cloud/azure/virtualmachines/azure-vm-web-tier-disk-unencrypted.yaml:e4745555d09ffdadc81c5cab413c752b04942bb1
cloud/azure/virtualmachines/azure-vmss-auto-os-upgrade-missing.yaml:462521568eab2a4ad1b6091b037d8b0efd57ecd0
cloud/azure/virtualmachines/azure-vmss-auto-repairs-disabled.yaml:10f327ecbeb7cae8966325f84a75d265732ffc81
cloud/azure/virtualmachines/azure-vmss-empty-unattached.yaml:f90fd75a0ce6382c5192c4f8973eec3fff465163
cloud/azure/virtualmachines/azure-vmss-health-monitoring-missing.yaml:3f8ad3a960d46f9274ed5897426c68d508059256
cloud/azure/virtualmachines/azure-vmss-load-balancer-unassociated.yaml:bc26fdc397966db656ec914cd01db80a7cfd652a
cloud/azure/virtualmachines/azure-vmss-public-ip-disabled.yaml:5c593d9b3c4340174e668a8cb243a2a02f5a5c88
cloud/azure/virtualmachines/azure-vmss-termination-notif-disabled.yaml:0efbfe2e0ba5724d364640813c1af09febe1e0db
cloud/azure/virtualmachines/azure-vmss-zone-redundancy-missing.yaml:434cb49822f5ee6782343d5982615b320140ee95
cloud/enum/aws-app-enum.yaml:f0eed9e398b7b500e45accdb1ebe28f710d5b3d0
cloud/enum/aws-s3-bucket-enum.yaml:e125b591202d6902e825674863080b87ad72b82d
cloud/enum/azure-db-enum.yaml:6499044927c28c36450cb171ed3e7798ac9a35da
cloud/enum/azure-vm-cloud-enum.yaml:29e19265dbbf632f90b88a258de81144f075ebf0
cloud/enum/azure-website-enum.yaml:f243403f7eade073efc266174b2f388280d7c9fc
cloud/enum/gcp-app-engine-enum.yaml:9e1fd532d515c26fff658bcfb1820380a5ae3337
cloud/enum/gcp-bucket-enum.yaml:1333547f6c1eed7ecf6967ef0dc2a7c4cee692fd
cloud/enum/gcp-firebase-app-enum.yaml:85784706fb10014349569d14629fb90a6a2a21ef
cloud/enum/gcp-firebase-rtdb-enum.yaml:af8157015a9fa99bb248284a8d0ee13d310b77c3
cloud/gcp/api/gcloud-api-key-restrictions-missing.yaml:060fc98069645bc5803224f07ae9d10bce8a4026
cloud/gcp/api/gcloud-api-key-unrestricted.yaml:bc257dfb36735f87e2d33ea4087d569b599a53f4
cloud/gcp/api/gcloud-api-keys-inactive-services.yaml:25f56a45d498906813df1add41a67d1fc89f4ef1
cloud/gcp/api/gcloud-critical-service-apis-disabled.yaml:f3fae0d29aa35b7be1fbaac9e61a210fdd791172
cloud/gcp/api/gcloud-security-center-api-disabled.yaml:ac98dee7050059f728e0f0fbd0b7c84da4887b8f
cloud/gcp/api/gcloud-vm-os-config-disabled.yaml:f720535a20dd8398652debb03e017df56c0ea049
cloud/gcp/artifactregistry/gcloud-artifact-registry-public.yaml:29316089665b4b79be8a85c9c2212b154f572682
cloud/gcp/artifactregistry/gcloud-vuln-scan-missing.yaml:866b6e6b50407335300eda9c2c8f594e1cb611f5
cloud/gcp/bigquery/gcloud-bigquery-cmek-not-enabled.yaml:45c96f8cf047a26c4302b1d88c37e3299cf60f3a
cloud/gcp/bigquery/gcloud-bigquery-cmk-not-enabled.yaml:6c785fa511f8c417f667a4019a098190eb4586b9
cloud/gcp/bigquery/gcloud-bigquery-public-datasets.yaml:1d80c17362146ab753bcab29a8a3ce08bd0a50d5
cloud/gcp/cdn/gcloud-backend-bucket-missing-storage.yaml:d0c97daafb885352b1bebd7406dc61e85c891623
cloud/gcp/cdn/gcloud-cdn-backend-bucket.yaml:416610cf4b767a109394f0865ade87d67d185eac
cloud/gcp/cdn/gcloud-cdn-origin-auth-unconfigured.yaml:6e44fc5ba8b69f96425fe72f0b96360c9cf8a364
cloud/gcp/cdn/gcloud-cdn-ssl-enforcement.yaml:f3849ee09b500eeda49c822e475b47343fa21528
cloud/gcp/cdn/gcloud-cdn-tls-unenforced.yaml:b01e9ad0950338a680454f1382d55576eb8ec499
cloud/gcp/certificatemanager/gcloud-certificate-validity-exceeded.yaml:7493b76ac6545bd46bd8671477fcc0785eca1022
cloud/gcp/compute/gcloud-disk-image-public-access.yaml:cf61aff5dfc4df5d36273daa0241741d67939721
cloud/gcp/compute/gcloud-instance-group-autohealing-disabled.yaml:50e89ef5271c8aed09c9c5c3e234b66ca4dfaef7
cloud/gcp/compute/gcloud-mig-no-load-balancer.yaml:23ee01da5b39a9b95e09b5786d0647dbb6bdc57c
cloud/gcp/compute/gcloud-mig-single-zone.yaml:93e212a0108b09d13cb76c9adf841094cfd2a760
cloud/gcp/compute/gcloud-oslogin-disabled.yaml:9c90fbd72ac29738f55b58f5898d19901245108d
cloud/gcp/compute/gcloud-persistent-disks-suspended-vms.yaml:a135d0be528d420646362539aca5857c8aa0748e
cloud/gcp/compute/gcloud-vm-automatic-restart-disabled.yaml:9da8a36b02301a331a58dc066734d7271fc0728b
cloud/gcp/compute/gcloud-vm-confidential-computing-disabled.yaml:09c6c27fcb36b96b1db2d827f9163bf318c998c4
cloud/gcp/compute/gcloud-vm-default-service-account-full-access.yaml:0b147478ff3638d9608b6e3255700a59a7bbff88
cloud/gcp/compute/gcloud-vm-default-service-account.yaml:0d738dc7ceb64f48d248425d412cf419b5044e60
cloud/gcp/compute/gcloud-vm-deletion-protection-disabled.yaml:bfec9b3a0833bbbdfb0916a0cc7b4c5c3ffc8bb3
cloud/gcp/compute/gcloud-vm-disk-autodelete-enabled.yaml:608314eac7872671ae1bf2f767dd19cdf09374dd
cloud/gcp/compute/gcloud-vm-disk-cmk-not-enabled.yaml:dd5b5f571d3d2f7452d100029a5f40ff94e173b0
cloud/gcp/compute/gcloud-vm-disk-csek-disabled.yaml:dc1afc8be6a1a1b914b042a8e3d32fdac78323a2
cloud/gcp/compute/gcloud-vm-disk-csek-not-enabled.yaml:3b59cd6bf127804262228624403da2289fc63cbd
cloud/gcp/compute/gcloud-vm-ip-forwarding-enabled.yaml:16f99315360d296e1ea222450233ad13d6b0134c
cloud/gcp/compute/gcloud-vm-maintenance-terminate.yaml:ab32cf45a72d862e54cc4ea209197b786e5a4674
cloud/gcp/compute/gcloud-vm-oslogin-2fa-disabled.yaml:8d8a4daa3b8c544c131fb3ef62d6bc60c4cdad2d
cloud/gcp/compute/gcloud-vm-preemptible-enabled.yaml:57613f042e955a87567aab3b993a4a4e0e1bf2af
cloud/gcp/compute/gcloud-vm-project-ssh-keys-enabled.yaml:9afa38db8ce2bdee0db1a8bc885a2342ffd7eb35
cloud/gcp/compute/gcloud-vm-public-ip-enabled.yaml:0ad78edfe1e11668611e221cd9f11b02af3d8d5d
cloud/gcp/compute/gcloud-vm-serial-console-enabled.yaml:c34b3b59c8d8b534bf507d8c54ac4bdcf9ecb45a
cloud/gcp/compute/gcloud-vm-shielded-disabled.yaml:d7775f58b7814b99cb97b4999e18a89b7dfa7aed
cloud/gcp/dataproc/gcloud-dataproc-no-cmk.yaml:c047741daa6161b31effddff3e8ec41163333db7
cloud/gcp/dataproc/gcloud-dataproc-public-access.yaml:9b37cee54147b6efbc128ae22097c81669a2f83b
cloud/gcp/dns/gcloud-dns-dangling-records.yaml:d17e757cbc930238f353e416126b48183217094d
cloud/gcp/dns/gcloud-dns-dnssec-unenabled.yaml:01e75f1a7d2f6b3ae2e3edd3566f307fafe5d50c
cloud/gcp/dns/gcloud-dnssec-keysigning-rsasha1.yaml:7b8502b3b2bc352003b613f5cfc2777561856714
cloud/gcp/dns/gcloud-dnssec-zonesigning-rsasha1.yaml:a705e7f3277641bb883ed632b1c339d8d3353208
cloud/gcp/filestore/gcloud-filestore-deletion-protection-disabled.yaml:7fe28ca4adc2c8343b601b4316ac26e87154d9c7
cloud/gcp/filestore/gcloud-filestore-no-backups.yaml:900a2757b99ac643acf4b350120ba7927d6a8ceb
cloud/gcp/filestore/gcloud-filestore-no-cmek.yaml:68c6a96f4f9fb803df4733b90e4ce3e024c82e93
cloud/gcp/filestore/gcloud-filestore-no-vpc-controls.yaml:7e94dcaa7e1bcc2c1b2c850f38fe0adf1e854015
cloud/gcp/filestore/gcloud-filestore-unrestricted-access.yaml:ae9956215422ed7a7184f25cd398440a73480e04
cloud/gcp/function/gcloud-func-auto-runtime-updates-disabled.yaml:306ac9808740fae4816057d8905c8486f316850c
cloud/gcp/function/gcloud-func-cmek-not-used.yaml:a986df6da0925308dc55b55d5b3dfc6c5ddbce26
cloud/gcp/function/gcloud-func-inactive-svc-acc.yaml:ff9f145760e0237f79163aac965f48ace230fb16
cloud/gcp/function/gcloud-func-min-instances-unset.yaml:4c28c98eb30aba87b55151044d334c8a0a7562d3
cloud/gcp/function/gcloud-func-missing-labels.yaml:5627bc88c99f232a30d1307a21835c7a7a44068a
cloud/gcp/function/gcloud-func-no-vpc-access.yaml:b09905888f3b8d77ceda6e980380e15cf4c89f56
cloud/gcp/function/gcloud-func-public-access.yaml:c16dd263b2992c8db3890f055cc20d715ae1e97f
cloud/gcp/function/gcloud-func-pubsub-dlt-missing.yaml:864fafc14bdd3c57ba89d40eef44dc39d9aaec1d
cloud/gcp/function/gcloud-func-secrets-unmanaged.yaml:041c7d69874846a905f6521aa1ca918817ba20ea
cloud/gcp/function/gcloud-func-unrestricted-outbound.yaml:7f283727aa21c25d2c46a537a387ff5767ce3647
cloud/gcp/function/gcp-cloud-func-gen1-deprecated.yaml:86b3c20fa01b5f3f4529eae4027696f801a5dbcb
cloud/gcp/function/gcp-func-default-svc-acc.yaml:d53268b101642bf3779966acf0d66cf6a13ad871
cloud/gcp/gcp-env.yaml:172784dcba4915db4ae101d50b3fa8377ce74c14
cloud/gcp/gke/gcloud-gke-auto-repair-disabled.yaml:bd64674abd14c9b87cee5d405606820a6ac4568e
cloud/gcp/gke/gcloud-gke-auto-upgrade-disabled.yaml:ff820a8566bfa9be5266980c0972e3564045f739
cloud/gcp/gke/gcloud-gke-backups-disabled.yaml:593635f98c23ddb2b58a47172a97ad83eaa20090
cloud/gcp/gke/gcloud-gke-binary-authorization-disabled.yaml:90e8de72289f6958a4ab7da492ed3305a7346213
cloud/gcp/gke/gcloud-gke-client-certificate-enabled.yaml:388298fee52c19de96ccbf8e67dc345c5a98d8ef
cloud/gcp/gke/gcloud-gke-confidential-nodes-disabled.yaml:cd5728d6669cb6a953e0f54f4a0fbf3a8e33a81c
cloud/gcp/gke/gcloud-gke-cos-containerd-disabled.yaml:e1e11743a408ccaf0e0671dbe36e7f5d86d9869f
cloud/gcp/gke/gcloud-gke-cost-allocation-disabled.yaml:25054f5711f8677f51521dc7cdd7fd2770c63901
cloud/gcp/gke/gcloud-gke-default-service-account.yaml:7443cb114cb8c1e13f832441c1a9dbdd196834b4
cloud/gcp/gke/gcloud-gke-integrity-monitoring-disabled.yaml:d192d433c1a3a3c66728aaa3b43db9a4a1277b6a
cloud/gcp/gke/gcloud-gke-intranode-visibility-disabled.yaml:c5d54996ad1304f3dc96384e09644ba2a48ae855
cloud/gcp/gke/gcloud-gke-labels-missing.yaml:f4d4567069e59b8d06f5fe128a8aa7a62cbe49c4
cloud/gcp/gke/gcloud-gke-logging-disabled.yaml:037ff00ac8a2d565915550425696ace7f84d6788
cloud/gcp/gke/gcloud-gke-metadata-server-disabled.yaml:e20fc3ead4468b12319612a6ca69b5d1adfd8d68
cloud/gcp/gke/gcloud-gke-monitoring-disabled.yaml:8af29237e4e2fe30ed1fa853573839fef17c1537
cloud/gcp/gke/gcloud-gke-notifications-disabled.yaml:0824725bbde5cb6787e60f8c7ed87efaa6ed5949
cloud/gcp/gke/gcloud-gke-private-nodes-disabled.yaml:f0a431fba61724b7cad52dc8a7245fe806d97d11
cloud/gcp/gke/gcloud-gke-public-endpoint-enabled.yaml:6eb48cca755c5599064c0291ef151dcca5febb22
cloud/gcp/gke/gcloud-gke-release-channel-disabled.yaml:c3e523a7e558bc98f9732ad33ba628d22f64ef8c
cloud/gcp/gke/gcloud-gke-sandbox-disabled.yaml:240fc5c650c248b9e9dc6d2e44794916ea79ab10
cloud/gcp/gke/gcloud-gke-secrets-encryption-disabled.yaml:9eeaef77ec0fd435e2aac8ec50c952080fc7abde
cloud/gcp/gke/gcloud-gke-secure-boot-disabled.yaml:80682ede3f13e9d45ba8f95578d1de36c215c0aa
cloud/gcp/gke/gcloud-gke-security-posture-disabled.yaml:04ab081f18c3af9e23de26a0b3f04eb1ffca4e1a
cloud/gcp/gke/gcloud-gke-shielded-nodes-disabled.yaml:6d0cc05d3f9a80c50591f9aa803147a52b441b79
cloud/gcp/gke/gcloud-gke-transparent-encryption-disabled.yaml:e67024f9a1099f622a7e73fe1cd32e4d07389c21
cloud/gcp/gke/gcloud-gke-vpc-native-disabled.yaml:b1b8b8a8ea683b4e3d0684054dd7ff40875ca111
cloud/gcp/gke/gcloud-gke-vulnerability-scanning-disabled.yaml:7c86ea416bd020ef1bd510938fb071718e0bd251
cloud/gcp/gke/gcloud-gke-workload-identity-disabled.yaml:a49d41a79c90bba17eaf950a5fd6b1294c9a241c
cloud/gcp/iam/gcloud-access-approval-not-enabled.yaml:f2620ee830bbf573db30595e2762118627215d29
cloud/gcp/iam/gcloud-api-keys-present.yaml:7cb430094473255f8bf84158f4aaf6c2c576fd2c
cloud/gcp/iam/gcloud-iam-admin-roles.yaml:02247f5c8ed3d2067ea472af5849c984938138ae
cloud/gcp/iam/gcloud-iam-primitive-roles.yaml:875a1e378c32f650d0bfec96b5b429f5febe395e
cloud/gcp/iam/gcloud-iam-separation-duties.yaml:b197e419aedcfb6898be9d0e777e9c2ef46da9c7
cloud/gcp/iam/gcloud-iam-service-roles-project-level.yaml:972cc367ab2f3602917aa1ef9f0bdddc0c0f2e72
cloud/gcp/iam/gcloud-iam-unrestricted-decryption.yaml:b3a0215541753213508dab06c8d9a15ca0a7f743
cloud/gcp/iam/gcloud-service-account-admin-restriction.yaml:69f9a14eaa60337a081276677b30363e70caaec4
cloud/gcp/iam/gcloud-service-account-user-keys.yaml:4ab88bd891ac723d83658dcb851a0271af605b41
cloud/gcp/kms/gcloud-kms-public-access.yaml:ae7d768d71f92a71d42b054220ce4851e9179958
cloud/gcp/loadbalancing/gcloud-alb-ssl-google-managed.yaml:4426a8747253b0607cd9cc423aeb654990cc35e6
cloud/gcp/loadbalancing/gcloud-approved-external-lb.yaml:b355f2a223868c1353cb812a8f8676eef5c89621
cloud/gcp/loadbalancing/gcloud-https-lb-logging-disabled.yaml:dea49794f1d53f713e265e5c81ef673d58f35b58
cloud/gcp/loadbalancing/gcloud-lb-backend-unsecured.yaml:7ddd583ed2c999d45975b8c5ef0dd027362d9ce0
cloud/gcp/loadbalancing/gcloud-ssl-policy-insecure-ciphers.yaml:7a608a3410583aa00b3a8682e3903a4e5f81e9a3
cloud/gcp/logging/gcloud-enable-data-access-audit-logging.yaml:541108a75116ac30c4f48ac71dd1e3ea2aa8add7
cloud/gcp/logging/gcloud-global-logging-not-enabled.yaml:3c9fa24a11602295ec488ca3bd356354bdf4ec4f
cloud/gcp/logging/gcloud-log-retention-period-insufficient.yaml:08f381be4ce5e1c58103f0fe274c81564c715991
cloud/gcp/logging/gcloud-logging-sink-not-configured.yaml:5dcb7cb7c4e815814a10df81f186fa87a3e6872b
cloud/gcp/logging/gcloud-logs-router-cmek-not-enabled.yaml:1510786ecbb0f98e56ab2228c4de64d7df93a760
cloud/gcp/logging/gcloud-vpc-network-changes-monitoring-not-enabled.yaml:22ce074f0e911b63a62894c8757ae549a686fbb0
cloud/gcp/nat/gcloud-iam-least-privilege-nat.yaml:8e26e7825004878e777f5e9c3aee8bc555ff4293
cloud/gcp/nat/gcloud-nat-logging-disabled.yaml:141387577f5ad32b81e8fcae06afe6975fd89e8d
cloud/gcp/nat/gcloud-nat-private-subnet-disabled.yaml:110cf3db86ac41f5195f1683912075bb9ae7102f
cloud/gcp/nat/gcloud-nat-static-ip-unconfigured.yaml:04c7288622e1bf17693749d8bdbd3211101a0268
cloud/gcp/nat/gcloud-nat-subnet-unrestricted.yaml:150c676da64772401a75cb7ae7e1606380caa021
cloud/gcp/pubsub/gcloud-pubsub-cmek-disabled.yaml:3a4494d4d515c42c8651a865b79319c195044db1
cloud/gcp/pubsub/gcloud-pubsub-crossproject-access.yaml:d5c05297c33bca60d2be7d22c87d01ce36d70c6f
cloud/gcp/pubsub/gcloud-pubsub-deadletter-disabled.yaml:c68dcf292af22def493ef08e81aa8deacfdc594c
cloud/gcp/pubsub/gcloud-pubsub-publicly-accessible.yaml:cb7921e70d110003388ee77eba4af89fdae35d0f
cloud/gcp/resourcemanager/gcloud-org-allowed-apis.yaml:7057624564caa2f02de8ce95b41f5e902083a7bf
cloud/gcp/resourcemanager/gcloud-org-allowed-external-ips.yaml:86e881ddec7eca0799c594c186b529138398070d
cloud/gcp/resourcemanager/gcloud-org-auto-iam-grants.yaml:59b75d745d6328782b4a7236d8fdd5556259092c
cloud/gcp/resourcemanager/gcloud-org-default-network.yaml:dcbecc085fe687abdc2d63f2877139e7a87bcc1a
cloud/gcp/resourcemanager/gcloud-org-detailed-audit-logging.yaml:964d81c36b9f8f1385121a8d7ba0037a5c965df2
cloud/gcp/resourcemanager/gcloud-org-guest-attributes.yaml:c499c916bcb842c1c2fe8989d93e58a2f6223831
cloud/gcp/resourcemanager/gcloud-org-ip-forwarding.yaml:f942eccab37dc28d84eced65da9548c8ef165030
cloud/gcp/resourcemanager/gcloud-org-load-balancer-types.yaml:68568f066e64c67fa71914f34b03e1d161d28bb3
cloud/gcp/resourcemanager/gcloud-org-os-login.yaml:525f939a394457ebec6f043bee9d9a69488e48f6
cloud/gcp/resourcemanager/gcloud-org-resource-locations.yaml:6d64e5894d9fc6643c2d593021b8494a4587011d
cloud/gcp/resourcemanager/gcloud-org-service-account-creation.yaml:7973c0235cb92c9b3476ca57a93c4fbe2bfae6a1
cloud/gcp/resourcemanager/gcloud-org-service-account-key-creation.yaml:05b7ff03dfced00fd059ad902e3c817deeaad5d4
cloud/gcp/resourcemanager/gcloud-org-service-account-key-upload.yaml:490f2dddb5c7378fb43dce8f4012e8e5ab98ed55
cloud/gcp/resourcemanager/gcloud-org-shared-vpc-subnets.yaml:079c59cd9ffa7334b0227a221856317f30bd1c06
cloud/gcp/resourcemanager/gcloud-org-sql-authorized-networks.yaml:690115ec3a6245e3ea0b9c7e27d94bf3a12d1e10
cloud/gcp/resourcemanager/gcloud-org-sql-default-encryption.yaml:003eb846df58782ba0570aca8502db852aef5e27
cloud/gcp/resourcemanager/gcloud-org-sql-public-ip.yaml:eedeca85be4b6151692203af9d60ca08970d81bf
cloud/gcp/resourcemanager/gcloud-org-trusted-images.yaml:7956a3a822229ba43d95b63ba4f7bbeb223d2f49
cloud/gcp/resourcemanager/gcloud-org-uniform-bucket-access.yaml:ac22cd7ef183785ab252fcffdb10c7d6279fd059
cloud/gcp/resourcemanager/gcloud-org-vpc-peering.yaml:ad73083ba95b5aa55388cb37aa2eb3217c76866f
cloud/gcp/resourcemanager/gcloud-org-vpn-peer-ips.yaml:f94f1ac1f7d7a1cbde415452381ab8e04ad163bc
cloud/gcp/resourcemanager/gcloud-org-workload-identity.yaml:1fe1bf2b5b23a43fbb667f2c52abd27c0d2bbe7f
cloud/gcp/run/gcloud-run-services-user-labels-missing.yaml:e0f9a951d74b2304cbd789722dc7b707f67a1ed2
cloud/gcp/sql/gcloud-mysql-local-infile-enabled.yaml:03ef0ac389953acfc938c2ec522bd8bba39aa85d
cloud/gcp/sql/gcloud-mysql-pitr-disabled.yaml:ed0ac9228f7b25e62f7747bbfc3b7d339a407bf1
cloud/gcp/sql/gcloud-mysql-slowquerylog-disabled.yaml:bb4afffec811cc643c8eaa4a1ed628be7612a372
cloud/gcp/sql/gcloud-pg-log-error-verbosity-flag-not-configured.yaml:b8d7068b4b02d7a267a6ebacf0d2d08f54887e3e
cloud/gcp/sql/gcloud-pg-log-executor-stats-enabled.yaml:c59218f8c2345a81bd3459fcb360c7f94aad85ef
cloud/gcp/sql/gcloud-pg-log-min-duration-statement-enabled.yaml:652862d789493295c10c63bf9a080a004dfc17b3
cloud/gcp/sql/gcloud-pg-log-min-error-statement-flag-not-configured.yaml:8405797244022a436efde29da71df35de24ba0b5
cloud/gcp/sql/gcloud-pg-log-min-messages-flag-not-configured.yaml:24712590a97244eb3b84696b3685ea39d02062c0
cloud/gcp/sql/gcloud-pg-log-parser-stats-enabled.yaml:bd98b191bc1ea163a930929a8dcb70062c298271
cloud/gcp/sql/gcloud-pg-log-planner-stats-enabled.yaml:1c4e7d2cb08b444185f9d3d6b6c75a5737b7d3f8
cloud/gcp/sql/gcloud-pg-log-statement-flag-not-configured.yaml:b44305f1cc077b8d82ee15bd8ca9200ac70cf662
cloud/gcp/sql/gcloud-pg-log-statement-stats-enabled.yaml:aee4a6cc7e2d95dae767f2566cc958255b68c679
cloud/gcp/sql/gcloud-postgresql-log-checkpoints-disabled.yaml:96b930beff91cb563d0af388b4ea7b289e039f93
cloud/gcp/sql/gcloud-postgresql-log-disconnections-unenabled.yaml:7b36b79bdc9cbcdbc6ffb07e2dea592c11e5013e
cloud/gcp/sql/gcloud-postgresql-log-hostname-disabled.yaml:f78bba8806d1101abccbf87101be101987f62e8f
cloud/gcp/sql/gcloud-postgresql-logtempfiles-disabled.yaml:137de8e678ac21acd319534923725c720fb00d55
cloud/gcp/sql/gcloud-sql-auto-storage-disabled.yaml:ad3e4f91a950cb54aaecbd2aa51e32b5debf56fc
cloud/gcp/sql/gcloud-sql-auto-storage-limit-not-configured.yaml:ea7954b8dd8ae1428c671e5c42a12f87c7164426
cloud/gcp/sql/gcloud-sql-backups-disabled.yaml:3c20ebbe8156c7ab591f36d3144aba3c55d7370e
cloud/gcp/sql/gcloud-sql-cmk-not-enabled.yaml:d6d20312d89072174ba2ab034a97b0aa8c0c5421
cloud/gcp/sql/gcloud-sql-contained-db-authentication-enabled.yaml:5b6c0107768019cc45f933d72d3c8d7cbc3a187a
cloud/gcp/sql/gcloud-sql-cross-db-ownership-chaining-enabled.yaml:dfffe9a8ab82ef629691546487b41d8f4b1da2bd
cloud/gcp/sql/gcloud-sql-database-public-ip-configured.yaml:4f3bb866e2c5a0a2e07286a4224fdefe3cc468c8
cloud/gcp/sql/gcloud-sql-external-scripts-enabled.yaml:ccce834e36d01d464e18edb3cf739f042c8807ae
cloud/gcp/sql/gcloud-sql-ha-not-enabled.yaml:2693c7b68e2344607697a9566d4b939055978c34
cloud/gcp/sql/gcloud-sql-log-checkpoints-disabled.yaml:5a4d3d3ade22c262eb083b1c35ac160a67f692ae
cloud/gcp/sql/gcloud-sql-log-connections-disabled.yaml:b825e745ca3ff460f3fe6b8217e38127ca0ce092
cloud/gcp/sql/gcloud-sql-log-lock-waits-disabled.yaml:4ba5cf879fb77ae0684189fbc6dab474a0d2951d
cloud/gcp/sql/gcloud-sql-pgaudit-not-enabled.yaml:684292a17d6c52dae58f5921054db73828f98e4d
cloud/gcp/sql/gcloud-sql-publicly-accessible-instances.yaml:2534f9aa33c1aaf5b09e8992c4831fd75f6f8b4d
cloud/gcp/sql/gcloud-sql-remote-access-enabled.yaml:5b0749261f2f84e1bb0fdbf8bddd9e055487b132
cloud/gcp/sql/gcloud-sql-skip-show-database-disabled.yaml:1b375d59a2dba38a576cd4ea9de613724ddc0c5d
cloud/gcp/sql/gcloud-sql-ssl-not-enforced.yaml:a4734210d1ced75a37856ca06af36fc2a37cc633
cloud/gcp/sql/gcloud-sql-ssl-tls-connections-not-enforced.yaml:7992557a6caa3ad43d7aff165fe15734817848c5
cloud/gcp/sql/gcloud-sql-trace-3625-enabled.yaml:920aeb1a212d751a1f34843ce4be49c56d0953a4
cloud/gcp/sql/gcloud-sql-user-options.yaml:338bb99406b35613b650d854e97a5e1b8cae1712
cloud/gcp/storage/gcloud-bucket-lock-not-configured.yaml:b25604a66a736c15de6a7de9ac39f88fdfddccbb
cloud/gcp/storage/gcloud-bucket-policies-admin-permissions.yaml:e0497f347af43a56945cc784c670a68591eafad8
cloud/gcp/storage/gcloud-bucket-website-config-not-defined.yaml:b73fdf97174d6bc037b405c9767812a27be2ee2b
cloud/gcp/storage/gcloud-data-access-audit-logs-not-enabled.yaml:82e461b8d3df82355fd76df2e8d74c5981d63328
cloud/gcp/storage/gcloud-insufficient-data-retention-period.yaml:0d9433a857fd38c68e204cd870e39bbff11dfe98
cloud/gcp/storage/gcloud-lifecycle-management-not-enabled.yaml:70c499523ad575d849fc74c96c74053d70385e85
cloud/gcp/storage/gcloud-object-encryption-cmk-not-enabled.yaml:7f29f23d1f01192e3e9a2fb3b1506fc3b420353f
cloud/gcp/storage/gcloud-object-versioning-not-enabled.yaml:b4bc5faf6b815713f1dc3f5534f9aa2b393fe7a6
cloud/gcp/storage/gcloud-public-access-prevention-not-enabled.yaml:b36036de54c122728e58971224ac7b33d8c03f13
cloud/gcp/storage/gcloud-publicly-accessible-storage-buckets.yaml:f2706ac8113be6cc3479b1f0eed1c1e491e49f70
cloud/gcp/storage/gcloud-secure-cors-configuration.yaml:15ff5ea17e98324f2886b237b3c48c6ddc2b8bc4
cloud/gcp/storage/gcloud-storage-logs-not-enabled.yaml:65b0e059d49a39096b808e58e99cce10707047e6
cloud/gcp/storage/gcloud-uniform-bucket-level-access-not-enabled.yaml:781f4c634053d766cc6ad65cd43dcdb60adaab5f
cloud/gcp/storage/gcloud-vpc-service-controls-not-configured.yaml:d55a954483df10ac7858fe324cc47417a0258a71
cloud/gcp/vertexai/gcloud-vertexai-auto-upgrades.yaml:a52ebbfff845d59765d4f65ae70d5f28b7c7a178
cloud/gcp/vertexai/gcloud-vertexai-default-vpc.yaml:de398be05b762e1c10e431b8f883e05fe91807b7
cloud/gcp/vertexai/gcloud-vertexai-external-ip.yaml:c83076cc8a90cc26d6abebb35df4fea19bb4c54a
cloud/gcp/vertexai/gcloud-vertexai-idle-shutdown.yaml:abe3de3a003b8a4f922258fcc8e7f84b1d5a3cf5
cloud/gcp/vertexai/gcloud-vertexai-integrity.yaml:8498ead16de0cb52ffb53617b8749beae985cc05
cloud/gcp/vertexai/gcloud-vertexai-monitoring.yaml:4d1957b5c6157d08c56d223a38371ec4d72569a1
cloud/gcp/vertexai/gcloud-vertexai-root-access.yaml:7c2a470d661d619c14ef33fb1c90660933e2d744
cloud/gcp/vertexai/gcloud-vertexai-secure-boot.yaml:d54a17749b5245121e4bd2f0eadeffa3c4cf907d
cloud/gcp/vertexai/gcloud-vertexai-vtpm.yaml:b32a731b1aa48a3aa13f0dae7ba00dd7316dd84b
cloud/gcp/vpc/gcloud-check-legacy-networks.yaml:f64aab7e6b4de0eb5d272ee344c61daa480db621
cloud/gcp/vpc/gcloud-default-vpc-in-use.yaml:d23aaffd932b120efaefdd9ebebe97e915609f6b
cloud/gcp/vpc/gcloud-dns-logging-not-enabled.yaml:0debe097983fca2edf606ac115766297acafff59
cloud/gcp/vpc/gcloud-enable-vpc-flow-logs.yaml:1ba366ea28dccb6154820ccf841411ca3f78d870
cloud/gcp/vpc/gcloud-exclude-metadata-from-firewall-logging.yaml:a12356ca2411f2007fa2e7a2f3c8d1e39bb50667
cloud/gcp/vpc/gcloud-firewall-rule-logging-not-enabled.yaml:58ea0f7945c7890bc8694d8560e9859b8b5f7efb
cloud/gcp/vpc/gcloud-unrestricted-dns-access.yaml:f5c86c135918bb24cf440b64d8eb188ce2eff5db
cloud/gcp/vpc/gcloud-unrestricted-ftp-access.yaml:20f5df7324ad846337dc0aa32d39c475a92f4c3e
cloud/gcp/vpc/gcloud-unrestricted-icmp-access.yaml:70dac334b2e17b7b1b21ea8f5f0d5cfcbcbf4397
cloud/gcp/vpc/gcloud-unrestricted-inbound-uncommon-ports.yaml:220657bd0ca8598b9b54e7c9bdbe2a569da480f1
cloud/gcp/vpc/gcloud-unrestricted-mysql-access.yaml:c16f7589dda529b3d225a3408e2b255e73a0ce6e
cloud/gcp/vpc/gcloud-unrestricted-oracle-db-access.yaml:8a74da051ef8cce6f4814c420fdca8189dba6fca
cloud/gcp/vpc/gcloud-unrestricted-outbound-access.yaml:babda0f8bf272d3cddadc5281f430ffc79c3469b
cloud/gcp/vpc/gcloud-unrestricted-postgresql-access.yaml:931e962700d1a52dab01599b2a396abd6294ebc6
cloud/gcp/vpc/gcloud-unrestricted-rdp-access.yaml:8f553016513d5e2ba52ea475a1e531ff44d00c6a
cloud/gcp/vpc/gcloud-unrestricted-rpc-access.yaml:d72e7fe8446d339fe1f43b5669875cf8e1f37907
cloud/gcp/vpc/gcloud-unrestricted-smtp-access.yaml:0e4af56b4e5d0ad15611febffa7195549b7cff6f
cloud/gcp/vpc/gcloud-unrestricted-sqlserver-access.yaml:bfdaae2eb08112b69f6550d9428bd5efc7cd7ebe
cloud/gcp/vpc/gcloud-unrestricted-ssh-access.yaml:0fc78670b19057bdede2c478e79b9884410096e6
cloud/gcp/vpc/gcloud-vpc-firewall-port-ranges.yaml:382d757734892c850a89ecf40ed9751e99d4d9a2
cloud/gcp/vpc/gcloud-vpc-private-service-connect.yaml:cfa7f3788b41d130c7a9db5b75942d85017419ad
cloud/gcp/vpc/gcloud-vpc-unattached-static-ips.yaml:c871eae3d0acf3dc9551de338f3727e5d9d1c72e
cloud/kubernetes/cves/2025/CVE-2025-1974-k8s.yaml:3c4a767c2d236eabf8e07f8e64175fe3a21dedcf
cloud/kubernetes/deployments/k8s-cpu-limits-not-set.yaml:968f1238e7626b3a7b3376651f42eb92b594625e
cloud/kubernetes/deployments/k8s-cpu-requests-not-set.yaml:600df2e18323e8a34223ab0be909f39048631fd8
cloud/kubernetes/deployments/k8s-default-namespace-used.yaml:824eb4e74edc8c90d9896a304a373b085f45c86a
cloud/kubernetes/deployments/k8s-host-ports-check.yaml:8359be95f8f166e81df54e491aa3d6e14ceb0c4c
cloud/kubernetes/deployments/k8s-image-pull-policy-always.yaml:b215d112277a6cc1f84f1335f241051eec52db1b
cloud/kubernetes/deployments/k8s-image-tag-not-fixed.yaml:2c5cfcd5958c10a18c18dc6870f069d844ac204c
cloud/kubernetes/deployments/k8s-liveness-probe-not-configured.yaml:874e0881022b19bd7a855091be9224bc6385126c
cloud/kubernetes/deployments/k8s-memory-limits-not-set.yaml:5ef5de26366018592de7031bc3c19ce9e0cd3603
cloud/kubernetes/deployments/k8s-memory-requests-not-set.yaml:1297098f0442943837bde2203608757f724dd353
cloud/kubernetes/deployments/k8s-minimize-added-capabilities.yaml:e98060cb17045e4571d073de453f92600a7b1c27
cloud/kubernetes/deployments/k8s-privileged-container.yaml:3f9ef53317b4788ef7fb61d680b36818b5a4a973
cloud/kubernetes/deployments/k8s-readiness-probe-not-set.yaml:fa32e0bf27882cc3fa7797cce2ed9275aa526e48
cloud/kubernetes/deployments/k8s-root-container-admission.yaml:b24038aea9aca519c877d6df15b60598a350187c
cloud/kubernetes/deployments/k8s-seccomp-profile-set.yaml:45aa87e2f20ff9da8e65261d91c02f4ae531c751
cloud/kubernetes/kubernetes-code-env.yaml:898b177b1626a5d05317093e336b2a08b9e9e5b7
cloud/kubernetes/kubernetes-exposing-docker-socket-hostpath.yaml:dae9a7c2677a52068512d555fa46c365ecd34e82
cloud/kubernetes/network-policies/k8s-missing-network-policies.yaml:d4cafa79c05c8ffe936b0ea32e9f07f4d4362f18
cloud/kubernetes/network-policies/k8s-netpol-egress-rules.yaml:d94a653606f6c2ff4df4948c08f8f039eb2ded8d
cloud/kubernetes/network-policies/k8s-netpol-namespace.yaml:43cf43e984f4d7c75aed7c08b41ae6ceda2b7734
cloud/kubernetes/network-policies/k8s-network-ingress-rules.yaml:54d4e68ec7f051fe87c2d39c8ec58c6d60096891
cloud/kubernetes/pods/k8s-allow-privilege-escalation-set.yaml:968974d7ea0b82502e528c38fbadc38ef11fd602
cloud/kubernetes/pods/k8s-containers-share-host-ipc.yaml:6428a3eb9a11a90c07ff68f3e2195a0ab931792a
cloud/kubernetes/pods/k8s-host-network-namespace-shared.yaml:e8c909579765017add5ab64e6c9dd1ce03c3ce80
cloud/kubernetes/pods/k8s-host-pid-namespace-sharing.yaml:8f73648ea85cd837f6edfb42bf63e57224adbbac
cloud/kubernetes/pods/k8s-readonly-fs.yaml:57b9074ea9ba2704f7d5b28615f5c67b2bad97e7
cloud/kubernetes/pods/k8s-readonly-rootfs.yaml:16f3404e024a1992d90b2823fd8c7b6b13e6f996
cloud/kubernetes/pods/k8s-root-user-id.yaml:5981e73c4138ae749b60af105f6cc71348df65ab
cloud/kubernetes/rbac/k8s-role-pod-create.yaml:a841f0b785248398461de1ecaf803c39fd128d16
cloud/kubernetes/security-compliance/k8s-apiserver-anonymous-access.yaml:659b6ae7d5d4ec7adab0fc4df5449df63d5217be
cloud/kubernetes/security-compliance/k8s-apiserver-token-auth-file.yaml:ce35ec26c07f9548e4e98f1440ddf093cf7ae39b
cloud/kubernetes/security-compliance/k8s-audit-log-path-set.yaml:e0cf8fce3c762dbaf2a20e7df2cef3faded3fb2c
cloud/kubernetes/security-compliance/k8s-enc-prov-conf.yaml:789bfaa338390cf0b0f59b68276bc182f9ac0ca3
cloud/kubernetes/security-compliance/k8s-etcd-cafile-set.yaml:fe379e332643cdb2a71ac7b63197e3f221a3eda9
cloud/kubernetes/security-compliance/k8s-etcd-files-set.yaml:82f504b3101dff490ec137a9e0bb918e7e413c7e
cloud/kubernetes/security-compliance/k8s-ns-usage-check.yaml:2931ce3f10c2b0f7437997ebc3f0ab8c73314b97
cloud/kubernetes/security-compliance/k8s-svc-acct-issuer-set.yaml:cf89028061d7b7773ddedcb896ea101760b49828
cloud/kubernetes/security-compliance/k8s-svc-acct-key.yaml:eb9d67729e7551f9212190bca2ad0de7621cdf2f
cloud/kubernetes/security-compliance/k8s-svc-acct-lookup-set.yaml:bbb8df273c8db8044c3728e3526798e344747c0a
cloud/kubernetes/security-compliance/k8s-tls-config-set.yaml:5599af50f77d38640529b23a2d2b9f148091def4
code/cves/2014/CVE-2014-0160.yaml:ac021b024629b671d4a15773dd099919866e7381
code/cves/2016/CVE-2016-8735.yaml:91933a809fa796f8bf31e077049f20d5ee88f6fa
code/cves/2017/CVE-2017-1000353.yaml:736b2afc45fc6206dbd19f8e7b53aa4103ea5f39
code/cves/2019/CVE-2019-0604.yaml:8633c4d8f57eb2101bc7c223aedd604dd76450e9
code/cves/2019/CVE-2019-14287.yaml:5410d45d134448a1ab4c4b50978736d5c3a333be
code/cves/2020/CVE-2020-0646.yaml:1e91910c78b42708a8b846fa2c91bf62e48a39f9
code/cves/2020/CVE-2020-13935.yaml:27eacdada90a40cb65597095378b4ae136641e8c
code/cves/2021/CVE-2021-3156.yaml:96fe75b284a135d08ffc33aea09a94d7f117cbdb
code/cves/2022/CVE-2022-42475.yaml:51cdd7e076f4970a8ac923cb9f6a7e2398cd4937
code/cves/2023/CVE-2023-2640.yaml:2501eb7fb9e80ae9c3853aa387926d4f76bc3451
code/cves/2023/CVE-2023-2986.yaml:7433cecd7268a4518313044930a62a5a412fd043
code/cves/2023/CVE-2023-49105.yaml:f6536e663a831f0626c0327eb0f6f6b713c6dbca
code/cves/2023/CVE-2023-4911.yaml:099a1e77d41d9297ce23b52924f51acfc68a6b28
code/cves/2023/CVE-2023-6246.yaml:5553159f7fe9ad82a75ed7021021bacf02c2bfb2
code/cves/2024/CVE-2024-10443.yaml:3e0c8148db785e82074bfbf9a35a5d1542dd14f2
code/cves/2024/CVE-2024-12356.yaml:9a48dcf32d18abd1ca770535312088a36643b769
code/cves/2024/CVE-2024-22120.yaml:3dff15adea1b5f25733b34113e687d6d5e3676c2
code/cves/2024/CVE-2024-3094.yaml:ada5ed1ac0a24ef78e0f6dd07546d21244e1bbe6
code/cves/2024/CVE-2024-4340.yaml:ee486bb40d51ab512932449f0f68181a5f026374
code/cves/2024/CVE-2024-45409.yaml:1a523451ed9e792aa8cb3de58592bf1a61bc0942
code/cves/2024/CVE-2024-47575.yaml:c03054be154a2c6d014339a841902cc06492895b
code/cves/2024/CVE-2024-55556.yaml:c896b9e5a53131772de45937e7a7eafa62a8740f
code/cves/2024/CVE-2024-56331.yaml:0d6d906ada757ca031a21a1a7fa5a16ad28b3de1
code/cves/2024/CVE-2024-9487.yaml:2d2ae9682e8a1b3f1926f56068670d3c4c17715d
code/cves/2025/CVE-2025-22457.yaml:5ea3d606dee890eb69457e9359ac50d254c5b3f2
code/cves/2025/CVE-2025-25291.yaml:6c94bcecf5ec3351f84771a4e7061469aae669de
code/cves/2025/CVE-2025-32433.yaml:3fa7570a074eaa6cdc4aaa7d353129d512b976d5
code/cves/2025/CVE-2025-54309.yaml:780afc58f61829cbb8074d6600f68ca9370a3b5e
code/cves/2025/CVE-2025-6216.yaml:18073e136825435e0ac8be800403214ab94427ad
code/cves/2025/CVE-2025-9242.yaml:3111fe7a17dddbc130574ab6837cb8930cd112c2
code/linux/audit/autofs-service.yaml:0ad50d8a502831444faf01fcda135e8b55838064
code/linux/audit/avahi-daemon.yaml:65ee8925a09fdb9e0e9a1e78b077ceafd6dab6c4
code/linux/audit/dhcp-server.yaml:9aeaae166621b46f7b2c903fd2fcadfee670f1d6
code/linux/audit/dns-server.yaml:4a1dd304c2a050fdd6ebec2c2ccba2776cc6e951
code/linux/audit/dns-zone-transfer-any.yaml:19b58f5523ecb1ca7ef5c58e373dd2b087025bd3
code/linux/audit/dnsmasq-service.yaml:a9d7dc28e9f9beec4efa5945fef29de1427efe43
code/linux/audit/etc-services-permission-check.yaml:4aeb7643bf271b2ef03f694a6f06aca4c44d970c
code/linux/audit/finger-service-enabled.yaml:8674095bad5bc56e6ae95a7d76309650eb363470
code/linux/audit/ftp-client.yaml:8768c59fedd84e8898af7e66ea0e957b2b68d356
code/linux/audit/ftp-server.yaml:7a5adf7ec1fc20aca4255fc8b963d710f893de44
code/linux/audit/home-env-permission.yaml:d13b339b1068e7c30fdcc0bcd162c4895608c892
code/linux/audit/inactive-password-lock-default.yaml:0ac00d96ad26aefdcb8e0be9cac7d75a9664999c
code/linux/audit/ldap-client.yaml:c28097fd3663a79179fba370a735a22d0d839632
code/linux/audit/ldap-server.yaml:11e00ba8222fb9dae6786be7fa751c9ae39c18ee
code/linux/audit/linux-account-lockout-threshold.yaml:2ce57305a1bf8b04aeed23d64a549f22afc0a431
code/linux/audit/linux-anonymous-ftp-enabled.yaml:58361716ac93c20f8d2d44acc2671e0aaf77e43a
code/linux/audit/linux-automountd-enabled.yaml:78badaae2dff6a5df2b54d59e519388ce018312e
code/linux/audit/linux-cron-permissions-check.yaml:3c44003ff3584dc3096071d828308282547633f7
code/linux/audit/linux-legacy-services-enabled.yaml:1be7a3fcdfdad93d0cd397f0b29bf2701d5afdd3
code/linux/audit/linux-nis-service.yaml:6545f59cd0eda4a2eda6bd7d6a9b0e86a04e0f45
code/linux/audit/linux-nisplus-service.yaml:64c707d6d84bcc39ce883c52d542a2dd71fea7ee
code/linux/audit/linux-rexec-service.yaml:acc1b3d20ec061d3236fc097a57d54777656532e
code/linux/audit/linux-rhosts-hostsequiv-misconfig.yaml:f14e8122a0b2deac139c915e242c480707de3001
code/linux/audit/linux-rlogin-service.yaml:0ce07d0668593a8ffc05f6be2462a1449f8ac489
code/linux/audit/linux-root-remote-login.yaml:52178ce241be2ea454ca6a622b0757090fc8a15a
code/linux/audit/linux-rsh-service.yaml:179d854bf6cfd767b49adf7e59f54dd5b444b01c
code/linux/audit/linux-world-writable-file.yaml:ba0fe6e7eade3513213f94fc6ec9820860d401f7
code/linux/audit/message-access-server.yaml:1c98d7702e15efe5f488be195f896bceb4cc8f7c
code/linux/audit/nfs-daemon-service.yaml:f474f177779f7f80a3efb9bff7a86867f1287e34
code/linux/audit/nfs-insecure-exports.yaml:e179a02fae2d9521e2647b307abbe677bec791a0
code/linux/audit/nis-client.yaml:3cad83d1ead054beecc31748bbfad9e528e2ff06
code/linux/audit/password-expiration.yaml:84f837086c6ebe1b6b9bb73ad48a4c3815b323b0
code/linux/audit/password-min-days.yaml:51c530158543c4f8c09a49f8bdbe3b562c0ddf77
code/linux/audit/password-warn-age.yaml:29a2fa716cbd0e9d618156b6561005a613bbff32
code/linux/audit/root-path-dot.yaml:6397646d026f0085c263f0013c530028d2c65e1a
code/linux/audit/rpc-enabled.yaml:e3f61c89563d58f7356b8109083e3985867038aa
code/linux/audit/rsh-client.yaml:5e464c838eebf034437f861e2d8b111e099074cf
code/linux/audit/rw-hosts-file.yaml:8ea466b6bc8a90989566cf2dcefba922ce65896e
code/linux/audit/sendmail-postfix-execution-restrictions.yaml:7fbf58bf9812463a183e8153826e596f62b8e5bb
code/linux/audit/smtp-open-relay.yaml:8ff109c5af74fe0e0fbd59b9d96e5fb5e10c66d0
code/linux/audit/ssh-gssapiauthentication-disabled.yaml:f2e656fabe5006c176a99b1543198ae5e0f700e1
code/linux/audit/ssh-hostbasedauth-disabled.yaml:0360426e20448bdf8bee58fb4f324dc7c4c1960d
code/linux/audit/strong-password-hashing.yaml:d217a4a9251859427694988ff74502949dbb6a26
code/linux/audit/suid-sgid.yaml:82903a92a1c4a895f39e0344404333281b5cf230
code/linux/audit/syslog-rsyslog-permission.yaml:2ee346de93e2accd4653153e611430d837e8a082
code/linux/audit/talk-client.yaml:dd2192bef5953556e7ac9272990a51c49c5b6722
code/linux/audit/tcpwrapper-access.yaml:13b6f45f9faf6899d163ff0c82c34545379155da
code/linux/audit/telnet-client.yaml:c3d595deaa072c8dffb3f74f459801ce23c562a3
code/linux/audit/tftp-service-enabled.yaml:bb24b2d00d74586f6d6f8b94579e51a31cb49f38
code/linux/audit/weak-password-complexity.yaml:481ce0b874394e7ff647f27632b07c6dcb39b526
code/linux/audit/writable-xinetdconf.yaml:b3607f06b8c3e9984b943908ed9e078ce9406409
code/misconfiguration/dns-axfr-enabled.yaml:fd85f25de1f2016bfe432b5d86f354b9b94228e6
code/privilege-escalation/linux/binary/privesc-aa-exec.yaml:34a1c7da93728af0de286c7b4aeb01a192300a01
code/privilege-escalation/linux/binary/privesc-agetty.yaml:d86cd596555db5bd809509f55b781e0c9afdaaf3
code/privilege-escalation/linux/binary/privesc-ash.yaml:1d57a355789fec55b04197f62d80ccade392dd4c
code/privilege-escalation/linux/binary/privesc-awk.yaml:081fe351831459bed94af18b3ed901a3e08230c7
code/privilege-escalation/linux/binary/privesc-bash.yaml:45fc6c3972e6d680028185666efbeda8bee1c7d5
code/privilege-escalation/linux/binary/privesc-cdist.yaml:0ebd9d71bdc42fee8e6f056013fa11fd6ba8cf22
code/privilege-escalation/linux/binary/privesc-choom.yaml:bffd840fb69513159f430fbebeff7ca57a4cf63c
code/privilege-escalation/linux/binary/privesc-cpulimit.yaml:871f088a99de1ecb83665fbd510d681bbbb66408
code/privilege-escalation/linux/binary/privesc-csh.yaml:6f19ced21e3bdfcf766ba5782d2388fb91a39281
code/privilege-escalation/linux/binary/privesc-csvtool.yaml:af62aed0e38eea376caee78cc7fb6a71bfb4f316
code/privilege-escalation/linux/binary/privesc-dash.yaml:2b27a07f899ff6e1649c8a13d4759ad2fb5beb90
code/privilege-escalation/linux/binary/privesc-dc.yaml:25f8116313492848b6d1c1e0257b28a32e534065
code/privilege-escalation/linux/binary/privesc-distcc.yaml:82f5646bde4c8f1d4614285e3fdbaf976143e798
code/privilege-escalation/linux/binary/privesc-elvish.yaml:a416acc649dbcb16b854b9c5b43a9525c807ddc3
code/privilege-escalation/linux/binary/privesc-enscript.yaml:126994f41c9d06eb7026b8b8dbbd880a24e55579
code/privilege-escalation/linux/binary/privesc-env.yaml:f02b4706293b97907e9148a3d99e422bb668f3f0
code/privilege-escalation/linux/binary/privesc-expect.yaml:d4bde1e07cdee099ca02aaee5f26b7a8fe6a2339
code/privilege-escalation/linux/binary/privesc-find.yaml:cdad87ec8cbd387c105cce74edc94767b276e13c
code/privilege-escalation/linux/binary/privesc-fish.yaml:acab23e218c49bec0d56b4ecf73bbdeac505fb43
code/privilege-escalation/linux/binary/privesc-flock.yaml:8d50c0f1fd71eb0df9ba46ae44fd44489205c374
code/privilege-escalation/linux/binary/privesc-gawk.yaml:0d7a8995fc1f658ab6576a0f0ede0ab0c2b06633
code/privilege-escalation/linux/binary/privesc-grc.yaml:cc0a962e304dc40a96fe0c8c57578877f1083de2
code/privilege-escalation/linux/binary/privesc-ionice.yaml:6a374d879793922ef0eb5dfcd0bc7bd0bcac89e1
code/privilege-escalation/linux/binary/privesc-julia.yaml:4803bb3dfa979b8bfec37f829f76d46e7e84da59
code/privilege-escalation/linux/binary/privesc-lftp.yaml:a1790d4cf90d6f89d9878b1cb25e31bcb56f6a8e
code/privilege-escalation/linux/binary/privesc-ltrace.yaml:4ee8b3e39182f257f7e4d0da1c14bd281ba16748
code/privilege-escalation/linux/binary/privesc-lua.yaml:c92f29e85ea1c41afd090576d7770d74850aba23
code/privilege-escalation/linux/binary/privesc-mawk.yaml:13cc3e6851cb7b6fa93a7afad4f102daff830816
code/privilege-escalation/linux/binary/privesc-multitime.yaml:ac4fbaa72872be819d3d25738395d82b507639e4
code/privilege-escalation/linux/binary/privesc-mysql.yaml:5629b6bfcd762a61603c6e602d95bd051f4202e8
code/privilege-escalation/linux/binary/privesc-nawk.yaml:4aa23244fee88db657ff11dbb030791a109b6b4b
code/privilege-escalation/linux/binary/privesc-nice.yaml:7571bc9714268e5858dbd01d7b0cc2b42ac8b977
code/privilege-escalation/linux/binary/privesc-node.yaml:19159633336de07e464355ca568ddef3a95b9be7
code/privilege-escalation/linux/binary/privesc-nsenter.yaml:f5d888a7601a5dafada32158d59d3660891cc91a
code/privilege-escalation/linux/binary/privesc-perl.yaml:90629a5521f424fc504395bfa1950121199fa9b4
code/privilege-escalation/linux/binary/privesc-pexec.yaml:276741d4de74dc8fd0a5e2f49b1a05e77ec6319a
code/privilege-escalation/linux/binary/privesc-php.yaml:c18f4c835c2dff5e63a0a5c462840f8252b6d254
code/privilege-escalation/linux/binary/privesc-posh.yaml:41ada729dd2ce77dcc6d09819d2a8f1286c7c520
code/privilege-escalation/linux/binary/privesc-python.yaml:c10af33f6b4c1e237132babbb70b4cde4239df52
code/privilege-escalation/linux/binary/privesc-rake.yaml:5c21e383a0e4f41d9120db79d087ab4d6f5534ce
code/privilege-escalation/linux/binary/privesc-rc.yaml:176b94a463d1b48ada7e309fe3b13fb002ce9b9b
code/privilege-escalation/linux/binary/privesc-rlwrap.yaml:477250a5186f6422e7c8b3e76aecddd130c07588
code/privilege-escalation/linux/binary/privesc-rpm.yaml:42ef2b251fc7e49a60adc7738329b8ae4ae5ed9d
code/privilege-escalation/linux/binary/privesc-rpmdb.yaml:cf7907425f5953cf28ccf26ce3ff236813e46997
code/privilege-escalation/linux/binary/privesc-rpmverify.yaml:b8229af36c02705824c9fbf3aa4fdc556bf0569e
code/privilege-escalation/linux/binary/privesc-ruby.yaml:b8a6294a8539f1c5792f5eeb78ff8a1838ec6a29
code/privilege-escalation/linux/binary/privesc-run-parts.yaml:d015ba5aa1ff093391b9212864ce5a2ff3a7e033
code/privilege-escalation/linux/binary/privesc-sash.yaml:ca2d0de0db01d04c153c66d98db9130c319d4255
code/privilege-escalation/linux/binary/privesc-slsh.yaml:cde01be2e67bb3235b1892b4a68709233b616003
code/privilege-escalation/linux/binary/privesc-socat.yaml:948e9b3a82bccbe0864ad4dab804813f83d14e6e
code/privilege-escalation/linux/binary/privesc-softlimit.yaml:aee5f12767ac2a3cd7a7d0f3b69961289cf74c64
code/privilege-escalation/linux/binary/privesc-sqlite3.yaml:10f1765bef97b0a90895250ddbdb45dee503e140
code/privilege-escalation/linux/binary/privesc-ssh-agent.yaml:a4fb033a3858cfc1407bcf0e9004a06d1de5f86b
code/privilege-escalation/linux/binary/privesc-sshpass.yaml:b470585c015d17fdf3aa58ec0b6cc10a353d44f7
code/privilege-escalation/linux/binary/privesc-stdbuf.yaml:e1ddf3b44cdadf82a7e84bf89d620d9d2e62f2fb
code/privilege-escalation/linux/binary/privesc-strace.yaml:606e8423f441f8a4a0a34a456ef17313123341b5
code/privilege-escalation/linux/binary/privesc-tar.yaml:766982dfe0569915fa6a0ca59eb1a850acc5d42c
code/privilege-escalation/linux/binary/privesc-tcsh.yaml:2bb69695c3b29100999df893a57daf372163db7e
code/privilege-escalation/linux/binary/privesc-time.yaml:0fbc2f7502661a919a77d890804292f2a292cbce
code/privilege-escalation/linux/binary/privesc-timeout.yaml:6a295222179d041c79a8a3ae344addb8d67c1061
code/privilege-escalation/linux/binary/privesc-tmate.yaml:9152955fe41bab846de77b7f25828d6dd227fbf7
code/privilege-escalation/linux/binary/privesc-torify.yaml:60e3ae52a139a9bde320f9fd4588ce06d05eebd1
code/privilege-escalation/linux/binary/privesc-torsocks.yaml:192567b810d1b8dd7f13c1fe443f50f1f0377090
code/privilege-escalation/linux/binary/privesc-unshare.yaml:ae6bbb9e4d7f26a550f8cd4a2829bffe2fe91e75
code/privilege-escalation/linux/binary/privesc-vi.yaml:8e59fdbfd95e7c56e4c9b39a60af3ee30b9a9630
code/privilege-escalation/linux/binary/privesc-view.yaml:2c920002b8966d3fe9b1da616f1965a90dc38c04
code/privilege-escalation/linux/binary/privesc-vim.yaml:f63c5d12b04d00c50db596e1caa553d1a24ff1da
code/privilege-escalation/linux/binary/privesc-xargs.yaml:715eca0d006444a0334bb97d5390fc794ad162ec
code/privilege-escalation/linux/binary/privesc-xdg-user-dir.yaml:0a3b80ac1e8de6e1c8ea249d41ca881cecba9892
code/privilege-escalation/linux/binary/privesc-yash.yaml:d698f5a6f3b30027b5d44844451e838ede448a92
code/privilege-escalation/linux/binary/privesc-zsh.yaml:e70a9321a10007ed8f26313aacaa308fc9c985c5
code/privilege-escalation/linux/rw-shadow.yaml:a1fd7dbb1d3ca2cec610b4490acfe9f52a8e611a
code/privilege-escalation/linux/rw-sudoers.yaml:9603f9409c80aa36c400034dd8ce46645cfec489
code/privilege-escalation/linux/sudo-nopasswd.yaml:b09298405141ae20e5301de2b4cd8ac26150e0e8
code/privilege-escalation/linux/writable-etc-passwd.yaml:79d7bf51511a5cde6522948db67eb6127786968a
code/windows/audit/allow-unencrypted-ftp.yaml:e4e8e97fa0a9f7c04ae19df08f53d9ecb8f88282
code/windows/audit/allow-untrusted-certificates.yaml:7ca032406b56f25a6f1398a7c66b5a44277c5ff8
code/windows/audit/anonymous-sam-enumeration-enabled.yaml:aca4b89636f0ddd6632f37488af1ef0e0cc81775
code/windows/audit/anonymous-sid-enumeration-enabled.yaml:393aec36aecc3fc42a474f429a0a69c6b84d6325
code/windows/audit/audit-logging-disabled.yaml:6445199808561e42e80d2128c9204ff6c9654beb
code/windows/audit/audit-logs-not-archived.yaml:0a3aa6dcab42c60773c2f02dac6c4e09abcddb9e
code/windows/audit/auto-logon-enabled.yaml:ea858adb6a849cbd73645e9b4c83a9144503956d
code/windows/audit/automatic-windows-updates-disabled.yaml:75b7e3d5a2e4bd583fe8bb0c1b6e3d5e06b927a3
code/windows/audit/autoplay-removable-media-enabled.yaml:d323e23c04c0891aad2f7e5517ef5df22ac8e9ea
code/windows/audit/autorun-scripts-startup-folder.yaml:3e40f98aec0c5446878c25b7e7ac3cc03eededa5
code/windows/audit/credential-guard-disabled.yaml:224969b33614157c88e6f7bc335a405708ac0329
code/windows/audit/device-guard-not-configured.yaml:3b410df8ea3bce1253bfd1861be9a603fad19670
code/windows/audit/display-last-username-enabled.yaml:fe35c00035bd7ea68062066baed7c931bb7454fa
code/windows/audit/download-unsigned-activex-allowed.yaml:65d73b7ac6131178284d209cde24da5caac26aff
code/windows/audit/ftp-service-running.yaml:0abff062d197d5f534a6d1ee2012ec506556a0d3
code/windows/audit/guest-account-enabled.yaml:a5e52f8dbb6f6e61dd47adde46b4b40b97b1368e
code/windows/audit/hyperv-enhanced-session-mode-enabled.yaml:879e09683e2b860e2c46fafe808ee69dff53ef6c
code/windows/audit/insecure-cipher-suites-enabled.yaml:673d4b4fb760114a013ce63f47984a016cce534e
code/windows/audit/insecure-powershell-execution-policy.yaml:c4a2c51a3866af035e65fc81238f297660c2ea2b
code/windows/audit/kisa/account-lockout-threshold.yaml:a9bcae02a9d75aca2666354e8baf68b8fc7a87f5
code/windows/audit/kisa/admin-account-rename.yaml:be02e8d7895d627c9e9d55f082cef69cbfdcbed7
code/windows/audit/kisa/admin-group-minimal.yaml:fc5e0e799804ec6194c9f330437c842660414d1d
code/windows/audit/kisa/autologon-control.yaml:f8a25b7026ab420ae37ecd29e4d006a811ccc084
code/windows/audit/kisa/crash-on-audit-fail.yaml:90af7fed13da8b0532ee983724cc2b2843a8950b
code/windows/audit/kisa/dns-zone-transfer-check.yaml:c46bac9d67026e8c6649643e42beac448f6aa268
code/windows/audit/kisa/ftp-access-control-check.yaml:4416a0735bc31fd43f139e59d9f8de4fd151543a
code/windows/audit/kisa/ftp-anonymous-check.yaml:619179f900fc1c69725707f0f846219b3c97ac7c
code/windows/audit/kisa/ftp-directory-permission-check.yaml:f56d7f838f5c1453356f13c1edefcef404c12423
code/windows/audit/kisa/hard-disk-default-share.yaml:320a845c4620bbac0edbd52c86c034f3d017c67e
code/windows/audit/kisa/password-cleartext-encryption.yaml:622fd051fc0a62499ab8f3ab78113426cf276dca
code/windows/audit/kisa/password-never-expires.yaml:af8dbaae2c1d57a0f8af8408ae301df59740528c
code/windows/audit/kisa/rds-removal-check.yaml:cec3b678a3438a6315f27616fdc66dcb1ba5abe4
code/windows/audit/kisa/remote-registry-access-check.yaml:9f48df602e01d51f56946e4b116cfee0639dcdb2
code/windows/audit/kisa/remote-system-shutdown.yaml:09b939c15cb9f634ad70ff96c7c44357577641a8
code/windows/audit/kisa/sam-file-access-control.yaml:0f1933a70b028975047a41d700b3f05314a3c3a9
code/windows/audit/kisa/service-pack-check.yaml:f2e8541e31d243b703da43f469e8f8e23549ac59
code/windows/audit/kisa/shutdown-without-logon.yaml:4a751bf10d24b30b8d574dbae68bafea14416dca
code/windows/audit/kisa/unnecessary-accounts-check.yaml:4b3e4946adc304ffda3469fe71e114a810fc2be9
code/windows/audit/kisa/unnecessary-service-check.yaml:815096bad3f250d2f4567c5297d032665ec0c670
code/windows/audit/llmnr-disabled.yaml:09eda257fc96ee54025b9c8635cb8bf099551e2d
code/windows/audit/lm-hash-storage-enabled.yaml:fdf3804c5ae0fac8147b4844ef9bf83e2fc9f1b4
code/windows/audit/lm-ntlmv1-authentication-enabled.yaml:fba114c6bf3690b7f896a2e8301910f3e1eea9b2
code/windows/audit/max-password-age-too-high.yaml:f399d3e40f7670f77fa309b8a9341a55efb07f03
code/windows/audit/minimum-password-age-zero.yaml:18f624943ee20b2e2234a1d476f55cc3ce7cec2f
code/windows/audit/netbios-disabled.yaml:9cbda85a19bc8d1978c9649918a39a546e5b65d2
code/windows/audit/network-discovery-public-enabled.yaml:7dd8917c4cb075b0f5164dd49157106d99559d95
code/windows/audit/null-session-allowed.yaml:9212f33bccf0928ce6c2c22d6e6610943b77168b
code/windows/audit/password-complexity-disabled.yaml:ee865783326d2ce1c164c71083dd27dc69628425
code/windows/audit/password-history-size-low.yaml:c3c0cd495a5cb603dfa7bea70c667cc37d8bb40d
code/windows/audit/password-reset-lock-screen-enabled.yaml:018efdcdadacc294ea3592fbc2a7b47002fe5230
code/windows/audit/plaintext-passwords-in-memory.yaml:d244f6259df7e5dac5e2871d88ddc1618c4d4de4
code/windows/audit/powershell-script-block-logging-disabled.yaml:439fd0f43fd52e523b6f1c830008d3971dbdd1e3
code/windows/audit/rdp-connections-without-password-allowed.yaml:4a49cb7f9f58c45ef624e7c94c44751fd6e83283
code/windows/audit/rdp-drive-redirection-allowed.yaml:41a1c89b2f4c8d85ffa88f1f15244c6676c5419b
code/windows/audit/rdp-nla-disabled.yaml:bbe8e056ce8b437cd881997a17990d207f269f6f
code/windows/audit/remote-assistance-enabled.yaml:225440586e1c637675766b5ef4ad8a895c278677
code/windows/audit/remote-desktop-default-port.yaml:89cca39add006257ddc068cd38bd1897f9495589
code/windows/audit/remote-desktop-enabled-non-server.yaml:272f5a47b760c2237915e9cbc3e0fc1cc36059ae
code/windows/audit/restrict-anonymous-access-disabled.yaml:55c98211d9e1fb9d3c579ac64e279525bbac5e91
code/windows/audit/reversible-encryption-passwords-enabled.yaml:0b476145cfc0e6aa93e7d2fcb409e4289c276757
code/windows/audit/safe-dll-search-mode-disabled.yaml:1da0126334e84a1185760d6c48eabbf805e81ab9
code/windows/audit/secure-boot-disabled.yaml:dd916578e2274cf2a5c162ce01ce8b56a25062df
code/windows/audit/shutdown-without-logon-allowed.yaml:ca8aec5a30004679185ae278aa335a1fed36801e
code/windows/audit/smb-allow-unencrypted-passwords.yaml:b345baf8369427fe2b87639f26a2c090369a1995
code/windows/audit/smb-signing-not-required.yaml:543decba02083095ce83b1cd284b5fafcfb0e7d1
code/windows/audit/smb-v1-enabled.yaml:da994cd8863dd9bb2b6e39040c5b28e3f0ef50d8
code/windows/audit/sticky-keys-enabled-login.yaml:aef9bfbb4aed1ca5895acbb61368603660918ada
code/windows/audit/telnet-service-running.yaml:4df31b04a0fc0e126dd33e3fc241230a0ada1a4a
code/windows/audit/uac-elevate-without-prompt.yaml:85f2f6d3ea2ba09656d8d42859a3385bf8a2f822
code/windows/audit/unencrypted-file-sharing-enabled.yaml:dd10a16af5e135233df11d59791f94046d5b1414
code/windows/audit/unsigned-kernel-mode-drivers-allowed.yaml:edc8ab748d7036f5a3a1731bbdf138462c5e218a
code/windows/audit/usb-storage-not-restricted.yaml:490b97386950e45686ef83f097a8281a06bc0507
code/windows/audit/weak-ssl-tls-protocols-enabled.yaml:4ac2b169cc2ea012b7a5f559c26156f356208973
code/windows/audit/windows-active-desktop-enabled.yaml:a3c9c0175eb3130bcf2bdf8fbc3abe45aaf07802
code/windows/audit/windows-administrative-shares-enabled.yaml:27557769b20599b715e213cca1e2d142c27e80f0
code/windows/audit/windows-administrator-blank-password.yaml:8484165a300ab2f246990dee2fa4d3df4789f859
code/windows/audit/windows-anonymous-sid-enumeration-allowed.yaml:6895ae4644c7fd858f246c5e3af44964b286c9ce
code/windows/audit/windows-autorun-enabled.yaml:495684363449c386cebfc539cd47487afbcaa330
code/windows/audit/windows-credential-manager-plaintext-passwords-allowed.yaml:3a021c131acf2a73624225b29b9a57cb19b57ca0
code/windows/audit/windows-defender-realtime-protection-disabled.yaml:8f0d2ec9fc894a822d514449f27c5212cf307f1b
code/windows/audit/windows-dep-disabled.yaml:99b44f1b7f42e78d130797b5160da2ff3fa7f09d
code/windows/audit/windows-firewall-disabled.yaml:cda35367abdb775efb4486639511464bccb50527
code/windows/audit/windows-installer-elevated-privileges.yaml:394502a65700f94ca0bd30093726fe4f07610533
code/windows/audit/windows-lsa-protection-not-enabled.yaml:bf16aae918f9656f431c8694731894843376e67d
code/windows/audit/windows-min-password-length-short.yaml:cec2b3d0b7f139c2526106ef615f3674266a6c9c
code/windows/audit/windows-script-host-enabled.yaml:3ccba19874f6dd3c47247f8d3d352484c694453b
code/windows/audit/windows-stored-network-credentials-allowed.yaml:d82eb50a8d502cb122f29b55cff93acf5531634c
code/windows/audit/windows-system-restore-not-configured.yaml:3f235b8572de4e9d4637466b4941737b2c172bd7
code/windows/audit/windows-uac-disabled.yaml:3b4d2b30992c13193b3ab1b00bdc9de6f9443976
code/windows/audit/windows-unsigned-drivers-allowed.yaml:e965f71ce03bccf4aaef855eadce19b65c9d608f
code/windows/audit/windows-update-service-disabled.yaml:52b1b4b043c65d41a4b824e63b4d67876862f2fb
code/windows/audit/winrm-allows-unencrypted-traffic.yaml:fed7f72699d0520c5eec04ef801cab40e38f1001
code/windows/audit/winrm-basic-auth-enabled.yaml:b3d2b7e732e34354f3e0d3de57dee9429db44c39
code/windows/audit/winrm-enabled.yaml:cfe8f5b53935c9cce8e62c9a8d585416d19b546d
code/windows/audit/winrm-remote-shell-access-allowed.yaml:c065d90361731773cde3433fecdd0f84960226b9
code/windows/enumeration/rdp-ntlm-info.yaml:a4e4ee99b93ce4d060d0e525bf8a4d6c6f15c9f2
code/windows/get-stored-credentials-cmdkey.yaml:0355b4ae1b0a1fdac60cea737538510bdebe6382
contributors.json:e3d4f8d41e240f7d033e2867d0e10fa2e82d32ec
cves.json:438459809ee8b1f9c11bb7a70e6389ec019c6007
cves.json-checksum.txt:5a33a0f164baaf8ae4389238bbe275735b880de7
dast/cves/2018/CVE-2018-19518.yaml:58b86c946324a38d88b86a42d98ebca50db8f89b
dast/cves/2021/CVE-2021-45046.yaml:96dca8a0be2822ae179afcc7c6c6387677cc92e7
dast/cves/2022/CVE-2022-22965.yaml:d2bfbf4025bfa371afb332e335f35c82b317e205
dast/cves/2022/CVE-2022-34265.yaml:63cd80ba54d8b0be412325adb84a1032e442deb5
dast/cves/2022/CVE-2022-42889.yaml:6329b9f59bc65aed890af08f7e9e502f829e4004
dast/cves/2024/CVE-2024-2961.yaml:03eb9bad4b42dadacbf070154f826d54e04c30cb
dast/vulnerabilities/cmdi/blind-oast-polyglots.yaml:3cb7437fe531367796d1a8fd6f61c4aabc193f96
dast/vulnerabilities/cmdi/python-code-injection.yaml:090495c8333b3c8289aeca377604e31a3fc552e2
dast/vulnerabilities/cmdi/ruby-open-rce.yaml:e7243af26f68a461ff1f18ead70cd7dc30a84a10
dast/vulnerabilities/crlf/cookie-injection.yaml:c2925142db4ac404ddb67d7aed456296c18a2543
dast/vulnerabilities/crlf/crlf-injection.yaml:1cbcd05ff5918de5e1cd078b5671c39b6f851822
dast/vulnerabilities/csti/angular-client-side-template-injection.yaml:ef83a92a90a3d441dc1adc22a32232f9453239fd
dast/vulnerabilities/injection/csv-injection.yaml:d0903c692f264950f2860bbe5c67f5d226061381
dast/vulnerabilities/injection/xinclude-injection.yaml:adadee7b3ba817d7bb153c30b8b3a61f0fdc46fd
dast/vulnerabilities/lfi/lfi-keyed.yaml:b2cad211b36fda25d0c610e3dae667fc44b70e33
dast/vulnerabilities/lfi/linux-lfi-fuzz.yaml:810f98e3eb4ec16c16616b5ee89b62a217c5244c
dast/vulnerabilities/lfi/windows-lfi-fuzz.yaml:ec4989152296e55854da7d28e2f73f73ff4be6b8
dast/vulnerabilities/redirect/open-redirect-bypass.yaml:cd5703b7d5b6c4eb48035af0b59b488742afd8e7
dast/vulnerabilities/redirect/open-redirect.yaml:3c21241647335bfb3ac1ded96d7a75c65dc75f21
dast/vulnerabilities/rfi/generic-rfi.yaml:b4aaa7d594be89077e58906a64039c86dd28f222
dast/vulnerabilities/sqli/sqli-error-based.yaml:98bd14f17fbc931752fdaa98fa5f163da4ac1676
dast/vulnerabilities/sqli/time-based-sqli.yaml:68edd02afa34b2d63e8515afb81b93653fef5cff
dast/vulnerabilities/ssrf/blind-ssrf.yaml:fc79fdcf8372c85feb5178249a2d1ac05e77d7e5
dast/vulnerabilities/ssrf/response-ssrf.yaml:0f00a19c5304ad6e9b2360421b6a039ee4d29e8d
dast/vulnerabilities/ssti/freemarker-sandbox-bypass-ssti.yaml:44cce8f791c6f7f67f944180acd548a9a57ca734
dast/vulnerabilities/ssti/oob/blade-oob.yaml:96e75439647da6c8fd0648f048329c2e0a0bb3b1
dast/vulnerabilities/ssti/oob/bottle-oob.yaml:bc01f473df3e3c649295fb96d9c564ae77b86e3e
dast/vulnerabilities/ssti/oob/chameleon-oob.yaml:11ff5fa77287f653aad4f424d9198d59e548ff6f
dast/vulnerabilities/ssti/oob/codepen-oob.yaml:7982345f21ff5b711cd50ff0ac74d3196551068a
dast/vulnerabilities/ssti/oob/dotjs-oob.yaml:1a8cdefca3473cf1c6e0f85daf66829bfd8f1e17
dast/vulnerabilities/ssti/oob/ejs-underscore-oob.yaml:18b4dcccb3c0944b77c592baf974e7b0b34cf242
dast/vulnerabilities/ssti/oob/erb-erubi-erubis-oob.yaml:4135de38c1c8d995cd79ed0fcd3ea415f2ee558e
dast/vulnerabilities/ssti/oob/freemarker-oob.yaml:64e5afe75a202b9f10e5fedff6c4cc3c461a0021
dast/vulnerabilities/ssti/oob/groovy-oob.yaml:c907f8fc454f33d9b5ab512b2858d6288d0a6bcb
dast/vulnerabilities/ssti/oob/jinja2-oob.yaml:e4e7017742654233f1258fba1e30be0511efd3bf
dast/vulnerabilities/ssti/oob/jinjava-oob.yaml:ad55ff1307d4437b7bc7f79822565b269f03e5da
dast/vulnerabilities/ssti/oob/latte-oob.yaml:701c99272395c3dc076beb8c4c7440e624ad24a3
dast/vulnerabilities/ssti/oob/mako-oob.yaml:ec5a8ba19e464fe95425b641e20a70dd550be327
dast/vulnerabilities/ssti/oob/pebble-oob.yaml:c59fd8d00f17e6d43e2c9f66582a5205b82aa0e0
dast/vulnerabilities/ssti/oob/pugjs-oob.yaml:fb4fd1c2cb4316196c878d7c21a771aa728a4c61
dast/vulnerabilities/ssti/oob/spring-expression-oob.yaml:5b1fc463caa48a415364a13b580d7f4e407cb810
dast/vulnerabilities/ssti/oob/thymeleaf-oob.yaml:4a234520ec61de8046791f521d5a97b3c4493bf4
dast/vulnerabilities/ssti/oob/tornado-oob.yaml:fe3d37045d13f627057b77856aefa39bea22e833
dast/vulnerabilities/ssti/oob/velocityjs-oob.yaml:13d49d4c213f60861f1de84c59f69bee3ea8c9cb
dast/vulnerabilities/ssti/razor-ssti.yaml:f7b453ff4216b174e5e7edf800a13343785ad43b
dast/vulnerabilities/ssti/reflection-ssti.yaml:b1049a182b58327620264dc7dec712b6e9f74427
dast/vulnerabilities/ssti/smarty-ssti.yaml:38c7d6e1624bcf125ae4251af982558bc3d4d4c5
dast/vulnerabilities/ssti/twig-ssti.yaml:7ca46b7467d656e47d112a787836e2325b0da1f3
dast/vulnerabilities/xss/csp-bypass/adnxs-ib-csp-bypass.yaml:8967780427d50089cb3143c12a00a7de68ba6909
dast/vulnerabilities/xss/csp-bypass/adobe-campaign-csp-bypass.yaml:00c74b75ded23a10794a2b258979905c32262f33
dast/vulnerabilities/xss/csp-bypass/adroll-csp-bypass.yaml:dce44027ae4915d2626db6c2962b832300ec1c8a
dast/vulnerabilities/xss/csp-bypass/afterpay-help-csp-bypass.yaml:407018e02132ce79a8b5cdb4dffebfeac1d6e41d
dast/vulnerabilities/xss/csp-bypass/akamai-content-csp-bypass.yaml:0b83131ea848c97e51a99f31530734a076723fc6
dast/vulnerabilities/xss/csp-bypass/alibaba-ug-csp-bypass.yaml:3a4fb4f9f166aea8b4a10ba1d26e612ef1c43758
dast/vulnerabilities/xss/csp-bypass/aliexpress-acs-csp-bypass.yaml:536967a7c757b84f60970bba7cf6af7e0ec8b8db
dast/vulnerabilities/xss/csp-bypass/amap-wb-csp-bypass.yaml:3354824b47fbc98d7da07a2fb2c2d2889f02f1db
dast/vulnerabilities/xss/csp-bypass/amazon-aax-eu-csp-bypass.yaml:b3b7ecfae79546d3d8045d6927f1df6abf8edfee
dast/vulnerabilities/xss/csp-bypass/amazon-media-csp-bypass.yaml:f8a41fa3bdf91a9cd13200c51132e61964ad22dc
dast/vulnerabilities/xss/csp-bypass/amazon-romania-csp-bypass.yaml:fb1c2d8c1fe7fadf7b6f95a8e58b3df80ad08f66
dast/vulnerabilities/xss/csp-bypass/amazon-s3-elysium-csp-bypass.yaml:cd0ce3dce5a1fe23dd182b56fe28132842743f33
dast/vulnerabilities/xss/csp-bypass/ancestrycdn-angular-csp-bypass.yaml:d8dd94b3d2d0957104aabc514a0e49ee6b4832b3
dast/vulnerabilities/xss/csp-bypass/angularjs-code-csp-bypass.yaml:2a3f1a3a641daecedd7503f7951f4fdb746f21ae
dast/vulnerabilities/xss/csp-bypass/app-link-csp-bypass.yaml:c57cfed56a04e86d224711f1d2b0e2b8cac2c184
dast/vulnerabilities/xss/csp-bypass/arkoselabs-cdn-csp-bypass.yaml:a51f0dc725783d26cbcbd6ad019aa98469518f06
dast/vulnerabilities/xss/csp-bypass/arkoselabs-client-api-csp-bypass.yaml:9d630bafbbe47fb6df42f23467176a82f8043c81
dast/vulnerabilities/xss/csp-bypass/ayco-portal-csp-bypass.yaml:7616611e159aed84cc3247984d39c3741f2acc54
dast/vulnerabilities/xss/csp-bypass/azure-inno-csp-bypass.yaml:185491e207ba2b0d30bd3d5b4983af8fa4af9fb4
dast/vulnerabilities/xss/csp-bypass/baidu-map-api-csp-bypass.yaml:cd01cf749126ee2615da4b85220b1a14e2f651c6
dast/vulnerabilities/xss/csp-bypass/baidu-passport-csp-bypass.yaml:b4c90ad8e4c9db737a3d311c0d7e259a13d67bea
dast/vulnerabilities/xss/csp-bypass/battlenet-eu-csp-bypass.yaml:0b09140ba250cc767901073419a3fa5e891917c7