-
Notifications
You must be signed in to change notification settings - Fork 0
/
reportsDB.json
5383 lines (5383 loc) · 269 KB
/
reportsDB.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
[
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzNTMxMzE=",
"_id": "2353131",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjQxNjU5Mw==",
"name": "william",
"username": "chor4o",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Cross-site Scripting (XSS) - Reflected",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzUzMTMx",
"databaseId": "2353131",
"title": "Xss Parameter: /<s>/[*]/<s>.css ████████",
"substate": "resolved",
"url": "https://hackerone.com/reports/2353131",
"disclosed_at": "2024-03-22T17:44:22.194Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI1Ng==",
"hacktivity_summary": "The request included a cross-site scripting (XSS) vulnerability in the parameter /\\u003cs\\u003e/[*]/\\u003cs\\u003e.css. The vulnerability was triggered by including malicious code in the request, which could have been executed when the request was processed.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 30,
"team": {
"handle": "deptofdefense",
"name": "U.S. Dept Of Defense",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/016/064/46cd0286b1fa224aaa2cb9dfaaca9fa22b5b80b2_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/deptofdefense",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTYwNjQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:44:22.299Z",
"submitted_at": "2024-02-02T20:13:20.771Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzNTQxMzY=",
"_id": "2354136",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjI5OTU0MA==",
"name": "Dishant ",
"username": "dishant_singh",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Improper Authentication - Generic",
"severity_rating": "Critical",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzU0MTM2",
"databaseId": "2354136",
"title": "Attacker can Add itself as admin user and can also change privileges of Existing Users [█████████]",
"substate": "resolved",
"url": "https://hackerone.com/reports/2354136",
"disclosed_at": "2024-03-22T17:43:14.390Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI1NQ==",
"hacktivity_summary": "The website had a directory that lacked authentication, allowing an attacker to add a new admin user and change the privileges of existing users without any authentication.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 38,
"team": {
"handle": "deptofdefense",
"name": "U.S. Dept Of Defense",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/016/064/46cd0286b1fa224aaa2cb9dfaaca9fa22b5b80b2_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/deptofdefense",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTYwNjQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:43:14.474Z",
"submitted_at": "2024-02-04T10:04:12.901Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzNTYxMDQ=",
"_id": "2356104",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjQxNjU5Mw==",
"name": "william",
"username": "chor4o",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Cross-site Scripting (XSS) - Reflected",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzU2MTA0",
"databaseId": "2356104",
"title": "Parâmetro XSS: Nome de usuário - █████████",
"substate": "resolved",
"url": "https://hackerone.com/reports/2356104",
"disclosed_at": "2024-03-22T17:40:22.789Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI1NA==",
"hacktivity_summary": "The report describes a cross-site scripting (XSS) vulnerability in the username parameter of an application. The vulnerability was demonstrated using Burp Suite, where the attacker was able to inject malicious JavaScript code into the username field. No further details were provided about the affected product or the potential impact of the vulnerability.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 15,
"team": {
"handle": "deptofdefense",
"name": "U.S. Dept Of Defense",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/016/064/46cd0286b1fa224aaa2cb9dfaaca9fa22b5b80b2_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/deptofdefense",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTYwNjQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:40:22.908Z",
"submitted_at": "2024-02-05T19:57:47.786Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIyOTc1NjE=",
"_id": "2297561",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjc2NjEwNA==",
"name": "Gee Toca",
"username": "geej",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Resource Injection",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMjk3NTYx",
"databaseId": "2297561",
"title": "Resource Injection - [████████]",
"substate": "resolved",
"url": "https://hackerone.com/reports/2297561",
"disclosed_at": "2024-03-22T17:38:24.212Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI1Mw==",
"hacktivity_summary": "The Swagger UI prior to version 4.1.3 was vulnerable to spoofing attacks. By crafting a URL with a malicious payload, an attacker could have displayed remote OpenAPI definitions on the affected host.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 16,
"team": {
"handle": "deptofdefense",
"name": "U.S. Dept Of Defense",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/016/064/46cd0286b1fa224aaa2cb9dfaaca9fa22b5b80b2_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/deptofdefense",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTYwNjQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:38:24.310Z",
"submitted_at": "2023-12-27T01:42:48.740Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzMTI2MDk=",
"_id": "2312609",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMzAxODY4MQ==",
"name": "eleven",
"username": "elevenoo1",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Information Disclosure",
"severity_rating": "Critical",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzEyNjA5",
"databaseId": "2312609",
"title": "Full Access to sonarQube and Docker",
"substate": "resolved",
"url": "https://hackerone.com/reports/2312609",
"disclosed_at": "2024-03-22T17:35:47.152Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI1Mg==",
"hacktivity_summary": "The vulnerability involved the exposure of sensitive credentials and IP addresses in a JavaScript file. The researcher gained access to the organization's Hub Docker account and Sonar projects, allowing them to identify and assess the issue. The vulnerability was caused by a JavaScript file within the application that contained hard-coded sensitive credentials, such as usernames and passwords, as well as IP addresses associated with the infrastructure.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 15,
"team": {
"handle": "deptofdefense",
"name": "U.S. Dept Of Defense",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/016/064/46cd0286b1fa224aaa2cb9dfaaca9fa22b5b80b2_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/deptofdefense",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTYwNjQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:35:47.272Z",
"submitted_at": "2024-01-11T20:35:34.304Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzE3OTQ3NTc=",
"_id": "1794757",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMzc4MDk3",
"name": "⋆͓̽𝗔ɳօɳყ𝗠iss✨",
"username": "anonymlss",
"__typename": "User"
},
"cve_ids": [
"CVE-2017-0255"
],
"cwe": "Cross-site Scripting (XSS) - Reflected",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8xNzk0NzU3",
"databaseId": "1794757",
"title": "Reflective Cross Site Scripting (XSS) on ███████/Pages",
"substate": "resolved",
"url": "https://hackerone.com/reports/1794757",
"disclosed_at": "2024-03-22T17:32:41.589Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI1MQ==",
"hacktivity_summary": "Summary:\n\nA reflection cross-site scripting (XSS) vulnerability was discovered in Microsoft SharePoint Server. The vulnerability was caused by improper sanitization of a web request to an affected SharePoint server. The vulnerability could have been exploited by an authenticated attacker to execute arbitrary JavaScript in the victim's browser.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 7,
"team": {
"handle": "deptofdefense",
"name": "U.S. Dept Of Defense",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/016/064/46cd0286b1fa224aaa2cb9dfaaca9fa22b5b80b2_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/deptofdefense",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTYwNjQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:32:41.730Z",
"submitted_at": "2022-12-06T10:49:50.780Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzNzA1Nzg=",
"_id": "2370578",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjI5OTU0MA==",
"name": "Dishant ",
"username": "dishant_singh",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Insecure Storage of Sensitive Information",
"severity_rating": "High",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzcwNTc4",
"databaseId": "2370578",
"title": "DBMS information getting exposed publicly on -- [ ██████████ ]",
"substate": "resolved",
"url": "https://hackerone.com/reports/2370578",
"disclosed_at": "2024-03-22T17:31:51.980Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI1MA==",
"hacktivity_summary": "A public file was found that exposed sensitive data from the website's database, including hashed user information and other configuration details. The file contained SQL statements that could be used to access the database, potentially revealing confidential data.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 10,
"team": {
"handle": "deptofdefense",
"name": "U.S. Dept Of Defense",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/016/064/46cd0286b1fa224aaa2cb9dfaaca9fa22b5b80b2_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/deptofdefense",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTYwNjQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:31:52.080Z",
"submitted_at": "2024-02-11T18:03:43.282Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzMzc0Mjc=",
"_id": "2337427",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvNjU2MDAz",
"name": "kolokokop",
"username": "kolokokop",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Improper Access Control - Generic",
"severity_rating": "High",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzM3NDI3",
"databaseId": "2337427",
"title": "Authentication Bypass with usage of PreSignedURL",
"substate": "resolved",
"url": "https://hackerone.com/reports/2337427",
"disclosed_at": "2024-03-22T17:06:13.638Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI0OQ==",
"hacktivity_summary": "The ownCloud Infinite Scale (oCIS) was identified to be vulnerable to an authentication bypass vulnerability due to an issue with the default-enabled PreSignedURL feature. The vulnerability allowed access to any file without authentication, given the prior knowledge of the username and filename. The issue was caused by the incorrect expiry date check in the `OC-Date` and `OC-Expires` variables, where a null error was returned upon expired dates, resulting in successful authentication of requests without checking the user's signing signature/key.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 23,
"team": {
"handle": "owncloud",
"name": "ownCloud",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/003/059/d31dc64427bbbf2e428a0b0b97bce59b98d2ba0d_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/owncloud",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzMwNTk=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": 2000,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-22T17:06:14.479Z",
"submitted_at": "2024-01-27T19:50:47.574Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzMzE0NzM=",
"_id": "2331473",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMTA0MDY1MA==",
"name": "",
"username": "pentestor",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Open Redirect",
"severity_rating": "Low",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzMxNDcz",
"databaseId": "2331473",
"title": "Open Redirect via Non-Latin Subdomain in vcc-*.8x8.com/AGUI/█.php",
"substate": "resolved",
"url": "https://hackerone.com/reports/2331473",
"disclosed_at": "2024-03-20T15:38:46.783Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI0OA==",
"hacktivity_summary": "The report described an Open Redirect vulnerability in the vcc-*.8x8.com/AGUI/█.php endpoint, where a filter that prevented the use of [1-9] and [a-z] characters in the `subdomain` parameter could be bypassed by utilizing a non-Latin domain. The vulnerability was demonstrated by redirecting to the `नमस्ते.भारत` domain.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 36,
"team": {
"handle": "8x8-bounty",
"name": "8x8 Bounty",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/16aYGnF7ASJBgKtGCuibiuVT/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/8x8-bounty",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzQ5NzMy",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": 100,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-20T15:38:47.128Z",
"submitted_at": "2024-01-23T13:55:08.649Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIwMzMwMDU=",
"_id": "2033005",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjQ0OTQ5OQ==",
"name": "Fares W Muhammed",
"username": "bugsv2",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Business Logic Errors",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMDMzMDA1",
"databaseId": "2033005",
"title": "Bypassing the block of Security Domain Restriction and normally invite blocked domains with special characters “İ”",
"substate": "resolved",
"url": "https://hackerone.com/reports/2033005",
"disclosed_at": "2024-03-20T13:13:35.928Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI0Ng==",
"hacktivity_summary": "The vulnerability allows users to bypass the security domain restriction and invite blocked domains by using special characters such as \"İ\" instead of \"I\" or \"i\". The vulnerability was reported and could potentially have been abused to violate the owner's rules and invite blocked domains to the project.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 37,
"team": {
"handle": "frontegg",
"name": "Frontegg",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/03bevawp68pp38m1zvkqtpdpsf6j/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/frontegg",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzU4ODIw",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-20T13:13:36.745Z",
"submitted_at": "2023-06-21T08:19:03.984Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIxNDkxMjQ=",
"_id": "2149124",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjQ0OTQ5OQ==",
"name": "Fares W Muhammed",
"username": "bugsv2",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Improper Access Control - Generic",
"severity_rating": "Low",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMTQ5MTI0",
"databaseId": "2149124",
"title": "PATCH method manipulation allowing the users to escalate their functionalities and edit (upgrade/downgrade) API Keys settings which is not allowed",
"substate": "resolved",
"url": "https://hackerone.com/reports/2149124",
"disclosed_at": "2024-03-20T13:13:36.011Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI0Nw==",
"hacktivity_summary": "A vulnerability was discovered that allowed users to use the PATCH method to edit API key information, such as the description, createdAt, and roleIds, which was not intended to be allowed. The vulnerability was caused by a misconfiguration that permitted the PATCH method on the API key endpoint, enabling users to escalate their functionalities and modify API key settings beyond their intended permissions.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 28,
"team": {
"handle": "frontegg",
"name": "Frontegg",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/03bevawp68pp38m1zvkqtpdpsf6j/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/frontegg",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzU4ODIw",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-20T13:13:36.675Z",
"submitted_at": "2023-09-15T05:35:17.570Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzI0MTkyMjc=",
"_id": "2419227",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMTQ4MDM1NQ==",
"name": "Aviv Keller",
"username": "redyetihacks",
"__typename": "User"
},
"cve_ids": [
"CVE-2024-28866"
],
"cwe": "Cross-site Scripting (XSS) - Reflected",
"severity_rating": "Low",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yNDE5MjI3",
"databaseId": "2419227",
"title": "XSS in new.loading.page.html",
"substate": "resolved",
"url": "https://hackerone.com/reports/2419227",
"disclosed_at": "2024-03-17T14:06:19.848Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI0MQ==",
"hacktivity_summary": "A cross-site scripting vulnerability was found in new.loading.page.html due to inadequate handling of query parameters. This allowed attackers to insert javascript URIs as redirectors, leading to unauthorized script execution.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 53,
"team": {
"handle": "gocd",
"name": "GoCD",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/013/559/870f3bcab332d087cde7b75fe2922e93615e3f78_original./5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/gocd",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTM1NTk=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-17T14:06:20.038Z",
"submitted_at": "2024-03-16T22:27:20.485Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzMjIwODI=",
"_id": "2322082",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMTI1OTI0OQ==",
"name": "Akash Hamal",
"username": "akashhamal0x01",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Information Disclosure",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzIyMDgy",
"databaseId": "2322082",
"title": "Being able to disclose IBB bounty table of any public program",
"substate": "resolved",
"url": "https://hackerone.com/reports/2322082",
"disclosed_at": "2024-03-17T10:33:32.545Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzI0MA==",
"hacktivity_summary": "A private Internet Bug Bounty (IBB) bounty table was disclosed. The IBB bounty table contained information about the reward amounts for critical, high, medium, and low vulnerabilities in open-source projects.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 64,
"team": {
"handle": "security",
"name": "HackerOne",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/000/013/fa942b9b1cbf4faf37482bf68458e1195aab9c02_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/security",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzEz",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-17T10:33:32.811Z",
"submitted_at": "2024-01-16T13:34:59.541Z",
"disclosed": true,
"has_collaboration": true
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIyODQwNjU=",
"_id": "2284065",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMTg3Mzk5NA==",
"name": "maple3142",
"username": "maple3142",
"__typename": "User"
},
"cve_ids": [
"CVE-2024-22025"
],
"cwe": "Uncontrolled Resource Consumption",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMjg0MDY1",
"databaseId": "2284065",
"title": "Denial of Service by resource exhaustion in fetch() brotli decoding",
"substate": "resolved",
"url": "https://hackerone.com/reports/2284065",
"disclosed_at": "2024-03-16T17:43:24.902Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIzOQ==",
"hacktivity_summary": "A denial of service vulnerability was identified in Node.js related to resource exhaustion when using the fetch() function to retrieve content from an untrusted URL. The issue stems from fetch() always decoding Brotli content, allowing an attacker controlling the URL to cause resource exhaustion leading to potential process termination.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 26,
"team": {
"handle": "nodejs",
"name": "Node.js",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/022/984/e600648ace4a8553247bce967d461a030aa81d49_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/nodejs",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzIyOTg0",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-16T17:43:25.210Z",
"submitted_at": "2023-12-13T20:21:37.360Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIxNzAyMjY=",
"_id": "2170226",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjg5NDM5Mw==",
"name": "SebV",
"username": "valette",
"__typename": "User"
},
"cve_ids": [
"CVE-2024-22017"
],
"cwe": "Privilege Escalation",
"severity_rating": "High",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMTcwMjI2",
"databaseId": "2170226",
"title": "setuid() does not drop all privileges due to io_uring",
"substate": "resolved",
"url": "https://hackerone.com/reports/2170226",
"disclosed_at": "2024-03-16T17:43:08.076Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIzOA==",
"hacktivity_summary": "setuid() did not drop all privileges in some versions of Node.js due to io_uring being initialized before setuid() call. This allowed privileged operations after setuid() intended to drop privileges.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 22,
"team": {
"handle": "nodejs",
"name": "Node.js",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/022/984/e600648ace4a8553247bce967d461a030aa81d49_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/nodejs",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzIyOTg0",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-16T17:43:08.452Z",
"submitted_at": "2023-09-18T13:59:11.685Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIxOTA4Mjc=",
"_id": "2190827",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjUwODg2MQ==",
"name": "Nicolas Ferrero",
"username": "inspector-ambitious",
"__typename": "User"
},
"cve_ids": [
"CVE-2023-6803"
],
"cwe": "Improper Access Control - Generic",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMTkwODI3",
"databaseId": "2190827",
"title": "Bypassing Collaborator Restrictions: Retaining Admin Access Post-Repository Transfer",
"substate": "resolved",
"url": "https://hackerone.com/reports/2190827",
"disclosed_at": "2024-03-15T19:30:39.085Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIzNw==",
"hacktivity_summary": "A race condition was discovered in GitHub Enterprise Server that allowed an outside collaborator to be added while a repository was being transferred. This vulnerability affected all versions of GitHub Enterprise Server since 3.8 and was addressed in version 3.8.12, 3.9.7, 3.10.4, and 3.11.1.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 43,
"team": {
"handle": "github",
"name": "GitHub",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/001/894/1de36b69ee85cb77397b0ee01ddbabd7ed47a3dd_original.jpg/f4a495c04fdb224bac8ec64587537e511aa8c4925e7955bee0a19e0ed7d891dc",
"url": "https://hackerone.com/github",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzE4OTQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-15T19:30:39.360Z",
"submitted_at": "2023-10-03T12:31:18.510Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIxODU1NDU=",
"_id": "2185545",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjUwODg2MQ==",
"name": "Nicolas Ferrero",
"username": "inspector-ambitious",
"__typename": "User"
},
"cve_ids": [
"CVE-2023-46649"
],
"cwe": "Improper Authentication - Generic",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMTg1NTQ1",
"databaseId": "2185545",
"title": "Persistent Unauthorized Administrative Access on All Organization Repositories via RC in User Conversion to Organization",
"substate": "resolved",
"url": "https://hackerone.com/reports/2185545",
"disclosed_at": "2024-03-15T19:29:25.470Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIzNg==",
"hacktivity_summary": "A race condition was identified that could allow unauthorized administrative access when converting a user to an organization. This affected GitHub Enterprise Server versions since 3.7 and was fixed in version 3.7.19, 3.8.12, 3.9.7, 3.10.4, and 3.11.1.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 37,
"team": {
"handle": "github",
"name": "GitHub",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/001/894/1de36b69ee85cb77397b0ee01ddbabd7ed47a3dd_original.jpg/f4a495c04fdb224bac8ec64587537e511aa8c4925e7955bee0a19e0ed7d891dc",
"url": "https://hackerone.com/github",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzE4OTQ=",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-15T19:29:25.742Z",
"submitted_at": "2023-09-28T10:38:07.924Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzOTkzODY=",
"_id": "2399386",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjk3NjExMw==",
"name": "S.Lakshmi Vignesh",
"username": "w3shi",
"__typename": "User"
},
"cve_ids": [],
"cwe": null,
"severity_rating": "Low",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzk5Mzg2",
"databaseId": "2399386",
"title": "Github app(link) Takeover Listed on \"https://docs.doppler.com/docs/github-actions\" page",
"substate": "resolved",
"url": "https://hackerone.com/reports/2399386",
"disclosed_at": "2024-03-15T15:54:34.506Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIzNQ==",
"hacktivity_summary": "A github app presented on a Doppler documentation page was vulnerable to takeover, enabling attackers to achieve malicious objectives. The app link has since been removed or replaced to mitigate this vulnerability.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 24,
"team": {
"handle": "doppler",
"name": "Doppler",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/d2gsn9dvxqlmk8lmj1meggeuueuy/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/doppler",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzUwNzY3",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-15T15:54:34.620Z",
"submitted_at": "2024-03-02T17:17:29.890Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzODM0ODY=",
"_id": "2383486",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjUzOTYzOQ==",
"name": "Psycho",
"username": "psycho_012",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Improper Access Control - Generic",
"severity_rating": "Low",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzgzNDg2",
"databaseId": "2383486",
"title": "Insecure S3 Bucket Exposing Git Directory in Mozilla Foundation Infographics Project",
"substate": "resolved",
"url": "https://hackerone.com/reports/2383486",
"disclosed_at": "2024-03-13T14:45:45.522Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIyOQ==",
"hacktivity_summary": "Git configuration was leaked in one of the S3 buckets used by Mozilla Foundation Infographics Project. The configuration included an old Github access token which was no longer valid. We restricted access to the `.git` directory on the bucket.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 44,
"team": {
"handle": "mozilla_core_services",
"name": "Mozilla",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/0p8e6gg8xoy45dhjxs5wh4iti6k8/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/mozilla_core_services",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzYxMjM2",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-13T14:45:45.621Z",
"submitted_at": "2024-02-21T12:18:54.697Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIzNTcxMTM=",
"_id": "2357113",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMjg0NjE4MQ==",
"name": "Giwa",
"username": "giwadaoud",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Insecure Direct Object Reference (IDOR)",
"severity_rating": "Medium",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMzU3MTEz",
"databaseId": "2357113",
"title": "Unauthorized Access to Offline Publication Cover Pages via SOURCE_DOCUMENT_ID",
"substate": "resolved",
"url": "https://hackerone.com/reports/2357113",
"disclosed_at": "2024-03-13T09:12:42.493Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIyOA==",
"hacktivity_summary": "A vulnerability was discovered that allowed unauthorized access to offline publication cover pages by sending requests with specific source document IDs. This exposed cover pages and associated user and publication IDs that were intended to be private.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 37,
"team": {
"handle": "publitas",
"name": "Publitas",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/000/103/83b23429fe1d8e894f5e774b12356c6809e15b3d_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/publitas",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpWdWxuZXJhYmlsaXR5RGlzY2xvc3VyZVByb2dyYW0vMTAz",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-13T09:12:42.597Z",
"submitted_at": "2024-02-06T21:29:26.114Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzIyOTE5OTk=",
"_id": "2291999",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMTM2MTg5MQ==",
"name": "Ashutosh",
"username": "marvelmaniac",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Insecure Direct Object Reference (IDOR)",
"severity_rating": "High",
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8yMjkxOTk5",
"databaseId": "2291999",
"title": "An attacker can submit arbitrary projects to their service accounts and obtain full information on projects of other users.",
"substate": "resolved",
"url": "https://hackerone.com/reports/2291999",
"disclosed_at": "2024-03-12T09:58:42.679Z",
"report_generated_content": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydEdlbmVyYXRlZENvbnRlbnQvNzIyNw==",
"hacktivity_summary": "An information disclosure vulnerability was discovered in the Request Services feature that allowed attackers to obtain project details of other users. The issue was resolved and a bounty was paid to the researcher who reported it.",
"__typename": "ReportGeneratedContent"
},
"__typename": "Report"
},
"votes": 63,
"team": {
"handle": "linkedin",
"name": "LinkedIn",
"medium_profile_picture": "https://profile-photos.hackerone-user-content.com/variants/000/000/058/3aaa858b18e9807c5c1fea0c559156568a6647cc_original.png/5136ed9b2fa7c4d4abbf39fb971047c62d98ec4740a88eb55d7e26373250a937",
"url": "https://hackerone.com/linkedin",
"id": "Z2lkOi8vaGFja2Vyb25lL0VuZ2FnZW1lbnRzOjpCdWdCb3VudHlQcm9ncmFtLzU4",
"currency": "usd",
"__typename": "Team"
},
"total_awarded_amount": null,
"latest_disclosable_action": "Activities::ReportBecamePublic",
"latest_disclosable_activity_at": "2024-03-12T09:58:42.770Z",
"submitted_at": "2023-12-19T18:03:14.623Z",
"disclosed": true,
"has_collaboration": false
},
{
"__typename": "CompleteHacktivityReportDocument",
"id": "Z2lkOi8vaGFja2Vyb25lL0NvbXBsZXRlSGFja3Rpdml0eVJlcG9ydEluZGV4LzExMTkxMjA=",
"_id": "1119120",
"reporter": {
"id": "Z2lkOi8vaGFja2Vyb25lL1VzZXIvMTI4MTE=",
"name": "ooooooo_q",
"username": "ooooooo_q",
"__typename": "User"
},
"cve_ids": [],
"cwe": "Deserialization of Untrusted Data",
"severity_rating": null,
"upvoted": null,
"public": true,
"report": {
"id": "Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC8xMTE5MTIw",
"databaseId": "1119120",
"title": "Bundler's RCE with response using Marshal",
"substate": "resolved",
"url": "https://hackerone.com/reports/1119120",