Skip to content

Commit 49fb9b7

Browse files
committed
deps: socks@2.8.3
1 parent f69052e commit 49fb9b7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

node_modules/socks/build/common/helpers.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,11 @@ function ipToBuffer(ip) {
152152
else if (net.isIPv6(ip)) {
153153
// Handle IPv6 addresses
154154
const address = new ip_address_1.Address6(ip);
155-
return Buffer.from(address.toByteArray());
155+
return Buffer.from(address
156+
.canonicalForm()
157+
.split(':')
158+
.map((segment) => segment.padStart(4, '0'))
159+
.join(''), 'hex');
156160
}
157161
else {
158162
throw new Error('Invalid IP address format');

node_modules/socks/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "socks",
33
"private": false,
4-
"version": "2.8.2",
4+
"version": "2.8.3",
55
"description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.",
66
"main": "build/index.js",
77
"typings": "typings/index.d.ts",

package-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12163,9 +12163,9 @@
1216312163
}
1216412164
},
1216512165
"node_modules/socks": {
12166-
"version": "2.8.2",
12167-
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.2.tgz",
12168-
"integrity": "sha512-5Hvyu6Md91ooZzdrN/bSn/zlulFaRHrk2/6IY6qQNa3oVHTiG+CKxBV5PynKCGf31ar+3/hyPvlHFAYaBEOa3A==",
12166+
"version": "2.8.3",
12167+
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz",
12168+
"integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==",
1216912169
"inBundle": true,
1217012170
"dependencies": {
1217112171
"ip-address": "^9.0.5",

0 commit comments

Comments
 (0)