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

Ignore micromatch CVE-2024-4067 and rexml CVE-2024-43398 #6669

Merged
merged 2 commits into from
Aug 23, 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
8 changes: 8 additions & 0 deletions ci/ios/upload-vm/osv-scanner.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# See repository root `osv-scanner.toml` for instructions and rules for this file.

# rexml: The REXML gem before 3.3.6 has a DoS vulnerability when it parses an XML
# that has many deep elements that have same local name attributes.
[[IgnoredVulns]]
id = "CVE-2024-43398" # GHSA-952p-6rrq-rcjv
ignoreUntil = 2024-11-23
reason = "rexml only parses trusted input (responses from Apple's APIs) in this code"
6 changes: 6 additions & 0 deletions gui/osv-scanner.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,9 @@ reason = "We don't utilize the signing features in browserify"
id = "CVE-2024-42459" # GHSA-f7q4-pwc6-w24p
ignoreUntil = 2024-10-15
reason = "We don't utilize the signing features in browserify"

# micromatch (dev): Regular Expression Denial of Service (ReDoS) in micromatch
[[IgnoredVulns]]
id = "CVE-2024-4067" # GHSA-952p-6rrq-rcjv
ignoreUntil = 2024-11-23
reason = "This is just a dev dependency, and we don't have untrusted input to micromatch there"
8 changes: 8 additions & 0 deletions ios/osv-scanner.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# See repository root `osv-scanner.toml` for instructions and rules for this file.

# rexml: The REXML gem before 3.3.6 has a DoS vulnerability when it parses an XML
# that has many deep elements that have same local name attributes.
[[IgnoredVulns]]
id = "CVE-2024-43398" # GHSA-952p-6rrq-rcjv
ignoreUntil = 2024-11-23
reason = "rexml only parses trusted input (responses from Apple's APIs) in this code"
Loading