Skip to content

Cache Poisoning Vulnerability

Moderate severity GitHub Reviewed Published Mar 22, 2024 in franciscop/translate • Updated Mar 22, 2024

Package

npm translate (npm)

Affected versions

< 3.0.0

Patched versions

3.0.0

Description

Summary

An attacker controlling the second variable of the translate function is able to perform a cache poisoning attack. They can change the outcome of translation requests made by subsequent users.

Details

The opt.id parameter allows the overwriting of the cache key. If an attacker sets the id variable to the cache key that would be generated by another user, they can choose the response that user gets served.

PoC

Take the following simple server allowing users to supply text and the language to translate to.

import translate from "translate";
import express from 'express';

const app = express();
app.use(express.json());

app.post('/translate', async (req, res) => {
  const { text, language } = req.body;
  const result = await translate(text, language);
  return res.json(result);
});

const port = 3000;
app.listen(port, () => {
  console.log(`Server is running on port ${port}`);
});

We can send the following request to poison the cache:

{"text":"I hate you", "language":{"to":"nl","id":"undefined:en:nl:google:I love you"}}

Poisoning the cache

Now, any user that attempts to translate "I love you" to Dutch, will get "I hate you" in Dutch as the response.
The victim gets our poisoned data

Impact

An attacker can control the results other users may get

References

@franciscop franciscop published to franciscop/translate Mar 22, 2024
Published to the GitHub Advisory Database Mar 22, 2024
Reviewed Mar 22, 2024
Published by the National Vulnerability Database Mar 22, 2024
Last updated Mar 22, 2024

Severity

Moderate
5.3
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
Low
Availability
None
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N

Weaknesses

CVE ID

CVE-2024-29042

GHSA ID

GHSA-882j-4vj5-7vmj

Source code

Credits

Checking history
See something to contribute? Suggest improvements for this vulnerability.