node-aix-ppc64 17.3.0 → 17.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +52 -0
- package/bin/node +0 -0
- package/include/node/node.exp +5 -7
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#17.3.1">17.3.1</a><br/>
|
|
11
12
|
<a href="#17.3.0">17.3.0</a><br/>
|
|
12
13
|
<a href="#17.2.0">17.2.0</a><br/>
|
|
13
14
|
<a href="#17.1.0">17.1.0</a><br/>
|
|
@@ -36,6 +37,57 @@
|
|
|
36
37
|
* [io.js](CHANGELOG_IOJS.md)
|
|
37
38
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
38
39
|
|
|
40
|
+
<a id="17.3.1"></a>
|
|
41
|
+
|
|
42
|
+
## 2022-01-10, Version 17.3.1 (Current), @BethGriggs
|
|
43
|
+
|
|
44
|
+
This is a security release.
|
|
45
|
+
|
|
46
|
+
### Notable changes
|
|
47
|
+
|
|
48
|
+
#### Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)
|
|
49
|
+
|
|
50
|
+
Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI is specifically defined to use a particular SAN type, can result in bypassing name-constrained intermediates. Node.js was accepting URI SAN types, which PKIs are often not defined to use. Additionally, when a protocol allows URI SANs, Node.js did not match the URI correctly.
|
|
51
|
+
|
|
52
|
+
Versions of Node.js with the fix for this disable the URI SAN type when checking a certificate against a hostname. This behavior can be reverted through the `--security-revert` command-line option.
|
|
53
|
+
|
|
54
|
+
More details will be available at [CVE-2021-44531](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531) after publication.
|
|
55
|
+
|
|
56
|
+
#### Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)
|
|
57
|
+
|
|
58
|
+
Node.js converts SANs (Subject Alternative Names) to a string format. It uses this string to check peer certificates against hostnames when validating connections. The string format was subject to an injection vulnerability when name constraints were used within a certificate chain, allowing the bypass of these name constraints.
|
|
59
|
+
|
|
60
|
+
Versions of Node.js with the fix for this escape SANs containing the problematic characters in order to prevent the injection. This behavior can be reverted through the `--security-revert` command-line option.
|
|
61
|
+
|
|
62
|
+
More details will be available at [CVE-2021-44532](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532) after publication.
|
|
63
|
+
|
|
64
|
+
#### Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)
|
|
65
|
+
|
|
66
|
+
Node.js did not handle multi-value Relative Distinguished Names correctly. Attackers could craft certificate subjects containing a single-value Relative Distinguished Name that would be interpreted as a multi-value Relative Distinguished Name, for example, in order to inject a Common Name that would allow bypassing the certificate subject verification.
|
|
67
|
+
|
|
68
|
+
Affected versions of Node.js do not accept multi-value Relative Distinguished Names and are thus not vulnerable to such attacks themselves. However, third-party code that uses node's ambiguous presentation of certificate subjects may be vulnerable.
|
|
69
|
+
|
|
70
|
+
More details will be available at [CVE-2021-44533](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44533) after publication.
|
|
71
|
+
|
|
72
|
+
#### Prototype pollution via `console.table` properties (Low)(CVE-2022-21824)
|
|
73
|
+
|
|
74
|
+
Due to the formatting logic of the `console.table()` function it was not safe to allow user controlled input to be passed to the `properties` parameter while simultaneously passing a plain object with at least one property as the first parameter, which could be `__proto__`. The prototype pollution has very limited control, in that it only allows an empty string to be assigned numerical keys of the object prototype.
|
|
75
|
+
|
|
76
|
+
Versions of Node.js with the fix for this use a null protoype for the object these properties are being assigned to.
|
|
77
|
+
|
|
78
|
+
More details will be available at [CVE-2022-21824](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21824) after publication.
|
|
79
|
+
|
|
80
|
+
Thanks to Patrik Oldsberg (rugvip) for reporting this vulnerability.
|
|
81
|
+
|
|
82
|
+
### Commits
|
|
83
|
+
|
|
84
|
+
* \[[`2a0515f73c`](https://github.com/nodejs/node/commit/2a0515f73c)] - **console**: fix prototype pollution via console.table (Tobias Nießen) [nodejs-private/node-private#307](https://github.com/nodejs-private/node-private/pull/307)
|
|
85
|
+
* \[[`2e2c45553d`](https://github.com/nodejs/node/commit/2e2c45553d)] - **crypto,tls**: implement safe x509 GeneralName format (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
86
|
+
* \[[`df3141f59b`](https://github.com/nodejs/node/commit/df3141f59b)] - **src**: add cve reverts and associated tests (Michael Dawson) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
87
|
+
* \[[`5398548746`](https://github.com/nodejs/node/commit/5398548746)] - **src**: remove unused x509 functions (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
88
|
+
* \[[`1f7fdff64a`](https://github.com/nodejs/node/commit/1f7fdff64a)] - **tls**: fix handling of x509 subject and issuer (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
89
|
+
* \[[`b11b4cc69d`](https://github.com/nodejs/node/commit/b11b4cc69d)] - **tls**: drop support for URI alternative names (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
90
|
+
|
|
39
91
|
<a id="17.3.0"></a>
|
|
40
92
|
|
|
41
93
|
## 2021-12-17, Version 17.3.0 (Current), @danielleadams
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/node.exp
CHANGED
|
@@ -45878,7 +45878,7 @@ _ZN4node6crypto12ScryptConfigaSEOS1_
|
|
|
45878
45878
|
_ZN4node6crypto12ScryptTraits10DeriveBitsEPNS_11EnvironmentERKNS0_12ScryptConfigEPNS0_10ByteSourceE
|
|
45879
45879
|
_ZN4node6crypto12ScryptTraits12EncodeOutputEPNS_11EnvironmentERKNS0_12ScryptConfigEPNS0_10ByteSourceEPN2v85LocalINS9_5ValueEEE
|
|
45880
45880
|
_ZN4node6crypto12ScryptTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEjPNS0_12ScryptConfigE
|
|
45881
|
-
|
|
45881
|
+
_ZN4node6crypto12X509ToObjectEPNS_11EnvironmentEP7x509_stb
|
|
45882
45882
|
_ZN4node6crypto13DeriveBitsJobINS0_10HKDFTraitsEE16DoThreadPoolWorkEv
|
|
45883
45883
|
_ZN4node6crypto13DeriveBitsJobINS0_10HKDFTraitsEE3NewERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
45884
45884
|
_ZN4node6crypto13DeriveBitsJobINS0_10HKDFTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_
|
|
@@ -46178,7 +46178,6 @@ _ZN4node6crypto16CryptoErrorStoreD0Ev
|
|
|
46178
46178
|
_ZN4node6crypto16CryptoErrorStoreD1Ev
|
|
46179
46179
|
_ZN4node6crypto16DsaKeyPairParamsD0Ev
|
|
46180
46180
|
_ZN4node6crypto16DsaKeyPairParamsD1Ev
|
|
46181
|
-
_ZN4node6crypto16GetCertificateCNB5cxx11EP7x509_st
|
|
46182
46181
|
_ZN4node6crypto16GetCipherVersionEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
|
|
46183
46182
|
_ZN4node6crypto16GetCryptoJobModeEN2v85LocalINS1_5ValueEEE
|
|
46184
46183
|
_ZN4node6crypto16GetCurveFromNameEPKc
|
|
@@ -46248,6 +46247,7 @@ _ZN4node6crypto18SecretKeyGenConfigD1Ev
|
|
|
46248
46247
|
_ZN4node6crypto18SecretKeyGenTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEPjPNS0_18SecretKeyGenConfigE
|
|
46249
46248
|
_ZN4node6crypto18SecretKeyGenTraits8DoKeyGenEPNS_11EnvironmentEPNS0_18SecretKeyGenConfigE
|
|
46250
46249
|
_ZN4node6crypto18SecretKeyGenTraits9EncodeKeyEPNS_11EnvironmentEPNS0_18SecretKeyGenConfigEPN2v85LocalINS6_5ValueEEE
|
|
46250
|
+
_ZN4node6crypto19GetInfoAccessStringEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS4_XadL_Z12BIO_free_allEEEEEP7x509_st
|
|
46251
46251
|
_ZN4node6crypto19GetOKPCurveFromNameEPKc
|
|
46252
46252
|
_ZN4node6crypto19GetRootCertificatesERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
46253
46253
|
_ZN4node6crypto19NidKeyPairGenTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEPjPNS0_16KeyPairGenConfigINS0_16NidKeyPairParamsEEE
|
|
@@ -46257,14 +46257,16 @@ _ZN4node6crypto20GetRawDERCertificateEPNS_11EnvironmentEP7x509_st
|
|
|
46257
46257
|
_ZN4node6crypto21GetCipherStandardNameEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
|
|
46258
46258
|
_ZN4node6crypto21GetClientHelloCiphersEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
|
|
46259
46259
|
_ZN4node6crypto21VerifyPeerCertificateERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEEl
|
|
46260
|
-
_ZN4node6crypto22GetCertificateAltNamesB5cxx11EP7x509_st
|
|
46261
46260
|
_ZN4node6crypto22GetValidationErrorCodeEPNS_11EnvironmentEi
|
|
46261
|
+
_ZN4node6crypto23GetSubjectAltNameStringEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS4_XadL_Z12BIO_free_allEEEEEP7x509_st
|
|
46262
|
+
_ZN4node6crypto23SafeX509InfoAccessPrintERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS2_XadL_Z12BIO_free_allEEEEEP17X509_extension_st
|
|
46262
46263
|
_ZN4node6crypto24GetClientHelloServerNameERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEE
|
|
46263
46264
|
_ZN4node6crypto24GetValidationErrorReasonEPNS_11EnvironmentEi
|
|
46264
46265
|
_ZN4node6crypto25ArrayBufferOrViewContentsIcEC1EN2v85LocalINS3_5ValueEEE
|
|
46265
46266
|
_ZN4node6crypto25ArrayBufferOrViewContentsIhEC1EN2v85LocalINS3_5ValueEEE
|
|
46266
46267
|
_ZN4node6crypto26IsExtraRootCertsFileLoadedERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
46267
46268
|
_ZN4node6crypto26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
46269
|
+
_ZN4node6crypto27SafeX509SubjectAltNamePrintERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS2_XadL_Z12BIO_free_allEEEEEP17X509_extension_st
|
|
46268
46270
|
_ZN4node6crypto3AES10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
|
|
46269
46271
|
_ZN4node6crypto3AES26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
46270
46272
|
_ZN4node6crypto4ECDH10ConvertKeyERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
@@ -61483,7 +61485,6 @@ _ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4findEcm
|
|
|
61483
61485
|
_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm
|
|
61484
61486
|
_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7compareEPKc
|
|
61485
61487
|
_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7compareERKS4_
|
|
61486
|
-
_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7compareEmmPKc
|
|
61487
61488
|
_ZNKSt7__cxx1112basic_stringItSt11char_traitsItESaItEE4findEPKtmm
|
|
61488
61489
|
_ZNKSt7__cxx1112basic_stringItSt11char_traitsItESaItEE7compareERKS4_
|
|
61489
61490
|
_ZNKSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_St9_IdentityIS5_ESt4lessIS5_ESaIS5_EE4findERKS5_
|
|
@@ -61590,7 +61591,6 @@ _ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS
|
|
|
61590
61591
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4node14options_parser13OptionsParserINS8_17PerProcessOptionsEE11ImplicationEESaISE_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSG_18_Mod_range_hashingENSG_20_Default_ranged_hashENSG_20_Prime_rehash_policyENSG_17_Hashtable_traitsILb1ELb0ELb0EEEE20_M_insert_multi_nodeEPNSG_10_Hash_nodeISE_Lb1EEEmSU_
|
|
61591
61592
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4node14options_parser13OptionsParserINS8_18EnvironmentOptionsEE10OptionInfoEESaISE_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSG_18_Mod_range_hashingENSG_20_Default_ranged_hashENSG_20_Prime_rehash_policyENSG_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSG_10_Hash_nodeISE_Lb1EEEm
|
|
61592
61593
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4node14options_parser13OptionsParserINS8_18EnvironmentOptionsEE11ImplicationEESaISE_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSG_18_Mod_range_hashingENSG_20_Default_ranged_hashENSG_20_Prime_rehash_policyENSG_17_Hashtable_traitsILb1ELb0ELb0EEEE20_M_insert_multi_nodeEPNSG_10_Hash_nodeISE_Lb1EEEmSU_
|
|
61593
|
-
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESaIS8_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb0EEEE20_M_insert_multi_nodeEPNSA_10_Hash_nodeIS8_Lb1EEEmSO_
|
|
61594
61594
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESaIS8_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS7_
|
|
61595
61595
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN2v814ScriptCompiler10CachedDataESt14default_deleteISB_EEESaISF_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSH_18_Mod_range_hashingENSH_20_Default_ranged_hashENSH_20_Prime_rehash_policyENSH_17_Hashtable_traitsILb1ELb0ELb1EEEE5eraseENSH_20_Node_const_iteratorISF_Lb0ELb1EEE
|
|
61596
61596
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St6vectorIPN2v88internal6torque10DeclarableESaISD_EEESaISG_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSI_18_Mod_range_hashingENSI_20_Default_ranged_hashENSI_20_Prime_rehash_policyENSI_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSI_10_Hash_nodeISG_Lb1EEEm
|
|
@@ -68999,8 +68999,6 @@ _ZZN4node6crypto13DeriveBitsJobINS0_17RandomPrimeTraitsEE8ToResultEPN2v85LocalIN
|
|
|
68999
68999
|
_ZZN4node6crypto13DeriveBitsJobINS0_17RandomPrimeTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E4args_0
|
|
69000
69000
|
_ZZN4node6crypto13EnginePointer5resetEP9engine_stbE4args
|
|
69001
69001
|
_ZZN4node6crypto13EnginePointer5resetEP9engine_stbE4args_0
|
|
69002
|
-
_ZZN4node6crypto13GetInfoStringILi177EEEN2v810MaybeLocalINS2_5ValueEEEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS9_XadL_Z12BIO_free_allEEEEEP7x509_stE4args
|
|
69003
|
-
_ZZN4node6crypto13GetInfoStringILi85EEEN2v810MaybeLocalINS2_5ValueEEEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS9_XadL_Z12BIO_free_allEEEEEP7x509_stE4args
|
|
69004
69002
|
_ZZN4node6crypto13MallocOpenSSLIcEEPT_mE4args
|
|
69005
69003
|
_ZZN4node6crypto13MallocOpenSSLIhEEPT_mE4args
|
|
69006
69004
|
_ZZN4node6crypto14ReallocOpenSSLIcEEPT_S3_mE4args
|