Jun 30, 2020 07:03 PM
Currently the Blocks SDK creates the deps for the acorn library which has a security vulnerability:
Upgrade acorn to version 7.1.1 or later. For example:
“dependencies”: { “acorn”: “>=7.1.1” }
or…
“devDependencies”: { “acorn”: “>=7.1.1” }
Always verify the validity and compatibility of suggestions with your codebase.
moderate severity
Vulnerable versions: >= 7.0.0, < 7.1.1
Patched version: 7.1.1
Affected versions of acorn are vulnerable to Regular Expression Denial of Service.
A regex in the form of /[x-\ud800]/u causes the parser to enter an infinite loop.
The string is not valid UTF16 which usually results in it being sanitized before reaching the parser.
If an application processes untrusted input and passes it directly to acorn,
attackers may leverage the vulnerability leading to Denial of Service.
The solution is to upgrade the Blocks SDK to use a newer version of acorn.
Jun 30, 2020 07:03 PM
I’m currently on 0.0.53 btw
Jul 20, 2020 09:35 AM
If an application processes untrusted input and passes it directly to acorn,
This does not apply to applications built on the Airtable Block platform.