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
7260 lines (7260 loc) · 582 KB
/
templates-checksum.txt
File metadata and controls
7260 lines (7260 loc) · 582 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:a280fa8badd8622a481e1bb7f492dd82ac05ea71
LICENSE.md:48790f08ca6757688e2f5f3f4b017a073b3e20df
PULL_REQUEST_TEMPLATE.md:c8aba78d67442f639483a10fa74681dea94faeb7
README.md:dd1fa7e282ecfc701893c864747b2cb4fc8ef3bc
README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26
TEMPLATES-STATS.json:46e94935eba8934af2bfd77e17dd4bb352a4ec0d
TEMPLATES-STATS.md:3f74e66db0aeaf37e1b9d401f4d8fc23bc8a059f
TOP-10.md:d9e01f12d3aad16e5a340a0d8d59a87dc902e62c
contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
cves.json:1673d2dc4076e6abda6a30f91903556b49de4cd3
cves.json-checksum.txt:2476f1d6388064dcabe111a582494ebf8e0b2a30
dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
dns/dmarc-detect.yaml:d6d23a8837c5ec3809ffa2d407a72fdc7a071671
dns/dns-saas-service-detection.yaml:b8e5a37cc3e5fcdeb3ec3a742b8bc81babf5c302
dns/dns-waf-detect.yaml:f4d80afe7d48cee91123294482cd63cadeaa943d
dns/dnssec-detection.yaml:6dd2e7d114f3be862e2f1e87f5d2d2c4de1bf08a
dns/ec2-detection.yaml:01823f3399c471516137b067f37f5c6661ae3099
dns/elasticbeanstalk-takeover.yaml:74b8ac376c2770b3b3bee93c15ff4de8b7c36f28
dns/mx-fingerprint.yaml:191e425d8cad1d504d8f7ca3b19914cfd77ebb7b
dns/mx-service-detector.yaml:30d6bf3fec86d54f93a83438afe8595aff572212
dns/nameserver-fingerprint.yaml:73093f4b321ce7b50e4f1cd0b16b037beb85b008
dns/ptr-fingerprint.yaml:8a0953acfeb9384460c4f3ac0b463a0b42370529
dns/servfail-refused-hosts.yaml:28e8b71907bbf6bb931e051696cd1c0a5adc3199
dns/spoofable-spf-records-ptr.yaml:09cc066be755115a6cf01a5c810c55bf896f34e1
dns/txt-fingerprint.yaml:23a6fa89c5e01dbe3d002b155924cfd87407b933
dns/worksites-detection.yaml:b257c6733a9668de61c96e2e49f587c40ec84ed3
file/android/adb-backup-enabled.yaml:735fd5eb61df164d28eabae76048be9487fb2443
file/android/biometric-detect.yaml:70f5e2dda35223782c5fbab51b93f620605201b0
file/android/certificate-validation.yaml:919b1e2709d9fae9e71a5261b1497219aa260881
file/android/content-scheme.yaml:481102dbb1025bb583f2d9ee96f916185fd5d0f5
file/android/debug-enabled.yaml:518472860914877fc598385cf4f3d8836c16b457
file/android/deep-link-detect.yaml:808ab10c2233ee6cc67270919e18b51b8a500eb4
file/android/dynamic-broadcast-receiver.yaml:f4f29d13dddbc5615318b759bbf1b639443ac36a
file/android/file-scheme.yaml:8993bdc8c849b5c6faef7b332af978392f44db3e
file/android/provider-path.yaml:74b7fac127e2dce07a9649e076f2cc0645243e7c
file/android/webview-addjavascript-interface.yaml:fa71a189ff891fee7a89c42b2e299eadc9e53506
file/android/webview-javascript.yaml:19141136fced8d0c6ad26499462eeca868073946
file/android/webview-load-url.yaml:d079431f6b669ae1495e19bc77bd326a97f8ab7e
file/android/webview-universal-access.yaml:d0cbe881984483e24e2388ecc59fefef16d4a6c4
file/audit/cisco/configure-aaa-service.yaml:5510df6d441d2b5d037267230b40c101182cbcd9
file/audit/cisco/configure-service-timestamps-debug.yaml:f592167fba234e384d7915a971e1c8ca9649f0dd
file/audit/cisco/configure-service-timestamps-logmessages.yaml:a595a0f40a2bb68069519add4c0ef39c515fca39
file/audit/cisco/disable-ip-source-route.yaml:1619ea6603c0450025c547c223eb3bfb5d25fa24
file/audit/cisco/disable-pad-service.yaml:d3bf75b3c11f0d19341961bef8d726c9d3edf80b
file/audit/cisco/enable-secret-for-password-user-and-.yaml:8a4d328bec06673eb495e3d3f913b73297e33039
file/audit/cisco/logging-enable.yaml:c6c07574825a5ed0c172c719d4be29150cca7df1
file/audit/cisco/set-and-secure-passwords.yaml:5c043bc17de07ee587df18881a639270611ca8d3
file/audit/fortigate/auto-usb-install.yaml:5a8c26dc4d20a9c878dee77b9ea97426948c2993
file/audit/fortigate/heuristic-scan.yaml:a351227564127f73777a0caec99de5a73fcaa44e
file/audit/fortigate/inactivity-timeout.yaml:aeff30736f7bdb69d09bdb78a65befb9f4c6f457
file/audit/fortigate/maintainer-account.yaml:6ecc43ea80ccde6cf7305141773d76985cc415f0
file/audit/fortigate/password-policy.yaml:83a813b2a827086f2994483c22a9d4a5af9a202b
file/audit/fortigate/remote-auth-timeout.yaml:002ab6323dc275f698a30a7fc823cca624d208d6
file/audit/fortigate/scp-admin.yaml:fffb28e6274646279c3b80135d7052d4ec19f483
file/audit/fortigate/strong-ciphers.yaml:457de07fb1ad41f0eab6c77e2952565a2297db29
file/audit/pfsense/configure-dns-server.yaml:b5ed8e0c10e51fac7f9edf411cbd7b2bf94382f5
file/audit/pfsense/configure-session-timeout.yaml:fe5784b3be2cca65453a24ce21153530d317b830
file/audit/pfsense/enable-https-protocol.yaml:46fccfc9914be9c9e76d5d5520c7b032b6c51ff9
file/audit/pfsense/known-default-account.yaml:8735f5a77ad6ef1cbb63ff191a1849fd357e7bca
file/audit/pfsense/password-protected-consolemenu.yaml:cec0a784fff726550393f83849446fc90523df31
file/audit/pfsense/set-hostname.yaml:89464979b6b187293fca1d14e694c6d92d513a82
file/bash/bash-scanner.yaml:34c81ff693760add86b161184ca4ef55535d4ba6
file/electron/electron-version-detect.yaml:48a02ecd612fea69e5463adf12090cac7827cf5f
file/electron/node-integration-enabled.yaml:733a153d6281bcbddc3bf705ce0831f2caf7e3c8
file/js/js-analyse.yaml:a6147fffd63f593695966ef2bc8c188ecc2be9e8
file/keys/adafruit-key.yaml:a66ee5e3ad5b40308b9206b25d117e373abff060
file/keys/adobe/adobe-client.yaml:57ca527417d5eed1d8f7d9f62678fbd84258002e
file/keys/adobe/adobe-secret.yaml:356ca5c276c138bdf283fb5ad37c92c334039f9e
file/keys/age/age-identity-secret-key.yaml:dfd8a55c73a302cc09e4fd808b0f9e8d95e7a780
file/keys/age/age-recipient-public-key.yaml:a6fe20a97710ae2ee48df1d3607b0b3e2f4c55fa
file/keys/airtable-key.yaml:f9cb73e132fe2efe7f69b00438a3d3091457dbc8
file/keys/algolia-key.yaml:4366751e05ccb825f7a370c56ead5b9168969eb2
file/keys/alibaba/alibaba-key-id.yaml:259009a14147f427f4e985361c6a6e2e241ff88f
file/keys/alibaba/alibaba-secret-id.yaml:45c004e50f2a324edd4d4d7ec8e2e63352c94109
file/keys/amazon/amazon-account-id.yaml:0264a3557df595b0a049310c2fff5b487135d2aa
file/keys/amazon/amazon-mws-auth-token.yaml:c2162a91395c784d9a71e2b853a25e870f5f29a6
file/keys/amazon/amazon-session-token.yaml:465d5705c9c154d4efff90549ee9dc68caedb5d4
file/keys/amazon/amazon-sns-token.yaml:5b36aa8557573cf1718dbac9d85bc67730eb1a85
file/keys/amazon/aws-access-id.yaml:5eb3160b1e7a74ea14276003e0a642b6edb42cd6
file/keys/amazon/aws-cognito.yaml:f4e59d0d3254fb5474f409f0b11c1c1d07fd78f4
file/keys/asana/asana-clientid.yaml:a6533858cd31d736c5853bb67c122e6deee46a10
file/keys/asana/asana-clientsecret.yaml:e0062b96a325d24c7e6187e9470e396a86928245
file/keys/atlassian/atlassian-api-token.yaml:385bbf18eaece6067bb9c500271e1d378096bdad
file/keys/azure/azure-connection-string.yaml:d58bf3c6083043544a3274141e58741eab46bc5f
file/keys/beamer-api-token.yaml:c466ea24569305f7a14c7e790c86db12acf09c88
file/keys/bitbucket/bitbucket-client-id.yaml:29c4549884d1435febeec40b16ba32eb441e5b22
file/keys/bitbucket/bitbucket-client-secret.yaml:143a1d3435346762c66984f03acba9d5b7acbf8b
file/keys/bittrex/bittrex-access-key.yaml:4903a5941a1301e7160f1624e14be5742064edaf
file/keys/bittrex/bittrex-secret-key.yaml:aa450221b63e5dfaafdb974202cad80f839c7397
file/keys/branch-key.yaml:e48b970b6fb7198eb32773851fe531eb766e873b
file/keys/clojars-api-token.yaml:5abcfe2dc7258ea6a10383e3e64fd0e433ec0b83
file/keys/cloudinary.yaml:956631a29959c15ea1fb99bd6334dcb1f27494b1
file/keys/code-climate-token.yaml:2b888b382164ca42ac80420a1fc638ddbab53d82
file/keys/codecov-access-token.yaml:1c3ba4ca10186bb1a36d89295d64ada8e8af3273
file/keys/coinbase-access-token.yaml:730c115d64b180cb19d853acee162478fcd680ee
file/keys/confluent/confluent-access-token.yaml:0a2147f9060807dafccb86b33b5e942fb3300efa
file/keys/confluent/confluent-secret-token.yaml:c937ee927ff2e7733265f0fc6cfdc44c7d4be9cb
file/keys/contentful-api-token.yaml:d2a576813f44a5d6d46098c6d31a68de3930a062
file/keys/cratesio-api-key.yaml:71981c1c4fe11acf046aca9ff98c0f09ef9205dd
file/keys/credential-exposure-file.yaml:5df648df70ea9bfe15b384ae1acbc57792601c5c
file/keys/credentials.yaml:d16c8afd64d2eedf6e1d4f55d26a8d9a4f0fa32e
file/keys/databricks-api-token.yaml:ba17625716c340974038b602bac8e758732525fe
file/keys/datadog-access-token.yaml:57e0d97aa4bc3e23fd54235afc446fe93ce9de5d
file/keys/digitalocean/digitalocean-access-token.yaml:43ffca49436dfe11020aee5be7273d42642d0cab
file/keys/digitalocean/digitalocean-personal-access.yaml:eacf85f4fd4de677f7a5b58a8ffd107213ae24f8
file/keys/digitalocean/digitalocean-refresh-token.yaml:2a12af9a7ecdb9dbde896582055c4d11b5a6fc50
file/keys/discord/discord-api-token.yaml:05eb7d957abdc7e5a478025a6c3c1f82154eb168
file/keys/discord/discord-cilent-secret.yaml:a4f44d13cd586cc5b61ad32e6af96475dd1d4a2d
file/keys/discord/discord-client-id.yaml:891f47a6f2b1d0733633005dd9889f12a80e5c56
file/keys/doppler-api-token.yaml:258fd2a380ef6d428e388912c17c8de8242d2422
file/keys/droneci-access-token.yaml:e908316a76340d82c5dadcf06d15fd48c7d27673
file/keys/dropbox/dropbox-api-token.yaml:11deb596301296178824eee485668a8ef1a38066
file/keys/dropbox/dropbox-longlived-token.yaml:a79f797235f800f7ce620c092a9e4f7818a7a897
file/keys/dropbox/dropbox-shortlived-token.yaml:42f4aad4ff3471df10f727c1b1fddf526c117e85
file/keys/duffel-api-token.yaml:cac0d343da93053c6385e047fc0165839aa07dee
file/keys/dynatrace-token.yaml:0089ac006754be85a40a9be763e66361d6536fcc
file/keys/easypost/easypost-api-token.yaml:4333634e7441643ceaab12f929710beaaa4f275d
file/keys/easypost/easypost-test-token.yaml:269975b71dc9e670c78750329f8671d0637a6cd0
file/keys/etsy-access-token.yaml:8b1cb7ad0c05e2cf3cb1117617b70fe7967a0cfd
file/keys/facebook/facebook-api-token.yaml:49480fdf9a5090b7dc263610dea2dcf81169c9ff
file/keys/facebook/facebook-client-id.yaml:8fef6899313ca30722ae3dd8a17a21ee87677e58
file/keys/facebook/facebook-secret.yaml:8380e6498469237418d6872b69d5027d467c66ae
file/keys/facebook/fb-access-token.yaml:4680bd7c7b97d2d6c80684c9443168ae683faf6a
file/keys/fastly-api-token.yaml:dfb3a384bbb6e4d6cfc298f6c8390685069d73b2
file/keys/fcm-api-key.yaml:28c9b101822b4d0d9709482c661fca6993714f02
file/keys/figma-access-token.yaml:bf271c0a3f4cdd5a04ea90b444337fa74598f129
file/keys/finicity/finicity-api-token.yaml:7e9bc997e4f9f0530c279e052d979d78e871c1cb
file/keys/finicity/finicity-client-secret.yaml:3f81bf121ed499f17a7ac1847ffa2b6dcd0f9af3
file/keys/finnhub-access-token.yaml:d88325a144075a17e2db37d90ad7adfbc7aedf37
file/keys/firebase-database.yaml:d187e6fb3365bc68dad4e64871825154805361ba
file/keys/flickr-access-token.yaml:bc5e757a780bb91bae32db624f8bf0414ca8a606
file/keys/flutter/flutterwave-encryption-key.yaml:7c453a72197dadb51884ba7fd92744df40f2ff83
file/keys/flutter/flutterwave-public-key.yaml:1add84913fb8f847e204cd8485eb16cfa66a4e28
file/keys/flutter/flutterwave-secret-key.yaml:c1a3c11a69b4aff1f28ead7126468d161ac36dd7
file/keys/frameio-api-token.yaml:ef9b827dc8f1d504f5d68e0a371f4b373c834d02
file/keys/freshbooks-access-token.yaml:104d238b1029f7bf609326471e7f5424a014cb22
file/keys/gcp-service-account.yaml:ccf3568c6744fccf2371ac8bfd555526bfb13e20
file/keys/github/github-app-token.yaml:8e51a916ea7c8007c1789ea45c7950d5a8b56a48
file/keys/github/github-oauth-token.yaml:2610a79ccc3bf1ca982f2a673b9fdb00a2742f8f
file/keys/github/github-outdated-key.yaml:4d24664f6b4cc04e91b27318a02de9d40b9df40c
file/keys/github/github-personal-token.yaml:e08c2e89e4dc6ca17ea3cc0459a7e37f55542f9f
file/keys/github/github-refresh-token.yaml:fbf1308c1272f4e29830e7dde624c4ed0bdfd6fd
file/keys/gitlab/gitlab-personal-accesstoken.yaml:b350c6e4513d5255f425c0aaa01fe92dbd637c94
file/keys/gitlab/gitlab-pipeline-triggertoken.yaml:41dc4692a7711c23f07e5a98f34b70ec06f72b45
file/keys/gitlab/gitlab-runner-regtoken.yaml:88d73eea7ae5db026dd1458f2caadcf8bb92cd94
file/keys/gitter-access-token.yaml:b91ab10cb6eecec9e13651c3215d3947e8069d8b
file/keys/gocardless-api-token.yaml:637a415f879d31441160945b718a4f38cd581778
file/keys/google/google-api.yaml:b1a45d973f28663b184704ccc5a08b38ae6f4625
file/keys/google/google-clientid.yaml:602e1434d51d60bbfa05d440f7d27e41ecf9494c
file/keys/google/google-oauth-clientsecret.yaml:1dfa3a5958773f38c4ce9aca875752e581ae7833
file/keys/grafana/grafana-api-key.yaml:1d4fd84acf368aa07c5a8c3df0b9ce657401df64
file/keys/grafana/grafana-cloud-api-token.yaml:01743c81779504e8a3f34a9fbcf99d773d48a9a9
file/keys/grafana/grafana-service-account-token.yaml:870b60e24c14c0b6d70df6d0a10d0432926edb18
file/keys/hashicorp-api-token.yaml:e9ff7bd9ec04c27f19bcb93cf4c6ddb5b78b07ea
file/keys/heroku-key.yaml:eddcdd450e5e55e1eda210dd79a040ba760fb794
file/keys/jenkins-token.yaml:09a317132b0fa3cca157a5fd0481f6f5fdfe55a9
file/keys/linkedin-id.yaml:0b948ed87d6f77f610bc34157621824b7f783cf8
file/keys/mailchimp-api.yaml:23710637c6f9e73a10eb0fe84f7ebe1b2bc36c94
file/keys/mailgun-api.yaml:7e7c2baf26d65958dd3cd59bee9569f4f89e36b3
file/keys/mapbox-token.yaml:8ea3826a27093d769c442dcd16e3eb18358a3fd3
file/keys/newrelic/newrelic-pixie-apikey.yaml:aeee8da09447dc9b03611b9212fe65125a14f3be
file/keys/newrelic/newrelic-pixie-deploykey.yaml:bb309bd9ab60e88d2edc206c8e63450c6f68de50
file/keys/npm-accesstoken.yaml:8957872c50d8af0f1a8c4cc4092df0869ff27d00
file/keys/nuget-key.yaml:6c136e19e8ee5fc14f3e069794e97c8ec9ba3a97
file/keys/openai-key.yaml:ea7d824da1680d1bbeb62609f1f88e1f1fde1653
file/keys/paypal-braintree-token.yaml:a08c502c502936044187c9a9d6d9c2aec9b9d60c
file/keys/pictatic-api-key.yaml:281d6ef792d8f776a9b4cb96f5b77ab13cad6f90
file/keys/postman-api-key.yaml:ce689c9a7fc037bba5c6e221b539ffdbd33e5541
file/keys/private-key.yaml:c7d709816fee0382c0250b2da2bb99ce6588c836
file/keys/pypi-token.yaml:1847da81386d9c357f39f224cfc8399bceb49c6d
file/keys/razorpay-client-id.yaml:846158bf5563bd69f4f804f56409622b738a8a92
file/keys/rubygems-key.yaml:1d2e16f43542022c87efdce045a3b6e24bf7cc16
file/keys/s3-bucket.yaml:9d725525020d19b183553ee8f097e54ef4e082cd
file/keys/sauce-access-token.yaml:e99e5fc3d83096a21145693cb89d28ca6615fb80
file/keys/segment-public-api.yaml:7124548a3a95be142bc62904137f0d5f0345cf7b
file/keys/sendgrid-api.yaml:0dfbd1ae46def32a64b82e5273c73990a9e20401
file/keys/shopify-custom-token.yaml:ab332a7a67468bf0784bb12cc21a7ede6025736c
file/keys/shopify-private-token.yaml:700ea59fd3f7a5f955757e6d5cebe22a05847091
file/keys/shopify-public-access.yaml:7587022f7fbb2cadda502b74e4a8014cd046d8d2
file/keys/shopify-shared-secret.yaml:b5e51fb3e30450347ef8db2087363d6276e12e76
file/keys/shopify-token.yaml:7d7faf45836a7e6288fbe623d1c3455730d95acf
file/keys/slack-api.yaml:cbcf3b1cc032051c69bdffbc983bc0af754ebd2d
file/keys/slack-webhook.yaml:a523fa27b1ecf24122c571c5a3c9327dc2ab30e8
file/keys/square-access-token.yaml:b46a9e939c03f7a4a2254ca28e35233d33fab68a
file/keys/square-oauth-secret.yaml:90f91689ab5ce90259d6e84a748648ae5cb4b5f9
file/keys/stackhawk-api-key.yaml:a760b36d2ee78ffcb938598c7a1beaf543de2bd5
file/keys/stripe-api-key.yaml:a8849a29190fd1fb92a50e9e0a6c49ea694043a9
file/keys/telegram-token.yaml:63257d788cadbfd4e2ea55b974b2d9433441093b
file/keys/twilio-api.yaml:5ea16764819395bcfe307964c1b32a4dea86bb13
file/keys/twitter-secret.yaml:fa82d681ae94b741b25786f58835c9be605d8592
file/keys/zapier-webhook.yaml:48526eeb6c83d543a5bd7a9e160231dbb3112474
file/keys/zendesk-secret-key.yaml:e68b6567ad02fc075eaa8cf3722fc02463d5161e
file/logs/django-framework-exceptions.yaml:bfe8762092b34fbe7c57d1d4f18116be8502ec58
file/logs/python-app-sql-exceptions.yaml:7dc14b83b6bf6cfa63af6a1ea1739a02d9b8394a
file/logs/ruby-on-rails-framework-exceptions.yaml:4cacd8d7144f8353b5927cac2d008c1d08bb3a50
file/logs/spring-framework-exceptions.yaml:59912aa3db6ff6d29783c9b4fd84a6dc4d8369f3
file/logs/suspicious-sql-error-messages.yaml:2e4c653f2d2012480e5fcd8f964c114e5a26e5a9
file/malware/aar-malware.yaml:d02484c0b5bdc45733e8b2b19aeabf9d657c302a
file/malware/adzok-malware.yaml:ca6ec1ec509d1d3c81011fbd3b630bbc7880ae55
file/malware/alfa-malware.yaml:8cb0da69ead8bd22e571734bc151c457f9f872fa
file/malware/alienspy-malware.yaml:58d0fccdc36f1d4134a3dff08444b74cfcc0b59a
file/malware/alina-malware.yaml:52d6d65a8d1a1cf27196dfbc549dfd7f4fa55088
file/malware/alpha-malware.yaml:deaa68b7bf389e5022974def29e2ea1b006b9d80
file/malware/andromeda-malware.yaml:b29e1a1751fa9ce222432207b77bc653d5286dde
file/malware/ap0calypse-malware.yaml:303b2c9fd6bae874c938d9d82527030bf249b111
file/malware/arcom-malware.yaml:dc21540baf89192cbd26a45bef22c2fe240f4c4e
file/malware/arkei-malware.yaml:0efaa17826e99b688392cb21ceb65a9a3b84cda7
file/malware/backoff-malware.yaml:97ce2ec738d3f5367dd76f66ac70af985d8e87fe
file/malware/bandook-malware.yaml:f8fcacb4072655713a29870400a1d3f3151903f5
file/malware/basicrat-malware.yaml:70a227fd7428a5a6e50b217bcace58843796e483
file/malware/blacknix-malware.yaml:dae2774112cbcb5185603cf6c074ffdcc48c7b43
file/malware/blackworm-malware.yaml:a0d97ac2b0cde1837623b87411062008f4877299
file/malware/bluebanana-malware.yaml:470f563a54ad024e47854d3e84a996077dfc386b
file/malware/bozok-malware.yaml:89cfa4b2cea3806302111197f5daa3bf8d97101f
file/malware/bublik-malware.yaml:b66d16da3c8f819d2b6f91060a4b6996345554d1
file/malware/cap-hookexkeylogger-malware.yaml:2a355e5571b866db18ada408054e8d0208f04887
file/malware/cerber-malware.yaml:4feca61d49f2f842278d289de81a584427b0a72f
file/malware/cerberus-malware.yaml:25a25bbad74d014c6a917dee037b4302cba3dae1
file/malware/clientmesh-malware.yaml:ba9152040a38449e2aa1dd5f26ac2c177f983e50
file/malware/crimson-malware.yaml:bddbde813ac3d2f859affce571a6f9383e886ea1
file/malware/crunchrat-malware.yaml:00a8c633ea21524bf1ac2cdd5dead094d4cc9998
file/malware/cryptxxx-dropper-malware.yaml:e974652e29d8fcff19cfb18ba41440103fee8edd
file/malware/cryptxxx-malware.yaml:54778ab5c5f377c734f4382038003a65755063f4
file/malware/cxpid-malware.yaml:6e98a2f82eb04aca3bf1216fedda822f4d56aba3
file/malware/cythosia-malware.yaml:a9f4ff854507f36ea0cb853c7db1696ef926c16d
file/malware/darkrat-malware.yaml:b3dfa3e687050f3800e37bdcf053b64090f57dac
file/malware/ddostf-malware.yaml:72736a5e925f48613fb7be991b0d0e78cc30d8f0
file/malware/derkziel-malware.yaml:14bbea26ab6cb272abbc6e57028c34b1b5fffc59
file/malware/dexter-malware.yaml:21e72e7de717000f132174c4c3bd21d36f15c1ff
file/malware/diamondfox-malware.yaml:86c81b433f858b3395fe2187d93a688e12c7bb22
file/malware/dmalocker-malware.yaml:675ef7c0e17e4c1e605bc0e306418b03e69a5e6d
file/malware/doublepulsar-malware.yaml:6bce78fb4d9f9a8f154c1bd67b86acac40d00374
file/malware/eicar-malware.yaml:9fa490ad507ca2e008360f323518aa8c8a697632
file/malware/erebus-malware.yaml:838f69db4458e97ec110b28bf1fedc48264470a4
file/malware/ezcob-malware.yaml:caba2c2501d8bb999493ace4b62299b29e2edd40
file/malware/fudcrypt-malware.yaml:606f00c1c3d53704b9bb22d5cdd1d87759c6c77b
file/malware/gafgyt-bash-malware.yaml:173d7cf67c3bb313c675c78f244ead4ea18819a3
file/malware/gafgyt-generic-malware.yaml:6d93186cda54db0a1710de21831ac71fd5c3c0f7
file/malware/gafgyt-hihi-malware.yaml:e0bdb54bc7784796b68175ff44e4ec662fde5790
file/malware/gafgyt-hoho-malware.yaml:ae7dc3a2ef3a921f0df168f98d3174bb377b1507
file/malware/gafgyt-jackmy-malware.yaml:81e7ece5aa3224af625e558851204614429d634f
file/malware/gafgyt-oh-malware.yaml:93ad09ab5a64831619780c326a8722ab22c8c812
file/malware/genome-malware.yaml:a7b584dfb190c237d0dd386a72dc42ca1df817e5
file/malware/glass-malware.yaml:307fb0eeee3f193d850b80f9a2cdd185d8c2d462
file/malware/glasses-malware.yaml:26c99bfd1f68643de6fffffd1e4ee8fd33b25334
file/malware/gozi-malware.yaml:651fe3c2635363da20645f0554580aa308519db0
file/malware/gpgqwerty-malware.yaml:f5fe50a60148ce35aaa9640a8e89d8273bdefe4b
file/malware/greame-malware.yaml:1a0ffb8c7a6e26c3f309d30466543fdc54e01649
file/malware/grozlex-malware.yaml:49225c117d561fa7e43f37e4477d6d52ff17c983
file/malware/hawkeye-malware.yaml:8b229438d26e450a318d52240fda05bf7caa4f12
file/malware/hydracrypt-malware.yaml:c08c30ab970addb21a1d049d097576e51f989f9f
file/malware/imminent-malware.yaml:c92c332b6ba8e746068095771a4eeee4b84dee27
file/malware/infinity-malware.yaml:d04c82aa2d333c15b08b3abffe8192a3e6bfbc1a
file/malware/insta11-malware.yaml:1270e9e29633db417e00ef5a9839a924c6bf0c3a
file/malware/intel-virtualization-malware.yaml:9215be19b1724696481fbd4534d903362547fa4f
file/malware/iotreaper-malware.yaml:ba9d17fc203a5ba6e2c273a3a15226a82614d902
file/malware/linux-aesddos-malware.yaml:beb18c783a37d793207506326e679a09f6f08245
file/malware/linux-billgates-malware.yaml:5e6990833085af09972c2c7e63dc0c69eb8f7a3b
file/malware/linux-elknot-malware.yaml:0f301a5c7a1649d92b3723f8596c254a29f2740e
file/malware/linux-mrblack-malware.yaml:c97e96acd11fa56c9f7fcc983ef0a830f6bce5d5
file/malware/linux-tsunami-malware.yaml:725ff72dbe45be12f34663b66dbfdfb02edb9882
file/malware/locky-malware.yaml:87753bb0e54b23b39c98cd8e1abfeb2701e15960
file/malware/lostdoor-malware.yaml:57426eaf178c792223424ccc453b47a835295530
file/malware/luminositylink-malware.yaml:061340d0aae55fda08bfdd1991e725d40ec611aa
file/malware/luxnet-malware.yaml:d954dfa7260c310dd5692adf7761dbb0585dcd89
file/malware/macgyver-installer-malware.yaml:40fd5a41d1bfc4322e742fca86b41d75ede9a25b
file/malware/macgyver-malware.yaml:17d1497a42e425d96c2194ecd5b3e73ab43a04d2
file/malware/macos-bella-malware.yaml:79a995ebca64310c994391b42b9b153399841168
file/malware/madness-malware.yaml:844be25dbdca4a5fe759e9f423e886de0642bbdd
file/malware/miner--malware.yaml:3aafffaaf38c9bf153017e14d16a22ff914b1ac4
file/malware/miniasp3-malware.yaml:1eb66ccf6661ee7a0947e7ff0094ead8a8ab6123
file/malware/naikon-malware.yaml:97a1d9720cd78f4c6a18b7e030bef2ba3045dfca
file/malware/naspyupdate-malware.yaml:8831d92d923bc433add0a7960659204482161e8d
file/malware/notepad-malware.yaml:044bcb34935c966a6022da346f1c15773872ed73
file/malware/olyx-malware.yaml:c5e5dc3708b09acfe8c307745a887920469aca25
file/malware/osx-leverage-malware.yaml:46a803f0a5861789bfdd2e83ceb86f94fa80afd0
file/malware/paradox-malware.yaml:dd7bdf7c0f70de79f683f08dd6619c2d6244ad46
file/malware/petya-malware-variant-1.yaml:75b6855167bb3aaecafb1ca332ec45ab578a0ef6
file/malware/petya-malware-variant-3.yaml:98f3f0578543548fee10e5a9955de8bbdde8c19e
file/malware/petya-malware-variant-bitcoin.yaml:60f7866b33cc4830d8cef607e6f1a29ce2ef46c6
file/malware/plasma-malware.yaml:d7da17c7f6b10c3d963f58301b1c33d76e703ac2
file/malware/poetrat-malware.yaml:7641ae53f0beb1d248e3215bb9edf0699298f344
file/malware/pony-malware.yaml:84a29caf8c967d7a85f1ec3f9310126f4b3b6831
file/malware/pony-stealer-malware.yaml:e06fada8598689224f91d22ce3bcec6819a14abc
file/malware/powerware-malware.yaml:0a43af8fd2385b2418ccb8e395ff1bdab4be9c12
file/malware/pubsab-malware.yaml:ee11be2ea23f1906682915b66c4581c0012d689d
file/malware/punisher-malware.yaml:0cd260b236d782eaee191a02bf9b7f1a010f543d
file/malware/pypi-malware.yaml:671af8b396e9c8469d87758ffdd10aa682ede40d
file/malware/pythorat-malware.yaml:0103fa4abb06a5b8b367670a083be084dea90048
file/malware/qrat-malware.yaml:19f53a81c34327e21b3ed582a5cb01451c157b83
file/malware/satana-dropper-malware.yaml:e63ab254aa3f1855b6c26967b594f9d8cf3a82d8
file/malware/satana-malware.yaml:8e8da91b2c5c4fecdbce8df7bc95f0c76462e06f
file/malware/shimrat-malware.yaml:c5799bcdcecef37d10ea9e741bf81516c2d42d21
file/malware/shimratreporter-malware.yaml:6e638d6a948fd3c7de3dcfb3445b948fb0e866c7
file/malware/sigma-malware.yaml:c5c954713debaa83c0db44d08295bc57e411a096
file/malware/smallnet-malware.yaml:e251ca064cea0b844a5b6f35f2494ce052d008f9
file/malware/snake-malware.yaml:694580d182e2ca4a9d54d5f941599b057c4b34ce
file/malware/sub7nation-malware.yaml:d71ddfd6d8942907cb8fd3c9863d01a588f8043d
file/malware/t5000-malware.yaml:c0e654d311cc90d07a5c0108d3a864b11529a982
file/malware/tedroo-malware.yaml:02923f9328241d6f41b1cf525f03ab7589dad7fd
file/malware/terminator-malware.yaml:d0f1608f784ca8fd02e2b8ec848d0234211cbb7e
file/malware/teslacrypt-malware.yaml:5e562bc0925622c8f36e2b9b11e3bd2884af1cd8
file/malware/tox-malware.yaml:91590ae502a4dd2b1013a5a0ce325f584550f3d3
file/malware/treasurehunt-malware.yaml:6333ad52929847e2aa0afaf8a1310519b532937a
file/malware/trickbot-malware.yaml:4062f86b7c518344dea7f66e1bb852807503262c
file/malware/trumpbot-malware.yaml:a491065b415c12ecf7985ebb7b7537a2c5c94f31
file/malware/universal-1337-malware.yaml:b7490cf01942ec8b91ce0918890b2345c9c2ae38
file/malware/unrecom-malware.yaml:a9b4d2a500c926f822e48db075735b0ac5db3b0a
file/malware/urausy-malware.yaml:a56e2743aec670bd172c946a18908703ba2dec7f
file/malware/vertex-malware.yaml:ac3afeb14a1dba663914f52a6b79e8f1d5d620be
file/malware/virusrat-malware.yaml:8c86975e41259776e49fae31a196ce216080fb93
file/malware/wabot-malware.yaml:f99093842e2acf3cd1b772971abddf4ec31f3d0e
file/malware/wannacry-malware.yaml:ad026752415e7c56549b6cfe1aad2566d89de493
file/malware/warp-malware.yaml:aee46d47a73601fbe245a690b8095a9b8ea60ac9
file/malware/xhide-malware.yaml:acdf0229aece896e3c4416c6524ca6b93949fcd9
file/malware/xor-ddos-malware.yaml:dc69bca629a51dd6e23216043e7841dec6ce08fa
file/malware/yayih-malware.yaml:805f7343ac975a91a1572ca4629e4fa9638070e0
file/malware/zeghost-malware.yaml:19400d9592f9bd59fbc8667f062570c861487c3d
file/malware/zoxpng-malware.yaml:833924a57059d6b7ffa5fc354816ea2f914e0b97
file/malware/zrypt-malware.yaml:1f5d0bf259b892d53db978eba862cdb7ab2db412
file/nodejs/admzip-path-overwrite.yaml:3f7f79845877828f87e72b81326e6a90049bd8ea
file/nodejs/express-lfr.yaml:cec2babe3b1d46416ec358ed00a5cea450531c13
file/nodejs/generic-path-traversal.yaml:49895d260bb6da86bd36dde6553265963cc62db0
file/nodejs/tar-path-overwrite.yaml:808bfb6e01cd171e02b4d907f42218ba83672aca
file/nodejs/xss-disable-mustache-escape.YAML:41cfa7374491275b7b6b7679f35aa27be5d0e6a3
file/nodejs/xss-serialize-javascript.yaml:6bc41b15fa7c495e0a90c588fdbb57e36ff2c902
file/nodejs/zip-path-overwrite.yaml:5957c54cf4b8885a0c1d5d3a0bb25357ac6f07f1
file/perl/perl-scanner.yaml:ca5cfa3bae68e00b77dc73989a6331995be0b54a
file/php/php-scanner.yaml:bc0232813f7fcf4ea23d20cb004ee2f992cc6745
file/python/python-scanner.yaml:d91e41fbe073a45d4317fc768a1dd15677cae33c
file/url-analyse/url-extension-inspector.yaml:181b3e28af725db58507c978029f719d89da302e
file/webshell/asp-webshell.yaml:b0284098b274456c7e028cb788afd9bd26bc30ae
file/webshell/jsp-webshell.yaml:4c5f4d1c414c8b7fba63db4651565ec747b3b015
file/webshell/php-webshell.yaml:c33fb686c46b8211a18eaae52f0444bb73a107f2
file/xss/dom-xss.yaml:bb3cdfdfcbdf7e6a0e232a404a55437aa5d0b7c1
headless/dvwa-headless-automatic-login.yaml:99a6c2734ab061798627d79fda8ee538aa6060a8
headless/extract-urls.yaml:c2ff7a092991c2dee191e84ba4129270aacc8914
headless/headless-open-redirect.yaml:fce51453e90f451d7f3186b14de2ef4b8245b072
headless/postmessage-outgoing-tracker.yaml:38d7ea38b0521a7ee3cf78db660b5ae923d1a54e
headless/postmessage-tracker.yaml:bf39bc73b73f1bf0636383612db9fce761356c5e
headless/prototype-pollution-check.yaml:c85aa05e1a2c587844f9566e736b4ba2d3adab9f
headless/screenshot.yaml:1585b66950685872280283ade0edded290564340
headless/technologies/sap-spartacus.yaml:f2f2a580fbb037bdca1c90d7297892128bae9da5
headless/window-name-domxss.yaml:5bd4634abe5103ab0b60740d28c1763545a40f0a
helpers/payloads/CVE-2020-5776.csv:bb017fe08ae985c23145f7b69aab97cdffbbd8aa
helpers/payloads/citrix_paddings.txt:e88ad6e71d7fd4544e8efb87641083d630b1a7da
helpers/payloads/command-injection.txt:409a63a78f9f5a463437042971912fa06e4135bd
helpers/payloads/request-headers.txt:b85d7c53290237323b5374416fbec07237941aa9
helpers/wordlists/adminer-paths.txt:2ac24141ad5f28203b9ca35719bd51f39381aa36
helpers/wordlists/grafana-plugins.txt:0621c38f856c64ac8c96e53b96bc90881fe35704
helpers/wordlists/headers.txt:2effcf74fe0332b242c98df1f50f774c556746d6
helpers/wordlists/mdb-paths.txt:c380943cfa8a337ccb1ea38062e2856924960f1a
helpers/wordlists/numbers.txt:8084f0f10255c5e26605a1cb1f51c5e53f92df40
helpers/wordlists/prestashop-modules.txt:ae73ac19d088b28a943e8a9ce98ab4461e4dc029
helpers/wordlists/user-list.txt:0a02b5896b67f5ed213b6d8bc051c79cd1b9457a
helpers/wordlists/wordpress-plugins.txt:916cc826b793c7afad2208b2fd46ea2cb752dec5
helpers/wordlists/wordpress-themes.txt:3424134fa69db08604545ecf1441cf6330bf0982
helpers/wordlists/wp-passwords.txt:dd36d46539d71aa9d1ecbdc83c7b74b931986d56
helpers/wordlists/wp-users.txt:b07f7f79b1d6ed1832e37e1d3feea3fd2bfb764b
helpers/wordpress/plugins/ad-inserter.txt:38bc2a6cfb847a70c262d12fd660360636325415
helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/admin-menu-editor.txt:4572917cbde34e4ba98ab9a65059efd81be6594b
helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7df
helpers/wordpress/plugins/advanced-custom-fields.txt:cffca9b2145cbe8b44269c74219f807eace99c3e
helpers/wordpress/plugins/akismet.txt:e710dd44fa12f98194f8bba2bb20cba7bee18ff6
helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f
helpers/wordpress/plugins/all-in-one-seo-pack.txt:bf1d607adfeedd476ba3e3fba79a756e25035222
helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc435f3680b17d2a
helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f
helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57
helpers/wordpress/plugins/antispam-bee.txt:3b6c0ae2aec55040eb96fc7234870be51b6064b6
helpers/wordpress/plugins/astra-sites.txt:42aae5955584904bc2d13eabc3cf07107b276398
helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711
helpers/wordpress/plugins/autoptimize.txt:661ae89c9a4b16c450c2a094d410c4ee74719cb3
helpers/wordpress/plugins/backwpup.txt:063ee00ca80d81e068dd404b59ceb2a03b2e7109
helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/better-wp-security.txt:ddc49152d337977df228a63c029f8c815c822ce2
helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53
helpers/wordpress/plugins/breadcrumb-navxt.txt:3eebc7c9c53af6e2c8a91094b656f824a4b7150b
helpers/wordpress/plugins/breeze.txt:7277d832c4a280d1c4cd0f4bf3169bf93d46d49e
helpers/wordpress/plugins/broken-link-checker.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
helpers/wordpress/plugins/child-theme-configurator.txt:8e805063c85859847271163a1c51e5865e460aea
helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f
helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693
helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:a81ab9d3802932cf95bd34d57f3554c73559eeae
helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1
helpers/wordpress/plugins/cmb2.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62
helpers/wordpress/plugins/coblocks.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4
helpers/wordpress/plugins/code-snippets.txt:c02807771e1a750f51754b3494db53c68a5a7d94
helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/complianz-gdpr.txt:b12395a5190cbd66359bb94c3f32f0635e3c1544
helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
helpers/wordpress/plugins/contact-form-7.txt:77526ddfb1469f41739fcab554059141c36d9329
helpers/wordpress/plugins/contact-form-cfdb7.txt:c6802dfc6ada46af8820db93c237d00787bd441c
helpers/wordpress/plugins/cookie-law-info.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4
helpers/wordpress/plugins/cookie-notice.txt:6b67ce6c1930ff8e1d5003aeb8218f8fbdd4e6d2
helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:5c09cf3589e93781df4d59ed6b5a5d6207e2929c
helpers/wordpress/plugins/custom-css-js.txt:40c77b21aca06ae8ad4f43edd798f21a5571e995
helpers/wordpress/plugins/custom-fonts.txt:d1325bb186bd83303245e504f7c6eceae7f19e44
helpers/wordpress/plugins/custom-post-type-ui.txt:6f8ae49c8330db0117068d4ee1b0515e49b98212
helpers/wordpress/plugins/disable-comments.txt:885717c949656aacb397735714a117bba20af139
helpers/wordpress/plugins/disable-gutenberg.txt:bdc1408a91f161dab5a9893d23db3c7095200e1d
helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9
helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e
helpers/wordpress/plugins/duplicator.txt:098abf50b35f199f6665ef82fc20ed1ed860018a
helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:c70da539b9e83a50bb70013e6a5cb6e9d4623d5c
helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d0362ed6
helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae
helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/easy-wp-smtp.txt:32fecb37588747cdb8227230edc41ff2ca6557e1
helpers/wordpress/plugins/elementor.txt:62e1d33b9ac0a52b10c98ee1ecbade79436203f4
helpers/wordpress/plugins/elementskit-lite.txt:40d69a31b1f9d238ca1c38a357e6846c514e2e9f
helpers/wordpress/plugins/enable-media-replace.txt:36442478f1f952d62cb89e1b634d5937a7d2863f
helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6
helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:bd82642fcdbb4b8deecdafa23ae0de55f979eb2e
helpers/wordpress/plugins/ewww-image-optimizer.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3
helpers/wordpress/plugins/facebook-for-woocommerce.txt:98f2be81dca85d834586d9f281c4849476edffb2
helpers/wordpress/plugins/fast-indexing-api.txt:7fc90060ab7493dc709f0e0cbc6ae3ca7204a614
helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/flamingo.txt:98a16af997b52cb888232ab5d79a527b0716561c
helpers/wordpress/plugins/fluentform.txt:f895a9e27c38f0528f64c2fa5b6072dceb0e4e27
helpers/wordpress/plugins/font-awesome.txt:4cb6b226aa8498265c8ea84adcf05e5e168e17c1
helpers/wordpress/plugins/force-regenerate-thumbnails.txt:5b7155a36d36681935655d772bbc981bc2393fa3
helpers/wordpress/plugins/formidable.txt:8f2885526d8144ff6d537a7c072cbed12891cf6e
helpers/wordpress/plugins/forminator.txt:bf6e9553dff13b7e82ad8cd7897d9437509f8773
helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe2e17de1bc9
helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e954feb69c7c36
helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8
helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31
helpers/wordpress/plugins/google-listings-and-ads.txt:89941265e418c7729912b574c9b29eff77c5b172
helpers/wordpress/plugins/google-site-kit.txt:1ea542c4af360053318955743814486207238bc6
helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61
helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5
helpers/wordpress/plugins/gutenberg.txt:b987da06f27582a0a441e2568c45f3e3f9f47618
helpers/wordpress/plugins/happy-elementor-addons.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761
helpers/wordpress/plugins/header-footer-code-manager.txt:1653860f5bc7d2d43d6254c11488c4469d9db444
helpers/wordpress/plugins/header-footer-elementor.txt:bce6b7cb2b4348e7bc107654aaedf6662b338f4c
helpers/wordpress/plugins/header-footer.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317
helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc
helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb01716
helpers/wordpress/plugins/host-webfonts-local.txt:2d8d7a2994b4a941f25864496a40e7be21769689
helpers/wordpress/plugins/imagify.txt:d24fa45ca77f079cc359c97272276969e6aead2c
helpers/wordpress/plugins/imsanity.txt:8833d6b9ff65739ec437d2754b9fc885e202a555
helpers/wordpress/plugins/insert-headers-and-footers.txt:32fecb37588747cdb8227230edc41ff2ca6557e1
helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/intuitive-custom-post-order.txt:2aa887540d97ffa062fa8604e7ecde642f7080e6
helpers/wordpress/plugins/iwp-client.txt:9f028fa080dca632a19e807c2a3570f67ae71de3
helpers/wordpress/plugins/jetpack-boost.txt:d24fa45ca77f079cc359c97272276969e6aead2c
helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c
helpers/wordpress/plugins/kadence-blocks.txt:76352622a937abb841a04340015012a42290add0
helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa
helpers/wordpress/plugins/leadin.txt:78702f4ab9863ce2deba27117b027181e59b6e3d
helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4b37c29fba8babd654bfb5f26219010dd1bf03f8
helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/litespeed-cache.txt:a2246273db175b4d951c8ae09a9b87d55b422463
helpers/wordpress/plugins/loco-translate.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8
helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b
helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92
helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937cdd40d38
helpers/wordpress/plugins/mailpoet.txt:92d82db05edd26b434ac5026c2bc3a9270d079d3
helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924
helpers/wordpress/plugins/mainwp-child.txt:4fd5e5d395c7cb4645820b58e23fdf6fe34349ab
helpers/wordpress/plugins/malcare-security.txt:24e26a42407173a638a100c03fae8fc56d72c5e3
helpers/wordpress/plugins/megamenu.txt:157d4751f6fc258dd2244da6c46a957ae64e4258
helpers/wordpress/plugins/members.txt:237c8767860dc44f0f30057d25e9143e3d0b425f
helpers/wordpress/plugins/meta-box.txt:1f35081e09d2a2ed9d9cb39777ed8121a68d0cee
helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0
helpers/wordpress/plugins/newsletter.txt:14665694dff2d37ef9323cf70015fe0466bea9b2
helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655
helpers/wordpress/plugins/nextgen-gallery.txt:7ca6257a3f05a3a6b604fd5dae8af8c1b41b8e0f
helpers/wordpress/plugins/ninja-forms.txt:2aee11d7a9ddfedc94e7fb36aefcf9174d34d88b
helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f
helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643
helpers/wordpress/plugins/one-click-demo-import.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8
helpers/wordpress/plugins/optinmonster.txt:efeb47fd41d5443772275287ca2523cab8bc0139
helpers/wordpress/plugins/otter-blocks.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
helpers/wordpress/plugins/password-protected.txt:5f099bc6f95ad230bf3e17b9745270e13ee50606
helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58
helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6
helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308
helpers/wordpress/plugins/pinterest-for-woocommerce.txt:4119e202faec947c57ff360c949b277fd6c29cd4
helpers/wordpress/plugins/pixelyoursite.txt:f358a15cc523a1f31429fce832dc8c0c554fc41b
helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0
helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7
helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe
helpers/wordpress/plugins/post-smtp.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7
helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b
helpers/wordpress/plugins/premium-addons-for-elementor.txt:fba90fa57ee2b5dbb2faec1c33e96813ccb14fd5
helpers/wordpress/plugins/pretty-link.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea33a
helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e
helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af12
helpers/wordpress/plugins/redux-framework.txt:344b5cffb3c634589e6cd6bc3a7f10de5354fa39
helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4
helpers/wordpress/plugins/safe-svg.txt:595d550379b2cb8bccb9659627308ff4e751d23f
helpers/wordpress/plugins/seo-by-rank-math.txt:a43557d2fb8277db824695f3e651c31ef604fac4
helpers/wordpress/plugins/sg-cachepress.txt:9c381dd6bbe0788e8717d7adc6b2f8b8d3687aaa
helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4
helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3
helpers/wordpress/plugins/shortpixel-image-optimiser.txt:4f019608acb19092704e77b812587f75a4baed71
helpers/wordpress/plugins/simple-custom-post-order.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6
helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd
helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410
helpers/wordpress/plugins/siteorigin-panels.txt:1a8a7a8a850823dcb9e92b6dc055d88b65330f21
helpers/wordpress/plugins/smart-slider-3.txt:2cddd46563a1ae6eca28eb577f99025fd04568f2
helpers/wordpress/plugins/so-widgets-bundle.txt:6d762cc150e79ef408e1a9b5423c21aeb1d73f5b
helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53
helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84
helpers/wordpress/plugins/sucuri-scanner.txt:223960ccc78aab169c55e54fb7d9ed6bf1fd29d9
helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172
helpers/wordpress/plugins/table-of-contents-plus.txt:40bf252ebc68d2921a7e909064c29fd95a1820fb
helpers/wordpress/plugins/tablepress.txt:5f6af51e77b84cd6616d4eaa100a736096568d86
helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c2f0318fc0f9
helpers/wordpress/plugins/the-events-calendar.txt:da12d3bdce91425575a83cf92ced2c2e796b4046
helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940
helpers/wordpress/plugins/translatepress-multilingual.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e
helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:14507aa9246588cbf1725303a1878c660615d91a
helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f
helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d
helpers/wordpress/plugins/updraftplus.txt:ef52ef5de56c32d1410d7eb141c26ff4e9fbe4b4
helpers/wordpress/plugins/use-any-font.txt:051efab22f2c58c6d458654f9abb0b0648c4743d
helpers/wordpress/plugins/user-role-editor.txt:e4dcf50721abd61e4b9d3234623bdf059936514b
helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264
helpers/wordpress/plugins/w3-total-cache.txt:51ddbf27bf181d542a23643649c61739795a6771
helpers/wordpress/plugins/webp-converter-for-media.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c
helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:a9d2178a3e60db128675c6658f16be3165b8e0f1
helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6d698b8798743668826bd
helpers/wordpress/plugins/woo-variation-swatches.txt:08d2e98e6754af941484848930ccbaddfefe13d6
helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155a36d36681935655d772bbc981bc2393fa3
helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:85e58fba8dcfa56b29939775178a4af11946316b
helpers/wordpress/plugins/woocommerce-payments.txt:f96eaecad7005b860741ecc59d4835f7428015fd
helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87
helpers/wordpress/plugins/woocommerce-services.txt:17b06b2486a051055e43ae1127e87196d505e2f3
helpers/wordpress/plugins/woocommerce.txt:64d44d34deaede28573d0e54fa7745978d9d2bd7
helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da
helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1
helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8
helpers/wordpress/plugins/wordpress-seo.txt:813eb0113a2a5b9f5219e1d0563a0b2af5fed4d6
helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
helpers/wordpress/plugins/wp-fastest-cache.txt:ff3f1d7d10cbdc5507eb5d03d8f7d10b89642646
helpers/wordpress/plugins/wp-file-manager.txt:9d90f00e19f5543904caf9ab2abd5b800e0613c0
helpers/wordpress/plugins/wp-google-maps.txt:7351876974e6ca881692e0a333a7d1724293977e
helpers/wordpress/plugins/wp-mail-smtp.txt:27e1606dc0a2a0c2fa59fc7f5fefdaeacc0b2794
helpers/wordpress/plugins/wp-maintenance-mode.txt:d3a5debecb62b3b70bbb48d3756a5239e112bc34
helpers/wordpress/plugins/wp-migrate-db.txt:591d71e97a25db692c2f038dbb7d616569b743f4
helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd
helpers/wordpress/plugins/wp-optimize.txt:a80f092daaa12261340a5e337b2b07581bbb7e67
helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f
helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a
helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d343c69967f4ab0a58418b4f52fe9d4c4e39841f
helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad
helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c
helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5
helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c
helpers/wordpress/plugins/wp-statistics.txt:3bf7ffbc26b9cc11db0363f3cac17c05f5b47aff
helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab9cf7e
helpers/wordpress/plugins/wp-user-avatar.txt:88c9e71b6f0f80feda9e73aae625459cce73b1b8
helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe
helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0
helpers/wordpress/plugins/wpforms-lite.txt:2269ecf858a6c42d0d3451e7a6857f7331e60f35
helpers/wordpress/plugins/wps-hide-login.txt:79eec5c95867be248c5b70dc82c95d33a9b7ef10
helpers/wordpress/plugins/wpvivid-backuprestore.txt:61e0e2ed7647753ca89ac40eac19b4f93c5aad71
helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875
helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:0efd87bba254789310048c75b76741c3d4f154d6
http/cnvd/2017/CNVD-2017-03561.yaml:74103420668209b795d1397008e67affd3e0856c
http/cnvd/2018/CNVD-2018-13393.yaml:b936c60ce1fa7cd38b10597e9038dcb05692bf7c
http/cnvd/2019/CNVD-2019-01348.yaml:4bef313f2d9d68a895af773006cc2fe7de376b7b
http/cnvd/2019/CNVD-2019-06255.yaml:89f70d08a4c61f8c89535140381c4184626ca371
http/cnvd/2019/CNVD-2019-19299.yaml:a622ec21bdb1ee06411960843f471dc9e170b960
http/cnvd/2019/CNVD-2019-32204.yaml:fa3186408d0a902bcc62cac066453da38ca0c643
http/cnvd/2020/CNVD-2020-23735.yaml:1a0787f1c8d99f31bd88c355153de31c00795edf
http/cnvd/2020/CNVD-2020-26585.yaml:69b9ef8b2e36a4dd6cac04a804e56e5ac5c2adea
http/cnvd/2020/CNVD-2020-46552.yaml:07ea9acd80bf0e367e25842f31a658595249aa08
http/cnvd/2020/CNVD-2020-56167.yaml:badec400104a1b9d7c090891cd06a8d930b2f340
http/cnvd/2020/CNVD-2020-62422.yaml:39f09d38d49dd0a4dc3cf941fdb2dade7375e3c2
http/cnvd/2020/CNVD-2020-63964.yaml:c80ab1148d417f0566d0bcb096409bfed16c3e2e
http/cnvd/2020/CNVD-2020-67113.yaml:125380bb3846086007f7d7521094f7aec17d73df
http/cnvd/2020/CNVD-2020-68596.yaml:aa47080fb9eb81f2dee9dbdfac915bfe1b856f9b
http/cnvd/2021/CNVD-2021-01931.yaml:ec84a4fb254c5750134cb1a6c5b5ec0c7e591b86
http/cnvd/2021/CNVD-2021-09650.yaml:8ab65c5b630b867bf38133463df206892c92e156
http/cnvd/2021/CNVD-2021-10543.yaml:82901afd8b28bf10c38eba7ea93bae350457d73b
http/cnvd/2021/CNVD-2021-14536.yaml:5decf87ca7f57a202c9c9d0d80a63a7f0970a8b6
http/cnvd/2021/CNVD-2021-15822.yaml:d6c06f0b1dfafbe22f3f873989f42a51d463f9a4
http/cnvd/2021/CNVD-2021-15824.yaml:667cb31a789ee9fcd4251c1fe78f8f800595f659
http/cnvd/2021/CNVD-2021-17369.yaml:65beb26738c0a7a0b7ac10a854f9fd6650ccc084
http/cnvd/2021/CNVD-2021-26422.yaml:7aaf1149908731caaa93d8e0fb1e0eca9530051c
http/cnvd/2021/CNVD-2021-28277.yaml:524a90b6c3bf5c2bb0b4dd821d384f1f98c80765
http/cnvd/2021/CNVD-2021-30167.yaml:4eb3fbb771c370b1e9d8f31b76c3b79a892779dc
http/cnvd/2021/CNVD-2021-32799.yaml:dc6666e59b2a35994e6ab5a22173f52c27a6d2cc
http/cnvd/2021/CNVD-2021-41972.yaml:f254fd8ba373fa95a4744b259048d692ef081572
http/cnvd/2021/CNVD-2021-43984.yaml:a02d85fe2f67fe05c67462dbea8fcb7dedcbc2cc
http/cnvd/2021/CNVD-2021-49104.yaml:e676d4620da1cd57bc021c49d3d7c7821eada127
http/cnvd/2022/CNVD-2022-03672.yaml:e10e6a3a8c0c9527e640fcca1655186f039ce3e9
http/cnvd/2022/CNVD-2022-42853.yaml:b09d41d36a02b364b40898c724386b30d575af2f
http/cnvd/2022/CNVD-2022-86535.yaml:9dd03071fc9795f7ae4d99c59b3fd5342f5a5c70
http/cnvd/2023/CNVD-2023-08743.yaml:1af1612ebc8033360c527b5a94c5e5276aac06ad
http/cnvd/2023/CNVD-2023-12632.yaml:ceb1220ec85f8ba6607052d3ab2c9be79bd1a429
http/credential-stuffing/README.md:88a738a7af33e930f046a6681114389b2f341fa2
http/credential-stuffing/cloud/atechmedia-codebase-login-check.yaml:e265b0ef4cad374b888878d8ebe4cd4bfb3a4c2e
http/credential-stuffing/cloud/atlassian-login-check.yaml:fdc2a219979a9c538febf42cd8170a6cd8f2eabe
http/credential-stuffing/cloud/avnil-pdf-generator-check.yaml:d260b795575b4cc762389acdcc22b7a78c195371
http/credential-stuffing/cloud/chefio-login-check.yaml:fe52c6e32c4361af2d0fa119b64945fa171526aa
http/credential-stuffing/cloud/codepen-login-check.yaml:07e5a66274daceb69a9b392033cc77d4dddeea6b
http/credential-stuffing/cloud/datadog-login-check.yaml:59e96cfaea16ada436330973c1a1e6b5e3bd73b9
http/credential-stuffing/cloud/docker-hub-login-check.yaml:7d7f155bb61aefd33650e7aa104353b1abd61fcf
http/credential-stuffing/cloud/gitea-login-check.yaml:06cd8b61171eb7dd4607ef984a61170ae6383645
http/credential-stuffing/cloud/github-login-check.yaml:6db38de3986e34e5decff0121b9c2cfd91d9026a
http/credential-stuffing/cloud/postman-login-check.yaml:52977264ef5a4e68cc844313aef25fe6667b5156
http/credential-stuffing/cloud/pulmi-login-check.yaml:02e294ce7b26d5732d8fc396fc12684e9dea1e4e
http/credential-stuffing/self-hosted/gitlab-login-check-self-hosted.yaml:a5c13b905ce766747d75254fb82d122c8bbbe70d
http/credential-stuffing/self-hosted/grafana-login-check.yaml:3a3891cc6d5dcf12b812bc128a41388883bccc48
http/credential-stuffing/self-hosted/jira-login-check.yaml:906c5a83678bc47a75c5aa5a32925b70d24b804e
http/cves/2000/CVE-2000-0114.yaml:7986ab520471d2a5112387c04bbe34502eedaee6
http/cves/2001/CVE-2001-0537.yaml:684d968653d3ca2d1bd80988757e97d889675dc3
http/cves/2002/CVE-2002-1131.yaml:3ea1cddb7f10d31c238cd3f9afc70e8fba4edc80
http/cves/2004/CVE-2004-0519.yaml:3cb991ff94e0d1f2568bcf5cedad19b5e23190cd
http/cves/2004/CVE-2004-1965.yaml:8795cc5334701433633da3210063bae8ac9ebcea
http/cves/2005/CVE-2005-2428.yaml:f09a0137d79f2ec0c805db2e553eec8b1eac0f49
http/cves/2005/CVE-2005-3344.yaml:682d4c8c14407ec9846d463c10537dcb0c06b438
http/cves/2005/CVE-2005-3634.yaml:15bcb0a531ad200bbbc77b4475c3e77e92dc1c7f
http/cves/2005/CVE-2005-4385.yaml:ab2caa04a9f2484564b5415373e12f4896e3e884
http/cves/2006/CVE-2006-1681.yaml:22a4cb9f05bdae530895b454b195585316096992
http/cves/2006/CVE-2006-2842.yaml:91b5841a1cc84bd1de5c19abbfbe49b23079c6fc
http/cves/2007/CVE-2007-0885.yaml:c77fa82c913ae7cb5e33f7088505953ba6c35cb7
http/cves/2007/CVE-2007-4504.yaml:4b0405dbdfb4c50b3eb39b6280eddc720964f74b
http/cves/2007/CVE-2007-4556.yaml:508b8ab81b0e34e80ff5ac62af75795ce56688ac
http/cves/2007/CVE-2007-5728.yaml:b2d5b723fb89c46b2c67d0383945c1a023c7c1e6
http/cves/2008/CVE-2008-1059.yaml:49ee404aa3aa4b2e08b2ecc581d81748c5aaaf39
http/cves/2008/CVE-2008-1061.yaml:9ca0cccab87ce5972977914a027c64c29cda7dd0
http/cves/2008/CVE-2008-1547.yaml:42191a44e34a9ec460e08b8523ec90204f57824c
http/cves/2008/CVE-2008-2398.yaml:bb8f6c7cf5153854f0fde9f85190faef8aeb67ac
http/cves/2008/CVE-2008-2650.yaml:db392a84ebf5b025b5f9519b72b2e20e7ba0162c
http/cves/2008/CVE-2008-4668.yaml:b44ee9ae90d2c9cc6eff17701b3ea58ea8aa24fa
http/cves/2008/CVE-2008-4764.yaml:22519d608aaef9a2ffb5811eacd4b72b33c78bbc
http/cves/2008/CVE-2008-5587.yaml:17511af1d032b0fbd8e6af5547b2f6e71b75d99e
http/cves/2008/CVE-2008-6080.yaml:6ea691d57aff56756fb250c4b59262518f852683
http/cves/2008/CVE-2008-6172.yaml:978ea5199d640b2fe83ec8e57e20e4e4168dc4f0
http/cves/2008/CVE-2008-6222.yaml:a122c1d433a48600c95ce0d4d22e1b9e578439d0
http/cves/2008/CVE-2008-6465.yaml:0ce4cf448ee88afb7e9ead11b5357f822edf2644
http/cves/2008/CVE-2008-6668.yaml:5ab1457a450aa61b24b4a10819b3124fd6b6f358
http/cves/2008/CVE-2008-6982.yaml:899789e6ac96b49651359b4e75fde6c0377a2330
http/cves/2008/CVE-2008-7269.yaml:9d14fd5400ea254b2e097e08264bebbfb4a9113c
http/cves/2009/CVE-2009-0347.yaml:160ae96ecba13c5a6200c4754348daa3b9f2faed
http/cves/2009/CVE-2009-0545.yaml:326435c9b1bbda25a9a6860837d1450828988407
http/cves/2009/CVE-2009-0932.yaml:c3e3b8654b6887b2a529db0f172231f29b5ccb8d
http/cves/2009/CVE-2009-1151.yaml:e203af6dbdaad48caa9b24d7b437717eade70985
http/cves/2009/CVE-2009-1496.yaml:f42e42b670e5c4f92af59a153e1b95637aab7de8
http/cves/2009/CVE-2009-1558.yaml:9a65040d36f58c6500e99923c85ebf6f4019ee80
http/cves/2009/CVE-2009-1872.yaml:ec7158e2bbc0bfb4b8eaada831058bf4e1258fa8
http/cves/2009/CVE-2009-2015.yaml:f4167ff28d8512a8b4fd36c0f4288d25b5adcaa0
http/cves/2009/CVE-2009-2100.yaml:eaaf2cb3e24238816bfe4ef93ff65ee7cf0b1bf3
http/cves/2009/CVE-2009-3053.yaml:be2b5ec43159207d00746f097c8ee1da66221172
http/cves/2009/CVE-2009-3318.yaml:3f94f43b662b55321ffa71fce26b04054fe03832
http/cves/2009/CVE-2009-4202.yaml:f93b9fcad96e84f0ce07997ae4ed7f069017a99b
http/cves/2009/CVE-2009-4223.yaml:ac4369fd879815ff486f835978e8cd639f3931c6
http/cves/2009/CVE-2009-4679.yaml:bd8ff06cf0d858eda594092d6fa2198c6f00fb58
http/cves/2009/CVE-2009-5020.yaml:0829887b08aa18187a1e8e0881da215bda683fe8
http/cves/2009/CVE-2009-5114.yaml:bc1da5d51783695c5de927979595156f4d796b2c
http/cves/2010/CVE-2010-0157.yaml:9791175c8a2d97ecc5d1dcacaaa3927c2529acdb
http/cves/2010/CVE-2010-0219.yaml:60d9d71b5b2843b47a3105ebca2990b6495f6a8e
http/cves/2010/CVE-2010-0467.yaml:821ba33328d83b2abad7345a9bd1891f0936e475
http/cves/2010/CVE-2010-0696.yaml:7116ea6d3c3364573b7bc9fb7b4c1bfd131be33b
http/cves/2010/CVE-2010-0759.yaml:db75e2e9d96121841e151f8e939516ad0964064e
http/cves/2010/CVE-2010-0942.yaml:9834db760c989ff29ca411cf9c2039ed4016909c
http/cves/2010/CVE-2010-0943.yaml:6615878a23b4c7b7926e2ca2ee16e375cacc855b
http/cves/2010/CVE-2010-0944.yaml:9926ddcc3f8edc3e94f790d96cb846cd0bdb5ff2
http/cves/2010/CVE-2010-0972.yaml:85a53f55f459451b39dd070b243055c135e70e2b
http/cves/2010/CVE-2010-0982.yaml:e53917ceb3c28732e341a994d189d4051174254c
http/cves/2010/CVE-2010-0985.yaml:1b9c4cc69e604f28a83680286d9bfaf806b39580
http/cves/2010/CVE-2010-1056.yaml:3ec1c1b703922e30cd8b3ecd6f35bba6967af79d
http/cves/2010/CVE-2010-1081.yaml:060117c29d069e5f57dae24a8c56630d202ceae4
http/cves/2010/CVE-2010-1217.yaml:43126e2098ec63fe36fc8853bc279f5fb734e9f3
http/cves/2010/CVE-2010-1219.yaml:0da0dedc4562aacd9334e811a80c3d8134e4b09a
http/cves/2010/CVE-2010-1302.yaml:293238b004c1be1c1ce042bd66ee05938baed0ee
http/cves/2010/CVE-2010-1304.yaml:87a26ef92b89c954329272e026e39579f6ddbb19
http/cves/2010/CVE-2010-1305.yaml:7ec6247050fbe690b6c593657fe5ec0b291db026
http/cves/2010/CVE-2010-1306.yaml:42dd35f3256770f225ae13d023bdac61087d4cf1
http/cves/2010/CVE-2010-1307.yaml:dba32d1e732a727531a7698fdaa9b64ab70428b5
http/cves/2010/CVE-2010-1308.yaml:107879633313147fc9ed0b4d7e5a83955fab8f4f
http/cves/2010/CVE-2010-1312.yaml:a53e7da50c96f78c2d16a75291596cfe57329a7c
http/cves/2010/CVE-2010-1313.yaml:854d644094a39587643dac01d21ba259c99d44b0
http/cves/2010/CVE-2010-1314.yaml:54e091c5d0acb5bb96ec45d2a44340f16c70d170
http/cves/2010/CVE-2010-1315.yaml:ad6cfb9894d3bc86cde4af40c42797175697bc18
http/cves/2010/CVE-2010-1340.yaml:d72f0a049cb945fac1f1cee9b2871fb200c83a08
http/cves/2010/CVE-2010-1345.yaml:dd03e24926483a564c206b4cf9be7f672589eab4
http/cves/2010/CVE-2010-1352.yaml:1ec9f4a2413a5d14f5da44b87c44afe09b30e7f0
http/cves/2010/CVE-2010-1353.yaml:ba3a177661d2a49318223862e831740aaf02787d
http/cves/2010/CVE-2010-1354.yaml:72ebd5ae43230aeeb79a0dfce2f6ed348c7d3660
http/cves/2010/CVE-2010-1429.yaml:5b04c1eb188852725a4937bf6a7bde68912dcafe
http/cves/2010/CVE-2010-1461.yaml:8d8f1046e82e4b1cd25a9db5caf24c2422aa9c85
http/cves/2010/CVE-2010-1469.yaml:0f82926b7a40ae6a7d69127b0eab1b7aabcbb663
http/cves/2010/CVE-2010-1470.yaml:3e79f37deca242db6a8a3a4fd34cbff6c43381e8
http/cves/2010/CVE-2010-1471.yaml:b95f68a1ad9ab059656bd44060519df9b9a33d3b
http/cves/2010/CVE-2010-1472.yaml:58c99734eacb837b912951ec56db116a10804848
http/cves/2010/CVE-2010-1473.yaml:16acf4fc7d7e705f6fe4cfa4f4abc86a4e2c8575
http/cves/2010/CVE-2010-1474.yaml:edc1cf80c87bf32bf10402c3d447018ffc5dd730
http/cves/2010/CVE-2010-1475.yaml:74330140a5b6fa855b5b39b90e833de2da36d30c
http/cves/2010/CVE-2010-1476.yaml:a29a974a2355882f4b240564f59b497471a75bae
http/cves/2010/CVE-2010-1478.yaml:14cd7a59776bfcd12e6e81c59300f08aafd9e959
http/cves/2010/CVE-2010-1491.yaml:1924f85b9bbe77b53e1caa0bf1e0e2d55a48ad29
http/cves/2010/CVE-2010-1494.yaml:e752951d77e0667bccfc284b074e62fbd899a714
http/cves/2010/CVE-2010-1495.yaml:b5f2b4ee81797b5fcc793530d45098a55bb74146
http/cves/2010/CVE-2010-1531.yaml:8ef5b74089ade45fbea78bbbffe0b1d2ad5952c5
http/cves/2010/CVE-2010-1532.yaml:94bf2c4fb22ef01e1449ce3032eb6b39eb06fbf8
http/cves/2010/CVE-2010-1533.yaml:1874adf300f48337fad38b68c691aaacfefd333d
http/cves/2010/CVE-2010-1534.yaml:c5d248d42b7440df7561dd10a637c799a8f5115b
http/cves/2010/CVE-2010-1535.yaml:5625c3965fce2e21639d003bfb6b5741bf39fe55
http/cves/2010/CVE-2010-1540.yaml:d13a5d3a39cd09544c269beef8eed843f832d04b
http/cves/2010/CVE-2010-1586.yaml:0cd63171ff06eeebcb975d615b1ae49a00a71832
http/cves/2010/CVE-2010-1601.yaml:e1cf2f7c90716d6a0283d7427604018efceb29f5
http/cves/2010/CVE-2010-1602.yaml:942d9313f407313e1ec13063e48c686997942cb4
http/cves/2010/CVE-2010-1603.yaml:3830392b56910a2aebe5d1bca87c440b57e2ded5
http/cves/2010/CVE-2010-1607.yaml:2c52fa8326f334069ebc69cb89addeffb90adc1d
http/cves/2010/CVE-2010-1653.yaml:d7196b19e0e2114fe2506b2d58d0c5c1358b4852
http/cves/2010/CVE-2010-1657.yaml:9237eea0d378dedc1a587b93c3bcbf099f0fc9cc
http/cves/2010/CVE-2010-1658.yaml:e0ea72dba001636822e01fc41d2bfd9efef93d70
http/cves/2010/CVE-2010-1659.yaml:8017a24068afb7ef4bf5ea7d552d2b53e50b117c
http/cves/2010/CVE-2010-1714.yaml:dadca087213f99875a80ad64123ed27ff150d961
http/cves/2010/CVE-2010-1715.yaml:ebd482906b8bdd1b915d80717cebc5379f880cfb
http/cves/2010/CVE-2010-1717.yaml:19f7321486b1a3ffb3dea0759eb787ab762a6d18
http/cves/2010/CVE-2010-1718.yaml:35d8e629acc174f2d47291ed662f39e3375fe465
http/cves/2010/CVE-2010-1719.yaml:84cb84e662d1f4e3666fd7b731d9414ce123d49f
http/cves/2010/CVE-2010-1722.yaml:ff45f4425c36c2910ab6c7893d55735d04861a82
http/cves/2010/CVE-2010-1723.yaml:f3ac2505c2cee7420d5192f3f5c0b32e211abf44
http/cves/2010/CVE-2010-1858.yaml:eb5d4f0926fa102ffa86e1d18cb6d623a361dcb8
http/cves/2010/CVE-2010-1870.yaml:724628c4005b16aad6600dd97261368e761c445a
http/cves/2010/CVE-2010-1875.yaml:b34748e23c5f6d6cc1f9176e7a5d96c90845aba7
http/cves/2010/CVE-2010-1878.yaml:408923e5d7826dc96df7fb831bd919be2623f348
http/cves/2010/CVE-2010-1952.yaml:f7cbe49630ef6ab040d8171487dfef739d3d5cc3
http/cves/2010/CVE-2010-1953.yaml:98f6ddf5a5b67c7a4e8f0a5c536780ba1162acb2
http/cves/2010/CVE-2010-1954.yaml:f509b3316ca5758a375fca2ef12d55b20ea8f8de
http/cves/2010/CVE-2010-1955.yaml:fdc0a20eff91556c50d6a69f5633549056c72c4d
http/cves/2010/CVE-2010-1956.yaml:9035a357a24081f598a2d13381abb5a85f17d2e7
http/cves/2010/CVE-2010-1957.yaml:04076bf48e034e209f500eb757341be709e24a23
http/cves/2010/CVE-2010-1977.yaml:0f547381dc8dbc6dc402844cfecac5ec97e4de85
http/cves/2010/CVE-2010-1979.yaml:8aca3ebf39d71bd418c321a8ebe154191f5230f5
http/cves/2010/CVE-2010-1980.yaml:95fae94d044c46a8b4488bdafac3011382048a0d
http/cves/2010/CVE-2010-1981.yaml:827ea4bd371fec2073cce20838cc97efedc60918
http/cves/2010/CVE-2010-1982.yaml:9d36b0b7cb09a98b6a335e994e60a63570ccfc6a
http/cves/2010/CVE-2010-1983.yaml:e78cd12e64bae13349a8e28c59b2902a1a3f0f20
http/cves/2010/CVE-2010-2033.yaml:bbdcc2bc99d54540c64a464783d085e01b7736b6
http/cves/2010/CVE-2010-2034.yaml:5496097994a99d1a764b8471d0ca9b43274c0402
http/cves/2010/CVE-2010-2035.yaml:a5fc42a3623799a3bca1b897d78bf4f61fd2f9e3
http/cves/2010/CVE-2010-2036.yaml:7ccf2107885b2218fcf15cce48f82ad9b7be51bc
http/cves/2010/CVE-2010-2037.yaml:8d9cdfb7d1745298a751fc3de086b07014432ba6
http/cves/2010/CVE-2010-2045.yaml:0fd71d6f5febbd8e4bb9d1f6b4079d3c0977ae73
http/cves/2010/CVE-2010-2050.yaml:60ca778c4882b187134684a7b67a926aeb3a8157
http/cves/2010/CVE-2010-2122.yaml:6fda7522e438e79c9bcfd7204d9378f73ad56a82
http/cves/2010/CVE-2010-2128.yaml:56ac82e298fd943ded1032cb093b6cb1d748af3f
http/cves/2010/CVE-2010-2259.yaml:47b98277db8fe907c939871f2d1078ad72ad03ed
http/cves/2010/CVE-2010-2307.yaml:b12d89e9131642f537341688a741fb0d77c5b630
http/cves/2010/CVE-2010-2507.yaml:c6626e7abb25d94760d2d8f0876f6817e6e87cae
http/cves/2010/CVE-2010-2680.yaml:ca2e3458dc1e856a44f4ee00101dcc8a5651e9ea
http/cves/2010/CVE-2010-2682.yaml:efbf916e14eab5c0209655f735178a444687cc50
http/cves/2010/CVE-2010-2857.yaml:e9a412b32a9afbbcea65f4d02f4d00964856e899
http/cves/2010/CVE-2010-2861.yaml:3146e21f95f392d0c1d23e6d774864497242ef6a
http/cves/2010/CVE-2010-2918.yaml:44821c52bf57c90f9622164c7df7ec051b7053b7
http/cves/2010/CVE-2010-2920.yaml:f3f89d424cd9c36316fcf3edff1fd5c69945dad9
http/cves/2010/CVE-2010-3203.yaml:be1eb788f56e8862a0f7630fc5219b8969c996e5
http/cves/2010/CVE-2010-3426.yaml:e5401e35fe465597712b6c3a1d992da15d99f5ee
http/cves/2010/CVE-2010-4231.yaml:03516ec49ab54932797e88ba384784383f433343
http/cves/2010/CVE-2010-4239.yaml:c2fd33acf97db90c99f5b583594efc74f9eca996
http/cves/2010/CVE-2010-4282.yaml:d781bdfdb001724ab2402178e0f2fda9a8850c01
http/cves/2010/CVE-2010-4617.yaml:d589f246e76aa6d0a8bf83f135afdbe8a6d490c6
http/cves/2010/CVE-2010-4719.yaml:36dc52f8ccaeb3f561ba04aa323aa5e558245941
http/cves/2010/CVE-2010-4769.yaml:d5832f7a7e11917b38d5c2f8a33cec9e3489654a
http/cves/2010/CVE-2010-4977.yaml:c74c911931b63dc75b8ccc7376db38fb4452d1c0
http/cves/2010/CVE-2010-5028.yaml:70e8d7f011fd2011135cea29119b8598ce5a83fc
http/cves/2010/CVE-2010-5278.yaml:cfe473e5b3dd4d85f48309197eed75a3d33ca99f
http/cves/2010/CVE-2010-5286.yaml:b0b98be051112cfd4ab2a97a25b24ee88a8a2eae
http/cves/2011/CVE-2011-0049.yaml:1d4111e8eee6d040e02e6a53569bc50bae5c56f6
http/cves/2011/CVE-2011-1669.yaml:54498ef64f209a5ab4e6def8bcd6a0a4f4d066aa
http/cves/2011/CVE-2011-2744.yaml:7af78e3526d54563edfdd993abe3f3170f47e85f
http/cves/2011/CVE-2011-2780.yaml:84da38914baf8a87477acb0da70046105ab915ae
http/cves/2011/CVE-2011-3315.yaml:d661948d187582ea94d1a47abf4037995929ae36
http/cves/2011/CVE-2011-4336.yaml:93c330d3d7f96c86ad9ff7cd4099f2e634b1cf41
http/cves/2011/CVE-2011-4618.yaml:712d0b96601bf34fb109a12f70216c1eca840e9a
http/cves/2011/CVE-2011-4624.yaml:dc55c5a50281fffc0dd5e20abacb9ccce2f33bde
http/cves/2011/CVE-2011-4804.yaml:8f20c287147f1eb5929b730de7dba45204008046
http/cves/2011/CVE-2011-4926.yaml:ad66bbf5b553544ddd484d653c96b6f274733918
http/cves/2011/CVE-2011-5106.yaml:5b8957dd3464e114fe98cd319a1b0098960844f9
http/cves/2011/CVE-2011-5107.yaml:7128e825c89b23fe088bdf250f520293275eeec5
http/cves/2011/CVE-2011-5179.yaml:3007bedee85bf959cdc0deabef782cce30ae27a2
http/cves/2011/CVE-2011-5181.yaml:5d49fdc7b6293197117af8c6b2c73ca9268b3e13
http/cves/2011/CVE-2011-5252.yaml:777a90f34e8f28b8912f656ec2f28c162deb2350
http/cves/2011/CVE-2011-5265.yaml:9d9e9a3c198c3ce710377e44904f8fb0e6c0477e
http/cves/2012/CVE-2012-0392.yaml:f6d82d22880c374db3f692944d1ee346be18a56b
http/cves/2012/CVE-2012-0394.yaml:9590ec8610a8520efbc0b01cb80ed80b03a4bd97
http/cves/2012/CVE-2012-0896.yaml:5fd4381989a203fdc6ff76823151f979c243a62a
http/cves/2012/CVE-2012-0901.yaml:346416f32d41213b420e28bc9c25046dd8151429
http/cves/2012/CVE-2012-0981.yaml:f8955a0c5c5f57ee90df938df2bf4e41bdc1a0c9
http/cves/2012/CVE-2012-0991.yaml:4139a3eb5c57cea2d6329e884ee0cf8f37bf07db
http/cves/2012/CVE-2012-0996.yaml:cde939eb74fe57ccffa47c7f10853e75d1eeb9b8
http/cves/2012/CVE-2012-1226.yaml:e92919d80a25a886c593ca4b642172f4c027e1b2
http/cves/2012/CVE-2012-1823.yaml:2c71630fc4009a0bc12b970a1eefd87785f3537d
http/cves/2012/CVE-2012-1835.yaml:41ad4a5f5ca558cf26f4457921fd2af86eede682
http/cves/2012/CVE-2012-2371.yaml:b00c688ed7ac14346850d872b84a44d5cd310bd9
http/cves/2012/CVE-2012-3153.yaml:60310007d312db077bb85df7f23560fdb98dc604
http/cves/2012/CVE-2012-4032.yaml:70dea69e2fa23acd740f459ac9ae7f4cb3ee3827
http/cves/2012/CVE-2012-4242.yaml:e6a4b43e4ca46d0f1e734239e550aa7d1123cc87
http/cves/2012/CVE-2012-4253.yaml:d2b2d535a202237b2070bb1e534480d99e3f7a32
http/cves/2012/CVE-2012-4273.yaml:9a82261060d52bdf360b8b715f9576d68b865c1f
http/cves/2012/CVE-2012-4547.yaml:a8386d18eecebee7549378e575771eef525055ef
http/cves/2012/CVE-2012-4768.yaml:f24c139cbb94ad5a7276120ad3e4953d03fde6ab
http/cves/2012/CVE-2012-4878.yaml:39665c90f929603cbe427cf583d8c7c26a0ee684
http/cves/2012/CVE-2012-4889.yaml:b5f1b7e57c5c54a961b0d908edd78a0f0415b55a
http/cves/2012/CVE-2012-4940.yaml:5a3d6197760c3017cc15c123ee4d17f4d9e936b2
http/cves/2012/CVE-2012-4982.yaml:8814a723afd0775c7a71178f116964ae1d277cb3
http/cves/2012/CVE-2012-5321.yaml:f8aa316206928b88a9fc762f5ab4631730691639
http/cves/2012/CVE-2012-5913.yaml:1f8bfeb6ee96f6192093dc024fd282df4f6e0cca
http/cves/2012/CVE-2012-6499.yaml:4aa2268751596debebfc3fe508c46ae7d2fd8ba0
http/cves/2013/CVE-2013-1965.yaml:02f9b07860898b4c5f5fa1221f34ef1bab0921b2
http/cves/2013/CVE-2013-2248.yaml:4e63be3257ee69f165fd90f8a9bf9c3c5dfbcc30
http/cves/2013/CVE-2013-2251.yaml:84d673d41803fec5d4356aa1a23105c9322ead5e
http/cves/2013/CVE-2013-2287.yaml:b42e4089ebd82bb3bcac5ef20159eec1fa7654ed
http/cves/2013/CVE-2013-2621.yaml:ea2ff0285cf1ba1000fff6230efde768e236ad28
http/cves/2013/CVE-2013-3526.yaml:d6f6a5251dfc6fe54117d1493c614a07030498bb
http/cves/2013/CVE-2013-3827.yaml:84dd377dd03f8204cf7e3f961a048816c82ed421
http/cves/2013/CVE-2013-4117.yaml:f0ebbc38292470a56a9f9a3aca39705233eb201a
http/cves/2013/CVE-2013-4625.yaml:bc1d401977043bdd433e12fdf8772fe2b1f48c05
http/cves/2013/CVE-2013-5528.yaml:cd691c6115edc07924b252cf6dffbb701a3e86f0
http/cves/2013/CVE-2013-5979.yaml:b2b2a19a40084f2425f5d8546430df51230cb9ea
http/cves/2013/CVE-2013-6281.yaml:2434da8abe33503d2da20aad5166875337b71b29
http/cves/2013/CVE-2013-7091.yaml:bde1e2eb0dd783187b6a323099ccff0ec2be1c23
http/cves/2013/CVE-2013-7240.yaml:023221d770604fe8bcd0d1636b27dbb4c6ea5493
http/cves/2013/CVE-2013-7285.yaml:0697c8b6e1c196784822491824b7ec2a899e3ebe
http/cves/2014/CVE-2014-10037.yaml:1d5379797c6e5c4646b10da4ec01e13ace369356
http/cves/2014/CVE-2014-1203.yaml:ce9269880e56e75e56ae5ba0999413e141ffdc5d
http/cves/2014/CVE-2014-2321.yaml:4929344bd8b1b3f5149f16300d931c8cee202b91
http/cves/2014/CVE-2014-2323.yaml:d197b0e8226c00a21a94bc9be25c2aab9305c753
http/cves/2014/CVE-2014-2383.yaml:a20fcc8f573e001f79d2a318056cb465c6cfcafc
http/cves/2014/CVE-2014-2908.yaml:0cfa40770fce42f4ca72b2694a15b9333351a25b
http/cves/2014/CVE-2014-2962.yaml:eddf0d1e58d9c516218a9080ff2997f118a8edb6
http/cves/2014/CVE-2014-3120.yaml:e3e317e434e9760e88b47cb3e371d0aaa98bed95
http/cves/2014/CVE-2014-3206.yaml:7e179e257693c68b31e6f43ffeb92cd7b02a15a1
http/cves/2014/CVE-2014-3704.yaml:f57b54c11bb93805f7a0c9ff03dd5989a39f72dd
http/cves/2014/CVE-2014-3744.yaml:1571547bf62afde244f15d92814985807634cec9
http/cves/2014/CVE-2014-4210.yaml:995e67ca0c4a8aab5b6bf48979a8497b8dcb625e
http/cves/2014/CVE-2014-4513.yaml:fb4f6f23317e275044d907f50ec5c0ef43646868
http/cves/2014/CVE-2014-4535.yaml:d1ff0bddbaf52c5e09f7f8b8ce8840815049ef47
http/cves/2014/CVE-2014-4536.yaml:1e1ed4d3362febbc58bd36c00611ec8fe08e8558
http/cves/2014/CVE-2014-4539.yaml:f4636a00380796eb5602d222bcc047ba6fa8d5ba
http/cves/2014/CVE-2014-4544.yaml:edd51021fd00305db7c4589bcf9bdcef8b11df92
http/cves/2014/CVE-2014-4550.yaml:d9b06d9d3dd032b606b3e17b7cad3c3b289069f5
http/cves/2014/CVE-2014-4558.yaml:93a6a79891b505b6d390085aecd9fdd69755c47e
http/cves/2014/CVE-2014-4561.yaml:a546ff6070d061d643405bc7b7e5aa47ac664bfe
http/cves/2014/CVE-2014-4592.yaml:a1ad9b751e5076cc1e1e2cf30a2514adb678d861
http/cves/2014/CVE-2014-4940.yaml:84d5b56311a1281e654937b7452f8dbbc2501a3d
http/cves/2014/CVE-2014-4942.yaml:014cc07125d531540b0bac58f841e2403aead8f3
http/cves/2014/CVE-2014-5111.yaml:d8c1931bfd9df03d9a1c7203e7ca9f4b04c2ad19
http/cves/2014/CVE-2014-5258.yaml:21662309597241ba5c4b41e87f3b711e2474121d
http/cves/2014/CVE-2014-5368.yaml:4f51116399ba2f74d6eb783caa7896b5631262a9
http/cves/2014/CVE-2014-6271.yaml:fc5aae00faa66caff8b44c28fbffebe7ee8a2ba2
http/cves/2014/CVE-2014-6287.yaml:8b1f0eb12fa2f8ea3da042d90ab1cdc5b50cb9f2
http/cves/2014/CVE-2014-6308.yaml:ca25737b0c3a6e2515c5643c33e7203e127aa9a1
http/cves/2014/CVE-2014-8676.yaml:7fb864e66aa0a24a0f045c1d117f0e8499800aa7
http/cves/2014/CVE-2014-8682.yaml:f2d4cd87164f7d408f6b6a9afe6497a9d340134b
http/cves/2014/CVE-2014-8799.yaml:acc7f6229d89b9982c8754476a020d33549cfea1
http/cves/2014/CVE-2014-9094.yaml:6aceccb27fe60db3986c894ec0fe8b1824d292f8
http/cves/2014/CVE-2014-9119.yaml:2e5e24517d7dfd7dc02495fd15f4388c422ae506
http/cves/2014/CVE-2014-9444.yaml:f29d331bcbb3aee82c455266195817b3a344dbd3
http/cves/2014/CVE-2014-9606.yaml:9936288573d40a7d7b49300eb8f64d5bcd0edc03
http/cves/2014/CVE-2014-9607.yaml:1795a0604846e459806d49f84c0ed59080d7805c
http/cves/2014/CVE-2014-9608.yaml:9f9fce588be85cc4619ef8d6849ca9e8a5b1340d
http/cves/2014/CVE-2014-9609.yaml:affa806ba16250175922cfe857d0ef6808f29e79
http/cves/2014/CVE-2014-9614.yaml:834327a99cd46ef1dff2c10190312b5ed206b2fe
http/cves/2014/CVE-2014-9615.yaml:a4ba34655d8493813f5780f04213604dfede0e96
http/cves/2014/CVE-2014-9617.yaml:5ea035a9f175bb36632b50b4312535c132e8228d
http/cves/2014/CVE-2014-9618.yaml:c83916842bd9d38adae5251c02b728d6e842708a
http/cves/2015/CVE-2015-0554.yaml:659b8795e28b749908f3a1eb34b543f8a3edaff6
http/cves/2015/CVE-2015-1000005.yaml:ffc2af96140130b0aec9b53890037182378f4367
http/cves/2015/CVE-2015-1000010.yaml:de821ae61f6cc244137f5e87a55965a916480d14
http/cves/2015/CVE-2015-1000012.yaml:52b8271cc5a3870788f0fb700b6daea959f6e8b1
http/cves/2015/CVE-2015-1427.yaml:c2de84ced040049f0e690a12056335ddef0e778c
http/cves/2015/CVE-2015-1503.yaml:f7784033cf70bf0ecf1b72bbbbf6d15a1c343572
http/cves/2015/CVE-2015-1579.yaml:986b567ed2e82e8d3582beb17ab07746df6bd12c
http/cves/2015/CVE-2015-1880.yaml:e2255fd7dac1ca4d1c5a3cb05a138253e701508d
http/cves/2015/CVE-2015-2067.yaml:9387e43853c0407a37224672161625ede0abeb15
http/cves/2015/CVE-2015-2068.yaml:20623956ea88ba6ec07c1f652e0b47e7d001869f
http/cves/2015/CVE-2015-2080.yaml:5106279862d2a2c86b6e337150c6702f4123d8dc
http/cves/2015/CVE-2015-2166.yaml:f9b9be76e4fe9d68dcd47dea6ffef76f6aafb07a
http/cves/2015/CVE-2015-2196.yaml:30361be1b71f918a23245e1decefbf30f0a24e21
http/cves/2015/CVE-2015-2755.yaml:104bef09d7344c46533b25559edb7aebea3412ac
http/cves/2015/CVE-2015-2807.yaml:d59bf5c4be8868bb035d62e883286b3e97614e25
http/cves/2015/CVE-2015-2863.yaml:0da8e647b3367dc40530cc24f33ce1a4c0edf4c5
http/cves/2015/CVE-2015-2996.yaml:20796e48cb4c18f4e0c43c2a9f83cdd1f8fcb965
http/cves/2015/CVE-2015-3035.yaml:c5cf91dab43b80c697966279f6f248d1d0b3689f
http/cves/2015/CVE-2015-3224.yaml:4b5a1d3a5a98a3b4c3d2aa60163e8f4e06d21cda
http/cves/2015/CVE-2015-3337.yaml:9cbc66577d79b7f2b36b72280202277ac7dac6fa
http/cves/2015/CVE-2015-3648.yaml:6f3fa249d43891fda4a842c14dc12a55d48bb803
http/cves/2015/CVE-2015-3897.yaml:baf0e1b72640279258dcc4f3d47cec79da72d0a7
http/cves/2015/CVE-2015-4050.yaml:7f4639df42a6856a582467929753ee596b7b055b
http/cves/2015/CVE-2015-4062.yaml:1d36f2aecb934a51916422119bcf1751a12ed0a5
http/cves/2015/CVE-2015-4063.yaml:510a36429dc3e9c078eeeaaf3f98da46e2818ba0
http/cves/2015/CVE-2015-4074.yaml:4a8f894aa3edef755f4b8567b4cb4a2e26bfdf16
http/cves/2015/CVE-2015-4127.yaml:5d03685a9f2f860eadb27ef8c23258fe9ee1e0e6
http/cves/2015/CVE-2015-4414.yaml:b3a0d0737c3f7f2ea3a8e0e8423b69775facbd7d
http/cves/2015/CVE-2015-4632.yaml:cb3fc016a47b9ee7096f149005a8dbd0ce4c4a98
http/cves/2015/CVE-2015-4666.yaml:c5c0c0dfa8cd3a232c7c9d36e12a073b7da79f19
http/cves/2015/CVE-2015-4668.yaml:3712be03f4080a7af9fa446ca06d8855a4f647be
http/cves/2015/CVE-2015-4694.yaml:35fa370d65df76b507ba7a9b0d89b63930fecfcc
http/cves/2015/CVE-2015-5354.yaml:9aeaf0340b79ab02734b41923081b00744e2b0af
http/cves/2015/CVE-2015-5461.yaml:7713e74c07ce04d0d8d884aa3bce7b88d30328be
http/cves/2015/CVE-2015-5469.yaml:76cbfd0c01d4092256a403830ca1adba48c74ae6
http/cves/2015/CVE-2015-5471.yaml:dd528889cb36a9a32abdb9d2e578797a6675da9d
http/cves/2015/CVE-2015-5531.yaml:d6a501da1575dfebd2f2cb797575da8e8b4016ad
http/cves/2015/CVE-2015-5688.yaml:3aef3c78b912e6051158122affb1760e09ed2cc6
http/cves/2015/CVE-2015-6477.yaml:807d5af6021f46f494cba110b8543a127086d293
http/cves/2015/CVE-2015-6544.yaml:1e585de527797b7fc5cbe5cc38f7bee20ad365ae
http/cves/2015/CVE-2015-6920.yaml:d208afce0c278ec2229cd9f190b5c3136ae2c17c
http/cves/2015/CVE-2015-7245.yaml:2882dd7e5d4e2496285d375089b1e2b57d7fc5f4
http/cves/2015/CVE-2015-7297.yaml:1331435559192764d2bae9c94de0308d093bea4e
http/cves/2015/CVE-2015-7377.yaml:4d5ed2d5fc981ffaa2f5af3e69ee7e001535ef45
http/cves/2015/CVE-2015-7450.yaml:1ef5022ab4a627f5187450d0b8970d287b7f0794
http/cves/2015/CVE-2015-7780.yaml:bd44bd1c76ad360974602258a7bc585b94bbcb07
http/cves/2015/CVE-2015-7823.yaml:93e703435e71b430c9ae009f3dd69e8d52094467
http/cves/2015/CVE-2015-8349.yaml:431dd59f8b86dae1e2b8d81aa61730f2fcd057c6
http/cves/2015/CVE-2015-8399.yaml:b699db7561630381c673c3facd0323b8c5f28f14
http/cves/2015/CVE-2015-8813.yaml:3b732f2f5790844b1459aff72a3504239ccbebd1
http/cves/2015/CVE-2015-9312.yaml:90d1cc406c978cac6b5b97916f7d9b39344e0821
http/cves/2015/CVE-2015-9323.yaml:1bc425df35c099242bf12e16fb08e01df08280db
http/cves/2015/CVE-2015-9414.yaml:8f30ad273ca8f674714fd5245a86efa8888fa2a8
http/cves/2015/CVE-2015-9480.yaml:3ba5c4fa1bf7970e3172d7d11e5bef13877d08b7
http/cves/2016/CVE-2016-0957.yaml:0a3e7a1b12da7a2138e9c0aab23e8599cea00b48
http/cves/2016/CVE-2016-1000126.yaml:f8f3258cca30a1145539c0675f491ec4d693fc6e
http/cves/2016/CVE-2016-1000127.yaml:a4c31c4356b236ae5cd41666ffc4c19a0b05ff86
http/cves/2016/CVE-2016-1000128.yaml:4c2b957f4e721de75c5a0aeedec18fb0eac0aa7e
http/cves/2016/CVE-2016-1000129.yaml:46f2a9a6bd9ba2e87e84d81b1beba0a41eeab7af
http/cves/2016/CVE-2016-1000130.yaml:2675f9707dd1f085ae28a216b717f91c7436cb4e
http/cves/2016/CVE-2016-1000131.yaml:540ba18909055d6b93917034588da522cba8c885
http/cves/2016/CVE-2016-1000132.yaml:37774d53e99885a2b144c680af7784a18fc5171f
http/cves/2016/CVE-2016-1000133.yaml:8d02017b505559a6f1f28656d2cbb02809127070
http/cves/2016/CVE-2016-1000134.yaml:70cc44c6c247f91f1dc103ade6f589b7471e9817
http/cves/2016/CVE-2016-1000135.yaml:9e17889d836c035e2e45bd52feadd1ee578398fe
http/cves/2016/CVE-2016-1000136.yaml:730cc1a56abc6f00084a6361ca9bb4814f8835c6
http/cves/2016/CVE-2016-1000137.yaml:a7b0cf0e4ecca1da40410d9e403c2526637126f5
http/cves/2016/CVE-2016-1000138.yaml:e7a31c9a275585c437b618611b7612edd4f3807a
http/cves/2016/CVE-2016-1000139.yaml:3ee5f04546ad0344cb6f086ce2de413159d0fddf
http/cves/2016/CVE-2016-1000140.yaml:fd74168255cbdfd3d631aeaca53683dfd04bc405
http/cves/2016/CVE-2016-1000141.yaml:8c95e595968b7278cfd26715ef357cbdf76f1e48
http/cves/2016/CVE-2016-1000142.yaml:4a1a61abc724720fd19d914e262c5ac59dcf5027
http/cves/2016/CVE-2016-1000143.yaml:87fec37195a681f5ec2d064812615e7bf2db2028
http/cves/2016/CVE-2016-1000146.yaml:048859db2ec4909ebd33b91331ee0c1fc8c6a488
http/cves/2016/CVE-2016-1000148.yaml:e31ea7d94eb7dd5dcd70673e6cf08c072699521b
http/cves/2016/CVE-2016-1000149.yaml:90f9413bc73a5bb4ba313d24020f92962333ab4e
http/cves/2016/CVE-2016-1000152.yaml:94d66856fa53ae44dd41816ba93b7972e6fe8bec
http/cves/2016/CVE-2016-1000153.yaml:6081c27635ef1d9d159cd5a846f52f40d5c105c5
http/cves/2016/CVE-2016-1000154.yaml:721687899bde0423dbfc2eddb3460a000a85cfa1
http/cves/2016/CVE-2016-1000155.yaml:97ff481e4e164bdb795664571acf5ce7d90f3cbc
http/cves/2016/CVE-2016-10033.yaml:0c3dedc51f45fd98edfaa2b817911c905f13ebec
http/cves/2016/CVE-2016-10108.yaml:de9616235488dd493b73a6a05022121ad6546f44
http/cves/2016/CVE-2016-10134.yaml:086f615910acbf3db1faa9bc80caeed509773011
http/cves/2016/CVE-2016-10367.yaml:782395ca1e615467f6e920b5342e1750baca4a95
http/cves/2016/CVE-2016-10368.yaml:0c0c5fb779af88bb040e982833ecd435e7ddc83d
http/cves/2016/CVE-2016-10924.yaml:1fe7f0a1eeb3a5e7f927c5b986589c9fe6ed6fbd
http/cves/2016/CVE-2016-10940.yaml:53139d6bd0dd3af37f625eb1a0645e7a26dcf4b3
http/cves/2016/CVE-2016-10956.yaml:ca21189a0a9c8ef5db176039608bb7416799ec19
http/cves/2016/CVE-2016-10960.yaml:a5e4be94bab72350ea4c9fa719a45e5cdcb18ae4
http/cves/2016/CVE-2016-10973.yaml:61fe4db34038e8745c9e6b9cb2a229d8d45209ec
http/cves/2016/CVE-2016-10993.yaml:93c378cd3e217b9371ef5e5ee8d00e683296a2dc
http/cves/2016/CVE-2016-1555.yaml:68d3ca41bab3a0b466631aa4ac62d85bcfcba502
http/cves/2016/CVE-2016-2389.yaml:226fa6b685a48a4ee3c8db6b6802da0c40f8e1fb
http/cves/2016/CVE-2016-3081.yaml:a9707b6f3a8b559c469fbbc201c3d772511847f9
http/cves/2016/CVE-2016-3088.yaml:e7d6d8006d0db0ba9e7648aff2aa144dfc33b30a
http/cves/2016/CVE-2016-3978.yaml:a2f4ad4ad3076c7b9e2addb22010a56b9072bdc0
http/cves/2016/CVE-2016-4437.yaml:7fbaff020c74f7c71f10eb807c13c589a2c6cbf2
http/cves/2016/CVE-2016-4975.yaml:48cdc78d4543735753b073f84552383c54c34fce
http/cves/2016/CVE-2016-4977.yaml:fcac2af9b90a7a94efedc389e18a838b981a9aab
http/cves/2016/CVE-2016-5649.yaml:135d2c6c11dc3692f36a520fe3551e81285d7a40
http/cves/2016/CVE-2016-6195.yaml:fba8084385f6701f785c3bee77e64bc3f93eb80a
http/cves/2016/CVE-2016-6277.yaml:efa9343224dc1ebf7564d2d9e23b7b9d92fa4347
http/cves/2016/CVE-2016-6601.yaml:a3c7e2c21c870b07109f3664c432140f5cceec41
http/cves/2016/CVE-2016-7552.yaml:aee4e3cc528797b0cd2a47729fff44f652419038
http/cves/2016/CVE-2016-7834.yaml:dab53979b40c3922cdb546391c126f44418156e6
http/cves/2016/CVE-2016-7981.yaml:ac60ca8e1ecc927a14bf4319f6083e17b6fd727e
http/cves/2016/CVE-2016-8527.yaml:773ca2efacaa8916fa7080a8bd41f0bceab2369f
http/cves/2017/CVE-2017-0929.yaml:156ffbb082c22db014fc043211d39872fd0df6dd
http/cves/2017/CVE-2017-1000028.yaml:751a2c67d0e55cb363c64cb3ae6f303de58563a6
http/cves/2017/CVE-2017-1000029.yaml:21223d069a4954250faec117a9e4578a9f1c1863
http/cves/2017/CVE-2017-1000163.yaml:b96ab3cadb75a62584fc55147fe007fab615df0b
http/cves/2017/CVE-2017-1000170.yaml:d7d1ec452611059a133d6781682e450631950501
http/cves/2017/CVE-2017-1000486.yaml:7003193b090ceb4a7943d101b48542e21162ff3a
http/cves/2017/CVE-2017-10075.yaml:e9261b6c6187bedef5cff65f5f283519d3f308e3
http/cves/2017/CVE-2017-10271.yaml:29f7b08dcd395a510b503c7e120880730a8daaaf
http/cves/2017/CVE-2017-10974.yaml:af56cfdfc430f0f28c4a5e5181db15a4cb2c57f6
http/cves/2017/CVE-2017-11165.yaml:7d62d2128861a4fad561d03ad31950c68bd35559
http/cves/2017/CVE-2017-11444.yaml:ad5e4c999d39198f495b5e815772abda7ab428c8
http/cves/2017/CVE-2017-11512.yaml:0f19663f4d797b4f643898a12d4bf26678b97406
http/cves/2017/CVE-2017-11586.yaml:88935333a8a8dde7fd72351b044139b2ff789c21
http/cves/2017/CVE-2017-11610.yaml:359a5a24bc2ecc2bc26d0e3250aa608431c120b8