-
Notifications
You must be signed in to change notification settings - Fork 10
/
all.csv
We can't make this file beautiful and searchable because it's too large.
4902 lines (4902 loc) · 787 KB
/
all.csv
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
host,platform,email,url,acknowledgements,hiring,policy,encryption,languages
"101.gg","","security@bitly.com","101.gg/security.txt","","","","https://bitly.com/security_pgp.txt",""
"103fm.tt","1(868) 628-9222","","103fm.tt/.well-known/security.txt","","","","",""
"112.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","112.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"1177.se","","security@inera.se","1177.se/security.txt","","","","","en sv,"
"11freunde.de","","digital@11freunde.de","11freunde.de/.well-known/security.txt","","","","","de, en"
"12ne.ws","","security@bitly.com","12ne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"1907perfumeries.sk","","error@bohemiasoft.com","1907perfumeries.sk/security.txt","","","","",""
"1968.rozhlas.cz","","internet@rozhlas.cz","1968.rozhlas.cz/security.txt","","","","",""
"1and1.mx","","security@ionos.com","1and1.mx/.well-known/security.txt","","https://jobs.ionos.de/","https://www.ionos.com/it-security","https://keys.openpgp.org/search?q=security%40ionos.com","en"
"1limburg.nl","","security@regiogroei.nl","1limburg.nl/.well-known/security.txt","","","","",""
"1se.co","","security@1secondeveryday.com","1se.co/.well-known/security.txt","","","","",""
"1und1.de","","security@1und1.de","1und1.de/.well-known/security.txt","","https://career.1and1.org/","https://www.1und1.de/it-security","https://keys.openpgp.org/search?q=security@1und1.de","en"
"20min.ch","","security@tx.group","20min.ch/.well-known/security.txt","","","https://bugcrowd.com/twentyminuten","","de en,"
"231805.www.marketing.trendmailer.ch","","security@cleverreach.com","231805.www.marketing.trendmailer.ch/.well-known/security.txt","","","","openpgp4fpr:A2B7E482E8CD57A4D1A8160962C0E323C740650E","en,de"
"24heures.ch","","security@tx.group","24heures.ch/.well-known/security.txt","","","https://bugcrowd.com/tamedia","","de en,"
"25.wf","","blog@25-47.net","25.wf/.well-known/security.txt","","","","",""
"27-januar.lu.ch","","informationssicherheit@lu.ch","27-januar.lu.ch/security.txt","","","","","de en,"
"280.vc","https://hackerone.com/automattic/reports/new","","280.vc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"2cu.nu","https://www.awesum.nl/contact","security@awesum.nl","2cu.nu/.well-known/security.txt","https://www.awesum.nl/security-hall-of-fame-security","","","https://www.powerassist.nl/.well-known/openpgp-security-at-awesum-dot-nl.public.key","en, nl"
"2degreesmobile.co.nz","","sec.notify@2degrees.nz","2degreesmobile.co.nz/.well-known/security.txt","","https://careers.2degreesmobile.co.nz/search","https://www.2degrees.nz/.well-known/security-policy.txt","https://www.2degrees.nz/.well-known/pgp-key-E24A7B33.txt",""
"2nu.gs","","security@bitly.com","2nu.gs/security.txt","","","","https://bitly.com/security_pgp.txt",""
"3dnews.ru","https://hackerone.com/v3dnews","","3dnews.ru/.well-known/security.txt","","","","",""
"3fm.nu","","security@bitly.com","3fm.nu/security.txt","","","","https://bitly.com/security_pgp.txt",""
"50plusmatch.se","","info@50plusmatch.se","50plusmatch.se/.well-known/security.txt","","","","",""
"50years.intereconomics.eu","","support.zbw@feldwaldwiese.de","50years.intereconomics.eu/.well-known/security.txt","","","","",""
"53eig.ht","","security@bitly.com","53eig.ht/security.txt","","","","https://bitly.com/security_pgp.txt",""
"5ko.free.fr","http://5ko.free.fr/contact","","5ko.free.fr/.well-known/security.txt","","","","","bg en, fr,"
"6abc.cm","","security@bitly.com","6abc.cm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"6play.fr","","website-security@m6web.fr","6play.fr/security.txt","","","","",""
"789.is","","security@bitly.com","789.is/security.txt","","","","https://bitly.com/security_pgp.txt",""
"7ny.tv","","security@bitly.com","7ny.tv/security.txt","","","","https://bitly.com/security_pgp.txt",""
"808ne.ws","","security@bitly.com","808ne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"99designs.co.uk","","security@99designs.com","99designs.co.uk/.well-known/security.txt","","https://99designs.com/about/jobs","","","en"
"99designs.com.au","","security@99designs.com","99designs.com.au/.well-known/security.txt","","https://99designs.com/about/jobs","","","en"
"99designs.com.sg","","security@99designs.com","99designs.com.sg/.well-known/security.txt","","https://99designs.com/about/jobs","","","en"
"99designs.hk","","security@99designs.com","99designs.hk/.well-known/security.txt","","https://99designs.com/about/jobs","","","en"
"99designs.no","","security@99designs.com","99designs.no/.well-known/security.txt","","https://99designs.com/about/jobs","","","en"
"99jobs.cc","","security@bitly.com","99jobs.cc/security.txt","","","","https://bitly.com/security_pgp.txt",""
"a-static.projektn.sk","","security@dennikn.sk","a-static.projektn.sk/.well-known/security.txt","","","","https://dennikn.sk/.well-known/pgp-key.txt","cs en, sk,"
"a-trust.at","","technik@a-trust.at","a-trust.at/.well-known/security.txt","","https://www.a-trust.at/de/%C3%BCber_uns/Karriere/","","","en"
"a.dy.si","","security@bitly.com","a.dy.si/security.txt","","","","https://bitly.com/security_pgp.txt",""
"a.ubuy.com.kw","","om@ubuy.com","a.ubuy.com.kw/security.txt","","","","",""
"a360.co","","security@bitly.com","a360.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"aaa.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","aaa.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"aaa.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","aaa.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"aadrink-fbkgames.nl","","security@hostingsecure.com","aadrink-fbkgames.nl/security.txt","","","","","en"
"aalst.be","","infosec@aalst.be","aalst.be/.well-known/security.txt","","","https://www.aalst.be/infofiche/responsible-disclosure","https://www.aalst.be/.well-known/infosec_at_aalst.be_pgp_pubkey.txt",""
"aamulehti.fi","","cert@sanoma.com sndp.oncall@sanoma.com","aamulehti.fi/.well-known/security.txt","","","https://www.sanoma.com/en/responsible-disclosure-statement/","","en"
"aard.mn","","security@bitly.com","aard.mn/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abbo.tt","","security@bitly.com","abbo.tt/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abc7.la","","security@bitly.com","abc7.la/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abc7.ws","","security@bitly.com","abc7.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abc7ne.ws","","security@bitly.com","abc7ne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abcn.ws","","security@bitly.com","abcn.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abe.ma","","security@bitly.com","abe.ma/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abendblatt.de","","disclosure@funkemedien.de","abendblatt.de/.well-known/security.txt","","","","","de, en"
"abi.erikorgu.ee","https://bugcrowd.com/intercom","security@intercom.com","abi.erikorgu.ee/.well-known/security.txt","https://bugcrowd.com/intercom/hall-of-fame","https://boards.greenhouse.io/intercom/jobs/1888872","https://www.bugcrowd.com/resource/standard-disclosure-terms/","","en"
"ablo.to","","security@bitly.com","ablo.to/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ably.io","","security@ably.com","ably.io/.well-known/security.txt","https://ably.com/acknowledgements","https://ably.com/careers","https://ably.com/disclosure","","en"
"abr.ai","","security@bitly.com","abr.ai/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abr.gov.au","","vulnerabilitydisclosure@ato.gov.au","abr.gov.au/.well-known/security.txt","","","https://www.ato.gov.au/General/Online-services/Online-security/Report-a-system-security-vulnerability","",""
"abritel.fr","","RespDisc@expedia.com","abritel.fr/security.txt","","/.well-known/security.txt /security.txt HTTP/1.1 https://lifeatexpedia.com/ https://lifeatexpedia.com/GET","https://www.expediagroup.com/about/privacy-data-handling-requirements/","",""
"abt.cm","","security@bitly.com","abt.cm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"abuse.ch","","admin@abuse.ch","abuse.ch/.well-known/security.txt","","","","https://abuse.ch/.well-known/pgp-key.txt","en,de"
"aca.la","","security@bitly.com","aca.la/security.txt","","","","https://bitly.com/security_pgp.txt",""
"acas.org.uk","https://www.bigbluedoor.net/contact","security@bigbluedoor.net","acas.org.uk/.well-known/security.txt","","","https://github.com/ukncsc/Vulnerability-Disclosure/blob/master/UK-Government-Vulnerability-Disclosure-Policy.md","",""
"accntu.re","","security@bitly.com","accntu.re/security.txt","","","","https://bitly.com/security_pgp.txt",""
"account.ioi.dk","https://www.ioi.dk/security/","security@ioi.dk","account.ioi.dk/.well-known/security.txt","","https://www.ioi.dk/jobs/","https://www.ioi.dk/security/","","en"
"ace.lu.se","https://www.ldc.lu.se/tjanster/it-sakerhet tel:+46-46-2229000","abuse@lu.se security@lu.se","ace.lu.se/.well-known/security.txt","","","","",""
"aces.mp","","security@bitly.com","aces.mp/security.txt","","","","https://bitly.com/security_pgp.txt",""
"acikders.ankara.edu.tr","https://moodle.org/security/report/","","acikders.ankara.edu.tr/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"acm.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","acm.nl/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"acros.si","","security@acrossecurity.com","acros.si/.well-known/security.txt","","","","https://www.acrossecurity.com/pgpkey.asc",""
"act.etat.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","act.etat.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"act.gp","","security@bitly.com","act.gp/security.txt","","","","https://bitly.com/security_pgp.txt",""
"act.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","act.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"actu.fr","","tech@group-dis.com","actu.fr/security.txt","","","","","en, fr"
"ad.apps.fm","https://hackerone.com/yahoo","security@yahooinc.com","ad.apps.fm/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"adamj.eu","https://twitter.com/adamchainz","me@adamj.eu","adamj.eu/security.txt","https://docs.djangoproject.com/en/dev/internals/security/","","","https://keybase.io/adamchainz","en"
"adap.tv","https://hackerone.com/yahoo","security@yahooinc.com","adap.tv/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"adbl.co","","security@bitly.com","adbl.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"adelaidefestivalcentre.com.au","","web@simple.com.au","adelaidefestivalcentre.com.au/security.txt","","","https://www.adelaidefestivalcentre.com.au/security-policy","https://www.adelaidefestivalcentre.com.au/pgp-key.txt",""
"adem.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","adem.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"adem.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","adem.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"adhd.is","","webmaster@stefna.is","adhd.is/.well-known/security.txt","","","","",""
"admin.ch","https://www.ncsc.admin.ch/ncsc/en/home/infos-fuer/infos-it-spezialisten/themen/schwachstelle-melden.html","incidents@ncsc.ch security@admin.ch","admin.ch/.well-known/security.txt","","https://jobs.admin.ch","https://www.ncsc.admin.ch/ncsc/en/home/infos-fuer/infos-it-spezialisten/themen/schwachstelle-melden/scope-and-rules.html","https://www.ncsc.admin.ch/dam/ncsc/de/Key/pgp_ncsc_incidents.asc.download.asc/NCSC_Incidents.asc https://www.ncsc.admin.ch/dam/ncsc/de/Key/smime_ncsc_incidents_2021.crt.download.crt/smime_ncsc_incidents_2021.crt","de, de,en,fr,it en, fr, it"
"admp.mairie-albi.fr","","dsi-securite@mairie-albi.fr","admp.mairie-albi.fr/security.txt","https://dsi-securite.mairie-albi.fr/hall-of-fame.txt","","","","fr,en"
"adn.fm","","security@bitly.com","adn.fm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"adp.ph","","vulnerabilityreporting@ADP.com","adp.ph/.well-known/security.txt","","https://jobs.adp.com/","https://www.adp.com/about-adp/data-security.aspx","","en"
"adpu.sh","","security@bitly.com","adpu.sh/security.txt","","","","https://bitly.com/security_pgp.txt",""
"adressesok.posten.no","","it.sikkerhet@posten.no","adressesok.posten.no/.well-known/security.txt","","","","",""
"adweek.it","","security@bitly.com","adweek.it/security.txt","","","","https://bitly.com/security_pgp.txt",""
"aemo.com.au","","cybersecurity@aemo.com.au cybersecurity@aemo.com.au","aemo.com.au/.well-known/security.txt","","/security.txt HTTP/1.1 https://aemo.com.au/en/about/careers https://aemo.com.au/en/about/careersGET","","",""
"aeon.co.th","","security@bitly.com","aeon.co.th/security.txt","","","","https://bitly.com/security_pgp.txt",""
"aet.na","","security@bitly.com","aet.na/security.txt","","","","https://bitly.com/security_pgp.txt",""
"afaforsakring.se","","security@afaforsakring.se","afaforsakring.se/security.txt","","","","","/.well-known/security.txt HTTP/1.1 en, sv svGET"
"affilbox.cz","","info@affilbox.cz ja@ondrejmartinek.cz jsem@jaroslavjanicek.cz","affilbox.cz/security.txt","","","","","cs en,"
"aftonbladet.se","","security@aftonbladet.se","aftonbladet.se/.well-known/security.txt","","","","","en sv,"
"agentschaptelecom.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","agentschaptelecom.nl/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"agora.gal","","soporte@bigpress.net","agora.gal/.well-known/security.txt","","","","","en, es, gl"
"agricola.utu.fi","","security@utu.fi","agricola.utu.fi/.well-known/security.txt","https://security.utu.fi/acknowledgements.html","","","",""
"agriculture.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","agriculture.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"agrigentonotizie.it","tel:+39.39.11.11.11.11","k@k.tt","agrigentonotizie.it/security.txt","","","","","en, it, pl"
"agro.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","agro.au.dk/.well-known/security.txt","","","","",""
"agrocredit.kz","","security@kazinsys.kz","agrocredit.kz/.well-known/security.txt","","","","","en kz, ru,"
"ahmda.ws","","security@bitly.com","ahmda.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ahus.no","","cert@sykehuspartner.no fellesmail.personvernombud@ahus.no security@nhn.no","ahus.no/.well-known/security.txt","","mailto:sikkerhet@sykehuspartner.no","https://sykehuspartner.no/Documents/Sikkerhet%20-%20regionale%20bruksvilk%C3%A5r/NO-38%20-%20Responsible%20disclosure%20policy%20(engelsk).pdf","","en, no"
"ai.lu.se","https://www.ldc.lu.se/tjanster/it-sakerhet tel:+46-46-2229000","abuse@lu.se security@lu.se","ai.lu.se/.well-known/security.txt","","","","",""
"aia.ag","","security@bitly.com","aia.ag/security.txt","","","","https://bitly.com/security_pgp.txt",""
"aiib2019.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","aiib2019.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"ailurophiles.co.vu","https://hackerone.com/automattic/reports/new","","ailurophiles.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"airbank.cz","","bugreport@airbank.cz security@siteone.cz web@airbank.cz","airbank.cz/security.txt","","","","","cs,sk,en"
"airc.al","","security@bitly.com","airc.al/security.txt","","","","https://bitly.com/security_pgp.txt",""
"aircall.io","","aircall-esf@submit.bugcrowd.com security@aircall.io","aircall.io/.well-known/security.txt","","https://aircall.io/careers/","","",""
"airport.dn.ua","https://hackerone.com/automattic/reports/new","","airport.dn.ua/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"aivd.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","aivd.nl/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"aiven.io","https://hackerone.com/aiven_ltd","","aiven.io/.well-known/security.txt","https://hackerone.com/aiven_ltd/thanks","https://aiven.io/careers","https://hackerone.com/aiven_ltd?view_policy=true","","en"
"aj.vg","","security@bitly.com","aj.vg/security.txt","","","","https://bitly.com/security_pgp.txt",""
"akademi.tarimorman.gov.tr","https://moodle.org/security/report/","","akademi.tarimorman.gov.tr/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"akcentacz.cz","","cms@animato.cz info@akcenta.eu","akcentacz.cz/.well-known/security.txt","","","","",""
"akirkja.is","","webmaster@stefna.is","akirkja.is/.well-known/security.txt","","","","",""
"aklagare.se","tel:+46-10-5625000","registrator@aklagare.se","aklagare.se/.well-known/security.txt","","","","","en sv,"
"akmus.is","","webmaster@stefna.is","akmus.is/.well-known/security.txt","","","","",""
"akranes.is","","webmaster@stefna.is","akranes.is/.well-known/security.txt","","","","",""
"aktia.fi","https://hackerone.com/aktia/","security@aktia.fi","aktia.fi/security.txt","https://hackerone.com/aktia/thanks?type=team","","https://hackerone.com/aktia","","en, fi"
"akureyrarkirkja.is","","webmaster@stefna.is","akureyrarkirkja.is/.well-known/security.txt","","","","",""
"akureyri.is","","webmaster@stefna.is","akureyri.is/.well-known/security.txt","","","","",""
"al.st","","security@bitly.com","al.st/security.txt","","","","https://bitly.com/security_pgp.txt",""
"al.to","","security@al.to","al.to/security.txt","","","","","en, pl"
"alandsbanken.ax","","services@agencyleroy.com","alandsbanken.ax/security.txt","","","https://www.alandsbanken.ax/security-policy","https://www.alandsbanken.ax/pgp-key.txt",""
"alandsbanken.fi","","services@agencyleroy.com","alandsbanken.fi/security.txt","","","https://www.alandsbanken.fi/security-policy","https://www.alandsbanken.fi/pgp-key.txt",""
"alberta.ca","https://www.alberta.ca/vulnerability-reporting-program.aspx","","alberta.ca/.well-known/security.txt","","","https://www.alberta.ca/vulnerability-reporting-program.aspx","",""
"albertonrecord.co.za","","noc@rsaweb.net","albertonrecord.co.za/.well-known/security.txt","","","","",""
"alcoholchange.org.uk","","developer@electricputty.co.uk","alcoholchange.org.uk/security.txt","","","https://alcoholchange.org.uk/security-policy","https://alcoholchange.org.uk/pgp-key.txt",""
"alditalk-kundenbetreuung.de","https://www.telefonica.de/responsible-disclosure.html","","alditalk-kundenbetreuung.de/.well-known/security.txt","https://bugcrowd.com/telefonicavdp","","https://bugcrowd.com/telefonicavdp","","de en,"
"aleph.vc","","security@aleph.vc","aleph.vc/security.txt","","","","",""
"aleporte.la","","security@bitly.com","aleporte.la/security.txt","","","","https://bitly.com/security_pgp.txt",""
"alexanderklopping.nl","https://hackerone.com/automattic/reports/new","","alexanderklopping.nl/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"alexandra.dk","","security-vulnerabilities@alexandra.dk","alexandra.dk/security.txt","","","","https://alexandra.dk/.well-known/pgp_key.asc","en,da"
"alexbuga.is","https://hackerone.com/automattic/reports/new","","alexbuga.is/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"alfafarmers.memberperks.us","https://support.abenity.com/support/tickets/new","","alfafarmers.memberperks.us/.well-known/security.txt","","","https://abenity.com/terms/privacy","https://abenity.com/pgp-key.txt","en"
"algemenebestuursdienst.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","algemenebestuursdienst.nl/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"alice-o2-project.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","alice-o2-project.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"aliceinfo.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","aliceinfo.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"alizi.la","","security@bitly.com","alizi.la/security.txt","","","","https://bitly.com/security_pgp.txt",""
"alkmaar.nl","","fg@alkmaar.nl securitytxt@yard.nl","alkmaar.nl/.well-known/security.txt","","https://www.werkenbij.alkmaar.nl/","https://www.alkmaar.nl/responsible-disclosure/","","en, nl"
"allegro.pl","https://allegro.pl/cert/ https://hackerone.com/allegro/reports/new","","allegro.pl/.well-known/security.txt","https://hackerone.com/allegro/hacktivity","https://allegro.tech/jobs/","https://hackerone.com/allegro?view_policy=true","",""
"allehanda.se","","security@bonniernews.se","allehanda.se/.well-known/security.txt","","","","","en sv,"
"allforpower.cz","","podpora@railsformers.com","allforpower.cz/.well-known/security.txt","","","","",""
"allianz.de","","security@allianz.de","allianz.de/security.txt","","https://careers.allianz.com/","","",""
"alliwantisnothing.co.vu","https://hackerone.com/automattic/reports/new","","alliwantisnothing.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"allureable.co.vu","https://hackerone.com/automattic/reports/new","","allureable.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"almhult.se","","niclas.lindblom@almhult.se","almhult.se/security.txt","","","","","sv,en"
"alpha.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","alpha.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"alt.jotfor.ms","https://www.jotform.com/bug-bounty/","","alt.jotfor.ms/.well-known/security.txt","","https://www.jotform.com/jobs/","https://www.jotform.com/bug-bounty/#rule-and-guidelines","","en"
"altendorf.ch","","security@backslash.ch","altendorf.ch/security.txt","","","","","en,de"
"alter.si","","ziga@alter.si","alter.si/.well-known/security.txt","","","","","en, si"
"altesses.eu","","webmaster@altesses.eu","altesses.eu/.well-known/security.txt","","","","https://www.altesses.eu/.well-known/openpgpkey/hu/kd39y8fkyw5j8uubuicshffo9hhodk4j","fr,en"
"altman.co.vu","https://hackerone.com/automattic/reports/new","","altman.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"alu.ms","","security@bitly.com","alu.ms/security.txt","","","","https://bitly.com/security_pgp.txt",""
"alvdalen.se","","soc@sitevision.se","alvdalen.se/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"alza.cz"," https://www.alza.cz/kontakt/ostatni.htm?qgid=66&qid=316 tel:+420 004 725 872","security@alza.cz","alza.cz/.well-known/security.txt","","","","","cs, en"
"alza.hu"," https://www.alza.cz/kontakt/ostatni.htm?qgid=66&qid=316 tel:+420 004 725 872","security@alza.cz","alza.hu/.well-known/security.txt","","","","","cs, en"
"alza.sk"," https://www.alza.cz/kontakt/ostatni.htm?qgid=66&qid=316 tel:+420 004 725 872","security@alza.cz","alza.sk/.well-known/security.txt","","","","","cs, en"
"amays.im","","security@bitly.com","amays.im/security.txt","","","","https://bitly.com/security_pgp.txt",""
"amazon.co.jp","https://hackerone.com/amazonvrp/reports/new","","amazon.co.jp/.well-known/security.txt","","https://www.amazon.jobs/en/teams/infosec","https://hackerone.com/amazonvrp","",""
"amazon.co.uk","https://hackerone.com/amazonvrp/reports/new","","amazon.co.uk/.well-known/security.txt","","https://www.amazon.jobs/en/teams/infosec","https://hackerone.com/amazonvrp","",""
"amazon.in","https://hackerone.com/amazonvrp/reports/new","","amazon.in/.well-known/security.txt","","https://www.amazon.jobs/en/teams/infosec","https://hackerone.com/amazonvrp","",""
"amazon.jp","https://hackerone.com/amazonvrp/reports/new","","amazon.jp/.well-known/security.txt","","https://www.amazon.jobs/en/teams/infosec","https://hackerone.com/amazonvrp","",""
"amba.to","","security@bitly.com","amba.to/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ambito-juridico.jusbrasil.com.br","","security@jusbrasil.com.br","ambito-juridico.jusbrasil.com.br/.well-known/security.txt","","","","","en pt,"
"ameli.fr","","abuse@assurance-maladie.fr","ameli.fr/.well-known/security.txt","https://assurancemaladiesec.github.io/abuse/thanks/","","https://assurancemaladiesec.github.io/abuse/reporting/","https://raw.githubusercontent.com/AssuranceMaladieSec/abuse/master/abuse-gpg-public-key.txt","fr,en"
"amenagement-territoire.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","amenagement-territoire.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"amf.org.au","","devs@yump.com.au","amf.org.au/security.txt","","","https://www.alannahandmadeline.org.au/security-policy","https://www.alannahandmadeline.org.au/pgp-key.txt",""
"amos.ukf.sk","https://moodle.org/security/report/","","amos.ukf.sk/security.txt","https://moodle.org/security/","","https://moodledev.io/general/development/process/security","","en"
"amp.eitb.eus","","teknologia_soporte@eitb.eus","amp.eitb.eus/security.txt","https://www.eitb.eus/hall-of-fame.html","https://www.eitb.eus/eu/eitb-taldea/lan-poltsa/","","https://www.eitb.eus/pgp-tek.txt",""
"amp.rte.ie","","abuse@rte.ie","amp.rte.ie/.well-known/security.txt","","","","https://www.rte.ie/static/pgp/abuse.B54B06C4.pubkey.txt","en, ga"
"amp.svt.se","https://kontakt.svt.se/guide/kontakt","","amp.svt.se/security.txt","","https://svti.svt.se/","","","en sv,"
"ampeu.hr","","info@kontrast.studio","ampeu.hr/security.txt","","","https://ampeu.hr/security-policy","https://ampeu.hr/pgp-key.txt",""
"ampr.gs","","security@bitly.com","ampr.gs/security.txt","","","","https://bitly.com/security_pgp.txt",""
"amzn.to","","security@bitly.com","amzn.to/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ana.ms","","security@bitly.com","ana.ms/security.txt","","","","https://bitly.com/security_pgp.txt",""
"anandakm.com.np","https://hackerone.com/automattic/reports/new","","anandakm.com.np/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"anastasis.lu","","dold@fdold.eu grothoff@gnu.org","anastasis.lu/.well-known/security.txt","","","","https://fdold.eu/dold.asc https://grothoff.org/christian/grothoff.asc",""
"anc.si","","security@bitly.com","anc.si/security.txt","","","","https://bitly.com/security_pgp.txt",""
"anch.co","","security@bitly.com","anch.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"anconatoday.it","tel:+39.39.11.11.11.11","k@k.tt","anconatoday.it/security.txt","","","","","en, it, pl"
"andaluciajunta.es","http://andaluciacert.juntadeandalucia.es","atencion.cert@juntadeandalucia.es","andaluciajunta.es/.well-known/security.txt","","","","",""
"anecopardubice.cz","","error@bohemiasoft.com","anecopardubice.cz/security.txt","","","","",""
"anglianwater.co.uk","","cybersecurity@anglianwater.co.uk","anglianwater.co.uk/.well-known/security.txt","","","","",""
"anglican.ca","","","anglican.ca/security.txt","","","","",""
"angus.pw","","angus+security@pobox.com","angus.pw/.well-known/security.txt","","","","https://pgp.mit.edu/pks/lookup?op=get&search=0x14933FA0E2C095DE","en, fr, it"
"anlux.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","anlux.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"anna.vc","https://hackerone.com/automattic/reports/new","","anna.vc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"annapuu.fi","","hostmaster@managed.fi","annapuu.fi/.well-known/security.txt","","","","",""
"anneliesdekort.nl","","tech@webador.com","anneliesdekort.nl/.well-known/security.txt","","https://www.webador.com/jobs","","","en, nl"
"annuaire-mairie.fr","https://www.annuaire-mairie.fr/contact.html","","annuaire-mairie.fr/security.txt","","","","",""
"anobudelip.cz","","security@fg.cz","anobudelip.cz/.well-known/security.txt","","","","https://www.fg.cz/pgp.asc","cs, en"
"antagning.se","","uhr.produktionssamordning@uhr.se","antagning.se/.well-known/security.txt","","","","",""
"antarcticanz.govt.nz","","clients@batch.nz","antarcticanz.govt.nz/security.txt","","","https://www.antarcticanz.govt.nz/security-policy","https://www.antarcticanz.govt.nz/pgp-key.txt",""
"antarcticscienceplatform.org.nz","","clients@batch.nz","antarcticscienceplatform.org.nz/security.txt","","","https://www.antarcticscienceplatform.org.nz/security-policy","https://www.antarcticscienceplatform.org.nz/pgp-key.txt",""
"antena3.ro","","liviu.draghici@netvibes.ro","antena3.ro/security.txt","","","","",""
"anthropocene.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","anthropocene.au.dk/.well-known/security.txt","","","","",""
"antiksmartway.sk","","security@antik.sk","antiksmartway.sk/.well-known/security.txt","","https://www.antik.jobs","","","cs, en sk,"
"antp.be","","contact@antp.be","antp.be/security.txt","","","","",""
"anundshog.se","","soc@sitevision.se","anundshog.se/.well-known/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"anvilproperty.co.za","","laurence@anvilproperty.co.za","anvilproperty.co.za/.well-known/security.txt","","","","",""
"aol.ca","https://hackerone.com/yahoo","security@yahooinc.com","aol.ca/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"aol.co.uk","https://hackerone.com/yahoo","security@yahooinc.com","aol.co.uk/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"ap.pn","","security@bitly.com","ap.pn/security.txt","","","","https://bitly.com/security_pgp.txt",""
"apha.cz","","adam@laita.cz","apha.cz/.well-known/security.txt","","","","","cs, en"
"api.autovse.kz","","security@smf.kz","api.autovse.kz/.well-known/security.txt","","","","",""
"api.stream.cz","","csirt@firma.seznam.cz","api.stream.cz/security.txt","","","","https://keys.openpgp.org/vks/v1/by-fingerprint/FDB7C0776C9D86E7B30008739C2D1A03A9CCD7EB","cs, en, sk"
"api.twitterstat.us","https://www.atlassian.com/trust/security/report-a-vulnerability","security@atlassian.com","api.twitterstat.us/.well-known/security.txt","","https://www.atlassian.com/company/careers/all-jobs?team=Security","https://www.atlassian.com/trust/security/report-a-vulnerability","https://security-static.prod.atl-paas.net/atlassian-security-public.asc","en"
"apocalypse.cc","https://hackerone.com/automattic/reports/new","","apocalypse.cc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"app.kontent.ai","","security@kontent.ai","app.kontent.ai/.well-known/security.txt","","","","https://app.kontent.ai/pgp-key.txt",""
"appday.tv","https://www.totaljs.com/contact/","support@totaljs.com","appday.tv/security.txt","","","","",""
"apple.co","","security@bitly.com","apple.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"apply.rtu.lv","","security@dreamapply.com","apply.rtu.lv/.well-known/security.txt","","","","https://dreamapply.com/dreamapply-secops.asc","en, et, fr, ka ru,"
"apply.scholarships.lt","","security@dreamapply.com","apply.scholarships.lt/security.txt","","","","https://dreamapply.com/dreamapply-secops.asc","en, et, fr, ka ru,"
"appsalud.minsa.gob.pe","","security@minsa.gob.pe","appsalud.minsa.gob.pe/.well-known/security.txt","","","","","en, es"
"apu.fi","","IT-security@a-lehdet.fi","apu.fi/.well-known/security.txt","","","","https://cdn.a-lehdet.fi/pgp/alehdet.asc","fin,eng"
"apuntes.matiasf.com.ar","https://hackerone.com/automattic/reports/new","","apuntes.matiasf.com.ar/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"aqt.sk","","security@shoptet.cz","aqt.sk/.well-known/security.txt","","https://kariera.shoptet.cz/","","","cs en,"
"aquatik.gg","","security@bitly.com","aquatik.gg/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ar.player.fm","","security@player.fm support@player.fm","ar.player.fm/.well-known/security.txt","","","","","en"
"ara.at","tel:+43 1 59997-0","datenschutz@ara.at it-service@ara.at","ara.at/security.txt","","","","","de, en"
"arachnology.cz","tel:+420604773745","webmaster@arachnology.cz","arachnology.cz/.well-known/security.txt","","","","","cs, en"
"arbeitsagentur.de","","cert@arbeitsagentur.de","arbeitsagentur.de/.well-known/security.txt","","","","https://www.arbeitsagentur.de/.well-known/pgp-key.txt","de, en"
"arbetarbladet.se","","security@bonniernews.se","arbetarbladet.se/.well-known/security.txt","","","","","en sv,"
"arc.ht","","security@bitly.com","arc.ht/security.txt","","","","https://bitly.com/security_pgp.txt",""
"arcg.is","","security@bitly.com","arcg.is/security.txt","","","","https://bitly.com/security_pgp.txt",""
"arch.kth.se","","abuse@kth.se","arch.kth.se/.well-known/security.txt","","","","","en sv,"
"architectenweb.nl","https://architectenweb.nl/algemeen/security.aspx","tech@architectenweb.nl","architectenweb.nl/.well-known/security.txt","",""," https://architectenweb.nl/algemeen/security.aspx","","en, nl"
"archive.fo","","security@archive.is","archive.fo/security.txt","","","","",""
"archive.intereconomics.eu","","support.zbw@feldwaldwiese.de","archive.intereconomics.eu/.well-known/security.txt","","","","",""
"archive.is","","security@archive.is","archive.is/security.txt","","","","",""
"archive.li","","security@archive.is","archive.li/security.txt","","","","",""
"archive.md","","security@archive.is","archive.md/security.txt","","","","",""
"archive.ph","","security@archive.is","archive.ph/security.txt","","","","",""
"archive.vn","","security@archive.is","archive.vn/security.txt","","","","",""
"arcticcoastway.is","","webmaster@stefna.is","arcticcoastway.is/.well-known/security.txt","","","","",""
"ardomu.lv","https://hackerone.com/automattic/reports/new","","ardomu.lv/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"arduino.cc","","security@arduino.cc","arduino.cc/.well-known/security.txt","","","https://www.arduino.cc/en/Main/Security","https://raw.githubusercontent.com/arduino/arduino-cvd-policy/master/security_at_arduino_cc-pub.asc","en"
"arezzonotizie.it","tel:+39.39.11.11.11.11","k@k.tt","arezzonotizie.it/security.txt","","","","","en, it, pl"
"argo.ai","","ext-cyber@argo.ai","argo.ai/.well-known/security.txt","","https://www.argo.ai/join-us/","","","en"
"argusne.ws","","security@bitly.com","argusne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"argyll-bute.gov.uk","","security@argyll-bute.gov.uk","argyll-bute.gov.uk/.well-known/security.txt","","","","","en"
"arjang.se","","soc@sitevision.se","arjang.se/.well-known/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"arsys.es","","security@arsys.es","arsys.es/.well-known/security.txt","","https://www.arsys.es/quienes-somos/trabajo","https://www.arsys.es/it-security","https://keys.openpgp.org/search?q=security%40arsys.es","en, es"
"artermis.co.vu","https://hackerone.com/automattic/reports/new","","artermis.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"artnt.cm","","security@bitly.com","artnt.cm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"arun.gov.uk","https://www.verseone.com/vulnerability-disclosure-policy","","arun.gov.uk/.well-known/security.txt","","","https://www.verseone.com/vulnerability-disclosure-policy","",""
"arvsfonden.se","","soc@sitevision.se","arvsfonden.se/.well-known/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"asb.dk","https://twitter.com/aarhusunicyber","security@au.dk","asb.dk/.well-known/security.txt","","","","",""
"asiakaspalvelu.aluemediat.fi","","cert@sanoma.com","asiakaspalvelu.aluemediat.fi/.well-known/security.txt","","","https://www.sanoma.com/en/responsible-disclosure-statement/","","en"
"asistenta.mero.ro","https://bugcrowd.com/intercom","security@intercom.com","asistenta.mero.ro/.well-known/security.txt","https://bugcrowd.com/intercom/hall-of-fame","https://boards.greenhouse.io/intercom/jobs/1888872","https://www.bugcrowd.com/resource/standard-disclosure-terms/","","en"
"astanaopera.kz","","security@kazinsys.kz","astanaopera.kz/.well-known/security.txt","","","","","en kz, ru,"
"astanasu.kz","","security@kazinsys.kz","astanasu.kz/.well-known/security.txt","","","","","en kz, ru,"
"asth.ma","https://hackerone.com/automattic/reports/new","","asth.ma/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"aston.ac.uk","https://www.bigbluedoor.net/contact","security@bigbluedoor.net","aston.ac.uk/.well-known/security.txt","","","https://github.com/ukncsc/Vulnerability-Disclosure/blob/master/UK-Government-Vulnerability-Disclosure-Policy.md","",""
"astro.lu.se","https://www.ldc.lu.se/tjanster/it-sakerhet tel:+46-46-2229000","abuse@lu.se security@lu.se","astro.lu.se/.well-known/security.txt","","","","",""
"astro.phys.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","astro.phys.au.dk/.well-known/security.txt","","","","",""
"at.olx.ph","","security@bitly.com","at.olx.ph/security.txt","","","","https://bitly.com/security_pgp.txt",""
"atlanterhavskomiteen.no","","utvikler@apt.no","atlanterhavskomiteen.no/security.txt","","","https://www.atlanterhavskomiteen.no/security-policy","https://www.atlanterhavskomiteen.no/pgp-key.txt",""
"atlas.ch","https://security.web.cern.ch/home/en/csirt.shtml","","atlas.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"atlasv.pn","","security@bitly.com","atlasv.pn/security.txt","","","","https://bitly.com/security_pgp.txt",""
"atletiekunie.nl","","hosting+security@tde.nl","atletiekunie.nl/security.txt","","","https://www.tde.nl/security-policy/","https://www.tde.nl/pgp-key.txt","en, nl"
"atm.tk","","security@bitly.com","atm.tk/security.txt","","","","https://bitly.com/security_pgp.txt",""
"atrapalo.pe","https://keybase.io/atrapalo","security@atrapalo.com","atrapalo.pe/.well-known/security.txt","","","","https://keybase.io/atrapalo/key.asc","en es,"
"attacksurface.supportingcast.fm","","sc-security@slate.com","attacksurface.supportingcast.fm/.well-known/security.txt","","","","","en"
"atxne.ws","","security@bitly.com","atxne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"au.dk","https://twitter.com/aarhusunicyber","security@au.dk","au.dk/.well-known/security.txt","","","","",""
"aub.ac.uk","","hello@madebymutual.com","aub.ac.uk/security.txt","","","https://aub.ac.uk/security-policy","https://aub.ac.uk/pgp-key.txt",""
"aud.al","","security@bitly.com","aud.al/security.txt","","","","https://bitly.com/security_pgp.txt",""
"audiolabs-erlangen.de","https://www.rrze.fau.de/infocenter/kontakt-hilfe/sicherheitsvorfaelle/ https://www.rrze.fau.de/infocenter/kontakt-hilfe/sicherheitsvorfaelle/abuse/","abuse@fau.de","audiolabs-erlangen.de/.well-known/security.txt","","https://jobs.rrze.fau.de/","","https://www.rrze.fau.de/files/2022/09/abuse-fau.crt","de, en"
"audm.ag","","security@bitly.com","audm.ag/security.txt","","","","https://bitly.com/security_pgp.txt",""
"augustaraurica.ch","","user@example.com","augustaraurica.ch/security.txt","","","https://www.augustaraurica.ch/security-policy","https://www.augustaraurica.ch/pgp-key.txt",""
"aulari.esmuc.cat","https://moodle.org/security/report/","","aulari.esmuc.cat/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"auspost.com.au","","security@auspost.com.au","auspost.com.au/.well-known/security.txt","https://auspost.com.au/about-us/about-our-site/responsible-disclosure","https://auspost.com.au/jobs","https://auspost.com.au/about-us/about-our-site/responsible-disclosure","https://auspost.com.au/.well-known/pgp-key.txt","en"
"australia.gov.au","","ausgov@dta.gov.au Preferred-Languages: en","australia.gov.au/.well-known/security.txt","","","","",""
"australiaday.vic.gov.au","","sdp.security@dpc.vic.gov.au","australiaday.vic.gov.au/.well-known/security.txt","","","","",""
"australianballet.com.au","","security@australianballet.com.au","australianballet.com.au/.well-known/security.txt","","","","","en"
"autismspectrum.org.au","","devs@yump.com.au","autismspectrum.org.au/security.txt","","","https://www.autismspectrum.org.au/security-policy","https://www.autismspectrum.org.au/pgp-key.txt",""
"auto-bild.ro","","web.security@ringier.ro","auto-bild.ro/security.txt","","","","","en, ro"
"auto-swiat.pl",""," security@ringieraxelspringer.pl","auto-swiat.pl/.well-known/security.txt","","","","https://www.ringieraxelspringer.pl/pgp-key.txt","en, pl"
"autobild.de","","security-incident.nmn@axelspringer.de","autobild.de/.well-known/security.txt","","https://career.axelspringer.com/de/tech","","","en,de,es"
"autode.sk","","security@bitly.com","autode.sk/security.txt","","","","https://bitly.com/security_pgp.txt",""
"automagic.fm","https://hackerone.com/automattic/reports/new","","automagic.fm/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"autonomic.ai","","security@autonomic.com","autonomic.ai/.well-known/security.txt","","","","",""
"autoplius.lt","","pagalba@autoplius.lt","autoplius.lt/.well-known/security.txt","","","","","en, lt, ru"
"autos.yahoo.com.tw","https://hackerone.com/yahoo","security@yahooinc.com","autos.yahoo.com.tw/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"ava.st","","security@bitly.com","ava.st/security.txt","","","","https://bitly.com/security_pgp.txt",""
"avale.re","","security@bitly.com","avale.re/security.txt","","","","https://bitly.com/security_pgp.txt",""
"avantaje.ro","","web.security@ringier.ro","avantaje.ro/security.txt","","","","","en, ro"
"avanza.se","","securityreport@avanza.se","avanza.se/.well-known/security.txt","","","https://www.avanza.se/sakerhet-villkor/sakerhet.html","https://www.avanza.se/avanzabank/hem/om-avanza/securityreport_pub.asc",""
"avc.lu","","security@bitly.com","avc.lu/security.txt","","","","https://bitly.com/security_pgp.txt",""
"avellinotoday.it","tel:+39.39.11.11.11.11","k@k.tt","avellinotoday.it/security.txt","","","","","en, it, pl"
"avito.ru","","security@avito.ru","avito.ru/security.txt","","https://www.avito.ru/company/job/departments/1","https://bugcrowd.com/avito/ https://openbugbounty.org/bugbounty/avito/","",""
"avito.st","","security@avito.ru","avito.st/security.txt","","https://www.avito.ru/company/job/departments/1","https://bugcrowd.com/avito/ https://openbugbounty.org/bugbounty/avito/","",""
"avlne.ws","","security@bitly.com","avlne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"avm.de","","security@avm.de","avm.de/.well-known/security.txt","","https://jobs.avm.de/","https://avm.de/service/sicherheitsinfos-zu-updates/","https://avm.de/fileadmin/user_upload/Global/Service/Sicherheit/avm_security.asc",""
"avropa.se","","staben.sic@kammarkollegiet.se","avropa.se/security.txt","","","","","sv"
"awake.ai","","security@awake.ai","awake.ai/.well-known/security.txt","","","","","en, fi"
"awake.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","awake.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"axa.co.uk","","cert@axa.com","axa.co.uk/.well-known/security.txt","",""," https://cert.axa/","https://cert.axa/sources/AXA-CERT-pubkey.asc",""
"axa.ie","","cert@axa.com","axa.ie/.well-known/security.txt","",""," https://cert.axa/","https://cert.axa/sources/AXA-CERT-pubkey.asc",""
"axellence.lv","","ywpsqgyh@getnada.com","axellence.lv/.well-known/security.txt","","","","",""
"aye.sh","https://aye.sh/contact","","aye.sh/.well-known/security.txt","","","","https://aye.sh/.well-known/keys/gpg-ed25519-2CA18B2097A7429A.txt https://aye.sh/.well-known/keys/gpg-rsa4096-67CE3F1AB15C021E.txt","de en, id, si,"
"ayesh.me","https://aye.sh/contact","","ayesh.me/.well-known/security.txt","","","","https://aye.sh/.well-known/keys/gpg-ed25519-2CA18B2097A7429A.txt https://aye.sh/.well-known/keys/gpg-rsa4096-67CE3F1AB15C021E.txt","de en, id, si,"
"azattyk.kg","","abuse@rferl.org","azattyk.kg/.well-known/security.txt","","","https://www.rferl.org/.well-known/RFERL_Responsible_Disclosure_Policy.pdf","","cs en,"
"azatutyun.am","","abuse@rferl.org","azatutyun.am/.well-known/security.txt","","","https://www.rferl.org/.well-known/RFERL_Responsible_Disclosure_Policy.pdf","","cs en,"
"azc.cc","","security@bitly.com","azc.cc/security.txt","","","","https://bitly.com/security_pgp.txt",""
"azm.ag","","security@bitly.com","azm.ag/security.txt","","","","https://bitly.com/security_pgp.txt",""
"azzz.sk","","podpora@weby24.cz","azzz.sk/.well-known/security.txt","","","","",""
"b-gat.es","","security@bitly.com","b-gat.es/security.txt","","","","https://bitly.com/security_pgp.txt",""
"b-m.cz","https://www.benes-michl.cz/#kontakt https://www.messenger.com/t/97237158518","support@b-m.cz","b-m.cz/security.txt","","https://www.benes-michl.cz/kariera/","","",""
"b-mall.ro","","dev@b-mall.ro","b-mall.ro/.well-known/security.txt","","","","","en, ro"
"b.qr.ae","","security@bitly.com","b.qr.ae/security.txt","","","","https://bitly.com/security_pgp.txt",""
"b.walla.co.il","","support@walla.net.il","b.walla.co.il/.well-known/security.txt","","","https://dcx.walla.co.il/walla/terms/terms.pdf","","en, he"
"babt.ec","","security@bitly.com","babt.ec/security.txt","","","","https://bitly.com/security_pgp.txt",""
"backmarket.fr","","security@backmarket.com","backmarket.fr/.well-known/security.txt","","https://jobs.backmarket.com/","","https://keys.openpgp.org/search?q=security@backmarket.com https://www.backmarket.com/.well-known/security-pubkey.txt openpgp4fpr:2cebfa0bd82d37009ab2add25edd605bb8f4c0dd",""
"badtimi.ng","","security@bitly.com","badtimi.ng/security.txt","","","","https://bitly.com/security_pgp.txt",""
"baerum.kommune.no","https://www.baerum.kommune.no/kontakt-oss/ tel:004767504050","it-brukerstotte@baerum.kommune.no","baerum.kommune.no/.well-known/security.txt","Acknowledgements Tell any be bug can for given higher or privacy. publically reporting reports, respect severity to us us. we what when will wish you your","https://candidate.webcruiter.com/nb-no/home/companyadverts?companylock=67504050#search","Please We advance any bug can cause contact denial friendly if in methods of or report. service. that to trigger us use warnings welcome wish you","","en nb,"
"bahai-studies.ca","","webmaster@bahaistudies.ca","bahai-studies.ca/.well-known/security.txt","","","","https://bahaistudies.ca/.well-known/pgp-key.txt","en"
"bahn.de","","security-issues@deutschebahn.com","bahn.de/.well-known/security.txt","","https://db.de/infosec-jobs","","https://www.deutschebahn.com/security-issues-pubkey.txt",""
"bailey.sh","","security@bailey.sh","bailey.sh/.well-known/security.txt","","","","",""
"bama.no","","secuity@epinova.no","bama.no/.well-known/security.txt","","","","",""
"bancatransilvania.ro","","cybersec@btrl.ro","bancatransilvania.ro/.well-known/security.txt","","mailto:recrutare@btrl.ro?subject=Security%20Opportunities","https://www.bancatransilvania.ro/en/responsible-disclosure-policy","https://keys.openpgp.org/vks/v1/by-fingerprint/2FE7655487047C4738D6A0E56F077A29C359A429","en, ro"
"bankless.cc","","security@bitly.com","bankless.cc/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bankrbk.kz","https://t.me/rbk_bugbounty_bot","","bankrbk.kz/.well-known/security.txt","","","","",""
"barbertontimes.co.za","","noc@rsaweb.net","barbertontimes.co.za/.well-known/security.txt","","","","",""
"barclays.co.uk","https://barclays.responsibledisclosure.com","internetsecurity@barclays.com","barclays.co.uk/.well-known/security.txt","","https://home.barclays/careers/","","",""
"barentswatch.no","","post@barentswatch.no","barentswatch.no/.well-known/security.txt","","","","",""
"baritoday.it","tel:+39.39.11.11.11.11","k@k.tt","baritoday.it/security.txt","","","","","en, it, pl"
"barnaheill.is","","webmaster@stefna.is","barnaheill.is/.well-known/security.txt","","","","",""
"barnardos.org.uk","","websiteteam@barnardos.org.uk","barnardos.org.uk/.well-known/security.txt","","","","",""
"barrandov.tv","https://www.facebook.com/vaclav.vlcek","vaclav.vlcek@tyden.cz","barrandov.tv/.well-known/security.txt","","","","",""
"bart.sk","https://www.bart.sk/nahlasenie-problemu","abuse@bart.sk","bart.sk/.well-known/security.txt","","https://www.bart.sk/pridaj-sa","","",""
"bartshealth.nhs.uk","https://www.verseone.com/vulnerability-disclosure-policy","","bartshealth.nhs.uk/security.txt","","","https://www.verseone.com/vulnerability-disclosure-policy","",""
"base.be","","cybersecurity@telenetgroup.be","base.be/.well-known/security.txt","","",""," GPG Use below email emails: encrypt if key mentioned public send sensitive/Confidential the to wish you","EN,NL,FR"
"base64.ai","","support@base64.ai","base64.ai/.well-known/security.txt","","","","",""
"basemap.at","+43-1-4000-71112 https://www.wien.gv.at/english/administration/ict/cert.html","cert@wien.gv.at","basemap.at/security.txt","","","","https://wiencert.at/asc/pgpkeys.asc",""
"basepack.co","","security@antipacket.com","basepack.co/.well-known/security.txt","","","","","en"
"bauhaus.es","","security.txt@bahag.com","bauhaus.es/.well-known/security.txt","","","","","de, en"
"bauhaus.hr","","security.txt@bahag.com","bauhaus.hr/.well-known/security.txt","","","","","de, en"
"bayareane.ws","","security@bitly.com","bayareane.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"baybus.co.nz","tel:+64-7-922-3390","security@boprc.govt.nz","baybus.co.nz/.well-known/security.txt","","","","","en"
"bazaarcafe.ma","https://hackerone.com/automattic/reports/new","","bazaarcafe.ma/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"bazonline.ch","","security@tx.group","bazonline.ch/.well-known/security.txt","","","https://bugcrowd.com/tamedia","","de en,"
"bbc.co.uk","","security@bbc.co.uk","bbc.co.uk/.well-known/security.txt","","https://careerssearch.bbc.co.uk/jobs/search","https://www.bbc.com/backstage/security-disclosure-policy/","","en"
"bbc.in","","security@bitly.com","bbc.in/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bbz.hr","","wmd@wmd.hr","bbz.hr/security.txt","","","https://bbz.hr/security-policy","https://bbz.hr/pgp-key.txt",""
"bcb.gov.br","","security@bcb.gov.br<br/>","bcb.gov.br/security.txt","","","","",""
"bcc-invest.kz","","agalichev@bcc-invest.kz","bcc-invest.kz/.well-known/security.txt","","","","",""
"bcene.ws","","security@bitly.com","bcene.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bcu.com.au","","external_security@bcu.com.au","bcu.com.au/.well-known/security.txt","","","","",""
"beac.hu","","otto@webmenedzser.hu","beac.hu/security.txt","","","https://www.beac.hu/security-policy","https://www.beac.hu/pgp-key.txt",""
"beams.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","beams.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"beats.is","","security@bitly.com","beats.is/security.txt","","","","https://bitly.com/security_pgp.txt",""
"becas.cabildofuer.es","","hello@pixinvent.com","becas.cabildofuer.es/.well-known/security.txt","","","","",""
"beeldengeluid.nl","","security@hostingsecure.com","beeldengeluid.nl/security.txt","","","","","en"
"beeline.kz","","security@beeline.kz","beeline.kz/security.txt","https://beeline.kz/binaries/content/assets/example/responsible-disclosure-policy.pdf","","https://beeline.kz/binaries/content/assets/example/responsible-disclosure-policy.pdf","","ru"
"behindthenumbers.ca","","mike@belikewater.ca","behindthenumbers.ca/security.txt","","","https://monitormag.ca/security-policy","https://monitormag.ca/pgp-key.txt",""
"belastingdienst.nl","","soc@belastingdienst.nl","belastingdienst.nl/.well-known/security.txt","https://www.belastingdienst.nl/wps/wcm/connect/bldcontenten/standaard_functies/individuals/contact/data-leak-vulnerability-abuse-computer-systems/hall-of-fame-cvd","","https://www.belastingdienst.nl/wps/wcm/connect/bldcontenten/standaard_functies/individuals/contact/data-leak-vulnerability-abuse-computer-systems","https://download.belastingdienst.nl/security/pgpkeys/soc-belastingdienst-2022.asc","en,nl"
"belvue.be","","helpdesk@webdoos.be","belvue.be/security.txt","","","https://www.belvue.be/en/security-policy","https://www.belvue.be/en/pgp-key.txt",""
"beneri.se","","benjamin@beneri.se","beneri.se/.well-known/security.txt","https://beneri.se/hall-of-fame.php","","https://beneri.se/disclosure-policy.php","https://keybase.io/beneri/pgp_keys.asc?fingerprint=89e9fd053e5f35765770096feedd589bd5f95eae","en, sv"
"benes-michl.cz","https://www.benes-michl.cz/#kontakt https://www.messenger.com/t/97237158518","support@b-m.cz","benes-michl.cz/security.txt","","https://www.benes-michl.cz/kariera/","","",""
"benonicitytimes.co.za","","noc@rsaweb.net","benonicitytimes.co.za/.well-known/security.txt","","","","",""
"benu.cz","","(michal.masek@peckadesign.cz) (support@peckadesign.cz) (v.petrasova@benu.cz) Masek Michal PeckaDesign Petrasova Viktoria support","benu.cz/.well-known/security.txt","","","","",""
"benulekaren.sk","","(michal.havelka@benulekaren.sk) (michal.masek@peckadesign.cz) (support@peckadesign.cz) Havelka Masek Michal PeckaDesign support","benulekaren.sk/.well-known/security.txt","","","","",""
"bereamail.co.za","","noc@rsaweb.net","bereamail.co.za/.well-known/security.txt","","","","",""
"beredskab.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","beredskab.au.dk/.well-known/security.txt","","","","",""
"bergen.kommune.no","(alfakrøll) Mail at bergen.kommune.no itsikkerhet us","","bergen.kommune.no/security.txt","Acknowledgements Tell any be bug can for given higher or privacy. publicly reporting reports, respect severity to us us. we what when will wish you your","/.well-known/security.txt HTTP/1.1 https://www.bergen.kommune.no/jobb https://www.bergen.kommune.no/jobbGET","Please We advance any bug can cause contact denial friendly if in methods of or report. service. that to trigger us use warnings welcome wish you","","en nb,"
"berlin.de","","security@berlinonline.net","berlin.de/.well-known/security.txt","","","https://www.berlin.de/wir-ueber-uns/security","https://www.berlin.de/.well-known/berlinonline-security.pub.asc","de,en"
"berlinonair.cc","https://hackerone.com/automattic/reports/new","","berlinonair.cc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"bernerzeitung.ch","","security@tx.group","bernerzeitung.ch/.well-known/security.txt","","","https://bugcrowd.com/tamedia","","de en,"
"berrytube.tv","","bt-security@atte.fi","berrytube.tv/.well-known/security.txt","","","","",""
"besta.pe","https://hackerone.com/automattic/reports/new","","besta.pe/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"besttravelphotos.me","https://hackerone.com/automattic/reports/new","","besttravelphotos.me/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"beta.cs.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","beta.cs.au.dk/.well-known/security.txt","","","","",""
"betfair.es","https://hackerone.com/flutteruki","","betfair.es/.well-known/security.txt","","https://apply.betfairromania.ro/vacancy/find/results/ https://apply.blip.pt/jobs/vacancy/find/results/ https://apply.paddypowerbetfair.jobs/betfair/vacancy/find/results/ https://apply.workwithpaddy.com/wwp/vacancy/find/results/","https://hackerone.com/flutteruki","","en"
"betfury.tv","","security@bitly.com","betfury.tv/security.txt","","","","https://bitly.com/security_pgp.txt",""
"betterhealth.vic.gov.au","","sdp.security@dpc.vic.gov.au","betterhealth.vic.gov.au/.well-known/security.txt","","","","",""
"bezpecnostnicentrum.cz","","security@fg.cz","bezpecnostnicentrum.cz/.well-known/security.txt","","","","https://www.fg.cz/pgp.asc","cs, en"
"bfdi.bund.de","","security@bfdi.bund.de","bfdi.bund.de/security.txt","","","","https://keys.openpgp.org/vks/v1/by-fingerprint/53BBF0D42B4790977C5B83BFB4076F1EB96218B5","de, en"
"bfore.ai","","security@bfore.ai","bfore.ai/.well-known/security.txt","","https://bforeai.factorialhr.com/","","","en, es, fr"
"bfpne.ws","","security@bitly.com","bfpne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bgg.cc","","security@boardgamegeek.com","bgg.cc/.well-known/security.txt","","","https://boardgamegeek.com/responsible_disclosure_policy","https://boardgamegeek.com/download/pgp.txt",""
"bhpho.to","","security@bitly.com","bhpho.to/security.txt","","","","https://bitly.com/security_pgp.txt",""
"biano.cz","","it@biano.com","biano.cz/.well-known/security.txt","","","","","en"
"bid.sk","https://www.totaljs.com/contact/","support@totaljs.com","bid.sk/.well-known/security.txt","","","","",""
"biderundtanner.ch","","support@bpm.ch","biderundtanner.ch/.well-known/security.txt","","","","",""
"bidorbuy.co.za","","tech+vulnerability@bidorbuy.co.za","bidorbuy.co.za/security.txt","","jobs@bidorbuy.co.za","https://www.bidorbuy.co.za/help/6743/Vulnerability_Disclosure","https://www.bidorbuy.co.za/bidorbuy-gpg-public-key.asc",""
"bigbank.ee","https://ca.bigbank.eu/security","security@bigbank.eu","bigbank.ee/.well-known/security.txt","","https://jobs.bigbank.eu","https://ca.bigbank.eu/security","",""
"bigbank.lt","https://ca.bigbank.eu/security","security@bigbank.eu","bigbank.lt/.well-known/security.txt","","https://jobs.bigbank.eu","https://ca.bigbank.eu/security","",""
"bigbank.lv","https://ca.bigbank.eu/security","security@bigbank.eu","bigbank.lv/.well-known/security.txt","","https://jobs.bigbank.eu","https://ca.bigbank.eu/security","",""
"bigegg.co.vu","https://hackerone.com/automattic/reports/new","","bigegg.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"bigfi.sh","","security@bitly.com","bigfi.sh/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bike.sh","","security@bitly.com","bike.sh/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bilan.ch","","security@tx.group","bilan.ch/.well-known/security.txt","","","https://bugcrowd.com/tamedia","","de en,"
"bild.de","","security-incident.nmn@axelspringer.de","bild.de/.well-known/security.txt","","https://career.axelspringer.com/de/tech","","","en,de,es"
"bildderfrau.de","","disclosure@funkemedien.de","bildderfrau.de/.well-known/security.txt","","","","","de, en"
"billetweb.fr","","security@billetweb.fr","billetweb.fr/.well-known/security.txt","","","","https://pgp.mit.edu/pks/lookup?op=vindex&search=0xF5620B4A8F74DDFE","en,fr"
"bin.re","","security@bin.re","bin.re/.well-known/security.txt","","","","https://keybase.io/baderj/pgp_keys.asc?fingerprint=2cf7a0fc9bd70ed9f3a46999b9e39c09ead3914f https://www.globaltrustpoint.com/get?email=hello@johannesbader.ch","de en,"
"binance.me","","security@binance.com","binance.me/.well-known/security.txt","","https://www.binance.com/Careers.html","https://bugcrowd.com/binance","",""
"binged.it","","security@bitly.com","binged.it/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bioenergy.org.nz","","support@vcsnet.co.uk","bioenergy.org.nz/.well-known/security.txt","","","","","en"
"biog.lu","","elodie@everythingisfun.eu","biog.lu/security.txt","","","https://www.oikopolis.lu/de/security-policy","https://www.oikopolis.lu/de/pgp-key.txt",""
"biografieonline.it","","","biografieonline.it/security.txt","","","","",""
"biology.lu.se","https://www.ldc.lu.se/tjanster/it-sakerhet tel:+46-46-2229000","abuse@lu.se security@lu.se","biology.lu.se/.well-known/security.txt","","","","",""
"biomedix.cz","","security@shoptet.cz","biomedix.cz/security.txt","","https://kariera.shoptet.cz/","","","cs en,"
"biorganica.cz","https://www.simplia.cz","admin@simplia.cz","biorganica.cz/.well-known/security.txt","","","","","cs, en"
"birc.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","birc.au.dk/.well-known/security.txt","","","","",""
"bird.co","","security@bird.co","bird.co/security.txt","","https://www.bird.co/careers/","https://docs.google.com/document/d/1uONlnLYC55398Y2EfyIJu5jRzf4qGa3tJvKlXfLp9MY/view","https://static.bird.co/pgp",""
"bis.gov.uk","https://hackerone.com/44c348eb-e030-4273-b445-d4a2f6f83ba8/embedded_submissions/new https://www.gov.uk/contact/govuk","","bis.gov.uk/.well-known/security.txt","https://vdp.cabinetoffice.gov.uk/thanks.txt","https://www.civilservicejobs.service.gov.uk/","https://www.gov.uk/help/report-vulnerability","",""
"bit.nl","","cert@bit.nl","bit.nl/.well-known/security.txt","","","https://www.bit.nl/en/about-bit/terms-and-policies/responsible-disclosure-en","https://www.bit.nl/uploads/pdf-files/pgp_cert_bit_nl.txt","en, nl"
"bitdefender.pt","","bugbounty@bitdefender.com","bitdefender.pt/security.txt","https://www.bitdefender.com/site/view/bug-bounty-hall-of-fame.html","","https://www.bitdefender.com/bitdefender_vulnerability_disclosure_program.html","https://www.bitdefender.com/media/materials/bug_bounty/bugbounty_bitdefender.com_public.asc",""
"bitdefender.ro","","bugbounty@bitdefender.com","bitdefender.ro/security.txt","https://www.bitdefender.com/site/view/bug-bounty-hall-of-fame.html","","https://www.bitdefender.com/bitdefender_vulnerability_disclosure_program.html","https://www.bitdefender.com/media/materials/bug_bounty/bugbounty_bitdefender.com_public.asc",""
"bitly.is","","security@bitly.com","bitly.is/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bitsig.ht","","security@bitly.com","bitsig.ht/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bitsoflove.be","","user@example.com","bitsoflove.be/security.txt","","","//www.bitsoflove.be/security-policy","//www.bitsoflove.be/pgp-key.txt",""
"bittiraha.fi","https://coinmotion.com/contact/","","bittiraha.fi/.well-known/security.txt","","","","","en"
"bizboo.st","","security@bitly.com","bizboo.st/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bizedge.co.nz","","info@techday.com","bizedge.co.nz/.well-known/security.txt","","","","","en"
"bjournal.id","","security@bitly.com","bjournal.id/security.txt","","","","https://bitly.com/security_pgp.txt",""
"blablacar.com.tr","https://yeswehack.com/programs/bug-bounty-program-blablacar","","blablacar.com.tr/.well-known/security.txt","","/.well-known/security.txt HTTP/1.1 https://www.blablacar.com/dreamjobs https://www.blablacar.com/dreamjobsGET","","",""
"blablacar.fr","https://yeswehack.com/programs/bug-bounty-program-blablacar","","blablacar.fr/.well-known/security.txt","","/.well-known/security.txt HTTP/1.1 https://www.blablacar.com/dreamjobs https://www.blablacar.com/dreamjobsGET","","",""
"blablacar.mx","https://yeswehack.com/programs/bug-bounty-program-blablacar","","blablacar.mx/.well-known/security.txt","","https://www.blablacar.com/dreamjobs","","",""
"blackfire.io","","security@platform.sh","blackfire.io/.well-known/security.txt","","https://platform.sh/company/careers/","https://platform.sh/tos/#section-10-disclosures-and-notices","https://platform.sh/pgp-key.txt","en"
"blank.p3.no","","IT-Sikkerhetsgruppe@nrk.no","blank.p3.no/.well-known/security.txt","https://info.nrk.no/hjem/responsible-disclosure-policy/#security-hall-of-fame","","https://info.nrk.no/hjem/responsible-disclosure-policy/","","no,en"
"blauwwind.nl","","martijn@pixeldeluxe.nl","blauwwind.nl/security.txt","","","https://www.blauwwind.nl/security-policy","https://www.blauwwind.nl/pgp-key.txt",""
"blck.by","","security@bitly.com","blck.by/security.txt","","","","https://bitly.com/security_pgp.txt",""
"blckbx.tv","","sean@niice.nl","blckbx.tv/security.txt","","","https://www.blckbx.tv/security-policy","https://www.blckbx.tv/pgp-key.txt",""
"blick.ch","","blick-security@ringier.ch","blick.ch/.well-known/security.txt","","","","https://www.blick.ch/pgp-key.txt",""
"blindenbuecherei.de","","support.blindenbuecherei@feldwaldwiese.de","blindenbuecherei.de/.well-known/security.txt","","","","",""
"blip.sh","","security@bitly.com","blip.sh/security.txt","","","","https://bitly.com/security_pgp.txt",""
"blnds.cm","","security@bitly.com","blnds.cm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"blog.archive.is","https://hackerone.com/automattic/reports/new","","blog.archive.is/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.arduino.cc","","security@arduino.cc","blog.arduino.cc/.well-known/security.txt","","","https://www.arduino.cc/en/Main/Security","https://raw.githubusercontent.com/arduino/arduino-cvd-policy/master/security_at_arduino_cc-pub.asc","en"
"blog.bloomdigital.to","https://hackerone.com/automattic/reports/new","","blog.bloomdigital.to/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.bofh.it","","md@linux.it","blog.bofh.it/.well-known/security.txt","","","","https://www.linux.it/~md/md-pgp.asc","en, fr it,"
"blog.brokenhelmet.co.ke","https://hackerone.com/automattic/reports/new","","blog.brokenhelmet.co.ke/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.bu.mp","https://hackerone.com/automattic/reports/new","","blog.bu.mp/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.danbo.vg","https://hackerone.com/automattic/reports/new","","blog.danbo.vg/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.devny.vc","https://hackerone.com/automattic/reports/new","","blog.devny.vc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.devops.co.il","https://hackerone.com/automattic/reports/new","","blog.devops.co.il/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.domai.nr","https://hackerone.com/automattic/reports/new","","blog.domai.nr/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.droidtown.co","https://hackerone.com/automattic/reports/new","","blog.droidtown.co/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.elnino.si","https://hackerone.com/automattic/reports/new","","blog.elnino.si/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.flameeyes.eu","https://facebook.com/flameeyes.blog","","blog.flameeyes.eu/.well-known/security.txt","","","","",""
"blog.fullbrig.ht","https://hackerone.com/automattic/reports/new","","blog.fullbrig.ht/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.gilosco.pe","https://hackerone.com/automattic/reports/new","","blog.gilosco.pe/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.hubspot.es","","security-notifications@hubspot.com","blog.hubspot.es/.well-known/security.txt","https://bugcrowd.com/hubspot/hall-of-fame","https://www.hubspot.com/careers/jobs?q=security","https://bugcrowd.com/hubspot","https://keys.openpgp.org/vks/v1/by-fingerprint/E371B45F4D5F85C23988C329EF61CA0FB48DFC4E","en"
"blog.klips.my","https://hackerone.com/automattic/reports/new","","blog.klips.my/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.lara.do","https://hackerone.com/automattic/reports/new","","blog.lara.do/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.lumi.do","https://hackerone.com/automattic/reports/new","","blog.lumi.do/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.matt.cc","https://hackerone.com/automattic/reports/new","","blog.matt.cc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.oskarsson.nu","https://hackerone.com/automattic/reports/new","","blog.oskarsson.nu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.pault.ag","https://hackerone.com/automattic/reports/new","","blog.pault.ag/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.pigno.se","https://hackerone.com/automattic/reports/new","","blog.pigno.se/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.radi.ws","https://hackerone.com/automattic/reports/new","","blog.radi.ws/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.rawcinemashop.be","https://hackerone.com/automattic/reports/new","","blog.rawcinemashop.be/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.recast.ai","https://www.sap.com/report-a-vulnerability","","blog.recast.ai/.well-known/security.txt","","","","",""
"blog.redwingheritage.eu","https://hackerone.com/automattic/reports/new","","blog.redwingheritage.eu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.rootshell.be","https://xameco.net/security-contact.html tel:+32-10-870191","csirt(at)xameco(dot)net","blog.rootshell.be/.well-known/security.txt","","","","https://github.com/xme/pgp","en, fr, nl"
"blog.ryotak.me","https://twitter.com/ryotkak","ryotak.me security ï¼ ","blog.ryotak.me/.well-known/security.txt","","","","","en, ja"
"blog.sanctum.geek.nz","","tom@sanctum.geek.nz","blog.sanctum.geek.nz/security.txt","","","","https://sanctum.geek.nz/keys/pgp/tom@sanctum.geek.nz.asc","en"
"blog.seedboxes.cc","https://hackerone.com/automattic/reports/new","","blog.seedboxes.cc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.self.li","https://hackerone.com/automattic/reports/new","","blog.self.li/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.st.nu","","security@bonniernews.se","blog.st.nu/.well-known/security.txt","","","","","en sv,"
"blog.technarium.lt","--><!-- --><meta /><!-- /></head> /><meta ></script><script A All BEGIN BY-NC-SA BY-NC-SA... CC END FACEBOOK Found Graph HTML. If Lithuania. OPENGRAPH Open Read TAGS TUMBLR TWITTER URL Vilnius, and be charset=utf-8><meta content content=305343404 content=48119224995 content=A content=Not content=The content=Tumblr content=article content=com.tumblr content=summary content=technarium content=technariumas content=tumblr content=tumblr://x-callback-url/blog?blogName=technariumas&postID= content=tumblr://x-callback-url/blog?blogName=technariumas&referrer=twitter-cards could crew{Ä
}technarium.lt define found. hackerspace href=https://assets.tumblr.com/fonts/gibson/stylesheet.css?v=3><!-- http://ogp.me/ https://hackerone.com/automattic/reports/new in like more: name=twitter:app:id:googleplay name=twitter:app:id:ipad name=twitter:app:id:iphone name=twitter:app:name:googleplay name=twitter:app:name:ipad name=twitter:app:name:iphone name=twitter:app:url:googleplay name=twitter:app:url:ipad name=twitter:app:url:iphone name=twitter:card name=twitter:creator name=twitter:description name=twitter:site name=twitter:title not og:title og:url only. own property=al:android:app_name property=al:android:package property=al:android:url property=al:ios:app_name property=al:ios:app_store_id property=al:ios:url property=fb:app_id property=og:description property=og:site_name property=og:title property=og:type rel=stylesheet requested specify src=https://assets.tumblr.com/assets/scripts/tumblelog_post_message_queue.js?_v=a8fadfa499d8cb7c3f8eefdf0b1adfdd></script><link tags tags, the theme's to type=text/css you you'd your 4.0.","","blog.technarium.lt/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.theoakbrewery.be","https://hackerone.com/automattic/reports/new","","blog.theoakbrewery.be/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blog.whisper.sh","https://hackerone.com/automattic/reports/new","","blog.whisper.sh/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"blogging.im","","security@bitly.com","blogging.im/security.txt","","","","https://bitly.com/security_pgp.txt",""
"blogit.hs.fi","","cert@sanoma.com sndp.oncall@sanoma.com","blogit.hs.fi/.well-known/security.txt","","","https://www.sanoma.com/en/responsible-disclosure-statement/","","en"
"blogs.warwick.ac.uk","https://warwick.ac.uk/itss","CSIIRT@warwick.ac.uk","blogs.warwick.ac.uk/.well-known/security.txt","","","","https://warwick.ac.uk/itss/war-csiirt.asc",""
"blogspot.sk","https://g.co/vulnz","security@google.com","blogspot.sk/.well-known/security.txt","","https://g.co/SecurityPrivacyEngJobs","https://g.co/vrp","https://services.google.com/corporate/publickey.txt",""
"blonduos.is","","webmaster@stefna.is","blonduos.is/.well-known/security.txt","","","","",""
"bloodsafelearning.org.au","","support@bloodsafelearning.org.au","bloodsafelearning.org.au/.well-known/security.txt","","","","","en"
"bloodwing.co.vu","https://hackerone.com/automattic/reports/new","","bloodwing.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"bloom.bg","","security@bitly.com","bloom.bg/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bloom.sh","","security@bloom.sh","bloom.sh/security.txt","","","","",""
"blrrm.tv","","security@bitly.com","blrrm.tv/security.txt","","","","https://bitly.com/security_pgp.txt",""
"blue-style.cz","https://www.siteone.cz/","security@siteone.cz","blue-style.cz/.well-known/security.txt","","https://www.siteone.cz/","","",""
"bluet.hm","","security@bitly.com","bluet.hm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"blur.by","","security@bitly.com","blur.by/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bm-dijon.fr","","rgpd@archimed.fr","bm-dijon.fr/.well-known/security.txt","","","","","/.well-known/security.txt HTTP/1.1 en enGET fr,"
"bm.rlp.de","","soc@cert.rlp.de","bm.rlp.de/security.txt","","","","https://cert.rlp.de/fileadmin/cert/soc%40cert.rlp.de.pub.sig.asc",""
"bmhc.bh","","giulio.r@interstateteam.com","bmhc.bh/security.txt","","","https://www.mumtalakat.bh/security-policy","https://www.mumtalakat.bh/pgp-key.txt",""
"bmw-lao.la","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw-lao.la/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw-motorrad.com.ar","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw-motorrad.com.ar/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.bg","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.bg/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.ca","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.ca/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.co.id","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.co.id/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.co.kr","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.co.kr/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.co.th","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.co.th/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.co.uk","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.co.uk/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.co.za","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.co.za/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.ar","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.ar/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.bd","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.bd/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.cy","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.cy/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.kh","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.kh/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.mt","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.mt/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.my","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.my/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.pa","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.pa/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.pe","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.pe/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.ph","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.ph/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.py","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.py/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.sg","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.sg/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.com.tr","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.com.tr/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt /security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.de","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.de/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.ee","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.ee/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.es","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.es/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.fr","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.fr/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt /security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.gr","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.gr/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.hr","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.hr/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.ie","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.ie/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.in","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.in/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.lk","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.lk/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.lu","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.lu/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.pt","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.pt/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.ro","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.ro/.well-known/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.si","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.si/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.sr","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.sr/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.ua","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.ua/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bmw.vn","https://hackerone.com/bmwgroup/ https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","cert@bmw.de","bmw.vn/security.txt","https://hackerone.com/bmwgroup/thanks https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","","/.well-known/security.txt HTTP/1.1 https://hackerone.com/bmwgroup?type=team&view_policy=true https://hackerone.com/bmwgroup?type=team&view_policy=trueGET https://www.bmwgroup.com/de/general/Security.html https://www.bmwgroup.com/en/general/Security.html","https://www.bmwgroup.com/content/dam/grpw/websites/bmwgroup_com/general/security/cert.txt","en,de"
"bnl.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","bnl.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"bnl.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","bnl.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"bny.mn","","security@bitly.com","bny.mn/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bo.st","","security@bitly.com","bo.st/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bobek.cz","","security@bobek.cz","bobek.cz/.well-known/security.txt","","","","https://www.bobek.cz/keybase.txt","cs, en"
"boete.nu","","security@hostingsecure.com","boete.nu/security.txt","","","","","en"
"boi.st","","security@bitly.com","boi.st/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bolden.nl","","hello@bolden.nl","bolden.nl/security.txt","","","https://www.bolden.nl/security-policy","https://www.bolden.nl/pgp-key.txt",""
"bolognatoday.it","tel:+39.39.11.11.11.11","k@k.tt","bolognatoday.it/security.txt","","","","","en, it, pl"
"bolt.eu","https://bolt.eu/en/security/","PGP https://bolt.eu/en/security/public-vulnerability/#pgpKey key or our security@bolt.eu using with, without,","bolt.eu/security.txt","","https://bolt.eu/en/careers/","https://www.bolt.eu/security/public-vulnerability/","","en"
"bonacasa.ch","","info@mindtwo.de","bonacasa.ch/security.txt","","","https://www.bonacasa.ch/de/security-policy","https://www.bonacasa.ch/de/pgp-key.txt",""
"bongo.cat","","eric@eric.gg","bongo.cat/.well-known/security.txt","","","","","de en,"
"bonsai-slovakia.sk","","security@floxcloud.net","bonsai-slovakia.sk/security.txt","","","","","/.well-known/security.txt HTTP/1.1 cs, de, en, es, sk skGET"
"booki.ng","","security@bitly.com","booki.ng/security.txt","","","","https://bitly.com/security_pgp.txt",""
"books.supportingcast.fm","","sc-security@slate.com","books.supportingcast.fm/.well-known/security.txt","","","","","en"
"boprc.govt.nz","tel:+64-7-922-3390","security@boprc.govt.nz","boprc.govt.nz/.well-known/security.txt","","","","",""
"boras.se","","soc@sitevision.se","boras.se/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"borgarbyggd.is","","webmaster@stefna.is","borgarbyggd.is/.well-known/security.txt","","","","",""
"borgarfjordureystri.is","","webmaster@stefna.is","borgarfjordureystri.is/.well-known/security.txt","","","","",""
"bosswin.co.vu","https://hackerone.com/automattic/reports/new","","bosswin.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"botconnector.recast.ai","https://www.sap.com/report-a-vulnerability","","botconnector.recast.ai/.well-known/security.txt","","","","",""
"botkyrka.se","","soc@sitevision.se","botkyrka.se/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"boutique.laposte.fr","/.well-known/security.txt HTTP/1.1 https://www.trusted-introducer.org/directory/teams/cert-la-poste.html https://www.trusted-introducer.org/directory/teams/cert-la-poste.htmlGET","","boutique.laposte.fr/.well-known/security.txt","","","","",""
"boutique.orange.fr","","security.fr@orange.com","boutique.orange.fr/.well-known/security.txt","","https://orange.jobs/","","https://www.orange.fr/.well-known/securityfr-pubkey.asc",""
"bouvet.no","","ciso@bouvet.no","bouvet.no/.well-known/security.txt","","https://www.bouvet.no/bli-en-av-oss","","","en"
"bowtie.com.hk","","security@bowtie.com.hk","bowtie.com.hk/security.txt","","https://www.bowtie.com.hk/careers","","","en, zh"
"boyner.com.tr","","security@boyner.com.tr","boyner.com.tr/security.txt","","","","",""
"bra.se","","soc@sitevision.se","bra.se/.well-known/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"brandonlin.me","https://keybase.io/blin00","","brandonlin.me/security.txt","","","","https://keybase.io/blin00/pgp_keys.asc?fingerprint=09257d7d4240e76d312e293b352d50b10b90b1dd",""
"bravou.re","","security@bitly.com","bravou.re/security.txt","","","","https://bitly.com/security_pgp.txt",""
"brekkuskoli.is","","webmaster@stefna.is","brekkuskoli.is/.well-known/security.txt","","","","",""
"bresciatoday.it","tel:+39.39.11.11.11.11","k@k.tt","bresciatoday.it/security.txt","","","","","en, it, pl"
"brew.sh","https://github.com/Homebrew/brew/security/advisories/new","","brew.sh/.well-known/security.txt","https://hackerone.com/homebrew/thanks","","https://github.com/Homebrew/.github/blob/HEAD/SECURITY.md","","en"
"brics.dk","https://twitter.com/aarhusunicyber","security@au.dk","brics.dk/.well-known/security.txt","","","","",""
"brid.gy","","bridgy@ryanb.org","brid.gy/.well-known/security.txt","","","","","en"
"bride.st","","security@bitly.com","bride.st/security.txt","","","","https://bitly.com/security_pgp.txt",""
"brindisireport.it","tel:+39.39.11.11.11.11","k@k.tt","brindisireport.it/security.txt","","","","","en, it, pl"
"britishschool.si","","user@example.com","britishschool.si/security.txt","","","https://britishschool.si/security-policy","https://britishschool.si/pgp-key.txt",""
"britishschoolquito.edu.ec","","user@example.com","britishschoolquito.edu.ec/security.txt","","","https://britishschoolquito.edu.ec/security-policy","https://britishschoolquito.edu.ec/pgp-key.txt",""
"britneynicole.co.vu","https://hackerone.com/automattic/reports/new","","britneynicole.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"brno.cz","","sedlacek.frantisek@brno.cz","brno.cz/.well-known/security.txt","","","","","cs, en"
"broadbandmap.nz","https://internetnz.nz/vulnerability-disclosure-policy","security@internetnz.net.nz","broadbandmap.nz/.well-known/security.txt","","","https://internetnz.nz/vulnerability-disclosure-policy","","en"
"brook.gs","","security@bitly.com","brook.gs/security.txt","","","","https://bitly.com/security_pgp.txt",""
"brunel.ac.uk","https://www.brunel.ac.uk/about/administration/vulnerability-reporting","","brunel.ac.uk/.well-known/security.txt","","","https://www.brunel.ac.uk/about/administration/vulnerability-reporting","",""
"bryce.vc","https://hackerone.com/automattic/reports/new","","bryce.vc/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"bryggebladet.dk","https://www.bryggebladet.dk/kontakt/","teknik@bryggebladet.dk","bryggebladet.dk/security.txt","","","","",""
"bsrb.is","","webmaster@stefna.is","bsrb.is/.well-known/security.txt","","","","",""
"bss.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","bss.au.dk/.well-known/security.txt","","","","",""
"bsun.md","","security@bitly.com","bsun.md/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bsw.li","","security@bitly.com","bsw.li/security.txt","","","","https://bitly.com/security_pgp.txt",""
"btco.nf","","security@bitly.com","btco.nf/security.txt","","","","https://bitly.com/security_pgp.txt",""
"btpstream.co","","security@bitly.com","btpstream.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"btsrc.dj","","security@bitly.com","btsrc.dj/security.txt","","","","https://bitly.com/security_pgp.txt",""
"buckaroo.nl","","security@buckaroo.nl","buckaroo.nl/security.txt","","","/security.txt HTTP/1.1 https://www.buckaroo.nl/veiligheid https://www.buckaroo.nl/veiligheidGET"," https://www.buckaroo.nl/media/2905/pub_key.txt",""
"budchlap.sk","https://www.simplia.cz","admin@simplia.cz","budchlap.sk/security.txt","","","","","cs, en"
"buddypayment.nl","","security@buddypayment.nl","buddypayment.nl/.well-known/security.txt","","","","https://buddypayment.nl/.well-known/pgp-key.txt",""
"budeakonebolo.sk","","security@shoptet.cz","budeakonebolo.sk/.well-known/security.txt","","https://kariera.shoptet.cz/","","","cs en,"
"budget.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","budget.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"budget.vic.gov.au","","sdp.security@dpc.vic.gov.au","budget.vic.gov.au/.well-known/security.txt","","","","",""
"budgetdirect.com.au","","cybersecurity@autogeneral.com.au","budgetdirect.com.au/.well-known/security.txt","","","https://www.autogeneral.com.au/docs/ag-external-vulnerability-disclosure-policy.pdf","","en"
"buecherhallen.de","","support.buecherhallen@feldwaldwiese.de","buecherhallen.de/.well-known/security.txt","","","","",""
"buero-zueri.ch","","hello@robertkrieg.ch","buero-zueri.ch/security.txt","","","https://buero-zueri.ch/security-policy","https://buero-zueri.ch/pgp-key.txt",""
"builders.co.za","https://corporate.walmart.com/article/responsible-disclosure-policy","","builders.co.za/.well-known/security.txt","","","https://www.massmart.co.za/policy-and-guidelines/","","en"
"bukas.ph","","security@erudifi.com","bukas.ph/security.txt","","","","https://bukas.ph/pgp-key.txt","en"
"bumpylumps.co.vu","https://hackerone.com/automattic/reports/new","","bumpylumps.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"bundesbank.de","https://openbugbounty.org/bugbounty/Babiel/","","bundesbank.de/security.txt","https://www.bundesbank.de/security/acknowledgments","","","","de, en"
"bundeswehr.de","","security@bundeswehr.org","bundeswehr.de/security.txt","https://www.bundeswehr.de/de/security-policy/danksagung","https://www.bundeswehrkarriere.de/ihr-weg-zu-uns/kontakt","https://www.bundeswehr.de/de/security-policy","https://www.bundeswehr.de/pgp.txt","de, en"
"bundler.io","https://hackerone.com/rubygems","","bundler.io/.well-known/security.txt","","","","","en"
"bunker.bs8.sk","","lajcinko1@gmail.com","bunker.bs8.sk/.well-known/security.txt","","","","https://bunker.bs8.sk/pgp-key.txt","sk,en"
"burlov.se","","soc@sitevision.se","burlov.se/.well-known/security.txt","","","","https://www.sitevision.se/security-soc-pgp","en sv,"
"business.center.cz","","security@iinfo.cz","business.center.cz/.well-known/security.txt","","","","",""
"buslive.pl","","info@buslive.pl","buslive.pl/.well-known/security.txt","","","","",""
"buy.aia.ag","","security@bitly.com","buy.aia.ag/security.txt","","","","https://bitly.com/security_pgp.txt",""
"buy.yahoo.com.tw","https://hackerone.com/yahoo","security@yahooinc.com","buy.yahoo.com.tw/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"bv.ms","","security@bitly.com","bv.ms/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bvs.minsa.gob.pe","","security@minsa.gob.pe","bvs.minsa.gob.pe/.well-known/security.txt","","","","","en, es"
"bwne.ws","","security@bitly.com","bwne.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"bwnews.pr","","security@bitly.com","bwnews.pr/security.txt","","","","https://bitly.com/security_pgp.txt",""
"byhistorie.dk","https://twitter.com/aarhusunicyber","security@au.dk","byhistorie.dk/.well-known/security.txt","","","","",""
"byrdie.co.uk","","security@dotdash.com","byrdie.co.uk/.well-known/security.txt","","","","","en"
"c-it.co","","security@bitly.com","c-it.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"c.imedia.cz","","csirt@firma.seznam.cz","c.imedia.cz/security.txt","","","","https://keys.openpgp.org/vks/v1/by-fingerprint/FDB7C0776C9D86E7B30008739C2D1A03A9CCD7EB","cs, en, sk"
"cablela.bs","","security@bitly.com","cablela.bs/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cae.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cae.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"calcio.fanpage.it","","diego@ciaopeople.com","calcio.fanpage.it/security.txt","","","","",""
"callysto.ca","","security@cybera.ca","callysto.ca/.well-known/security.txt","","https://www.cybera.ca/career-opportunities/","https://www.cybera.ca/privacy-notice/","","en"
"camb.ma","","security@bitly.com","camb.ma/security.txt","","","","https://bitly.com/security_pgp.txt",""
"camb.ro","","security@bitly.com","camb.ro/security.txt","","","","https://bitly.com/security_pgp.txt",""
"camengli.sh","","security@bitly.com","camengli.sh/security.txt","","","","https://bitly.com/security_pgp.txt",""
"campus.filo.unt.edu.ar","https://moodle.org/security/report/","","campus.filo.unt.edu.ar/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"campus.uda.edu.ar","https://moodle.org/security/report/","","campus.uda.edu.ar/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"campusadimra.org.ar","https://moodle.org/security/report/","","campusadimra.org.ar/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"camso.co","","sam@mutation.io","camso.co/security.txt","","","https://camso.co/en/security-policy","https://camso.co/en/pgp-key.txt",""
"cannabisbureau.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","cannabisbureau.nl/.well-known/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"canon-emirates.ae","","appsec@canon-europe.com","canon-emirates.ae/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon-ois.qa","","appsec@canon-europe.com","canon-ois.qa/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.am","","appsec@canon-europe.com","canon.am/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.az","","appsec@canon-europe.com","canon.az/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.bg","","appsec@canon-europe.com","canon.bg/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.co.uk","","appsec@canon-europe.com","canon.co.uk/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.co.za","","appsec@canon-europe.com","canon.co.za/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.com.al","","appsec@canon-europe.com","canon.com.al/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.com.cy","","appsec@canon-europe.com","canon.com.cy/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.com.mk","","appsec@canon-europe.com","canon.com.mk/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.de","","appsec@canon-europe.com","canon.de/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.ee","","appsec@canon-europe.com","canon.ee/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.es","","appsec@canon-europe.com","canon.es/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.fi","","appsec@canon-europe.com","canon.fi/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.ge","","appsec@canon-europe.com","canon.ge/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.hr","","appsec@canon-europe.com","canon.hr/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.ie","","appsec@canon-europe.com","canon.ie/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.lt","","appsec@canon-europe.com","canon.lt/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.lu","","appsec@canon-europe.com","canon.lu/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.nl","","appsec@canon-europe.com","canon.nl/.well-known/security.txt","","","/.well-known/security.txt HTTP/1.1 https://www.canon-europe.com/support/vulnerability-disclosure-policy/ https://www.canon-europe.com/support/vulnerability-disclosure-policy/GET","","en"
"canon.pt","","appsec@canon-europe.com","canon.pt/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.rs","","appsec@canon-europe.com","canon.rs/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.si","","appsec@canon-europe.com","canon.si/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.sk","","appsec@canon-europe.com","canon.sk/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.sm","","security@bitly.com","canon.sm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"canon.tj","","appsec@canon-europe.com","canon.tj/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"canon.uz","","appsec@canon-europe.com","canon.uz/.well-known/security.txt","","","https://www.canon-europe.com/support/vulnerability-disclosure-policy/","","en"
"capatholo.gy","","security@bitly.com","capatholo.gy/security.txt","","","","https://bitly.com/security_pgp.txt",""
"captainfact.io","","security@captainfact.io","captainfact.io/.well-known/security.txt","","https://captainfact.io/help/jobs","https://captainfact.io/help/bug_report","https://captainfact.io/.well-known/pgp-key.txt",""
"careers.epam.by","Use at form https://www.epam.com/.well-known/SecurityPolicy.html the","","careers.epam.by/.well-known/security.txt","","https://www.epam.com/careers/job-listings/job.24901.security-testing-engineer_minsk_belarus","https://www.epam.com/.well-known/SecurityPolicy.html","","en, ru"
"careers.epam.hu","Use at form https://www.epam.com/.well-known/SecurityPolicy.html the","","careers.epam.hu/.well-known/security.txt","","https://www.epam.com/careers/job-listings/job.24901.security-testing-engineer_minsk_belarus","https://www.epam.com/.well-known/SecurityPolicy.html","","en, ru"
"carforyou.ch","","info@carforyou.ch","carforyou.ch/security.txt","","","","","de, en, fr it,"
"carnet.cz","","bezpecnost@pixman.cz","carnet.cz/security.txt","","","","",""
"carolina.cuni.cz","https://csirt.cuni.cz/en/contact","abuse@cuni.cz","carolina.cuni.cz/security.txt","https://csirt.cuni.cz/en/acknowledgements","","https://csirt.cuni.cz/en/incident_reporting","https://csirt.cuni.cz/en/publickey.asc https://keys.openpgp.org/search?q=3F76F3C999DA105979005B4C2FC53DCB10AA8BE1",""
"carpostal.ch","","security@post.ch","carpostal.ch/.well-known/security.txt","","","","",""
"carrefour.fr","","csirt_fr@carrefour.com","carrefour.fr/.well-known/security.txt","","","","",""
"cart.mn","","security@bitly.com","cart.mn/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cas.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","cas.au.dk/.well-known/security.txt","","","","",""
"casa.trovit.pt","","bugbounty@lifullconnect.com","casa.trovit.pt/.well-known/security.txt","","https://www.lifullconnect.com/careers/","","",""
"casapariurilor.ro","","fegpubsec@feg.eu","casapariurilor.ro/.well-known/security.txt","","","","","en"
"casertanews.it","tel:+39.39.11.11.11.11","k@k.tt","casertanews.it/security.txt","","","","","en, it, pl"
"cashcat.ph","","security@cashcat.ph","cashcat.ph/.well-known/security.txt","","","","https://cashcat.ph/pgp-key.txt","en"
"casimaging.com.au"," https://www.sonichealthcare.com/privacy-and-security/vulnerability-disclosure-policy/","","casimaging.com.au/security.txt","","","","",""
"casinobonuser.nu","","oscar.carlsson@wsgroupab.se","casinobonuser.nu/security.txt","","","https://casinobonuser.nu/security-policy","https://casinobonuser.nu/pgp-key.txt",""
"casopisstavebnictvi.cz","","cms@animato.cz info@ic-ckait.cz","casopisstavebnictvi.cz/.well-known/security.txt","","","","",""
"cassiopeias.co.vu","https://hackerone.com/automattic/reports/new","","cassiopeias.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"catalunyapress.cat","","soporte@bigpress.net","catalunyapress.cat/.well-known/security.txt","","","","","en, es, gl"
"cataniatoday.it","tel:+39.39.11.11.11.11","k@k.tt","cataniatoday.it/security.txt","","","","","en, it, pl"
"cavi.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","cavi.au.dk/.well-known/security.txt","","","","",""
"cbsloc.al","","security@bitly.com","cbsloc.al/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cbsn.ws","","security@bitly.com","cbsn.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cbt.gg","","security@bitly.com","cbt.gg/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ccdh.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","ccdh.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"ccss.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","ccss.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"ccss.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","ccss.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cdmh.co","","security@bitly.com","cdmh.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cdn.jotfor.ms","https://www.jotform.com/bug-bounty/","","cdn.jotfor.ms/.well-known/security.txt","","https://www.jotform.com/jobs/","https://www.jotform.com/bug-bounty/#rule-and-guidelines","","en"
"cdn.officeshoes.ws","","abuse@boros.hosting","cdn.officeshoes.ws/security.txt","","","","",""
"cdn.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cdn.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cdn.vidible.tv","https://hackerone.com/yahoo","security@yahooinc.com","cdn.vidible.tv/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"cdn01.jotfor.ms","https://www.jotform.com/bug-bounty/","","cdn01.jotfor.ms/.well-known/security.txt","","https://www.jotform.com/jobs/","https://www.jotform.com/bug-bounty/#rule-and-guidelines","","en"
"cdn02.jotfor.ms","https://www.jotform.com/bug-bounty/","","cdn02.jotfor.ms/.well-known/security.txt","","https://www.jotform.com/jobs/","https://www.jotform.com/bug-bounty/#rule-and-guidelines","","en"
"cdn03.jotfor.ms","https://www.jotform.com/bug-bounty/","","cdn03.jotfor.ms/.well-known/security.txt","","https://www.jotform.com/jobs/","https://www.jotform.com/bug-bounty/#rule-and-guidelines","","en"
"cdr.co","","security@bitly.com","cdr.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ce.etat.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","ce.etat.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"ceaa-acee.gc.ca","","F.SecuriteInternet-InternetSecurity.F@ec.gc.ca","ceaa-acee.gc.ca/.well-known/security.txt","","","","","En,fr"
"ceaa.gc.ca","","F.SecuriteInternet-InternetSecurity.F@ec.gc.ca","ceaa.gc.ca/.well-known/security.txt","","","","","En,fr"
"cebia.cz","","programatori@giant.cz","cebia.cz/.well-known/security.txt","","","","","cs,en"
"cecil.pe","https://hackerone.com/automattic/reports/new","","cecil.pe/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"ceda.rs","","security@bitly.com","ceda.rs/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cedies.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cedies.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"celebs.walla.co.il","","support@walla.net.il","celebs.walla.co.il/security.txt","","","https://dcx.walla.co.il/walla/terms/terms.pdf","","en, he"
"celnisprava.cz","https://www.alef.com/csirt","csirt@alef.com","celnisprava.cz/security.txt","","","","https://www.alef.com/en/csirt/key.txt",""
"cen.yt","","security@bitly.com","cen.yt/security.txt","","","","https://bitly.com/security_pgp.txt",""
"ceneo.pl","","spc@ceneo.pl security@ceneo.pl","ceneo.pl/.well-known/security.txt","","kariera@ceneo.pl","","","en, pl"
"centralbohemia.cz","","ict@integritty.cz","centralbohemia.cz/security.txt","","https://www.integritty.cz/volne-pozice/","","https://www.integritty.cz/.well-known/integritty_security_public.asc","cs, en"
"centrepatronal.ch","","it@centrepatronal.ch","centrepatronal.ch/.well-known/security.txt","","","","","en fr,"
"cepas.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cepas.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cepre.uni.edu.pe","https://moodle.org/security/report/","","cepre.uni.edu.pe/security.txt","https://moodle.org/security/","","https://moodledev.io/general/development/process/security","","en"
"cerave.co.th","https://vdp.loreal.com","bugbounty@loreal.com","cerave.co.th/.well-known/security.txt","","","","","en"
"cere.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cere.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"ceres.no","","vulnerability@ceres.no","ceres.no/security.txt","","","","http://www.ceres.no/kontakt/sikkerhet/ceresvulnerability.asc",""
"cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://jobs.cern","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"cert-bund.de","https://www.bsi.bund.de/Security-Contact","certbund@bsi.bund.de vulnerability@bsi.bund.de","cert-bund.de/.well-known/security.txt","","https://www.bsi.bund.de/Jobs","","https://www.bsi.bund.de/Security-Contact","de, en"
"cert.at","","team@cert.at","cert.at/security.txt","","https://cert.at/de/ueber-uns/jobs/ https://www.nic.at/de/jobs","https://cert.at/de/ueber-uns/rfc2350/","https://cert.at/media/files/about/rfc2350/files/pgpkeys.asc","de,en"
"cert.br","","security@cert.br","cert.br/.well-known/security.txt","","","","https://cert.br/pgp/CERTbr.asc","en, pt-br"
"cert.fi","tel:+358-29-534-5000","cert@traficom.fi security@minsa.gob.pe","cert.fi/.well-known/security.txt","","","","https://www.kyberturvallisuuskeskus.fi/sites/default/files/media/file/NCSC-FI_Incident_Response_2022_pub.txt openpgp4fpr:089f534747f7fcecc3808303e7c436325ddbb7de","en en, es fi, sv,"
"cert.gov.ua","https://cert.gov.ua/contact-us tel:+38(044)281-88-05 tel:+38(044)281-88-25","cert@cert.gov.ua","cert.gov.ua/.well-known/security.txt","","","","https://cert.gov.ua/files/cert-ua-pub.asc","en ua,"
"cert.govt.nz","","disclosure@ops.cert.govt.nz","cert.govt.nz/.well-known/security.txt","","","https://www.cert.govt.nz/it-specialists/guides/reporting-a-vulnerability/cert-nz-coordinated-vulnerability-disclosure-policy/","https://pgp.mit.edu/pks/lookup?op=get&search=0x8EB8FFBDD973476E",""
"certificadooncologico.minsa.gob.pe","","security@minsa.gob.pe","certificadooncologico.minsa.gob.pe/.well-known/security.txt","","","","","en, es"
"cerve.co","","user@example.com","cerve.co/security.txt","","","https://cerve.com/security-policy","https://cerve.com/pgp-key.txt",""
"ces.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","ces.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cesenatoday.it","tel:+39.39.11.11.11.11","k@k.tt","cesenatoday.it/security.txt","","","","","en, it, pl"
"ceses.cuni.cz","https://csirt.cuni.cz/en/contact","abuse@cuni.cz","ceses.cuni.cz/security.txt","https://csirt.cuni.cz/en/acknowledgements","","https://csirt.cuni.cz/en/incident_reporting","https://csirt.cuni.cz/en/publickey.asc https://keys.openpgp.org/search?q=3F76F3C999DA105979005B4C2FC53DCB10AA8BE1",""
"ceskesvycarsko.ecomailapp.cz","","support@ecomail.cz","ceskesvycarsko.ecomailapp.cz/.well-known/security.txt","","","","",""
"cesky.radio.cz","","cr@roadio.cz","cesky.radio.cz/.well-known/security.txt","","","","",""
"cesnet.cz","https://csirt.cesnet.cz/en/contact","certs@cesnet.cz","cesnet.cz/.well-known/security.txt","","","https://csirt.cesnet.cz/en/vulnerability_report","http://keys.gnupg.net/pks/lookup?search=0xFC3F62D9F458694E&fingerprint=on&op=index https://csirt.cesnet.cz/publickey.asc",""
"cestina.cz","https://csirt.cuni.cz/en/contact","abuse@cuni.cz","cestina.cz/security.txt","https://csirt.cuni.cz/en/acknowledgements","","https://csirt.cuni.cz/en/incident_reporting","https://csirt.cuni.cz/en/publickey.asc https://keys.openpgp.org/search?q=3F76F3C999DA105979005B4C2FC53DCB10AA8BE1",""
"cfa.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","cfa.au.dk/.well-known/security.txt","","","","",""
"cfem.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","cfem.au.dk/.well-known/security.txt","","","","",""
"cfi.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","cfi.au.dk/.well-known/security.txt","","","","",""
"cfl.re","","security@bitly.com","cfl.re/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cgb.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","cgb.nl/.well-known/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"chaac.tf.fau.eu","https://www.rrze.fau.de/infocenter/kontakt-hilfe/sicherheitsvorfaelle/ https://www.rrze.fau.de/infocenter/kontakt-hilfe/sicherheitsvorfaelle/abuse/","abuse@fau.de","chaac.tf.fau.eu/.well-known/security.txt","","https://jobs.rrze.fau.de/","","https://www.rrze.fau.de/files/2022/09/abuse-fau.crt","de, en"
"chalet-villa-te-koop.nl","","tech@webador.com","chalet-villa-te-koop.nl/.well-known/security.txt","","https://www.webador.com/jobs","","","en, nl"
"chalet.be","","security@chalet.nl","chalet.be/security.txt","","","","",""
"changelog.md","","yoginth@hey.com","changelog.md/security.txt","","","https://changelog.md'/privacy","","en"
"channellife.com.au","","info@techday.com","channellife.com.au/.well-known/security.txt","","","","","en"
"charite.de","","it-sicherheit@charite.de webmaster@charite.de webteam@charite.de","charite.de/.well-known/security.txt","","","","","de, en"
"charleytimeless.co.vu","https://hackerone.com/automattic/reports/new","","charleytimeless.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"charlie.ht","","security@charlie.ht","charlie.ht/.well-known/security.txt","","","","https://charlie.ht/misc/cht.asc",""
"charliehebdo.fr","https://charliehebdo.fr/pages/contact/","webmaster@charliehebdo.fr","charliehebdo.fr/.well-known/security.txt","","","","","en fr,"
"chem.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","chem.au.dk/.well-known/security.txt","","","","",""
"chemichalapp.it","https://moodle.org/security/report/","","chemichalapp.it/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"chen.cat","","security@bitly.com","chen.cat/security.txt","","","","https://bitly.com/security_pgp.txt",""
"chief.sc","","security@bitly.com","chief.sc/security.txt","","","","https://bitly.com/security_pgp.txt",""
"chietitoday.it","tel:+39.39.11.11.11.11","k@k.tt","chietitoday.it/security.txt","","","","","en, it, pl"
"childcare.co.uk","","security@childcare.co.uk","childcare.co.uk/.well-known/security.txt","","","https://www.childcare.co.uk/responsible-disclosure-policy","https://www.childcare.co.uk/download/pgp.txt",""
"chim.pn","","security@bitly.com","chim.pn/security.txt","","","","https://bitly.com/security_pgp.txt",""
"chio.nl","","rommert@beeldr.nl","chio.nl/security.txt","","","https://chio.nl/security-policy","https://chio.nl/pgp-key.txt",""
"chkmrx.co","","security@bitly.com","chkmrx.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"chn.ge","","security@bitly.com","chn.ge/security.txt","","","","https://bitly.com/security_pgp.txt",""
"chn.lk","","security@bitly.com","chn.lk/security.txt","","","","https://bitly.com/security_pgp.txt",""
"choirexpress.co.id","","support@keenthemes.com","choirexpress.co.id/security.txt","","","","",""
"chramec.sk","https://wexbo.com/contact/","security@wexbo.com","chramec.sk/.well-known/security.txt","","","","","cs en, sk,"
"chroni.cl","","security@bitly.com","chroni.cl/security.txt","","","","https://bitly.com/security_pgp.txt",""
"chrty.bz","","security@bitly.com","chrty.bz/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cht.hm","","security@bitly.com","cht.hm/security.txt","","","","https://bitly.com/security_pgp.txt",""
"chw.ag","","security@bitly.com","chw.ag/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cian.ru","","security@cian.ru","cian.ru/.well-known/security.txt","","","","","en, ru"
"cicerone.co.uk","","ant@cicerone.co.uk","cicerone.co.uk/security.txt","","","https://www.cicerone.co.uk/security-policy","https://www.cicerone.co.uk/pgp-key.txt",""
"cichnovabrno.cz","","podpora@apilot.cz","cichnovabrno.cz/security.txt","","","","",""
"cilecile.co.vu","https://hackerone.com/automattic/reports/new","","cilecile.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"cin.ci","","security@bitly.com","cin.ci/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cinsky.cz","","petr@bydzovsky.cz","cinsky.cz/.well-known/security.txt","","","","",""
"circl.lu","","info@circl.lu","circl.lu/.well-known/security.txt","","","https://www.circl.lu/pub/responsible-vulnerability-disclosure/","https://openpgp.circl.lu/pks/lookup?op=get&search=0xeaadcffc22bd4cd5",""
"circle.ci","","security@bitly.com","circle.ci/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cit.ac","","security@bitly.com","cit.ac/security.txt","","","","https://bitly.com/security_pgp.txt",""
"citet.nat.tn","","rgpd@archimed.fr","citet.nat.tn/.well-known/security.txt","","","","","en fr,"
"city.se","","security@bonniernews.se","city.se/.well-known/security.txt","","","","","en sv,"
"citybuzz.co.za","","noc@rsaweb.net","citybuzz.co.za/.well-known/security.txt","","","","",""
"cityjourn.al","","security@bitly.com","cityjourn.al/security.txt","","","","https://bitly.com/security_pgp.txt",""
"citylibrary.pncc.govt.nz","","mark+thefold@2050.nz","citylibrary.pncc.govt.nz/security.txt","","","https://citylibrary.pncc.govt.nz/security-policy","https://citylibrary.pncc.govt.nz/pgp-key.txt",""
"citynews.it","tel:+39.39.11.11.11.11","k@k.tt","citynews.it/security.txt","","","","","en, it, pl"
"cityvizor.cz","","security@otevrenamesta.cz","cityvizor.cz/security.txt","","","","","/.well-known/security.txt HTTP/1.1 cs, en enGET"
"citywire.co.uk","","security@citywire.co.uk","citywire.co.uk/.well-known/security.txt","","","http://citywire.co.uk/legal/privacy.aspx","https://citywire.co.uk/.well-known/pgp-key.txt",""
"cjky.it","","security@bitly.com","cjky.it/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cjr.bz","","security@bitly.com","cjr.bz/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cjv.muni.cz","https://csirt.muni.cz/ tel:+420549494242","csirt@muni.cz","cjv.muni.cz/security.txt","","","","openpgp4fpr:E40F4E57BCE826A8FCF6AD0F6D25E8BBE3439FE2","cs, en, sk"
"claranet.pt","","security@claranet.com","claranet.pt/.well-known/security.txt","","","","https://www.claranet.com/.well-known/security@claranet.com.asc","de, en, es, fr, it nl, pt,"
"clario.co","","bugbounty@weareclario.com","clario.co/.well-known/security.txt","","","https://hackerone.com/clario/","",""
"clarvalon.bitbucket.io","https://www.atlassian.com/trust/security/report-a-vulnerability","security@atlassian.com","clarvalon.bitbucket.io/.well-known/security.txt","","https://www.atlassian.com/company/careers/all-jobs?team=Security","https://www.atlassian.com/trust/security/report-a-vulnerability","https://security-static.prod.atl-paas.net/atlassian-security-public.asc","en"
"classp.as","","security@bitly.com","classp.as/security.txt","","","","https://bitly.com/security_pgp.txt",""
"clearlyiloveyou.co.vu","https://hackerone.com/automattic/reports/new","","clearlyiloveyou.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"cleartax.in","","security-reports@cleartax.in","cleartax.in/.well-known/security.txt","","","","",""
"cleg.al","","security@bitly.com","cleg.al/security.txt","","","","https://bitly.com/security_pgp.txt",""
"clic.bz","","security@bitly.com","clic.bz/security.txt","","","","https://bitly.com/security_pgp.txt",""
"clica-aqui.pt","","security@bitly.com","clica-aqui.pt/security.txt","","","","https://bitly.com/security_pgp.txt",""
"client.mafrenchbank.fr","/.well-known/security.txt HTTP/1.1 https://www.trusted-introducer.org/directory/teams/cert-la-poste.html https://www.trusted-introducer.org/directory/teams/cert-la-poste.htmlGET","","client.mafrenchbank.fr/.well-known/security.txt","","","","",""
"cloppenburg.de","","security@nol-is.de","cloppenburg.de/security.txt","","","","https://pgp.nol-is.de/35F5DC51282401EB1472885753545492E66D6025.gpg.asc","de, en"
"cloud.minsa.gob.pe","","security@minsa.gob.pe","cloud.minsa.gob.pe/.well-known/security.txt","","","","","en, es"
"cloudutil.player.fm","","security@player.fm support@player.fm","cloudutil.player.fm/.well-known/security.txt","","","","","en"
"clvr.li","","security@bitly.com","clvr.li/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cmap.is","","security@bitly.com","cmap.is/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cmb.fr","https://cert.arkea.com/#contact","","cmb.fr/.well-known/security.txt","","","","https://cert.arkea.com/static/img/CERT_Arkea_public.pgp","fr,en"
"cmes.lu.se","https://www.ldc.lu.se/tjanster/it-sakerhet tel:+46-46-2229000","abuse@lu.se security@lu.se","cmes.lu.se/.well-known/security.txt","","","","",""
"cmf.li","","security@bitly.com","cmf.li/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cms.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","cms.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://jobs.cern","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"cmsinfo.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","cmsinfo.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://jobs.cern","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"cmu.is","","security@bitly.com","cmu.is/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cmxl.gy","","security@bitly.com","cmxl.gy/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cna.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cna.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cna.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cna.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cnb.cx","","security@bitly.com","cnb.cx/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cne-siar.gov.uk","","cnesweb@cne-siar.gov.uk","cne-siar.gov.uk/security.txt","","","https://www.cne-siar.gov.uk/site-pages/privacy/?fl","",""
"cne.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cne.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cnet.co","","security@bitly.com","cnet.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cnfl.io","","security@bitly.com","cnfl.io/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cnl.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cnl.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cnn.it","","security@bitly.com","cnn.it/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cnnmon.ie","","security@bitly.com","cnnmon.ie/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cnpd.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cnpd.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cnpd.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cnpd.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cnpf.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cnpf.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cns.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cns.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"cns.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cns.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"co-operativebank.co.uk","https://www.co-operativebank.co.uk/help-and-support/fraud-and-security/responsible-security-disclosure/","","co-operativebank.co.uk/.well-known/security.txt","","","https://www.co-operativebank.co.uk/help-and-support/fraud-and-security/responsible-security-disclosure/","",""
"coda.io","https://hackerone.com/coda_bbp","","coda.io/.well-known/security.txt","https://hackerone.com/coda_bbp/thanks","https://coda.io/jobs","https://hackerone.com/coda_bbp?view_policy=true","https://coda.io/coda-pgp-key.txt","en"
"codecov.io","","security@codecov.io","codecov.io/.well-known/security.txt","","","https://codecov.io/security/","https://keybase.io/codecovsecurity/pgp_keys.asc","English, Portuguese"
"coderpad.io","https://coderpad.io/vulnerability-disclosure-policy/","support@coderpad.io?subject=Vulnerability%20Disclosure","coderpad.io/security.txt","https://coderpad.io/vulnerability-disclosure-policy/","","https://coderpad.io/vulnerability-disclosure-policy/","","en, fr"
"coffeesheep.sk","","security@shoptet.cz","coffeesheep.sk/.well-known/security.txt","","https://kariera.shoptet.cz/","","","cs en,"
"cogniz.at","","security@bitly.com","cogniz.at/security.txt","","","","https://bitly.com/security_pgp.txt",""
"coinloan.io","","security@coinloan.io","coinloan.io/security.txt","","","https://www.openbugbounty.org/bugbounty/coin_loan/","","en"
"coinsbit.io","","info@coinsbit.io","coinsbit.io/security.txt","","","https://coinsbit.io/ru/privacy-policy","",""
"col.ma","","security@bitly.com","col.ma/security.txt","","","","https://bitly.com/security_pgp.txt",""
"colissimo.entreprise.laposte.fr","/.well-known/security.txt HTTP/1.1 https://www.trusted-introducer.org/directory/teams/cert-la-poste.html https://www.trusted-introducer.org/directory/teams/cert-la-poste.htmlGET","","colissimo.entreprise.laposte.fr/.well-known/security.txt","","","","",""
"coll.ag","","security@coll.ag","coll.ag/.well-known/security.txt","","","","","en"
"collabim.cz","https://www.collabim.com/contact.html https://www.collabim.cz/kontakt.html","","collabim.cz/security.txt","","","/.well-known/security.txt HTTP/1.1 https://www.collabim.com/collabim-security.html https://www.collabim.com/collabim-security.htmlGET https://www.collabim.cz/bezpecnost-collabimu.html","",""
"colours.cz","","/security.txt HTTP/1.1 security@netdirect.cz security@netdirect.czGET","colours.cz/.well-known/security.txt","","","","",""
"comarch.pl","https://www.comarch.com/responsible-disclosure/","vuln@comarch.com","comarch.pl/.well-known/security.txt","","","","https://www.comarch.com/.well-known/pgp-key.txt","en pl,"
"comarochronicle.co.za","","noc@rsaweb.net","comarochronicle.co.za/.well-known/security.txt","","","","",""
"combster.tv","","info@spectroom.com polasekf@outlook.com","combster.tv/.well-known/security.txt","","","","",""
"comca.st","","security@bitly.com","comca.st/security.txt","","","","https://bitly.com/security_pgp.txt",""
"committees.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","committees.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"commsec.com.au","","vulnerability@cba.com.au","commsec.com.au/.well-known/security.txt","","https://www.commbank.com.au/about-us/careers.html","https://www.commbank.com.au/support/security/responsible-disclosure-program.html","https://www.commbank.com.au/support/security/rd-pgp-key.asc","en"
"community.computingatschool.org.uk","","infosecurity@bcs.uk","community.computingatschool.org.uk/.well-known/security.txt","","","https://www.bcs.org/contact-us/vulnerability-disclosure-policy/","",""
"company.rt.ru","https://www.company.rt.ru/projects/cybersecurity/","","company.rt.ru/security.txt","","https://r.soc.rt.ru/vacancy","https://www.company.rt.ru/projects/cybersecurity/","https://github.com/Rostelecom-CERT/PGP-Key/blob/master/pgp-key.txt",""
"company.sbb.ch","","securityissues@sbb.ch","company.sbb.ch/.well-known/security.txt","","https://company.sbb.ch/en/jobs-careers/jobs/vacancies.html","https://company.sbb.ch/en/sbb-as-business-partner/services/vulnerability-disclosure-policy.html","","de en,"
"computerbase.de","","security@computerbase.de","computerbase.de/.well-known/security.txt","","","","","de, en"
"computerbild.de","","security-incident.nmn@axelspringer.de","computerbild.de/.well-known/security.txt","","https://career.axelspringer.com/de/tech","","","en,de,es"
"computingatschool.org.uk","","infosecurity@bcs.uk","computingatschool.org.uk/.well-known/security.txt","","","https://www.bcs.org/contact-us/vulnerability-disclosure-policy/","",""
"con.ai","","security@bitly.com","con.ai/security.txt","","","","https://bitly.com/security_pgp.txt",""
"concertino.rozhlas.cz","","internet@rozhlas.cz","concertino.rozhlas.cz/security.txt","","","","",""
"concordia.ab.ca","","noc@concordia.ab.ca","concordia.ab.ca/.well-known/security.txt","https://confluence.concordia.ab.ca/display/ITHELP/Hall+of+Fame","","https://confluence.concordia.ab.ca/display/ITHELP/Vulnerability+Disclosure","https://confluence.concordia.ab.ca/display/ITHELP/NOC+PGP+KEY","(Canadian) English"
"concurrence.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","concurrence.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"conferences.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","conferences.au.dk/.well-known/security.txt","","","","",""
"connect.zive.cz","https://www.cncenter.cz/kontakt https://www.facebook.com/CzechNewsCenter/","info@cncenter.cz","connect.zive.cz/security.txt","","https://www.cncenter.cz/kariera","","","cs, en, sk"
"conrad.at","","security@conrad.com","conrad.at/security.txt","","","https://www.conrad.at/de/ueber-conrad/vulnerability-disclosure-program.html","","en,de"
"conrad.de","","security@conrad.com","conrad.de/security.txt","","","https://www.conrad.de/de/ueber-conrad/vulnerability-disclosure-program.html","","en,de"
"conrad.pl","","security@conrad.com","conrad.pl/security.txt","","","https://www.conrad.pl/pl/about/vulnerability-disclosure-program.html","","en,de"
"conradi.si","","info@alpha.bot","conradi.si/.well-known/security.txt","","","","","en"
"conseil-etat.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","conseil-etat.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"conseil-scientifique.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","conseil-scientifique.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"conseil-scientifique.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","conseil-scientifique.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"conta.cc","","security@bitly.com","conta.cc/security.txt","","","","https://bitly.com/security_pgp.txt",""
"content.legislation.vic.gov.au","","sdp.security@dpc.vic.gov.au","content.legislation.vic.gov.au/.well-known/security.txt","","","","",""
"context-database.uni-koeln.de","https://rrzk.uni-koeln.de/informationssicherheit/it-sicherheit/stabsstelle-security-operations","it-sicherheit@uni-koeln.de","context-database.uni-koeln.de/.well-known/security.txt","","https://portal.uni-koeln.de/karriere/stellenangebote","","","de, en"
"continuum.io","","will@xdlab.co","continuum.io/security.txt","","","https://www.anaconda.com/security-policy","https://www.anaconda.com/pgp-key.txt",""
"coo.ph","","security@bitly.com","coo.ph/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cook.ba","","security@bitly.com","cook.ba/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cookist.it","","diego@ciaopeople.com","cookist.it/security.txt","","","","",""
"coolne.ws","https://hackerone.com/automattic/reports/new","","coolne.ws/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"coolticket.co","","admin@cool-ticketing.com","coolticket.co/.well-known/security.txt","","","","","cs, en"
"coop.co.uk","","information.security@coop.co.uk","coop.co.uk/.well-known/security.txt","","","","",""
"cornelsen.de","","security@cornelsen.de","cornelsen.de/.well-known/security.txt","","https://www.cornelsen.de/karriere/stellenangebote","","","de en,"
"coronacheck.nl","","security@coronacheck.nl","coronacheck.nl/.well-known/security.txt","","","https://coronacheck.nl/en/kwetsbaarheid-melden https://coronacheck.nl/nl/kwetsbaarheid-melden","","en nl,"
"coronamelder.nl","","security@coronamelder.nl","coronamelder.nl/security.txt","","","https://coronamelder.nl/en/kwetsbaarheid-melden https://coronamelder.nl/nl/kwetsbaarheid-melden","","en nl,"
"coronavirus.gouvernement.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","coronavirus.gouvernement.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"coronavirus.vic.gov.au","","sdp.security@dpc.vic.gov.au","coronavirus.vic.gov.au/.well-known/security.txt","","","","",""
"coronavirus.wien.gv.at","+43-1-4000-71112 https://www.wien.gv.at/english/administration/ict/cert.html","cert@wien.gv.at","coronavirus.wien.gv.at/security.txt","","","","https://wiencert.at/asc/pgpkeys.asc",""
"corrections.govt.nz","","IT_security@corrections.govt.nz","corrections.govt.nz/.well-known/security.txt","","","","https://pgp.mit.edu/pks/lookup?op=get&search=0xFBB6D075E4CC91FB",""
"correo.yahoo.com.ar","https://hackerone.com/yahoo","security@yahooinc.com","correo.yahoo.com.ar/.well-known/security.txt","","https://www.yahooinc.com/careers/search.html?q=paranoids","https://hackerone.com/yahoo?view_policy=true","",""
"corridorgazette.co.za","","noc@rsaweb.net","corridorgazette.co.za/.well-known/security.txt","","","","",""
"corsi.bertuzziraffaella.it","https://moodle.org/security/report/","","corsi.bertuzziraffaella.it/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"cos.sc","","security@bitly.com","cos.sc/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cosradio.lv","","security@bitly.com","cosradio.lv/security.txt","","","","https://bitly.com/security_pgp.txt",""
"costaricaweb.cr","","beheer@dutchwyse.nl","costaricaweb.cr/.well-known/security.txt","","","","","nl,en"
"council.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","council.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"cour-des-comptes.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","cour-des-comptes.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"covid19.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","covid19.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"covid19.minsa.gob.pe","","security@minsa.gob.pe","covid19.minsa.gob.pe/.well-known/security.txt","","","","","en, es"
"covid19.nhs.uk","https://hackerone.com/03351cb3-53e3-4bb8-8fcc-a226e3b528fc/embedded_submissions/new","","covid19.nhs.uk/.well-known/security.txt","","","https://hackerone.com/nhscovid19app","",""
"covid19.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","covid19.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"covidsafe.be","","web@weareantenna.be","covidsafe.be/security.txt","","","https://covidsafe.be/nl/security-policy","https://covidsafe.be/nl/pgp-key.txt",""
"covidsafe.gov.au","","security@covidsafe.gov.au","covidsafe.gov.au/.well-known/security.txt","","","","https://www.covidsafe.gov.au/.well-known/pgp-key.txt",""
"cozmix.be","","user@example.com","cozmix.be/security.txt","","","https://platform.parcours.cloud/security-policy","https://platform.parcours.cloud/pgp-key.txt",""
"cozy.io","","security@cozycloud.cc","cozy.io/.well-known/security.txt","","","","https://cozy.io/.well-known/pgp-key.txt","en fr,"
"cps.gov.uk","https://www.civicuk.com/contact","","cps.gov.uk/.well-known/security.txt","","","","",""
"cr8.lv","","security@bitly.com","cr8.lv/security.txt","","","","https://bitly.com/security_pgp.txt",""
"crackm.ag","","security@bitly.com","crackm.ag/security.txt","","","","https://bitly.com/security_pgp.txt",""
"crea.ca","","gterrill@alphabetcreative.com","crea.ca/security.txt","","","https://www.crea.ca/security-policy","https://www.crea.ca/pgp-key.txt",""
"create.arduino.cc","","security@arduino.cc","create.arduino.cc/security.txt","","","https://www.arduino.cc/en/Main/Security","https://raw.githubusercontent.com/arduino/arduino-cvd-policy/master/security_at_arduino_cc-pub.asc","en"
"creativeworkline.at","https://www.creativeworkline.at/kontakt/","","creativeworkline.at/.well-known/security.txt","","","","","de, en"
"cresta.ai","","security@cresta.com","cresta.ai/.well-known/security.txt","","","https://cresta.com/trust","(fingerprint: --keyserver --recv-keys PGP Please You any can command: communication encrypt following gpg key our pgp.mit.edu retrieve security@cresta.com. the to use using with 111859244CDF5809CBD47702A0F372C49C8F56DE 111859244CDF5809CBD47702A0F372C49C8F56DE)","en, es, fr"
"crisp.nl","","tech.security@crisp.nl","crisp.nl/.well-known/security.txt","","","","","/.well-known/security.txt HTTP/1.1 en, nl nlGET"
"criticalfrequency.supportingcast.fm","","sc-security@slate.com","criticalfrequency.supportingcast.fm/.well-known/security.txt","","","","","en"
"crp.kypo.muni.cz","https://csirt.muni.cz/ tel:+420549494242","csirt@muni.cz","crp.kypo.muni.cz/.well-known/security.txt","","","","openpgp4fpr:E40F4E57BCE826A8FCF6AD0F6D25E8BBE3439FE2","/security.txt HTTP/1.1 cs, en, sk skGET"
"cryptoseb.pw","","(ProtonMail) root@cryptoseb.pw","cryptoseb.pw/.well-known/security.txt","","","","https://cryptoseb.pw/keys.txt","en"
"cs.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","cs.au.dk/.well-known/security.txt","","","","",""
"cs.is","","security@bitly.com","cs.is/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cs.umu.se","","abuse@cs.umu.se","cs.umu.se/.well-known/security.txt","","","","","en,sv"
"cs1.tf.fau.de","https://www.rrze.fau.de/infocenter/kontakt-hilfe/sicherheitsvorfaelle/ https://www.rrze.fau.de/infocenter/kontakt-hilfe/sicherheitsvorfaelle/abuse/","abuse@fau.de","cs1.tf.fau.de/.well-known/security.txt","","https://jobs.rrze.fau.de/","","https://www.rrze.fau.de/files/2022/09/abuse-fau.crt","de, en"
"csarven.ca","","admin+security@inrupt.com","csarven.ca/.well-known/security.txt","","","","",""
"csdd.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","csdd.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"csfd.cz","","security@csfd.cz","csfd.cz/.well-known/security.txt","","https://www.csfd.cz/vyvojari/","https://www.csfd.cz/vyvojari/","https://img.csfd.cz/documents/developers/security@csfd.cz.gpg",""
"csfd.sk","","security@csfd.cz","csfd.sk/.well-known/security.txt","","https://www.csfd.cz/vyvojari/","https://www.csfd.cz/vyvojari/","https://img.csfd.cz/documents/developers/security@csfd.cz.gpg",""
"csirt.cz","","abuse@nic.cz","csirt.cz/.well-known/security.txt","","","","",""
"csirt.gov.sk","","incident@csirt.sk","csirt.gov.sk/.well-known/security.txt","","","","https://www.csirt.gov.sk/doc/CSIRT.SK.asc","cz en, sk,"
"ctic.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","ctic.au.dk/.well-known/security.txt","","","","",""
"cuisinez.telequebec.tv","","info@telequebec.tv","cuisinez.telequebec.tv/security.txt","","https://carrieres.telequebec.tv/","https://www.telequebec.tv/societe/politique-de-confidentialite/","","en fr,"
"cultbeauty.co.uk","https://www.thg.com/security-issues/","","cultbeauty.co.uk/security.txt","","","","",""
"cultm.ac","","security@bitly.com","cultm.ac/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cultureelerfgoed.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","cultureelerfgoed.nl/.well-known/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"cultuurfonds.nl","","","cultuurfonds.nl/security.txt","","","","",""
"cultuurnet.be","","user@example.com","cultuurnet.be/security.txt","","","https://www.publiq.be/nl/security-policy","https://www.publiq.be/nl/pgp-key.txt",""
"cultuurondervuur.nu","","joan@jldigital.nl","cultuurondervuur.nu/security.txt","","","https://cultuurondervuur.nl/security-policy","https://cultuurondervuur.nl/pgp-key.txt",""
"cuni.cz","https://csirt.cuni.cz/en/contact","abuse@cuni.cz","cuni.cz/security.txt","https://csirt.cuni.cz/en/acknowledgements","","https://csirt.cuni.cz/en/incident_reporting","https://csirt.cuni.cz/en/publickey.asc https://keys.openpgp.org/search?q=3F76F3C999DA105979005B4C2FC53DCB10AA8BE1",""
"cur.tv","","security@bitly.com","cur.tv/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cure53.de","","mario@cure53.de","cure53.de/security.txt","","","","https://pgp.mit.edu/pks/lookup?op=get&search=0xC26C858090F70ADA",""
"curl.haxx.se","https://hackerone.com/curl","security@curl.se","curl.haxx.se/.well-known/security.txt","https://curl.se/docs/security.html","","https://curl.se/dev/secprocess.html","","en"
"curl.se","https://hackerone.com/curl","security@curl.se","curl.se/.well-known/security.txt","https://curl.se/docs/security.html","","https://curl.se/dev/secprocess.html","","en"
"curling.nl","","hosting+security@tde.nl","curling.nl/security.txt","","","https://www.tde.nl/security-policy/","https://www.tde.nl/pgp-key.txt","en, nl"
"currenttime.tv","","abuse@rferl.org","currenttime.tv/.well-known/security.txt","","","https://www.rferl.org/.well-known/RFERL_Responsible_Disclosure_Policy.pdf","","cs en,"
"cursos.seguridaddelpaciente.es","https://moodle.org/security/report/","","cursos.seguridaddelpaciente.es/security.txt","https://moodle.org/security/","","https://docs.moodle.org/dev/Moodle_security_procedures","","en"
"cutter.re","","security@cutter.re","cutter.re/.well-known/security.txt","","","","","de, en, fr, he hi, ru,"
"cvca.ca","","steve@simplicate.ca","cvca.ca/security.txt","","","https://www.cvca.ca/security-policy","https://www.cvca.ca/pgp-key.txt",""
"cway.to","","security@bitly.com","cway.to/security.txt","","","","https://bitly.com/security_pgp.txt",""
"cybera.ca","","security@cybera.ca","cybera.ca/.well-known/security.txt","","https://www.cybera.ca/career-opportunities/","https://www.cybera.ca/privacy-notice/","","en"
"czc.cz","","security@czc.cz","czc.cz/.well-known/security.txt","","","","",""
"czech-us.cz","","crm@czech-us.cz","czech-us.cz/security.txt","","","","","en"
"czechspaceportal.cz","","abuse@cendis.cz","czechspaceportal.cz/.well-known/security.txt","","","","",""
"czechtop100.cz","","security@fg.cz","czechtop100.cz/.well-known/security.txt","","","","https://www.fg.cz/pgp.asc","cs, en"
"czh.cz","","security@infosystem.cz","czh.cz/.well-known/security.txt","","","","","cs, en"
"czh.oblast.cz","","security@infosystem.cz","czh.oblast.cz/.well-known/security.txt","","","","","cs, en"
"czu.cz","https://www.oikt.czu.cz/cs/r-12085-kontakt","abuse@czu.cz","czu.cz/.well-known/security.txt","","","","","cs en,"
"d-k.im","","security@bitly.com","d-k.im/security.txt","","","","https://bitly.com/security_pgp.txt",""
"da.player.fm","","security@player.fm support@player.fm","da.player.fm/security.txt","","","","","en"
"daad.de","","security@snoopmedia.com","daad.de/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daad.eg","","security@snoopmedia.com","daad.eg/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daad.lv","","security@snoopmedia.com","daad.lv/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daad.mx","","security@snoopmedia.com","daad.mx/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daad.or.ke","","security@snoopmedia.com","daad.or.ke/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daad.or.th","","security@snoopmedia.com","daad.or.th/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daad.rs","","security@snoopmedia.com","daad.rs/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daad.tn","","security@snoopmedia.com","daad.tn/security.txt","","https://www.snoopmedia.com/jobs/","","",""
"daciamodellen.nl","","info@daciast.nl","daciamodellen.nl/.well-known/security.txt","","","","","en nl,"
"dagelijksekost.een.be","","infosec@vrt.be","dagelijksekost.een.be/.well-known/security.txt","","","https://www.vrt.be/en/responsible-disclosure-policy-english-version/","https://www.vrt.be/.well-known/infosec_at_vrt.be_pgp_pubkey.txt",""
"dailybits.be","https://twitter.com/dailybits","security@dailybits.be","dailybits.be/.well-known/security.txt","","","","",""
"dailysign.al","","security@bitly.com","dailysign.al/security.txt","","","","https://bitly.com/security_pgp.txt",""
"daimi.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","daimi.au.dk/.well-known/security.txt","","","","",""
"daisystpatience.co.vu","https://hackerone.com/automattic/reports/new","","daisystpatience.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"dalademokraten.se","","security@bonniernews.se","dalademokraten.se/.well-known/security.txt","","","","","en sv,"
"dalvik.is","","webmaster@stefna.is","dalvik.is/.well-known/security.txt","","","","",""
"dalvikurbyggd.is","","webmaster@stefna.is","dalvikurbyggd.is/.well-known/security.txt","","","","",""
"dandevri.es","","hi@dandevri.es","dandevri.es/security.txt","https://github.com/systemdes/personal-website/releases","","","","en, nl"
"danielhowell.co.vu","https://hackerone.com/automattic/reports/new","","danielhowell.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"danishtvdrama.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","danishtvdrama.au.dk/.well-known/security.txt","","","","",""
"danmarkshistorien.dk","https://twitter.com/aarhusunicyber","security@au.dk","danmarkshistorien.dk/.well-known/security.txt","","","","",""
"danny.supportingcast.fm","","sc-security@slate.com","danny.supportingcast.fm/.well-known/security.txt","","","","","en"
"danskespil.dk","+45-36720011","security@danskespil.dk","danskespil.dk/.well-known/security.txt","","","","",""
"darkandlovely.com.ng","https://vdp.loreal.com","bugbounty@loreal.com","darkandlovely.com.ng/.well-known/security.txt","","","","","en"
"dartmoor.gov.uk","","dataprotectionofficer@dartmoor.gov.uk","dartmoor.gov.uk/.well-known/security.txt","","","https://www.dartmoor.gov.uk/about-us/terms-and-conditions/vulnerability-disclosure-policy","","en"
"dartn.de","","webmaster@travity.de","dartn.de/security.txt","","","","",""
"dastelefonbuch.de","","disclosure@dastelefonbuch.de","dastelefonbuch.de/.well-known/security.txt","","","","",""
"dat.public.lu","https://www.govcert.lu/online_form","ctie@protonmail.com security@ctie.etat.lu soc@govcert.etat.lu","dat.public.lu/.well-known/security.txt","","","","https://security.public.lu/.well-known/publickey.txt",""
"data.vic.gov.au","","sdp.security@dpc.vic.gov.au","data.vic.gov.au/.well-known/security.txt","","","","",""
"datainspektionen.se","","abuse@imy.se","datainspektionen.se/security.txt","","","","","sv"
"dataportal.orr.gov.uk","","security@orr.gov.uk","dataportal.orr.gov.uk/.well-known/security.txt","","","https://www.orr.gov.uk/terms-and-conditions","",""
"dataportal.se","","dataskyddsochinformationssakerhetsradet@digg.se","dataportal.se/security.txt","","","","","sv"
"datascience.edu.uy","https://g.co/vulnz","security@google.com","datascience.edu.uy/.well-known/security.txt","","https://g.co/SecurityPrivacyEngJobs","https://g.co/vrp","https://services.google.com/corporate/publickey.txt",""
"datassium.co.vu","https://hackerone.com/automattic/reports/new","","datassium.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"datenschutz-hamburg.de","https://datenschutz-hamburg.de/security","","datenschutz-hamburg.de/.well-known/security.txt","","","","http://hmbbfdi.de/assets/misc/pgp-schluessel-hmbbfdi.asc","de, en"
"datev.de","","soc@datev.de","datev.de/.well-known/security.txt","","https://www.datev.de/karriere","https://www.datev.de/.well-known/DATEV_eG_Vulnerability_Disclosure_Policy.pdf","","de, en"
"datos.madrid.es","","security@madrid.es","datos.madrid.es/.well-known/security.txt","","","","https://www.madrid.es/.well-known/pgp-key.txt","en, es"
"datumprikker.nl","","webmaster^Wsecurity@plantomeet.com","datumprikker.nl/.well-known/security.txt","","","","","en"
"db-blog.web.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","db-blog.web.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://cern.ch/jobs","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"dba.dk","","smd-security@schibsted.com","dba.dk/.well-known/security.txt","","","https://www.dba.dk/responsible-disclosure.txt","","da en,"
"dbdsoft.bitbucket.io","https://www.atlassian.com/trust/security/report-a-vulnerability","security@atlassian.com","dbdsoft.bitbucket.io/.well-known/security.txt","","https://www.atlassian.com/company/careers/all-jobs?team=Security","https://www.atlassian.com/trust/security/report-a-vulnerability","https://security-static.prod.atl-paas.net/atlassian-security-public.asc","en"
"dbricks.co","","security@bitly.com","dbricks.co/security.txt","","","","https://bitly.com/security_pgp.txt",""
"dca.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","dca.au.dk/.well-known/security.txt","","","","",""
"dce.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","dce.au.dk/.well-known/security.txt","","","","",""
"dce2.au.dk","https://twitter.com/aarhusunicyber","security@au.dk","dce2.au.dk/.well-known/security.txt","","","","",""
"dcs.bbk.ac.uk","","webmaster@dcs.bbk.ac.uk","dcs.bbk.ac.uk/.well-known/security.txt","","","","",""
"ddy.mn","","security@bitly.com","ddy.mn/security.txt","","","","https://bitly.com/security_pgp.txt",""
"de.player.fm","","security@player.fm support@player.fm","de.player.fm/.well-known/security.txt","","","","","en"
"dec59.ruk.cuni.cz","https://csirt.cuni.cz/en/contact","abuse@cuni.cz","dec59.ruk.cuni.cz/.well-known/security.txt","https://csirt.cuni.cz/en/acknowledgements","","https://csirt.cuni.cz/en/incident_reporting","https://csirt.cuni.cz/en/publickey.asc https://keys.openpgp.org/search?q=3F76F3C999DA105979005B4C2FC53DCB10AA8BE1",""
"decathlon.co.uk","","security@decathlon.com","decathlon.co.uk/.well-known/security.txt","","https://recrutement.decathlon.fr/","","","en-fr"
"decathlon.com.hk","","security@decathlon.com","decathlon.com.hk/.well-known/security.txt","","https://recrutement.decathlon.fr/","","","en-fr"
"decathlon.com.tr","","security@decathlon.com","decathlon.com.tr/.well-known/security.txt","","https://recrutement.decathlon.fr/","","","en-fr"
"decathlon.es","","security@decathlon.com","decathlon.es/.well-known/security.txt","","https://recrutement.decathlon.fr/","","","en-fr"
"decathlon.fr","","security@decathlon.com","decathlon.fr/.well-known/security.txt","","https://recrutement.decathlon.fr/","","","en-fr"
"decathlon.pl","","security@decathlon.com","decathlon.pl/.well-known/security.txt","","https://recrutement.decathlon.fr/","","","en-fr"
"decathlon.ro","","security@decathlon.com","decathlon.ro/.well-known/security.txt","","https://recrutement.decathlon.fr/","","","en-fr"
"deckerstar.co.vu","https://hackerone.com/automattic/reports/new","","deckerstar.co.vu/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"deco.fr","","website-security@odiso.com","deco.fr/.well-known/security.txt","","","","",""
"decorrespondent.nl","https://keybase.io/lodeclaassen","(no pgp) security@decorrespondent.nl","decorrespondent.nl/.well-known/security.txt","","https://decorrespondent.nl/vacatures","","","en nl,"
"deep-thoughts.tv","https://hackerone.com/automattic/reports/new","","deep-thoughts.tv/.well-known/security.txt","https://hackerone.com/automattic/thanks","https://www.tumblr.com/jobs","https://hackerone.com/automattic","",""
"deepsource.io","","security@deepsource.io","deepsource.io/security.txt","https://deepsource.io/hof.txt","https://deepsource.io/jobs","https://deepsource.io/security/","https://deepsource.io/security/#responsible-disclosure","en"
"defensa.pe","","security_issues@internetbrands.com","defensa.pe/.well-known/security.txt","","","","","en"
"defensie.nl","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","security@ncsc.nl","defensie.nl/.well-known/security.txt","","","https://english.ncsc.nl/contact/reporting-a-vulnerability-cvd https://www.ncsc.nl/contact/kwetsbaarheid-melden","https://english.ncsc.nl/contact/pgp-key https://www.ncsc.nl/contact/pgp-key","en nl,"
"dekoninck.be","","dieter@diewy.be","dekoninck.be/security.txt","","","https://www.dekoninck.be/nl/security-policy","https://www.dekoninck.be/nl/pgp-key.txt",""
"dell.to","","security@bitly.com","dell.to/security.txt","","","","https://bitly.com/security_pgp.txt",""
"delmarvane.ws","","security@bitly.com","delmarvane.ws/security.txt","","","","https://bitly.com/security_pgp.txt",""
"deloi.tt","","security@bitly.com","deloi.tt/security.txt","","","","https://bitly.com/security_pgp.txt",""
"delphiwww.cern.ch","https://security.web.cern.ch/home/en/csirt.shtml","","delphiwww.cern.ch/.well-known/security.txt","https://security.web.cern.ch/home/en/kudos.shtml","https://jobs.cern","https://security.web.cern.ch/home/en/kudos.shtml","https://security.web.cern.ch/home/CERN-CERT_public_key.txt","de, en, fr, pl"
"demanda.ree.es","","security@redeia.com","demanda.ree.es/.well-known/security.txt","","","","","en es,"
"denikn.cz","","security@dennikn.sk","denikn.cz/.well-known/security.txt","","","","https://dennikn.sk/.well-known/pgp-key.txt","cs en, sk,"
"denk-wijzer.nu","","security@hostingsecure.com","denk-wijzer.nu/security.txt","","","","","en"