|
| 1 | +{ |
| 2 | + "golang.org/x/net": [ |
| 3 | + { |
| 4 | + "description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", |
| 5 | + "vulnerability_id": "CVE-2022-41721", |
| 6 | + "name": "CVE-2022-41721", |
| 7 | + "package_name": "golang.org/x/net", |
| 8 | + "package_details": { |
| 9 | + "file_path": "/opt/nvidia/nsight-systems/2023.4.4/host-linux-x64/Scripts/WebRTCContainer/setup/neko/server/bin/neko", |
| 10 | + "name": "golang.org/x/net", |
| 11 | + "package_manager": "GO", |
| 12 | + "version": "v0.1.0", |
| 13 | + "release": null |
| 14 | + }, |
| 15 | + "remediation": { "recommendation": { "text": "None Provided" } }, |
| 16 | + "cvss_v3_score": 7.5, |
| 17 | + "cvss_v30_score": 0.0, |
| 18 | + "cvss_v31_score": 7.5, |
| 19 | + "cvss_v2_score": 0.0, |
| 20 | + "cvss_v3_severity": "HIGH", |
| 21 | + "source_url": "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", |
| 22 | + "source": "NVD", |
| 23 | + "severity": "HIGH", |
| 24 | + "status": "ACTIVE", |
| 25 | + "title": "CVE-2022-41721 - golang.org/x/net", |
| 26 | + "reason_to_ignore": "N/A" |
| 27 | + }, |
| 28 | + { |
| 29 | + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", |
| 30 | + "vulnerability_id": "CVE-2022-41723", |
| 31 | + "name": "CVE-2022-41723", |
| 32 | + "package_name": "golang.org/x/net", |
| 33 | + "package_details": { |
| 34 | + "file_path": "/opt/nvidia/nsight-systems/2023.4.4/host-linux-x64/Scripts/WebRTCContainer/setup/neko/server/bin/neko", |
| 35 | + "name": "golang.org/x/net", |
| 36 | + "package_manager": "GO", |
| 37 | + "version": "v0.1.0", |
| 38 | + "release": null |
| 39 | + }, |
| 40 | + "remediation": { "recommendation": { "text": "None Provided" } }, |
| 41 | + "cvss_v3_score": 7.5, |
| 42 | + "cvss_v30_score": 0.0, |
| 43 | + "cvss_v31_score": 7.5, |
| 44 | + "cvss_v2_score": 0.0, |
| 45 | + "cvss_v3_severity": "HIGH", |
| 46 | + "source_url": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", |
| 47 | + "source": "NVD", |
| 48 | + "severity": "HIGH", |
| 49 | + "status": "ACTIVE", |
| 50 | + "title": "CVE-2022-41723 - golang.org/x/net", |
| 51 | + "reason_to_ignore": "N/A" |
| 52 | + }, |
| 53 | + { |
| 54 | + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", |
| 55 | + "vulnerability_id": "CVE-2023-44487", |
| 56 | + "name": "CVE-2023-44487", |
| 57 | + "package_name": "golang.org/x/net", |
| 58 | + "package_details": { |
| 59 | + "file_path": "/opt/nvidia/nsight-systems/2023.4.4/host-linux-x64/Scripts/WebRTCContainer/setup/neko/server/bin/neko", |
| 60 | + "name": "golang.org/x/net", |
| 61 | + "package_manager": "GO", |
| 62 | + "version": "v0.1.0", |
| 63 | + "release": null |
| 64 | + }, |
| 65 | + "remediation": { "recommendation": { "text": "None Provided" } }, |
| 66 | + "cvss_v3_score": 7.5, |
| 67 | + "cvss_v30_score": 0.0, |
| 68 | + "cvss_v31_score": 7.5, |
| 69 | + "cvss_v2_score": 0.0, |
| 70 | + "cvss_v3_severity": "HIGH", |
| 71 | + "source_url": "https://nvd.nist.gov/vuln/detail/CVE-2023-44487", |
| 72 | + "source": "NVD", |
| 73 | + "severity": "HIGH", |
| 74 | + "status": "ACTIVE", |
| 75 | + "title": "CVE-2023-44487 - golang.org/x/net", |
| 76 | + "reason_to_ignore": "N/A" |
| 77 | + }, |
| 78 | + { |
| 79 | + "description": "A malicious HTTP/2 client which rapidly creates requests and immediately resets them can cause excessive server resource consumption. While the total number of requests is bounded by the http2.Server.MaxConcurrentStreams setting, resetting an in-progress request allows the attacker to create a new request while the existing one is still executing. With the fix applied, HTTP/2 servers now bound the number of simultaneously executing handler goroutines to the stream concurrency limit (MaxConcurrentStreams). New requests arriving when at the limit (which can only happen after the client has reset an existing, in-flight request) will be queued until a handler exits. If the request queue grows too large, the server will terminate the connection. This issue is also fixed in golang.org/x/net/http2 for users manually configuring HTTP/2. The default stream concurrency limit is 250 streams (requests) per HTTP/2 connection. This value may be adjusted using the golang.org/x/net/http2 package; see the Server.MaxConcurrent", |
| 80 | + "vulnerability_id": "CVE-2023-39325", |
| 81 | + "name": "CVE-2023-39325", |
| 82 | + "package_name": "golang.org/x/net", |
| 83 | + "package_details": { |
| 84 | + "file_path": "/opt/nvidia/nsight-systems/2023.4.4/host-linux-x64/Scripts/WebRTCContainer/setup/neko/server/bin/neko", |
| 85 | + "name": "golang.org/x/net", |
| 86 | + "package_manager": "GO", |
| 87 | + "version": "v0.1.0", |
| 88 | + "release": null |
| 89 | + }, |
| 90 | + "remediation": { "recommendation": { "text": "None Provided" } }, |
| 91 | + "cvss_v3_score": 7.5, |
| 92 | + "cvss_v30_score": 0.0, |
| 93 | + "cvss_v31_score": 7.5, |
| 94 | + "cvss_v2_score": 0.0, |
| 95 | + "cvss_v3_severity": "HIGH", |
| 96 | + "source_url": "https://nvd.nist.gov/vuln/detail/CVE-2023-39325", |
| 97 | + "source": "NVD", |
| 98 | + "severity": "HIGH", |
| 99 | + "status": "ACTIVE", |
| 100 | + "title": "CVE-2023-39325 - golang.org/x/net", |
| 101 | + "reason_to_ignore": "N/A" |
| 102 | + } |
| 103 | + ], |
| 104 | + "org.apache.ant:ant": [ |
| 105 | + { |
| 106 | + "description": "As mitigation for CVE-2020-1945 Apache Ant 1.10.8 changed the permissions of temporary files it created so that only the current user was allowed to access them. Unfortunately the fixcrlf task deleted the temporary file and created a new one without said protection, effectively nullifying the effort. This would still allow an attacker to inject modified source files into the build process.", |
| 107 | + "vulnerability_id": "CVE-2020-11979", |
| 108 | + "name": "CVE-2020-11979", |
| 109 | + "package_name": "org.apache.ant:ant", |
| 110 | + "package_details": { |
| 111 | + "file_path": "/usr/local/cuda-12.4/libnvvp/plugins/org.apache.ant_1.9.2.v201404171502/lib/ant.jar", |
| 112 | + "name": "org.apache.ant:ant", |
| 113 | + "package_manager": "JAVA", |
| 114 | + "version": "1.9.2", |
| 115 | + "release": null |
| 116 | + }, |
| 117 | + "remediation": { "recommendation": { "text": "None Provided" } }, |
| 118 | + "cvss_v3_score": 7.5, |
| 119 | + "cvss_v30_score": 0.0, |
| 120 | + "cvss_v31_score": 7.5, |
| 121 | + "cvss_v2_score": 0.0, |
| 122 | + "cvss_v3_severity": "HIGH", |
| 123 | + "source_url": "https://nvd.nist.gov/vuln/detail/CVE-2020-11979", |
| 124 | + "source": "NVD", |
| 125 | + "severity": "HIGH", |
| 126 | + "status": "ACTIVE", |
| 127 | + "title": "CVE-2020-11979 - org.apache.ant:ant", |
| 128 | + "reason_to_ignore": "N/A" |
| 129 | + } |
| 130 | + ] |
| 131 | +} |
0 commit comments