-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathindependent-programs.yml
More file actions
1706 lines (1629 loc) · 64 KB
/
Copy pathindependent-programs.yml
File metadata and controls
1706 lines (1629 loc) · 64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Independent CVD Programs - manually submitted, not managed on any platform
# See the "Submitting a Program" section in the README for field details
#
# Required fields: company, url
# Optional fields: contact, rewards, min_payout, max_payout, currency,
# safe_harbor, allows_disclosure, domains, pgp_key, preferred_languages,
# description, program_type, status, scope, out_of_scope, testing_policy_url,
# excluded_methods, requires_account, payout_table, disclosure_timeline_days,
# response_sla_days, legal_terms_url, hall_of_fame_url, swag_details,
# reporting_url, standards
companies:
- company: atlan.com
url: https://atlan.com/responsible-disclosure-program/
contact: mailto:security@atlan.com
rewards:
- '*bounty'
- '*recognition'
- '*swag'
program_type: vdp
status: active
description: This Vulnerability Disclosure Policy (VDP) establishes guidelines for security researchers to report vulnerabilities they discover in Atlan’s systems. We are committed to working with researchers who act in good faith to help us maintain the highest security standards.
out_of_scope:
- https://atlan.com (Marketing website)
- Open Source Repositories
- https://metadatabank.atlan.com
- 'Third-party services not owned or controlled by Atlan, including:'
- https://blog.atlan.com
- https://university.atlan.com
- https://humansofdata.atlan.com
- https://docs.atlan.com
domains:
- '*.atlan.com (excluding explicitly out-of-scope domains listed below)'
- Atlan’s main application and associated services that process customer data
- API endpoints and authentication systems
swag_details: Amazon gift cards, Atlan swag and merchandise Public recognition on our Hall of Fame
- company: atmail.com
url: https://www.atmail.com/bug-bounty-terms/
contact: mailto:security@atmail.com.
rewards:
- '*bounty'
program_type: bounty
status: active
safe_harbor: full
allows_disclosure: true
description: Atmail is committed to protecting our customers and their users. As part of this commitment, we invite security researchers to help protect Atmail and its users by proactively identifying security vulnerabilities via our bug bounty program. Our program is inclusive of all Atmail brands and technologies and offers rewards for a wide array of vulnerabilities. We encourage security researchers looking to participate in our bug bounty program to review this policy to ensure compliance with our rules
out_of_scope:
- Any domain that is an alias (CNAME) for a third-party system, or is being proxied through a CDN such as Cloudflare directly to a third-party platform. e.g. billing.atmail.com, success.atmail.com, status.atmail.com.
- All third party services associated with Atmail services.
domains:
- '*.atmail.com, including www.atmail.com within the scope listed below. Excluding billing.atmail.com'
- '*.atmail.cloud'
- All Atmail code shipped with it’s product, both source and binaries (in binary form) as supplied.
- Only the latest versions of the currently shipped and supported products are in scope.
- All Atmail Hosted services, both public and private cloud installations.
- All Atmail supplied customer service portals, third-party components excluded.
- www.atmail.com, limited to the contents being served from this website, and not third-party components that may present as accessible via this website.
min_payout: 50
max_payout: 5000
currency: USD
payout_table:
critical: 5000
high: 2000
medium: 500
low: 48
disclosure_timeline_days: 90
- company: aurasell.ai
url: https://www.aurasell.ai/bug-bounty
contact: mailto:security@aurasell.ai
rewards:
- '*bounty'
program_type: bounty
status: active
description: |-
At Aurasell, security is a top priority. While we work hard to protect our platform and customers, we recognize that vulnerabilities can still occur. We encourage independent security researchers to help us improve the safety of our products and services.
If you believe you have discovered a security vulnerability in Aurasell, we want to hear from you. Please review this page carefully before submitting a report.
domains:
- Aurasell web applications
- Aurasell administrative consoles
- Aurasell APIs
- Other Aurasell-owned production services
min_payout: 5
max_payout: 1000
currency: USD
payout_table:
critical: 1000
high: 500
medium: 200
low: 5
- company: AxisPay
url: https://axispay.tech/legal/disclosure
contact: mailto:security@axispay.tech
rewards:
- '*recognition'
program_type: vdp
status: active
safe_harbor: partial
preferred_languages: English
description: We do not currently offer a bug bounty program. However, we are grateful to researchers who submit valid reports and help us improve our security. We may offer non-monetary recognition at our discretion for significant findings.
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
- automated_scanning
scope:
- target: axispay.tech/*
type: This marketing site and all its subpages
- target: dashboard.axispay.tech
type: AxisPay Portal
- target: axisvoice.com
type: AxisVoice
- target: axispass.app
type: AxisPass
out_of_scope:
- Third-party services we do not operate
- Social engineering, phishing, or physical attacks
- Denial-of-Service (DoS) or resource-exhaustion attacks
- Automated scanning that impacts service availability
domains:
- axispay.tech/*
- dashboard.axispay.tech
- axisvoice.com
- axispass.app
response_sla_days: 2
hall_of_fame_url: https://axispay.tech/legal/disclosure#hall-of-fame
- company: Bambu Lab
url: https://bambulab.com/en/bug-bounty-program
contact: mailto:security@bambulab.com
rewards:
- '*bounty'
program_type: bounty
status: active
description: |-
Through our Bug Bounty Program, we collaborate with the security community to identify vulnerabilities early and strengthen the safety and reliability of our systems. Please refer to the detailed testing scope and reward rules below.
Link - https://bambulab.com/en/bug-bounty-program#scopeAndBounty
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
scope:
- target: '*.bambulab.com and makerworld.com'
type: web
- target: Bambu Handy, Bambu Studio, Bambu Suite and Bambu Connect
type: PC & App
- target: X-series, P-series, A-series, and H-series firmware
type: Device
out_of_scope:
- srm.bambulab.com
- prm.bambulab.com
domains:
- '*.bambulab.com'
- makerworld.com
response_sla_days: 10
reporting_url: https://bambulab.com/en/bug-bounty-program/reports/create
- company: bentley.com
url: https://www.bentley.com/legal/bug-bounty-report/
rewards:
- '*bounty'
program_type: bounty
status: active
description: At Bentley Systems, we take the security of our systems and products seriously, and we value the security community. The disclosure of security vulnerabilities helps us ensure the security and privacy of our users.
out_of_scope:
- Bentley Systems’ Infrastructure (VPN, Mail Server, SharePoint, Skype, etc.)
- Findings from physical testing, such as office access (e.g., open doors, tailgating)
- Findings derived primarily from social engineering (e.g., phishing, vishing)
- Findings from applications or systems not listed in the ‘Scope’ section
- Any services hosted by 3rd-party providers and services
- Obsolete/deprecated software
- Obsolete/deprecated software
- https://seequent.frontify.com/
- https://events.seequent.com/
- https://community.seequent.com/
- https://lms.seequentlearning.com/
- https://partners.seequent.com/
- eventhub.bentley.com
- On24 related issues
domains:
- All _.bentley.com subdomains
- All Bentley Systems desktop products (Only CONNECT Edition and Later)
- All Bentley Systems mobile apps (distributed only on Play and App stores)
- All Bentley Cloud Applications and Services
- All Bentley Open-Source Projects (including imodeljs.org)
min_payout: 100
max_payout: 1000
currency: USD
disclosure_timeline_days: 90
- company: BSI Germany
url: https://www.bsi.bund.de/EN/IT-Sicherheitsvorfall/IT-Schwachstellen/it-schwachstellen_node.html
contact: mailto:vulnerability@bsi.bund.de
rewards:
- '*recognition'
program_type: vdp
status: active
safe_harbor: partial
allows_disclosure: true
preferred_languages: German, English
description: Federal Office for Information Security (BSI) coordinates vulnerability disclosure for German federal IT systems. No prosecution of researchers acting in good faith under the published policy.
- company: BT Group
url: https://www.bt.com/about/contact-bt/responsible-disclosure
contact: https://www.bt.com/about/contact-bt/responsible-disclosure
rewards:
- '*recognition'
program_type: vdp
status: active
safe_harbor: partial
allows_disclosure: false
preferred_languages: English
pgp_key: https://www.bt.com/.well-known/btcertcc_public.asc
description: BT Group responsible disclosure program covering BT, EE, Plusnet, and Openreach products and services.
excluded_methods:
- dos
scope:
- target: BT Group products and services
type: web
- target: BT Group network infrastructure
type: network
out_of_scope:
- Non-exploitable vulnerabilities
- Missing security headers without demonstrated impact
response_sla_days: 1
disclosure_timeline_days: 90
hall_of_fame_url: https://www.bt.com/about/contact-bt/responsible-disclosure/hall-of-fame
- company: C-SINT
url: https://www.csint.pro/bug_bounty
contact: mailto:bugbounty@csint.pro
rewards:
- '*bounty'
program_type: bounty
status: active
description: Help secure the csint.pro intelligence platform and earn rewards for high‑quality.For best results, start with the official vulnerability report template linked below, then email it as an attachment - https://www.csint.pro/bugbounty/assets/security_vulnerability_report_template.pdf
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
scope:
- target: '*.csint.pro'
type: web
- target: authentication, dashboard, OSINT search, subscriptions, user settings
type: main web app
- target: /login, /register, /dashboard, /api/*, /admin/*
type: endpoints
- target: application servers, load balancers, CDN config, databases, TLS and security headers
type: Infrastructure we control
out_of_scope:
- Third‑party processors, analytics, email providers, CDN infrastructure not configured by csint.pro.
- Hosting provider, ISP, registrar, certificate authority, or any systems not owned by csint.pro.
- Physical testing, social engineering against users, or harassment of staff or customers.
- DoS/DDoS, resource exhaustion, data destruction, or any service disruption.
- Persistent backdoors, malware, credential harvesting, or pivoting to internal networks.
domains:
- '*.csint.pro'
response_sla_days: 2
- company: CERN
url: https://security.web.cern.ch/home/en/cvd.shtml
contact: mailto:Computer.Security@cern.ch
rewards:
- '*recognition'
program_type: vdp
status: active
allows_disclosure: true
preferred_languages: English, French
description: CERN Coordinated Vulnerability Disclosure program for reporting security vulnerabilities in CERN systems and services.
excluded_methods:
- automated_scanning
scope:
- target: CERN systems and services
type: web
hall_of_fame_url: https://security.web.cern.ch/home/en/kudos.shtml
- company: coderpad.io
url: https://coderpad.io/vulnerability-disclosure-policy/
contact: mailto:bugbounty@coderpad.io
rewards:
- '*bounty'
- '*recognition'
program_type: bounty
status: active
description: CoderPad intends to keep its service secure and protect its customers’ data. If you’ve found a security issue that you believe we should know about, you can submit it to our team. Eligible findings can receive a reward as stated below.
domains:
- Accepted targets are coderpad.io and all its existing subdomains, with the exception of trustcenter.coderpad.io, status.coderpad.io and metabase related subdomains.
min_payout: 49
max_payout: 500
payout_table:
critical: 500
high: 250
medium: 100
low: 50
- company: codingame.com
url: https://www.codingame.com/work/vulnerability-disclosure-policy/
rewards:
- '*bounty'
program_type: bounty
status: active
allows_disclosure: true
out_of_scope:
- 'Our basic principle for this program : we consider as a valid vulnerability, only those that can reasonably lead to : data leak, credential leak, undue data modification or deletion, real and reproducible impact on performance / availability. A few low level issues of which impact can be questioned may also be out of scope purposely (due to risk VS benefit considerations).'
domains:
- Accepted targets are codingame.com, codingame.eu, codingame-app.com and all their existing subdomains, with the exception of metabase.codingame.com.
min_payout: 50
max_payout: 500
currency: USD
payout_table:
critical: 500
high: 250
medium: 100
low: 50
- company: CrowdProof
url: https://crowdproof.id/security
contact: mailto:security@crowdproof.id
rewards:
- '*bounty'
program_type: bounty
status: active
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
scope:
- target: DIDRegistry, ReputationOracle, CredentialVerifier, PaymentEscrow, GovernanceToken
type: Smart contracts
- target: crowdproof-api.azurewebsites.net
type: Backend API
- target: portal.crowdproof.id
type: portal
- target: crowdproof.id
type: web
- target: TypeScript, Python, Go, C#, Java, Swift
type: SDKs
- target: ReputationProof, AgeProof, KYCProof
type: ZK circuits
out_of_scope:
- Social engineering or phishing attacks
- Denial of service (DoS/DDoS) attacks
- Vulnerabilities in third-party services (Stripe, Persona, Azure)
- Issues requiring physical access to hardware
- Known issues already listed in our GitHub issue tracker
domains:
- crowdproof-api.azurewebsites.net
- portal.crowdproof.id
- crowdproof.id
min_payout: 100
max_payout: 25000
currency: USD
hall_of_fame_url: https://crowdproof.id/security#acknowledgments
- company: DENSO WAVE
url: https://www.denso-wave.com/en/psirt/
contact: https://www.denso-wave.com/en/contact/psirt/
rewards:
- '*recognition'
program_type: vdp
status: active
preferred_languages: English, Japanese
description: DENSO WAVE vulnerability disclosure program for DENSO WAVE products, following ISO 29147 coordinated disclosure.
response_sla_days: 5
standards:
- ISO 29147
- company: DNSLookup
url: https://dnslookup.pro/security
contact: mailto:security@dnslookup.pro
rewards:
- '*swag'
program_type: vdp
status: active
description: |-
DNSLookup does not currently offer a formal bug bounty program with monetary rewards, but deeply appreciates the contributions of security researchers.
What is Offered:
- Public Recognition: Listing in the Security Hall of Fame (with the researcher’s permission)
- Swag: DNSLookup.pro merchandise for significant findings
- Professional Reference: LinkedIn endorsement or reference letter
- CVE Credit: Attribution if the vulnerability is assigned a CVE ID
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
out_of_scope:
- Third-party services (Cloudflare, Google Analytics, etc.)
- Social engineering attacks against our staff
- Physical attacks on infrastructure
- Denial of Service (DoS/DDoS) attacks
domains:
- '*.dnslookup.pro'
hall_of_fame_url: https://dnslookup.pro/security
- company: docs.range.org
url: https://docs.range.org/resources/bug-bounty
contact: mailto:security@range.org
rewards:
- '*bounty'
program_type: bounty
status: active
safe_harbor: full
allows_disclosure: true
description: Range runs a bug bounty program that rewards security researchers who help protect our platform and customers. Submit vulnerabilities in any Range product or infrastructure to security@range.org.
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
- automated_scanning
out_of_scope:
- stage.range.org and other non-production environments
- Social engineering, phishing, or physical attacks
- Denial of service (DoS/DDoS) and volumetric testing
- Issues in third-party services we do not control
- Reports from automated scanners without a working proof of concept
- Best-practice recommendations without a demonstrable vulnerability
- Missing security headers (CSP, HSTS, X-Frame-Options) without a demonstrated exploit
- SPF, DKIM, or DMARC configuration issues
- Self-XSS, clickjacking on pages without sensitive actions, and CSRF on logout or non-state-changing endpoints
- Rate limiting or brute-force concerns without a clear impact path
- Username or email enumeration
- Vulnerabilities in outdated browsers or already-patched dependencies without a working proof of concept
- Issues already known to the team or previously reported
domains:
- range.org and all *.range.org subdomains
- Range platform, APIs (Risk, Data, Faraday), and dashboards
- Authentication and authorization flows
- Remote code execution, SQL injection, SSRF, and server-side template injection
- Broken access control, IDOR, and privilege escalation
- Authentication bypass and account takeover
- Sensitive data exposure and information disclosure
- Stored or reflected XSS with demonstrable impact
min_payout: 250
max_payout: 10000
currency: USD
payout_table:
critical: 10000
high: 1000
medium: 5000
low: 250
disclosure_timeline_days: 90
- company: Fluxer
url: https://fluxer.app/security
contact: mailto:security@fluxer.app
rewards:
- '*bounty'
- '*recognition'
program_type: bounty
status: active
preferred_languages: English
description: Fluxer may award a Bug Hunter badge and Fluxer Plutonium gift codes for valid reports.
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
- automated_scanning
out_of_scope:
- Third-party services and infrastructure we do not control, including partner communities' independent integrations, bots, and external hosting providers.
- Physical security
- Social engineering
- Phishing
- Bribery
- Coercion
- Attempts to manipulate Fluxer staff or users are also out of scope.
- DoS attacks
- Traffic flooding
- Resource exhaustion testing
- Noisy automated scanning
- Bulk testing without a clear impact
- General UI bugs
- Feature requests and ordinary support issues are out of scope
- Application-layer DoS vulnerabilities that can be demonstrated with a single unauthenticated request or a small number of requests may be reported, but do not actively exploit them at scale.
- Issues in forked, modified, or outdated self-hosted deployments are out of scope unless they are reproducible on the latest official release. Low-impact or theoretical findings, such as missing best-practice headers, are usually not prioritised unless you can show a realistic attack path and concrete security impact.
domains:
- '*.fluxer.app'
- '*.fluxer.gg'
- '*.fluxer.gift'
- '*.fluxerapp.com'
- '*.fluxer.dev'
- '*.fluxerusercontent.com'
- '*.fluxerstatic.com'
- '*.fluxer.media'
- company: forexfactory.com
url: https://www.forexfactory.com/bug-bounty
rewards:
- '*bounty'
program_type: bounty
status: active
description: |-
If you're a security researcher or believe you've found a vulnerability in one of our products, the Bug Bounty Program at Forex Factory allows you to submit vulnerability reports directly to us and receive a reward.
We believe responsible disclosure should be compensated fairly and encourage the security researcher community to hunt for, find, and report issues.
domains:
- '*.forexfactory.com'
- '*.cryptocraft.com'
- '*.energyexch.com'
- '*.metalsmine.com'
min_payout: 100
max_payout: 10000
currency: USD
payout_table:
critical: 10000
high: 5000
medium: 1000
low: 100
- company: foundation.xyz
url: https://foundation.xyz/responsible-disclosure/
contact: mailto:security@foundation.xyz
rewards:
- '*bounty'
program_type: bounty
status: active
allows_disclosure: true
description: Foundation Devices, Inc. (“Foundation”) creates hardware, firmware, software, websites, and web-based services for customers, users, and employees. Foundation expends significant time and effort to ensure that these are all safe and secure. If you believe that you have found an issue or vulnerability, however, the bug bounty program below describes the actions you should take to report the issue, and under what conditions Foundation will pay out bug bounty rewards.
out_of_scope:
- 'Any service hosted at a domain outside of this list will not be considered relevant to this bug bounty program, with the following exception:'
- Access to systems hosted by a 3rd party infrastructure provider, which has been deemed relevant to the hosting and securing of services at the domains listed above. The vulnerability must be addressable by our engineers. Foundation reserves the right to make this determination at its sole discretion.
domains:
- foundation.xyz
- Primary e-commerce domain above, checkout functionality, WooCommerce admin areas
currency: USD
payout_table:
critical: 500
high: 200
medium: 100
low: 50
- company: FreeFires
url: https://freefires.site
rewards:
- '*bounty'
- '*recognition'
- '*swag'
program_type: bounty
- company: geckoboard.com
url: https://support.geckoboard.com/en/articles/6055718-report-a-security-vulnerability-and-responsible-disclosure-policies
rewards:
- '*bounty'
program_type: vdp
status: active
description: We welcome reports from security researchers and experts about possible security vulnerabilities with our service. We're particularly interested in hearing about vulnerabilities that impact the confidentiality or integrity of user information or systems, and have the potential to impact a large number of people.
out_of_scope:
- www.geckoboard.com, community.geckoboard.com, support.geckoboard.com, etc. are out of scope.
domains:
- app.geckoboard.com
max_payout: 500
currency: USD
- company: Go Deed Inc
url: https://www.joindeed.com/security
contact: mailto:security@joindeed.com
rewards:
- '*recognition'
program_type: vdp
status: active
description: Deed do not offer monetary payouts through their bug bounty program, as they believe security researchers and pentesters should be fairly compensated rather than contributing unpaid labor for unspecified rewards. However, as a token of appreciation for responsibly disclosed vulnerabilities, offer Deed swag and recognition in their Security Hall of Fame.
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
hall_of_fame_url: https://www.joindeed.com/security
- company: Hitachi
url: https://www.hitachi.com/hirt/
contact: https://www8.hitachi.co.jp/inquiry/hitachi-ltd/it/hirt/en/form.jsp
rewards:
- '*recognition'
program_type: vdp
status: active
preferred_languages: English, Japanese
description: Hitachi Incident Response Team handles security vulnerabilities in Hitachi group IT and industrial control system products.
scope:
- target: Hitachi group IT products
type: other
- target: Industrial Control Systems
type: hardware
out_of_scope:
- End-of-life products
- Other manufacturers' products
standards:
- ISO 29147
- ISO 30111
hall_of_fame_url: https://www.hitachi.com/hirt/security/acknowledgments.html
- company: Iceline Hosting
url: https://iceline-hosting.com/bug-bounty
contact: mailto:reply@support.iceline-hosting.com
rewards:
- '*recognition'
- '*swag'
program_type: vdp
status: active
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
scope:
- target: iceline-hosting.com
type: Iceline main website
- target: shield.iceline-hosting.com
type: Iceline Shield
- target: game.iceline-hosting.com
type: Iceline Game Panel
- target: billing.iceline-hosting.com
type: Iceline billing
- target: vps.iceline-hosting.com
type: Iceline VPS panel
- target: status.iceline-hosting.com
type: Status page
- target: auth.iceline-hosting.com
type: Auth
out_of_scope:
- Third-party services we don’t control (e.g. CDN, infrastructure providers)
- Social engineering, phishing, DoS/DDoS
- Known dependency issues without a working exploit
- Low-impact issues with no demonstrable impact
domains:
- iceline-hosting.com
- shield.iceline-hosting.com
- game.iceline-hosting.com
- billing.iceline-hosting.com
- vps.iceline-hosting.com
- status.iceline-hosting.com
- auth.iceline-hosting.com
reporting_url: https://support.retraflow.io/iceline-hosting
- company: Insight Health
url: https://www.insighthealth.ai/security
contact: mailto:security@insighthealth.ai
rewards:
- '*recognition'
program_type: vdp
status: active
preferred_languages: English
description: If you believe you've found a security vulnerability in an Insight Health product or service, we want to hear from you. Please email your report to [security@insighthealth.ai](mailto:security@insighthealth.ai)
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
scope:
- target: nsighthealth.ai
type: Web application
- target: auth.insighthealth.ai
type: Authentication service
- target: app.insighthealth.ai
type: Application platform
- target: api.insighthealth.ai
type: API
out_of_scope:
- Reports from automated scanners without manual verification or demonstrated impact.
- Email auto-linking behavior (e.g., email clients rendering user-provided text as clickable hyperlinks).
- Social engineering, phishing, or physical attacks against Insight Health employees or users.
- Denial-of-service (DoS/DDoS) attacks or volumetric testing.
- Content injection without demonstrated security impact (e.g., entering text into input fields that is later displayed).
- Missing security headers that do not lead to a demonstrated exploit.
- Self-XSS (where the victim must paste code into their own browser console).
- Rate limiting or brute-force issues on non-authentication endpoints.
- Vulnerabilities in third-party services, libraries, or upstream providers unless they directly compromise Insight Health systems.
- Reports that require unlikely or impractical user interaction.
- SPF/DKIM/DMARC configuration suggestions without demonstrated spoofing impact.
domains:
- nsighthealth.ai
- auth.insighthealth.ai
- app.insighthealth.ai
- api.insighthealth.ai
response_sla_days: 3
- company: Instant Gaming
url: https://www.instant-gaming.com/en/docs/bugbounty/
contact: https://www.instant-gaming.com/en/support/
rewards:
- '*bounty'
program_type: bounty
status: active
safe_harbor: full
preferred_languages: English
description: Instant Gaming invites security researchers to responsibly disclose vulnerabilities affecting its website, public APIs, and mobile applications. Bounties are awarded based on severity using CVSS and internal risk assessment.
excluded_methods:
- dos
- ddos
- spam
- brute_force
- automated_abuse
- social_engineering
- phishing
- physical_access
scope:
- target: instant-gaming.com and publicly discoverable subdomains
type: web
- target: Public APIs
type: api
- target: Instant Gaming and Instant Gaming News mobile applications
type: mobile
domains:
- instant-gaming.com
- '*.instant-gaming.com'
- Public APIs
- Instant Gaming iOS application
- Instant Gaming Android application
- Instant Gaming News iOS application
- Instant Gaming News Android application
reporting_url: https://www.instant-gaming.com/en/support/
response_sla_days: 3
- company: keragon.com
url: https://www.keragon.com/security/vulnerability-disclosure-program
rewards:
- '*bounty'
- '*recognition'
- '*swag'
program_type: bounty
status: paused
safe_harbor: full
allows_disclosure: true
description: Keragon's bug bounty program uses a tiered model combining monetary rewards with recognition-based incentives.
out_of_scope:
- Third-party services integrated with Keragon (e.g., payment processors, email providers)
- Social engineering attacks (phishing, vishing, physical)
- Denial-of-service (DoS/DDoS) attacks
- Automated scanning that generates excessive traffic
- Any testing against customer data or production PHI environments
- Findings from automated tools without demonstrated impact
domains:
- keragon.com and all subdomains
- Keragon's public-facing web application
- Keragon's public API endpoints
- Keragon's authentication and authorization systems
min_payout: 25
max_payout: 2000
currency: USD
payout_table:
critical: 2000
high: 500
medium: 200
low: 48
requires_account: false
- company: kindo.ai
url: https://www.kindo.ai/vulnerability-disclosure-program
contact: mailto:bugs@kindo.ai
rewards:
- '*bounty'
- '*recognition'
- '*swag'
program_type: vdp
status: active
safe_harbor: full
description: Kindo welcomes responsible security research and appreciates reports that help keep our systems and customers safe. If you believe you’ve found a security issue, please report it privately and we’ll work with you to investigate and remediate.
out_of_scope:
- 'The following are explicitly excluded from this VDP:'
- Internal systems not accessible from the internet.
- Systems of third-party vendors or partners.
- Physical security vulnerabilities (e.g., building access).
- Denial of Service (DoS) vulnerabilities. While we appreciate reports of potential DoS vulnerabilities, we ask that researchers refrain from testing them against our systems.
- Social engineering attacks (e.g., phishing).
- Vulnerabilities in third-party libraries or frameworks unless they are uniquely exploitable in our implementation.
domains:
- 'This VDP applies to all internet-facing systems and applications owned or operated by Kindo.ai, including:'
- Kindo web properties
- 'Including kindo.ai, app.kindo.ai, and all related subdomains: This includes the main corporate website, customer portal, and any related web applications.'
- Deep Hat web properties
- Including deephat.ai, app.deephat.ai, and all related subdomains.
- API interfaces
- This includes all publicly accessible APIs.
- Acquired companies and related companies
- Unless otherwise stated, this VDP also applies to systems and applications of companies acquired or owned by Kindo.ai.
min_payout: 50
max_payout: 1000
currency: USD
payout_table:
critical: 1000
high: 500
medium: 150
- company: Lark
url: https://www.larksuite.com/en_us/bugbounty
rewards:
- '*bounty'
program_type: bounty
status: active
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
- company: Mamentis
url: https://mamentis.com/docs/resources/miscellaneous/submit-bug-request#security-issues
contact: mailto:security@mamentis.com
rewards:
- '*bounty'
program_type: bounty
status: active
preferred_languages: English
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
response_sla_days: 1
- company: mintlify.com
url: https://www.mintlify.com/security/responsible-disclosure
contact: mailto:security@mintlify.com
rewards:
- '*bounty'
- '*recognition'
program_type: hybrid
status: active
description: At Mintlify, we care deeply about the safety and security of our customer's data. We greatly value inputs from our community that can help us detect vulnerabilities in our product and services.
out_of_scope:
- Automated scanning
- Social engineering, particularly involving Mintlify employees
- Missing or insufficient rate limiting
- Missing headers in responses, except in cases where material harm or exploitation is evident
- Brute force attacks
- DDOS attacks
- Clickjacking on pages with no sensitive actions
- Theoretical attacks without proof of exploitability
- Attacks requiring physical access to a victim's device
- Attacks requiring interceptin of a valid user's network traffic
- Denial of service attacks
domains:
- https://mintlify.com/docs
- https://dashboard.mintlify.com
- https://leaves.mintlify.com
- Mintlify GitHub apps
- Vulnerabilities which apply to Mintlify's hosted documentation and customers' documentation. Do not attempt to reproduce or exploit these vulnerabilities on customer documentation without express permission and communication from the customer and Mintlify teams.
requires_account: true
- company: Mitsubishi Electric
url: https://www.mitsubishielectric.com/en/psirt/disclosurepolicy/index.html
contact: https://www.mitsubishielectric.com/psirt/contact/index.html
rewards:
- '*recognition'
program_type: vdp
status: active
preferred_languages: English, Japanese
description: Mitsubishi Electric PSIRT handles security vulnerabilities in Mitsubishi Electric products, coordinating disclosure with JPCERT/CC.
response_sla_days: 5
out_of_scope:
- End-of-life products
standards:
- ISO 29147
- company: nelko.com
url: https://nelko.com/pages/vulnerability-disclosure-policy
rewards:
- '*recognition'
- '*swag'
program_type: vdp
status: active
safe_harbor: full
allows_disclosure: false
description: At Nelko, the security of our customers and the integrity of our hardware and digital ecosystem are our top priorities. We are committed to ensuring that personal information is protected carefully and handled with discretion. We appreciate the efforts of security researchers who help us identify and fix potential vulnerabilities.
out_of_scope:
- 'Third-Party Services: Services hosted by third parties (e.g., Shopify, PayPal, Mailchimp).'
- 'Physical Security: Attacks against Nelko’s physical offices, warehouses, or personnel.'
- 'Social Engineering: Phishing or deceptions targeting Nelko employees or customers.'
domains:
- 'Official Domain: .nelko.net'
- 'Software: Official Nelko-branded mobile applications and printing software.'
- 'Hardware: Firmware and communication protocols of Nelko-branded printers.'
response_sla_days: 3
swag_details: At our sole discretion, Nelko may provide product rewards (such as printers or consumable gift sets) to researchers who report significant, verified vulnerabilities as a token of our appreciation.
- company: nuuvem.com
url: https://www.nuuvem.com/us-en/security
contact: mailto:security@nuuvem.com
rewards:
- '*bounty'
program_type: bounty
status: active
description: |-
We know that, despite our continuous efforts to ensure the integrity of our systems, no security is infallible. That's why we are launching our Bug Bounty Program - an initiative aimed at further strengthening our digital security through collaboration with the security research and programming community.
We are excited to invite researchers and programmers to participate in our Bug Bounty Program, designed to identify and fix vulnerabilities that may affect the security and privacy of our user
domains:
- nuuvem.com
- nuuvem.com.br
- nuuvem.co
- nuuvem.host
- nuuvem.dev
- nuuvem.net
- nuuvem.games
- nuuvem.io
- n-arcade.io
max_payout: 5000
currency: USD
payout_table:
high: 1499
medium: 599
low: 299
- company: obol.org
url: https://docs.obol.org/advanced-and-troubleshooting/security/bug-bounty
contact: mailto:security@obol.tech
rewards:
- '*bounty'
program_type: bounty
status: active
description: At Obol Labs, we prioritize the security of our distributed validator software and related services. Our Bug Bounty Program is designed to encourage and reward security researchers for identifying and reporting potential vulnerabilities. This initiative supports our commitment to the security and integrity of our products.
out_of_scope:
- Social engineering
- Rate Limiting (Non-critical issues)
- Physical security breaches
- Non-security related UX/UI issues
- Third-party application vulnerabilities
- The Obol static website or the Obol infrastructure
- The operational security of node operators running or using Obol software
domains:
- Charon the DV Middleware Client
- Obol DV Launchpad and Public API
- Obol Splits Contracts
- Obol Labs hosted Public Relay Infrastructure
min_payout: 500
max_payout: 100000
currency: USD
payout_table:
critical: 100000
high: 10000
medium: 2500
low: 499
- company: Orange Cyberdefense
url: https://www.orangecyberdefense.com/de/vulnerability-disclosure-policy
contact: mailto:vulnerability@orangecyberdefense.com
rewards:
- '*recognition'
program_type: vdp
status: active
safe_harbor: full
allows_disclosure: false
preferred_languages: English
description: Orange Cyberdefense vulnerability disclosure program covering digital infrastructures, platforms, applications, and products.
excluded_methods:
- dos
- social_engineering
- phishing
response_sla_days: 5
pgp_key: https://advisories.orangecyberdefense.com
- company: panteracapital.com
url: https://panteracapital.com/pantera-bug-bounty/
contact: mailto:security@panteracapital.com
rewards:
- '*bounty'
program_type: bounty
status: active
description: Welcome to Pantera’s Bug Bounty Program. We appreciate your dedication to helping us improve our security and protect our users.
out_of_scope:
- Vulnerabilities in third-party services or applications
- Social engineering attacks
- Physical security vulnerabilities
- Issues related to outdated browsers or unsupported software
domains:
- Web applications
- Network infrastructure
max_payout: 5000
currency: USD
payout_table:
high: 1000
- company: Pathé
url: https://www.pathe.com/wp-content/uploads/2023/12/Pathe-Politique-CVD.1.2.EN_.pdf
rewards:
- '*recognition'
program_type: vdp
status: active
description: |-
Pathé do care about the security of their systems, websites and applications as well as the protection of the data of their
customers, employees and partners. As a thank you for your help, we offer a reward for every report of an unknown vulnerability.
excluded_methods:
- dos
- social_engineering
- phishing
- physical_access
scope:
- target: https://pathe.com/
type: Pathé Corporate
- target: https://cannes.patheinternational.com/