Skip to content

Commit edea556

Browse files
Merge pull request #7601 from TheeCryptoChad/patch-GHSA-mj6p-3pc9-wf5m
2 parents 16db3d9 + 924c0bc commit edea556

1 file changed

Lines changed: 73 additions & 59 deletions

File tree

Lines changed: 73 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,78 @@
11
{
2-
"schema_version": "1.4.0",
3-
"id": "GHSA-mj6p-3pc9-wf5m",
4-
"modified": "2023-06-06T01:52:50Z",
5-
"published": "2023-05-30T18:30:23Z",
6-
"aliases": [
7-
"CVE-2023-2968"
8-
],
9-
"summary": "proxy denial of service vulnerability",
10-
"details": "A remote attacker can trigger a denial of service in the `socket.remoteAddress` variable, by sending a crafted HTTP request. Usage of the undefined variable raises a TypeError exception.\n\n",
11-
"severity": [],
12-
"affected": [
13-
{
14-
"package": {
15-
"ecosystem": "npm",
16-
"name": "proxy"
17-
},
18-
"ranges": [
2+
"schema_version": "1.4.0",
3+
"id": "GHSA-mj6p-3pc9-wf5m",
4+
"modified": "2026-05-06T00:00:00Z",
5+
"published": "2023-05-30T18:30:23Z",
6+
"aliases": [
7+
"CVE-2023-2968"
8+
],
9+
"summary": "proxy denial of service vulnerability",
10+
"details": "A remote attacker can trigger a denial of service in the `proxy` package by sending a crafted HTTP request that causes `socket.remoteAddress` to be `undefined`. When this undefined value is consumed without a null check, a `TypeError` exception is raised, crashing the proxy server process.\n\nThe vulnerable code path in versions >= 2.0.0, < 2.1.1 reads `socket.remoteAddress` directly without guarding against the case where the socket has already been destroyed or the remote address is unavailable. An attacker with the ability to send a specially crafted HTTP request can exploit this to take down the proxy server.\n\nThe issue was fixed in version 2.1.1 by adding a guard that checks `socket.remoteAddress` before use.",
11+
"severity": [
1912
{
20-
"type": "ECOSYSTEM",
21-
"events": [
22-
{
23-
"introduced": "2.0.0"
13+
"type": "CVSS_V3",
14+
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
15+
}
16+
],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "npm",
21+
"name": "proxy"
2422
},
25-
{
26-
"fixed": "2.1.1"
27-
}
28-
]
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "2.0.0"
29+
},
30+
{
31+
"fixed": "2.1.1"
32+
}
33+
]
34+
}
35+
]
2936
}
30-
]
31-
}
32-
],
33-
"references": [
34-
{
35-
"type": "ADVISORY",
36-
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-2968"
37-
},
38-
{
39-
"type": "WEB",
40-
"url": "https://github.com/TooTallNate/proxy-agents/pull/178"
41-
},
42-
{
43-
"type": "WEB",
44-
"url": "https://github.com/TooTallNate/proxy-agents/commit/25e0c931390eb8f41c5ceaca72820de9198ece39"
45-
},
46-
{
47-
"type": "PACKAGE",
48-
"url": "https://github.com/TooTallNate/proxy-agents"
49-
},
50-
{
51-
"type": "WEB",
52-
"url": "https://research.jfrog.com/vulnerabilities/undefined-variable-usage-in-proxy-leads-to-remote-denial-of-service-xray-520917"
53-
}
54-
],
55-
"database_specific": {
56-
"cwe_ids": [
57-
"CWE-232"
5837
],
59-
"severity": "MODERATE",
60-
"github_reviewed": true,
61-
"github_reviewed_at": "2023-06-06T01:52:50Z",
62-
"nvd_published_at": "2023-05-30T18:15:09Z"
63-
}
64-
}
38+
"references": [
39+
{
40+
"type": "ADVISORY",
41+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-2968"
42+
},
43+
{
44+
"type": "WEB",
45+
"url": "https://github.com/TooTallNate/proxy-agents/pull/178"
46+
},
47+
{
48+
"type": "WEB",
49+
"url": "https://github.com/TooTallNate/proxy-agents/commit/25e0c931390eb8f41c5ceaca72820de9198ece39"
50+
},
51+
{
52+
"type": "PACKAGE",
53+
"url": "https://github.com/TooTallNate/proxy-agents"
54+
},
55+
{
56+
"type": "WEB",
57+
"url": "https://research.jfrog.com/vulnerabilities/undefined-variable-usage-in-proxy-leads-to-remote-denial-of-service-xray-520917"
58+
}
59+
],
60+
"credits": [
61+
{
62+
"name": "Cutter Bruce",
63+
"contact": [
64+
"https://github.com/TheeCryptoChad"
65+
],
66+
"type": "ANALYST"
67+
}
68+
],
69+
"database_specific": {
70+
"cwe_ids": [
71+
"CWE-232"
72+
],
73+
"severity": "HIGH",
74+
"github_reviewed": true,
75+
"github_reviewed_at": "2023-06-06T01:52:50Z",
76+
"nvd_published_at": "2023-05-30T18:15:09Z"
77+
}
78+
}

0 commit comments

Comments
 (0)