Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024 q3 hof update #144

Merged
merged 4 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions bug-bounty-hof/client.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,67 @@
names:
- name: Satoki Tsuji
date: 2024-09-26
- name: Masato Kinugawa
date: 2024-09-24
- name: Ali Syarief
date: 2024-09-24
url: https://www.linkedin.com/in/mohammad-ali-syarief/
- name: Andrei Enache
date: 2024-09-20
- name: Lishuo Song
date: 2024-09-17
- name: Thomas Orlita
date: 2024-09-10
- name: Hafiizh
date: 2024-09-10
url: https://www.linkedin.com/in/hafiizh-7aa6bb31/
- name: Nils Bars
date: 2024-09-10
- name: James Lee
date: 2024-09-03
twitter: "@Windowsrcer"
url: https://twitter.com/@Windowsrcer
- name: Gary Kwong
date: 2024-08-30
url: https://www.ygitsoftware.com/
- name: Om Apip
date: 2024-08-27
- name: Gregory Pappas
date: 2024-08-20
- name: D7
date: 2024-08-20
twitter: "@l33d0hyun"
url: https://twitter.com/@l33d0hyun
- name: Seunghyun Lee (@0x10n)
date: 2024-08-20
- name: "Rifa'i Rejal Maynando"
date: 2024-08-06
url: https://www.linkedin.com/in/rnando/
- name: Raphael Shaniyazov
date: 2024-08-06
- name: Yangkang of 360 ATA Team
date: 2024-08-06
twitter: "@dnpushme"
url: https://twitter.com/@dnpushme
- name: Shaheen Fazim
date: 2024-08-06
twitter: "@shaheenfazim"
url: https://twitter.com/@shaheenfazim
- name: P Umar Farooq
date: 2024-07-30
- name: Irvan Kurniawan (sourc7)
date: 2024-07-30
url: https://www.linkedin.com/in/sourc7/
- name: Dalmurino
date: 2024-07-23
- name: Kirtikumar Anandrao Ramchandani
date: 2024-07-16
- name: Nan Wang
date: 2024-07-16
twitter: "@eternalsakura13"
url: https://twitter.com/@eternalsakura13
- name: pwn2car
date: 2024-07-02
- name: Nils Bars
date: 2024-06-19
- name: Ronald Crane
Expand Down
10 changes: 10 additions & 0 deletions foundation_security_advisories/update_hof.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@
""".replace("\n", "")

credit_entries = {
"e63fe129212ef68d6d29c8762aa090d7":"Lishuo Song",
"d26d3f4b54a07b5db8c2e7a8cd58863c":"Seunghyun Lee (@0x10n)",
"8552289e4e172662b16295290c789fa9":"Nils Bars",
"8b37f9bddc61920163d071f779926e25":"Rifa'i Rejal Maynando",
"843552576234c045916e6e9248397aac":"Om Apip",
"e0a74b5439f07d3b31735873861f5f45":"Dalmurino",
"96c531dfd57734b6e7545668dc632153":"jackyzy823",
"97ff7dcf51f14fadf8adc2de15c80239":"Jędrzej Krysztofiak",
Expand Down Expand Up @@ -503,6 +508,7 @@
"fe7f319c61c0b44d4cb751afda4f4aeb" : "@Gaurav_00000",
}
url_entries = {
"8b37f9bddc61920163d071f779926e25":"https://www.linkedin.com/in/rnando/",
"b9a6307c3a098387557dab8537c59a70":"https://nomokazu.com/",
"b9a6307c3a098387557dab8537c59a70":"https://nomokazu.com/",
"9f059eb3b4eba569bba477ee0bc95350":"https://hackerone.com/lohigowda",
Expand Down Expand Up @@ -619,6 +625,7 @@
"Web Compatibility",
"DevTools",
"Calendar",
"Web Compatibility",
]
web_products = ["Cloud Services",
"Data Platform and Tools",
Expand All @@ -641,6 +648,9 @@ def is_client_bug(bug):
if bug['product'] == "Emerging Markets" and bug['component'] in ["Security: Firefox Lite"]:
return True

if bug['product'] == "Web Compatibility" and bug['component'] == "Tooling & Investigations":
return True

if bug['product'] not in client_products:
# this is an edge case we should validate and improve
raise Exception("Bug: {3} Classification: '{0}' Product: '{1}' Component: '{2}' is not considered a client bug, please confirm.".format(bug['classification'], bug['product'], bug['component'], bug["id"]))
Expand Down
Loading