Skip to content

Commit 5e5e1e0

Browse files
committed
fix: revert to v6.6.1
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 974c558 commit 5e5e1e0

File tree

4 files changed

+8
-57
lines changed

4 files changed

+8
-57
lines changed

HISTORY.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@ All notable changes to this project will be documented in this file.
66

77
<!-- add unreleased items here -->
88

9+
## 6.7.1 -- 2024-05-07
10+
11+
Reverted v6.7.0, back to v6.6.1
12+
913
## 6.7.0 -- 2024-05-07
1014

15+
!! THIS VERSION GOT YANKED !!
16+
1117
* Changed
1218
* The provided XML validation capabilities no longer supports external entities (via [#1063]; concerns [#1061])
1319
This is considered a security measure to prevent XML external entity (XXE) injection.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cyclonedx/cyclonedx-library",
3-
"version": "6.7.0",
3+
"version": "6.6.1",
44
"description": "Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser).",
55
"license": "Apache-2.0",
66
"keywords": [

src/validation/xmlValidator.node.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ async function getParser (): Promise<typeof parseXml> {
4848

4949
const xmlParseOptions: Readonly<ParserOptions> = Object.freeze({
5050
nonet: true,
51-
compact: true,
52-
noent: true // prevent https://github.com/CycloneDX/cyclonedx-javascript-library/issues/1061
51+
compact: true
5352
})
5453

5554
export class XmlValidator extends BaseValidator {

tests/integration/Validation.XmlValidator.test.js

-54
Original file line numberDiff line numberDiff line change
@@ -99,59 +99,5 @@ describe('Validation.XmlValidator', () => {
9999
const validationError = await validator.validate(input)
100100
assert.strictEqual(validationError, null)
101101
})
102-
103-
it('is not vulnerable to advisories/GHSA-mjr4-7xg5-pfvh', async () => {
104-
/* report:
105-
see https://github.com/advisories/GHSA-mjr4-7xg5-pfvh
106-
see https://github.com/CycloneDX/cyclonedx-javascript-library/issues/1061
107-
*/
108-
const validator = new XmlValidator(version)
109-
/* POC payload:
110-
see https://research.jfrog.com/vulnerabilities/libxmljs2-attrs-type-confusion-rce-jfsa-2024-001034097/#poc
111-
*/
112-
const input = `<?xml version="1.0" encoding="UTF-8"?>
113-
<!DOCTYPE note
114-
[
115-
<!ENTITY writer "` + 'A'.repeat(0x1234) + `">
116-
]>
117-
<bom xmlns="http://cyclonedx.org/schema/bom/${version}">
118-
<components>
119-
<component type="library">
120-
<name>&writer;</name><!-- << XML external entity (XXE) injection -->
121-
<version>1.337</version>
122-
${version === '1.0' ? '<modified>false</modified>' : ''}
123-
</component>
124-
</components>
125-
</bom>`
126-
const validationError = await validator.validate(input)
127-
assert.strictEqual(validationError, null)
128-
})
129-
130-
it('is not vulnerable to advisories/GHSA-78h3-pg4x-j8cv', async () => {
131-
/* report:
132-
see https://github.com/advisories/GHSA-78h3-pg4x-j8cv
133-
see https://github.com/CycloneDX/cyclonedx-javascript-library/issues/1061
134-
*/
135-
const validator = new XmlValidator(version)
136-
/* POC payload:
137-
see https://research.jfrog.com/vulnerabilities/libxmljs2-namespaces-type-confusion-rce-jfsa-2024-001034098/#poc
138-
*/
139-
const input = `<?xml version="1.0" encoding="UTF-8"?>
140-
<!DOCTYPE note
141-
[
142-
<!ENTITY writer PUBLIC "` + 'A'.repeat(8) + 'B'.repeat(8) + 'C'.repeat(8) + 'D'.repeat(8) + 'P'.repeat(8) + `" "JFrog Security">
143-
]>
144-
<bom xmlns="http://cyclonedx.org/schema/bom/${version}">
145-
<components>
146-
<component type="library">
147-
<name>&writer;</name><!-- << XML external entity (XXE) injection -->
148-
<version>1.337</version>
149-
${version === '1.0' ? '<modified>false</modified>' : ''}
150-
</component>
151-
</components>
152-
</bom>`
153-
const validationError = await validator.validate(input)
154-
assert.strictEqual(validationError, null)
155-
})
156102
}))
157103
})

0 commit comments

Comments
 (0)