Vulnerabilities |
2 via 3 paths |
|---|---|
Dependencies |
450 |
Source |
GitHub |
Find, fix and prevent vulnerabilities in your code.
medium severity
- Vulnerable module: elliptic
- Introduced through: crypto-browserify@3.12.1
Detailed paths
-
Introduced through: jammusic@WebJamApps/JaMmusic › crypto-browserify@3.12.1 › browserify-sign@4.2.5 › elliptic@6.6.1
-
Introduced through: jammusic@WebJamApps/JaMmusic › crypto-browserify@3.12.1 › create-ecdh@4.0.4 › elliptic@6.6.1
Overview
elliptic is a fast elliptic-curve cryptography implementation in plain javascript.
Affected versions of this package are vulnerable to Use of a Cryptographic Primitive with a Risky Implementation due to the incorrect computation of the byte-length of k value with leading zeros resulting in its truncation. An attacker can obtain the secret key by analyzing both a faulty signature generated by a vulnerable implementation and a correct signature for the same inputs.
Note:
There is a distinct but related issue CVE-2024-48948.
Remediation
There is no fixed version for elliptic.
References
medium severity
new
- Vulnerable module: uuid
- Introduced through: socketcluster-client@20.0.1
Detailed paths
-
Introduced through: jammusic@WebJamApps/JaMmusic › socketcluster-client@20.0.1 › uuid@8.3.2
Overview
uuid is a RFC4122 (v1, v4, and v5) compliant UUID library.
Affected versions of this package are vulnerable to Improper Validation of Specified Index, Position, or Offset in Input due to accepting external output buffers but not rejecting out-of-range writes (small buf or large offset). This inconsistency allows silent partial writes into caller-provided buffers.
PoC
cd /home/StrawHat/uuid
npm ci
npm run build
node --input-type=module -e "
import {v4,v5,v6} from './dist-node/index.js';
const ns='6ba7b810-9dad-11d1-80b4-00c04fd430c8';
for (const [name,fn] of [
['v4',()=>v4({},new Uint8Array(8),4)],
['v5',()=>v5('x',ns,new Uint8Array(8),4)],
['v6',()=>v6({},new Uint8Array(8),4)],
]) {
try { fn(); console.log(name,'NO_THROW'); }
catch(e){ console.log(name,'THREW',e.name); }
}"
Remediation
Upgrade uuid to version 11.1.1, 14.0.0 or higher.
References
medium severity
new
- Module: lightningcss
- Introduced through: vite@8.0.11
Detailed paths
-
Introduced through: jammusic@WebJamApps/JaMmusic › vite@8.0.11 › lightningcss@1.32.0
MPL-2.0 license