-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathintigriti_data.json
5362 lines (5276 loc) · 163 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": "c9ee4224-8db2-4549-aa71-252e6c5025a8",
"name": "Access router",
"company_handle": "kuleuven",
"handle": "accessrouter",
"url": "https://www.intigriti.com/programs/kuleuven/accessrouter/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 2500.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "iprange",
"endpoint": "193.190.253.188",
"description": null
},
{
"type": "iprange",
"endpoint": "2a02:2c40:300:5::2",
"description": null
},
{
"type": "url",
"endpoint": "lrswitch-access-2.kulnet.kuleuven.be",
"description": null
}
],
"out_of_scope": [
]
}
},
{
"id": "664b7290-6bb3-42cf-b677-a9b3724c5485",
"name": "Aleacsys Online BV",
"company_handle": "wimigames",
"handle": "wimigames",
"url": "https://www.intigriti.com/programs/wimigames/wimigames/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 50.0,
"currency": "EUR"
},
"max_bounty": {
"value": 10000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "https://en-gb.napoleoncasino.be/wimi/game/play/slug/napoleon-spinner-max",
"description": null
},
{
"type": "url",
"endpoint": "https://api.the-strip.eu",
"description": null
},
{
"type": "url",
"endpoint": "https://cdn.the-strip.eu",
"description": null
},
{
"type": "url",
"endpoint": "https://en-gb.napoleoncasino.be/wimi/game/play/slug/napoleon-spinner",
"description": null
},
{
"type": "url",
"endpoint": "https://en-gb.napoleoncasino.be/wimi/game/play/slug/napoleon-spinner-deluxe",
"description": null
},
{
"type": "url",
"endpoint": "https://en-gb.napoleondice.be/wimi/game/play/slug/dice-spinner",
"description": null
},
{
"type": "url",
"endpoint": "https://en-gb.napoleondice.be/wimi/game/play/slug/multi-jackpot-cards",
"description": null
},
{
"type": "url",
"endpoint": "https://en-gb.napoleondice.be/wimi/game/play/slug/pick-a-tiki",
"description": null
},
{
"type": "url",
"endpoint": "wss://socketcluster.the-strip.eu",
"description": null
}
],
"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",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 2000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "myaccount.ad.nl",
"description": null
},
{
"type": "url",
"endpoint": "webwinkel.ad.nl",
"description": null
},
{
"type": "url",
"endpoint": "www.ad.nl",
"description": "excluding\n* ad.nl/service\n* ad.nl/inloggen\n* ad.nl/login\n* ad.nl/registreren"
},
{
"type": "url",
"endpoint": "www.ad.nl/abonnementen",
"description": null
},
{
"type": "url",
"endpoint": "*.ad.nl",
"description": "excluding abonnement.ad.nl"
}
],
"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",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 0.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "*.azena.com",
"description": null
}
],
"out_of_scope": [
]
}
},
{
"id": "57b0d3d9-fe01-495c-8bc0-b99d337ea879",
"name": "BCC",
"company_handle": "bcc",
"handle": "bcc",
"url": "https://www.intigriti.com/programs/bcc/bcc/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 10.0,
"currency": "EUR"
},
"max_bounty": {
"value": 3500.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "www.bcc.nl/mijn",
"description": null
},
{
"type": "url",
"endpoint": "checkout2.bcc.nl",
"description": null
},
{
"type": "url",
"endpoint": "www.bcc.nl",
"description": null
},
{
"type": "url",
"endpoint": "zakelijk.bcc.nl/inloggen",
"description": "This is the login page for our business customers\nThe goal here is to check if you can get in on this login page without a login provided\n\n**Shared codebase disclaimer:**\nThe website behind it is the same codebase as www.bcc.nl and any reports here which are also found on www.bcc.nl will be treated as a duplicate and vice versa."
},
{
"type": "url",
"endpoint": "*.bcc.nl",
"description": "* fotoservice.bcc.nl is out of scope\n* cadeaukaart.bcc.nl is out of scope"
}
],
"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",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 0.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "*.bmc.nl",
"description": null
}
],
"out_of_scope": [
]
}
},
{
"id": "8cae2bed-8a61-4d4b-9f0e-fa7bf917aa25",
"name": "BloomUp",
"company_handle": "bloomup",
"handle": "bloomup",
"url": "https://www.intigriti.com/programs/bloomup/bloomup/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 0.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "analytics.bloomup.org",
"description": "Priority: 4️⃣ - Language: 🇬🇧\n\n----------------------------------------------------------\n\nOur self-hosted analytics server that gathers analytics about the app usage. For this we use an instance of Matomo.\nHere we expect a focus on the security hardening of the server set-up.\n\nNo submissions are allowed that point at existing Matomo bugs: https://github.com/matomo-org/matomo/issues"
},
{
"type": "url",
"endpoint": "chat.bloomup.org",
"description": "Priority: 3️⃣ - Language: 🇬🇧\n\n----------------------------------------------------------\n\nOur internal self-hosted chat and community. This is used for employee conversations and also as a communication tool towards and between our professionals. MatterMost is used. Here we expect a focus on the security hardening of the server set-up.\n\nNo submissions are allowed that point at exisiting MatterMost bugs: https://mattermost.atlassian.net/browse/TMFJ-11?jql="
},
{
"type": "url",
"endpoint": "https://app.acceptance.bloomup.org",
"description": "Priority: 1️⃣ - Language: 🇳🇱\n\n----------------------------------------------------------\n\nStaging version of our main app. \nThis app has 2 sides: the client and that of the mental health professionals.\n\nA client can go through an onboarding flow which will ask the a few questions that helps us identify the best professional for them.\nAt the end of the questions they will get a proposal of 3 mental health professionals. They can either choose to book a consult in the next 7 days or (if the psy is online), immediately go into a consult. At the end of this flow, an account is created that they can use later on to track follow-up consults.\n\nThe professional uses this app to plan and follow-up their consults with BloomUp clients.\n\nThe app is available in Dutch only and only for Belgian professionals.\nThis is the most important part to test.\nThe back end server and API lives on https://api.acceptance.bloomup.org (which is also in scope)\n\n**Please don’t forget to use your @intigriti.me address.**\n"
},
{
"type": "url",
"endpoint": "meet.bloomup.org",
"description": "Priority: 2️⃣ - Language: 🇬🇧\n\n----------------------------------------------------------\n\nThis server runs our Jitsi instance we use so clients can go into an online video consultation with our professionals.\nThe best way to test is by using demo.bloomup.org, register as user and professional and set up a consult with yourself.\nHere we expect a focus on the security hardening of the server set-up.\n\nNo submissions are allowed that point at an existing Jitsi bug: https://desktop.jitsi.org/Development/BugsAndIssues.html"
}
],
"out_of_scope": [
]
}
},
{
"id": "efd8bd86-a986-4b4a-9eda-c9a6a1a6b540",
"name": "CM.com",
"company_handle": "cmcom",
"handle": "cmcom",
"url": "https://www.intigriti.com/programs/cmcom/cmcom/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 25.0,
"currency": "EUR"
},
"max_bounty": {
"value": 2500.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "*.ticketing.cm.com",
"description": "Login to your account and go to https://www.cm.com/en-gb/app/ticketing/\nFrom here you can create tickets and much more!\nMake sure to take a look at the user-side ticket store as well (https://store.ticketing.cm.com/..)"
},
{
"type": "url",
"endpoint": "api.cm.com",
"description": null
},
{
"type": "url",
"endpoint": "api.cmtelecom.com",
"description": "Some of the applications that are in our scope use our old api. \nIf you find a bug on this api and it is from a product that is in scope, it is valid."
},
{
"type": "url",
"endpoint": "login.cm.com",
"description": null
},
{
"type": "url",
"endpoint": "www.cm.com/[locale]/app/*",
"description": null
},
{
"type": "url",
"endpoint": "www.cm.com/[locale]/register",
"description": null
},
{
"type": "url",
"endpoint": "www.cm.com",
"description": null
},
{
"type": "url",
"endpoint": "*.cm.com",
"description": null
}
],
"out_of_scope": [
]
}
},
{
"id": "0083a5bf-e54f-4f79-a972-12a795272c8b",
"name": "Canada Post + Purolator - Responsible Disclosure Program",
"company_handle": "innovapost",
"handle": "innovapost",
"url": "https://www.intigriti.com/programs/innovapost/innovapost/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 0.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "*.canadapost-postescanada.ca",
"description": "Any subdomain of canadapost-postescanada.ca (eg. www.canadapost-postescanada.ca, sso-osu.canadapost-postescanada.ca and store.canadapost-postescanada.ca)"
},
{
"type": "url",
"endpoint": "*.postescanada-canadapost.ca",
"description": "Any subdomain of postescanada-canadapost.ca (eg. www.postescanada-canadapost.ca)"
},
{
"type": "url",
"endpoint": "*.purolator.com",
"description": "Any subdomain of purolator.com (eg. www.purolator.com, eshiponline.purolator.com and billingcentre.purolator.com)"
},
{
"type": "ios",
"endpoint": "394391577",
"description": "Canada Post's mobile application for iOS"
},
{
"type": "ios",
"endpoint": "438701193",
"description": "Purolator's mobile application for iOS"
},
{
"type": "android",
"endpoint": "com.canadapost.android",
"description": "Canada Post's mobile application for Android"
},
{
"type": "android",
"endpoint": "com.purolator.mobileapp",
"description": "Purolator's mobile application for Android"
}
],
"out_of_scope": [
]
}
},
{
"id": "13cfc6fe-92b2-4a56-8577-855ff0bc2f1c",
"name": "Cyber Security Coalition",
"company_handle": "cybersecuritycoalition",
"handle": "cybersecuritycoalition",
"url": "https://www.intigriti.com/programs/cybersecuritycoalition/cybersecuritycoalition/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 0.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "www.cybersecuritycoalition.be",
"description": "Public website"
}
],
"out_of_scope": [
]
}
},
{
"id": "806f54d7-a85d-40bd-82cc-f09c1a500f28",
"name": "DPG Media",
"company_handle": "dpgm",
"handle": "dpgmedia",
"url": "https://www.intigriti.com/programs/dpgm/dpgmedia/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 50.0,
"currency": "EUR"
},
"max_bounty": {
"value": 500.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "*.dpgmedia.be",
"description": "excluding\n* login.dpgmedia.be"
},
{
"type": "url",
"endpoint": "*.dpgmedia.nl",
"description": "excluding\n* login.dpgmedia.nl"
},
{
"type": "other",
"endpoint": "Any related DPG media domain",
"description": "\n_Only applicable to domains that are **100% owned by DPG**. \nFor example, projects that are partly owned by DPG and partly owned by RTL (because of a joint venture between the two) are **not** in scope._\n\nWhois: \n\nDe Persgroep Publishing nv\nBrusselstesteenweg 347\n1730 Asse\nBelgië\n\nDPG Media Services NV \nMediaplein 1 \n2018 Antwerpen \nBelgium"
}
],
"out_of_scope": [
]
}
},
{
"id": "77622d82-babb-43d1-a8fd-bdccba2eb2ca",
"name": "Darwinex",
"company_handle": "darwinex",
"handle": "darwinex",
"url": "https://www.intigriti.com/programs/darwinex/darwinex/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 3000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "blog.darwinex.com",
"description": null
},
{
"type": "url",
"endpoint": "www.darwinex.com",
"description": "Main application\n\nPlease self register for an real account and follow the steps described in FAQ to get privileges."
},
{
"type": "url",
"endpoint": "api.darwinex.com",
"description": "Access obtained from your main application website. See FAQ."
},
{
"type": "url",
"endpoint": "app.darwinex.com",
"description": "This is the mobile apps (iOS/Android) endpoint. Looking for authentication issues as no confidential information will be found in here."
},
{
"type": "android",
"endpoint": "com.darwinex.investors",
"description": "Android mobile app for investors."
},
{
"type": "ios",
"endpoint": "https://apps.apple.com/us/app/darwinex-for-investors/id1448246447",
"description": "IOS mobile app for investors."
},
{
"type": "url",
"endpoint": "*.machina.markets",
"description": null
},
{
"type": "url",
"endpoint": "tickdata.darwinex.com",
"description": null
}
],
"out_of_scope": [
]
}
},
{
"id": "618bdc2f-9207-47cc-8c5c-71b734900359",
"name": "De Lijn",
"company_handle": "delijn",
"handle": "delijn",
"url": "https://www.intigriti.com/programs/delijn/delijn/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 0.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "ios",
"endpoint": "456910787",
"description": null
},
{
"type": "url",
"endpoint": "api-a.delijn.be",
"description": null
},
{
"type": "url",
"endpoint": "api.delijn.be",
"description": null
},
{
"type": "android",
"endpoint": "com.themobilecompany.delijn",
"description": null
},
{
"type": "url",
"endpoint": "accept.delijn.be",
"description": null
},
{
"type": "url",
"endpoint": "www.delijn.be",
"description": null
}
],
"out_of_scope": [
]
}
},
{
"id": "8bf1f259-cac9-4114-9b84-3b950897b1ec",
"name": "De Morgen",
"company_handle": "dpgm",
"handle": "demorgen",
"url": "https://www.intigriti.com/programs/dpgm/demorgen/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 2000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "myaccount.demorgen.be",
"description": null
},
{
"type": "url",
"endpoint": "shop.demorgen.be",
"description": null
},
{
"type": "url",
"endpoint": "www.demorgen.be",
"description": "excluding\n* demorgen.be/service\n* demorgen.be/inloggen\n* demorgen.be/login\n* demorgen.be/registreren"
},
{
"type": "url",
"endpoint": "www.demorgen.be/abonnementen",
"description": null
},
{
"type": "url",
"endpoint": "*.demorgen.be",
"description": "excluding abonnement.demorgen.be"
}
],
"out_of_scope": [
]
}
},
{
"id": "0d6d1230-beb5-489c-b306-cf9c2e06730f",
"name": "De Volkskrant",
"company_handle": "dpgm",
"handle": "devolkskrant",
"url": "https://www.intigriti.com/programs/dpgm/devolkskrant/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 2000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "myaccount.volkskrant.nl",
"description": null
},
{
"type": "url",
"endpoint": "shop.volkskrant.nl",
"description": null
},
{
"type": "url",
"endpoint": "webwinkel.volkskrant.nl",
"description": null
},
{
"type": "url",
"endpoint": "www.volkskrant.nl",
"description": "excluding\n* volkskrant.nl/service\n* volkskrant.nl/inloggen\n* volkskrant.nl/login\n* volkskrant.nl/registreren"
},
{
"type": "url",
"endpoint": "www.volkskrant.nl/abonnementen",
"description": null
},
{
"type": "url",
"endpoint": "*.volkskrant.nl",
"description": "excluding abonnement.volkskrant.nl"
}
],
"out_of_scope": [
]
}
},
{
"id": "d14eedce-607d-4233-995d-30dbc7de8f23",
"name": "Delen Private Bank",
"company_handle": "delenprivatebank",
"handle": "privatebankdelen",
"url": "https://www.intigriti.com/programs/delenprivatebank/privatebankdelen/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 100.0,
"currency": "EUR"
},
"max_bounty": {
"value": 15000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "www.delen.bank",
"description": null
},
{
"type": "url",
"endpoint": "api.digital.delen.be ",
"description": null
},
{
"type": "url",
"endpoint": "api.digital.delen.lu ",
"description": null
},
{
"type": "url",
"endpoint": "app.delen.be ",
"description": null
},
{
"type": "url",
"endpoint": "app.delen.ch ",
"description": null
},
{
"type": "url",
"endpoint": "app.delen.lu ",
"description": null
},
{
"type": "url",
"endpoint": "auth.digital.delen.be ",
"description": null
},
{
"type": "url",
"endpoint": "auth.digital.delen.lu ",
"description": null
},
{
"type": "android",
"endpoint": "be.delen.digital",
"description": null
},
{
"type": "ios",
"endpoint": "delen/id1064839588",
"description": null
},
{
"type": "url",
"endpoint": "login.delen.be ",
"description": null
},
{
"type": "url",
"endpoint": "login.delen.ch ",
"description": null
},
{
"type": "url",
"endpoint": "login.delen.lu ",
"description": null
},
{
"type": "url",
"endpoint": "login.oyens.com",
"description": null
},
{
"type": "url",
"endpoint": "status.delen.be ",
"description": null
},
{
"type": "url",
"endpoint": "sts.delen.be ",
"description": null
},
{
"type": "url",
"endpoint": "www.cadelam.be ",
"description": "🇫🇷🇳🇱"
},
{
"type": "url",
"endpoint": "www.cadelux.lu/en ",
"description": "🇬🇧🇫🇷🇳🇱"
},
{
"type": "url",
"endpoint": "www.delen.be/en ",
"description": "🇬🇧🇫🇷🇳🇱"
}
],
"out_of_scope": [
]
}
},
{
"id": "d5c4e966-a80a-44f5-91c9-2bb9487b8762",
"name": "EURid",
"company_handle": "eurid",
"handle": "eurid",
"url": "https://www.intigriti.com/programs/eurid/eurid/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 6000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "my.eurid.eu",
"description": "My .eu is the registrant or domain holder portal and requires a registered domain name in one of our supported scripts to access."
},
{
"type": "url",
"endpoint": "*.das.eu",
"description": null
},
{
"type": "url",
"endpoint": "*.dns.eu",
"description": null
},
{
"type": "url",
"endpoint": "*.eurid.eu",
"description": null
},
{
"type": "url",
"endpoint": "*.nic.eu",
"description": null
},
{
"type": "url",
"endpoint": "*.registry.eu",
"description": null
},
{
"type": "url",
"endpoint": "*.whois.eu",
"description": null
},
{
"type": "url",
"endpoint": "*.yadifa.eu",
"description": null
},
{
"type": "other",
"endpoint": "YADIFA authoritative name server",
"description": "YADIFA is EURid's authoritative name server software which can be downloaded from the yadifa.eu website."
}
],
"out_of_scope": [
]
}
},
{
"id": "0bcc2455-bd63-490b-b725-890a93a1c678",
"name": "Fing",
"company_handle": "lansweeper",
"handle": "fing",
"url": "https://www.intigriti.com/programs/lansweeper/fing/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 50.0,
"currency": "EUR"
},
"max_bounty": {
"value": 3000.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "service.fing.com",
"description": "Our public cloud API for Device Recognition which can be requested on our website: https://app.fing.com/internet/business/devrecog/trial."
},
{
"type": "url",
"endpoint": "app.fing.com",
"description": "The Fing web application that gives you an overview of all monitored networks"
},
{
"type": "url",
"endpoint": "Fing desktop",
"description": "The free Fing App to identify connected devices, troubleshoot network and device issues, detect network intruders and run Wi-Fi and internet speed tests anywhere. It can be downloaded here: http://app.fing.com/app"
},
{
"type": "url",
"endpoint": "www.fing.com ",
"description": "Always use \"intigriti.me\" address for any web form"
}
],
"out_of_scope": [
]
}
},
{
"id": "75e7d54b-c6e8-453b-bd0a-f8f6893bd3d8",
"name": "Floriday",
"company_handle": "royalfloraholland",
"handle": "floridayresponsibledisclosure",
"url": "https://www.intigriti.com/programs/royalfloraholland/floridayresponsibledisclosure/detail",
"status": "open",
"confidentiality_level": "public",
"min_bounty": {
"value": 0.0,
"currency": "EUR"
},
"max_bounty": {
"value": 0.0,
"currency": "EUR"
},
"targets": {
"in_scope": [
{
"type": "url",
"endpoint": "*.floriday.com",
"description": null
},
{
"type": "url",
"endpoint": "*.floriday.io",
"description": null
},
{
"type": "url",
"endpoint": "*.floriday.nl",
"description": null
}
],
"out_of_scope": [
]
}
},
{
"id": "acb632b9-2605-47ec-9195-3ffb2f0fcae6",
"name": "GULP",
"company_handle": "randstad",
"handle": "gulp",
"url": "https://www.intigriti.com/programs/randstad/gulp/detail",
"status": "open",
"confidentiality_level": "public",