Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: XML validator explicitely harden against XXE injections #1064

Merged
merged 4 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.

<!-- add unreleased items here -->

* Changed
* The provided XML validation capabilities are hardened (via [#1064]; concerns [#1061])
This is considered a security measure concerning XML external entity (XXE) injection.

[#1061]: https://github.com/CycloneDX/cyclonedx-javascript-library/issues/1061
[#1064]: https://github.com/CycloneDX/cyclonedx-javascript-library/pull/1064

## 6.7.1 -- 2024-05-07

Reverted v6.7.0, back to v6.6.1
Expand Down
6 changes: 5 additions & 1 deletion src/validation/xmlValidator.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ async function getParser (): Promise<typeof parseXml> {

const xmlParseOptions: Readonly<ParserOptions> = Object.freeze({
nonet: true,
compact: true
compact: true,
// explicitly prevent XXE
// see https://cheatsheetseries.owasp.org/cheatsheets/XML_External_Entity_Prevention_Cheat_Sheet.html
noent: false,
dtdload: false
})

export class XmlValidator extends BaseValidator {
Expand Down
4 changes: 4 additions & 0 deletions tests/_data/xxe_flag.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This file is target of XXE injection tests.
The flag is:

vaiquia2zoo3Im8ro9zahNg5mohwipouka2xieweed6ahChei3doox2fek3ise0lmohju3loh5oDu7eigh3jaeR2aiph2Voo
31 changes: 31 additions & 0 deletions tests/integration/Validation.XmlValidator.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Copyright (c) OWASP Foundation. All Rights Reserved.
*/

const assert = require('assert')
const { realpathSync } = require('fs')
const { join } = require('path')
const { pathToFileURL } = require('url')

const { describe, it } = require('mocha')

let hasDep = true
Expand Down Expand Up @@ -99,5 +103,32 @@ describe('Validation.XmlValidator', () => {
const validationError = await validator.validate(input)
assert.strictEqual(validationError, null)
})

it('is not affected by XXE injection', async () => {
const validator = new XmlValidator(version)
const input = `<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE poc [
<!ENTITY flag SYSTEM "${pathToFileURL(realpathSync(join(__dirname, '..', '_data', 'xxe_flag.txt')))}">
]>
<bom xmlns="http://cyclonedx.org/schema/bom/${version}">
<components>
<component type="library">
<name>bar</name>
<version>1.337</version>
${version === '1.0' ? '<modified>false</modified>' : ''}
<licenses>
<license>
<id>&flag;</id>
</license>
</licenses>
</component>
</components>
</bom>`
const validationError = await validator.validate(input)
assert.doesNotMatch(
JSON.stringify(validationError),
/vaiquia2zoo3Im8ro9zahNg5mohwipouka2xieweed6ahChei3doox2fek3ise0lmohju3loh5oDu7eigh3jaeR2aiph2Voo/
)
})
}))
})
Loading