-
Notifications
You must be signed in to change notification settings - Fork 587
/
intigriti_data.json
10493 lines (10443 loc) · 351 KB
/
intigriti_data.json
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
[
{
"id": "cf95261d-750a-4672-b42e-74825f0d421d",
"name": "9altitudes - Vulnerability Disclosure Program",
"company_handle": "ninealtitudes",
"handle": "VDP",
"url": "https://www.intigriti.com/programs/ninealtitudes/VDP/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 0,
"currency": "EUR"
},
"max_bounty": {
"value": 0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "other",
"endpoint": "Old 9altitudes related domains",
"description": "#### Most of these domains are redirected to our current main domains, this is meant to display missed vulnerabilities. Example: active websites with exploits, old integrations connecting current platforms, remote access, other.\n####\n\n*.admiraldynamics.be\n*.admiraldynamics.eu\n*.bpos-live.com\n*.Bredanademo.dk\n*.Bredanasolutions.com\n*.Bredanasolutions.dk\n*.Bredana-solutions.dk\n*.bro-consulting.be\n*.cayentis.com\n*.cayentisxrm.nl\n*.cayentis.nl\n*.crm4utilities.com\n*.crmhugger.nl\n*.crm-trainingen.com\n*.crm-trainingen.nl\n*.crmvoorenergie.com\n*.crmvoorenergie.nl\n*.dynamicsconnector.net\n*.dynamicsconnector.nl\n*.Econocap.dk\n*.exarte.be\n*.gv-s.be\n*.marktanalyseonline.nl\n*.marktpotentieanalyse.nl\n*.neufaltitudes.com\n*.neufaltitudes.fr\n*.neufaltitudes.nl\n*.ninealtitude.com\n*.ninealtitudes.com\n*.ninealtitudes.dk\n*.ninealtitudes.se\n*.optigrator.com\n*.optigrator.dk\n*.optimate.dk\n*.optimateas.com\n*.optimatecrm.dk\n*.optimatetest.dk\n*.Pdmlink.dk\n*.pylades.com\n*.thewitnetwork.be\n*.Thingworx.dk\n*.uwmarktonline.nl\n*.Windchill.dk\n*.xrmpartner.com\n*.hillstarsrv.nl\n*.hillstar.nl",
"impact": "No Bounty"
}
],
"out_of_scope": [
{
"type": "wildcard",
"endpoint": "*.9altitudes.*",
"description": "All data related to the main 9altitudes domains (.com, .nl, .dk, .fr, .si, and other top-level domains).\n",
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.adultimagroup.*",
"description": "All data related to the main adultimagroup domains (.com, .nl, .dk, .fr, .si, and other top-level domains).",
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.birds.bi",
"description": "All data related to the main birds.bi domain.",
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.birds.com",
"description": "All data related to the main birds.com domain.",
"impact": "Out of scope"
},
{
"type": "other",
"endpoint": "*.dynamics.com",
"description": "\nAll Microsoft Dynamics portals related to 9altitudes. ",
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.jobmanager.dk",
"description": "All data related to the main jobmanager.dk domain.",
"impact": "Out of scope"
}
]
}
},
{
"id": "e67941f1-2087-4681-8718-3e3f4dc51798",
"name": "AMD Product Security Bug Bounty Program",
"company_handle": "amd",
"handle": "amd",
"url": "https://www.intigriti.com/programs/amd/amd/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 500,
"currency": "USD"
},
"max_bounty": {
"value": 30000,
"currency": "USD"
},
"targets": {
"in_scope": [
{
"type": "other",
"endpoint": "Hardware",
"description": "Vulnerabilities in the physical hardware of **in scope** products and technologies",
"impact": "Tier 1"
},
{
"type": "other",
"endpoint": "Firmware",
"description": "Vulnerabilities in the firmware of **in scope** products and technologies",
"impact": "Tier 2"
},
{
"type": "other",
"endpoint": "Software",
"description": "Vulnerabilities in drivers or other software required to operate **in scope** products and technologies",
"impact": "Tier 3"
}
],
"out_of_scope": [
{
"type": "other",
"endpoint": "Out of Scope",
"description": "* Optional tools\n* Product-independent software\n* Software for products and technologies for out of scope products\n",
"impact": "Out of scope"
}
]
}
},
{
"id": "554fc6c5-4ffa-4682-a3ba-7e86696e9b17",
"name": "Aikido Security: Bug Bounty Program",
"company_handle": "aikido",
"handle": "aikido",
"url": "https://www.intigriti.com/programs/aikido/aikido/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 50,
"currency": "EUR"
},
"max_bounty": {
"value": 2500,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "app.aikido.dev",
"description": "This is our main application, which hosts the API as well as the front-end application.\n\nOur public API is also accessible via this host. Documentation is available here: https://apidocs.aikido.dev/.",
"impact": "Tier 2"
}
],
"out_of_scope": [
{
"type": "wildcard",
"endpoint": "*.aikido.dev",
"description": null,
"impact": "Out of scope"
}
]
}
},
{
"id": "ac81c127-b11b-469e-8060-e0fbb9c9c398",
"name": "Aikido Security: Zen by Aikido ",
"company_handle": "aikido",
"handle": "aikidoruntime",
"url": "https://www.intigriti.com/programs/aikido/aikidoruntime/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 100,
"currency": "EUR"
},
"max_bounty": {
"value": 3500,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "other",
"endpoint": "https://github.com/AikidoSec/firewall-node#Vulnerability",
"description": "Tier 1 is for vulnerabilities which we potentially introduce via our own firewall component in the user's application.\n\nSee Severity Assessment for more information.",
"impact": "Tier 1"
},
{
"type": "other",
"endpoint": "https://github.com/AikidoSec/firewall-python#Vulnerability",
"description": null,
"impact": "Tier 1"
},
{
"type": "other",
"endpoint": "https://github.com/AikidoSec/firewall-node#Detection Bypass",
"description": "Tier 2 is for bypasses in the vulnerability detection of the firewall component, such as a bypass of our SQL injection detection.\n\nSee Severity Assessment for more information.",
"impact": "Tier 2"
},
{
"type": "other",
"endpoint": "https://github.com/AikidoSec/firewall-python#Detection Bypass",
"description": null,
"impact": "Tier 2"
},
{
"type": "other",
"endpoint": "https://github.com/AikidoSec/firewall-node#False Positive",
"description": "Tier 3 is for any false positives you encounter with our vulnerability detection. For example, cases where we falsely flag a SQL injection, while the user's input is safely encapsulated in the SQL query.\n\nSeverity assessments are slightly harder for these cases, see \"Severity Assessment\" for more information.",
"impact": "Tier 3"
},
{
"type": "other",
"endpoint": "https://github.com/AikidoSec/firewall-python#False Positive",
"description": null,
"impact": "Tier 3"
}
],
"out_of_scope": [
]
}
},
{
"id": "30f445f7-ca4c-4130-9434-49add5c6ac74",
"name": "Algemeen Dagblad",
"company_handle": "dpgm",
"handle": "algemeendagblad",
"url": "https://www.intigriti.com/programs/dpgm/algemeendagblad/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 0,
"currency": "EUR"
},
"max_bounty": {
"value": 2000,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "myaccount.ad.nl",
"description": null,
"impact": "Tier 2"
},
{
"type": "url",
"endpoint": "webwinkel.ad.nl",
"description": null,
"impact": "Tier 2"
},
{
"type": "url",
"endpoint": "www.ad.nl",
"description": "excluding\n* ad.nl/service\n* ad.nl/inloggen\n* ad.nl/login\n* ad.nl/registreren",
"impact": "Tier 2"
},
{
"type": "url",
"endpoint": "www.ad.nl/abonnementen",
"description": null,
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.ad.nl",
"description": "excluding abonnement.ad.nl",
"impact": "Tier 3"
}
],
"out_of_scope": [
]
}
},
{
"id": "badcb3b0-34be-4bd1-9186-7678aa5b5d17",
"name": "Allegro",
"company_handle": "allegro",
"handle": "allegrobugbounty",
"url": "https://www.intigriti.com/programs/allegro/allegrobugbounty/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 100,
"currency": "EUR"
},
"max_bounty": {
"value": 3500,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "wildcard",
"endpoint": "*.allegro.cz.allegrosandbox.pl",
"description": "Allegro sandbox environment for the Czech Republic.",
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.allegro.pl.allegrosandbox.pl",
"description": "The main sandbox environment that replicates Allegro production. For more information please visit [developer website](https://developer.allegro.pl/tutorials/basic-information-VL6YelvVKTn#test-environment).",
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.allegro.sk.allegrosandbox.pl",
"description": "Allegro sandbox environment for Slovakia.",
"impact": "Tier 2"
}
],
"out_of_scope": [
{
"type": "wildcard",
"endpoint": "*.allegro.sk",
"description": null,
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.allegro.cz",
"description": null,
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.allegro.pl",
"description": null,
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.allegrogroup.com",
"description": null,
"impact": "Out of scope"
},
{
"type": "other",
"endpoint": "Any production website owned by Allegro not listed in Domains",
"description": null,
"impact": "Out of scope"
}
]
}
},
{
"id": "933f224e-fbd3-4f08-a4fb-5038c2fa1a6e",
"name": "Axel Springer National Media & Tech",
"company_handle": "axelspringerse",
"handle": "nmt",
"url": "https://www.intigriti.com/programs/axelspringerse/nmt/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 15,
"currency": "EUR"
},
"max_bounty": {
"value": 2500,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "wildcard",
"endpoint": "*.bild.de",
"description": null,
"impact": "Tier 1"
},
{
"type": "wildcard",
"endpoint": "*.bild.tv",
"description": null,
"impact": "Tier 1"
},
{
"type": "wildcard",
"endpoint": "*.computerbild.de",
"description": null,
"impact": "Tier 1"
},
{
"type": "wildcard",
"endpoint": "*.welt.de",
"description": null,
"impact": "Tier 1"
},
{
"type": "url",
"endpoint": "https://dealer.prod.ps.axelspringer.de/api/v1/partners/{partnerId}/activation",
"description": null,
"impact": "Tier 1"
},
{
"type": "wildcard",
"endpoint": "https://dealer.prod.ps.axelspringer.de/purchases/004/bild/*",
"description": null,
"impact": "Tier 1"
},
{
"type": "wildcard",
"endpoint": "https://dealer.prod.ps.axelspringer.de/purchases/004/welt/*",
"description": "Here is documentation to help with testing: https://dealer-docs.prod.ps.axelspringer.de/",
"impact": "Tier 1"
},
{
"type": "url",
"endpoint": "https://secure.mypass.de/",
"description": null,
"impact": "Tier 1"
},
{
"type": "wildcard",
"endpoint": "*.autobild.de",
"description": null,
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.bz-berlin.de",
"description": null,
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.spring-media.de",
"description": null,
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.springtools.de",
"description": null,
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.ein-herz-fuer-kinder.de",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.fitbook.de",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.myhomebook.de",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.petbook-magazine.com/",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.petbook.de",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.stylebook.de",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.techbook.de",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.travelbook.de",
"description": null,
"impact": "Tier 3"
},
{
"type": "wildcard",
"endpoint": "*.wissen-sie-mehr.de",
"description": null,
"impact": "Tier 3"
}
],
"out_of_scope": [
{
"type": "url",
"endpoint": "technik.autobild.de",
"description": null,
"impact": "Out of scope"
},
{
"type": "url",
"endpoint": "technik.beta.autobild.de",
"description": null,
"impact": "Out of scope"
}
]
}
},
{
"id": "bdbdcb88-3242-4d0b-8926-38775bd262bf",
"name": "Axel Springer SE Vulnerability Disclosure Program",
"company_handle": "axelspringerse",
"handle": "axelspringersevulnerabilitydisclosureprogram",
"url": "https://www.intigriti.com/programs/axelspringerse/axelspringersevulnerabilitydisclosureprogram/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 0,
"currency": "EUR"
},
"max_bounty": {
"value": 0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "wildcard",
"endpoint": "*.axelspringer.com",
"description": null,
"impact": "No Bounty"
}
],
"out_of_scope": [
]
}
},
{
"id": "21d92048-d4d8-4781-8f37-3209a1b60fe1",
"name": "Azena",
"company_handle": "azena",
"handle": "azenaresponsibledisclosure",
"url": "https://www.intigriti.com/programs/azena/azenaresponsibledisclosure/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 0,
"currency": "EUR"
},
"max_bounty": {
"value": 0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "wildcard",
"endpoint": "*.azena.com",
"description": "All assets including azena.com and subdomains.\nNote that connect.azena.com and any subdomain of connect.azena.com is a remote connection service to devices owned and controlled by third parties. Therefore, these targets are out of scope and not covered by this program.",
"impact": "No Bounty"
}
],
"out_of_scope": [
]
}
},
{
"id": "baca9d50-2fd8-427f-bd56-e67f7f058573",
"name": "BMC",
"company_handle": "randstad",
"handle": "bmc",
"url": "https://www.intigriti.com/programs/randstad/bmc/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 0,
"currency": "EUR"
},
"max_bounty": {
"value": 0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "wildcard",
"endpoint": "*.bmc.nl",
"description": null,
"impact": "Tier 2"
}
],
"out_of_scope": [
]
}
},
{
"id": "61e0e37c-19cc-4abe-af51-108a78bee995",
"name": "BMW Group",
"company_handle": "bmw",
"handle": "bmwgroup",
"url": "https://www.intigriti.com/programs/bmw/bmwgroup/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 150,
"currency": "EUR"
},
"max_bounty": {
"value": 6000,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "www.bmw-motorrad.de",
"description": null,
"impact": "Tier 1"
},
{
"type": "url",
"endpoint": "www.bmw.de",
"description": null,
"impact": "Tier 1"
},
{
"type": "url",
"endpoint": "www.mini.de",
"description": null,
"impact": "Tier 1"
},
{
"type": "url",
"endpoint": "configure.bmw.de",
"description": null,
"impact": "Tier 2"
},
{
"type": "url",
"endpoint": "configure.mini.de",
"description": null,
"impact": "Tier 2"
},
{
"type": "url",
"endpoint": "konfigurator.bmw-motorrad.de",
"description": null,
"impact": "Tier 2"
},
{
"type": "other",
"endpoint": "Other BMW Domains",
"description": "Please select this asset to report vulnerabilities affecting BMW assets but not matching any of the assets stated above.\n\n**Important:** Note our policy regarding \"No Bounty Domains\" and a potentially deviating application of the **safe harbor clause**.\nWe may award a small bonus for these assets, but only valid high, critical and exceptional severity findings - this is however, at the discretion of the BMW Group team.",
"impact": "No Bounty"
}
],
"out_of_scope": [
{
"type": "other",
"endpoint": "Automotive Security",
"description": "Please submit valid findings regarding Automotive assets in our public [BMW Group - Automotive program](https://app.intigriti.com/programs/bmw/bmwgroup-automotive).",
"impact": "Out of scope"
},
{
"type": "other",
"endpoint": "Domains from independent BMW Dealers, Resellers or Fanclubs",
"description": "These domains belong to legally independent entities. We can only inform these entities. However, we have no influence on the mitigation process of the vulnerabilities in these assets.",
"impact": "Out of scope"
}
]
}
},
{
"id": "7ecdd3d1-a794-4ceb-9518-f9a016dc26a6",
"name": "BMW Group Automotive",
"company_handle": "bmw",
"handle": "bmwgroup-automotive",
"url": "https://www.intigriti.com/programs/bmw/bmwgroup-automotive/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 100,
"currency": "EUR"
},
"max_bounty": {
"value": 15000,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "android",
"endpoint": "de.bmw.connected.mobile20.row",
"description": null,
"impact": "Tier 2"
},
{
"type": "ios",
"endpoint": "1519034860",
"description": null,
"impact": "Tier 2"
},
{
"type": "device",
"endpoint": "Functions dealing with vehicle access and immobilizer",
"description": null,
"impact": "Tier 1"
},
{
"type": "device",
"endpoint": "Remaining functions",
"description": null,
"impact": "Tier 2"
}
],
"out_of_scope": [
]
}
},
{
"id": "5f29e1eb-85e8-4d99-9b52-b809f06de633",
"name": "Bpost",
"company_handle": "bpost",
"handle": "dummy",
"url": "https://www.intigriti.com/programs/bpost/dummy/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 0,
"currency": "EUR"
},
"max_bounty": {
"value": 1500,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "wildcard",
"endpoint": "*.stbpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "imove.bpost.cloud",
"description": "Coorporate application :\nMake your reservation to save a spot at the office",
"impact": "Tier 2"
},
{
"type": "wildcard",
"endpoint": "*.acbpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.bpost.cloud",
"description": null,
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.landmarkglobal-group.com",
"description": null,
"impact": "No Bounty"
},
{
"type": "android",
"endpoint": "be.bpost.mobilecard",
"description": "With Mobile Postcard you can send real personalized postcards based on photos and videos on your smartphone or tablet. We print them for you and ship them anywhere in the world.",
"impact": "No Bounty"
},
{
"type": "android",
"endpoint": "be.bpost.mybpost",
"description": "Track, receive, send. With the My bpost app you can arrange all your parcels in 1 app.",
"impact": "No Bounty"
},
{
"type": "device",
"endpoint": "bpost Parcel Lockers",
"description": "More info about these lockers on https://www.bpost.be/en/parcel-locker\n\nWhe have parcel lockers with screen and screenless.\nYou need the mybpost app to open a screenless locker.",
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "career.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "dmm.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "eshop.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "maxiresponse.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "my.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "procuration.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "quickstamp-gb.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "register.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "validationlist.bpost.be",
"description": null,
"impact": "No Bounty"
},
{
"type": "url",
"endpoint": "www.bpost.be",
"description": null,
"impact": "No Bounty"
}
],
"out_of_scope": [
]
}
},
{
"id": "4afd6f0f-40a3-4f6d-a332-56b5970d12a0",
"name": "Bühler Group VDP",
"company_handle": "buhlergroup",
"handle": "buhlergroupvdp",
"url": "https://www.intigriti.com/programs/buhlergroup/buhlergroupvdp/detail",
"status": "open",
"confidentiality_level": "public",
"tacRequired": false,
"twoFactorRequired": false,
"min_bounty": {
"value": 0,
"currency": "EUR"
},
"max_bounty": {
"value": 0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "wildcard",
"endpoint": "*.buhler-datascience.ch",
"description": "- containing subdomains/assets specific to our data science team\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.buhlercloud.com",
"description": "- containing subdomains/assets related to a customer facing web application\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.buhlergroup.ai",
"description": "- containing subdomains/assets related to customer facing AI services\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.buhlergroup.cn",
"description": "- containing subdomains/assets located in our Chinese locations. Mainly IT systems related to internal purposes.\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.buhlergroup.com",
"description": "- Our main domain containing hundreds of subdomains/assets. Can be customer facing websites and services but also assets for internal purposes\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.buhlergroup.io",
"description": "- containing subdomains/assets related to customer facing digital services\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
},
{
"type": "wildcard",
"endpoint": "*.buhlertest.ch",
"description": "- containing subdomains/assets of test systems\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
},
{
"type": "iprange",
"endpoint": "194.9.120.0 - 194.9.123.255",
"description": "- This is our public IP range used for systems located in the DMZ. (Sub)domains listed above may point to IPs in this range but there are also other types of assets such as network devices.\n- For assets requiring authentication, please refer to the FAQ section",
"impact": "No Bounty"
}
],
"out_of_scope": [
{
"type": "wildcard",
"endpoint": "*.info.buhlergroup.com",
"description": null,
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.virtualworld.buhlergroup.com",
"description": null,
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.virtualworld-portal.buhlergroup.com",
"description": null,
"impact": "Out of scope"
},
{
"type": "url",
"endpoint": "imap.buhlergroup.cn",
"description": null,
"impact": "Out of scope"
},
{
"type": "url",
"endpoint": "pop.buhlergroup.cn",
"description": null,
"impact": "Out of scope"
},
{
"type": "url",
"endpoint": "smtp.buhlergroup.cn",
"description": null,
"impact": "Out of scope"
},
{
"type": "url",
"endpoint": "channel.buhlergroup.com",
"description": null,
"impact": "Out of scope"
},
{
"type": "url",
"endpoint": "bestbuy.buhlergroup.com",
"description": null,
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.webinars.buhlergroup.com",
"description": null,
"impact": "Out of scope"
},
{
"type": "wildcard",
"endpoint": "*.learnhub.buhlergroup.com",