scan-compromised 1.0.18 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,9 +30,16 @@ scan-compromised
30
30
  ```bash
31
31
  scan-compromised --json
32
32
  ```
33
- ## 📁 Threat List
33
+
34
+ ## 📁 Threat List & Data Updates
34
35
  The tool uses a local `threats.json` file located in the root of the CLI package. This file contains a list of known compromised packages and their malicious versions.
35
36
 
37
+ **Data Source:**
38
+
39
+ - The list of known vulnerabilities is automatically pulled from GitHub Security Advisories every day.
40
+ - This ensures the scan is always up to date with the latest reported threats in the npm ecosystem.
41
+
42
+
36
43
  Example `threats.json`
37
44
  ```json
38
45
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scan-compromised",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "A simple npm CLI tool (starter template)",
5
5
  "main": "scripts/index.js",
6
6
  "type": "module",