muaddib-scanner 2.11.28 → 2.11.29
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.
- package/package.json +6 -7
- package/self-scan-v2.11.29.json +1423 -0
- package/src/scanner/typosquat.js +10 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "muaddib-scanner",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.29",
|
|
4
4
|
"description": "Supply-chain threat detection & response for npm & PyPI/Python",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"scan": "node bin/muaddib.js scan .",
|
|
15
15
|
"update": "node bin/muaddib.js update",
|
|
16
16
|
"lint": "eslint src bin --ext .js",
|
|
17
|
-
"compress-iocs": "node -e \"const fs=require('fs');const zlib=require('zlib');zlib.gzip(fs.readFileSync('src/ioc/data/iocs.json'),(e,b)=>{if(e)throw e;fs.writeFileSync('iocs.json.gz',b);console.log('Compressed: '+b.length+' bytes')})\""
|
|
17
|
+
"compress-iocs": "node -e \"const fs=require('fs');const zlib=require('zlib');zlib.gzip(fs.readFileSync('src/ioc/data/iocs.json'),(e,b)=>{if(e)throw e;fs.writeFileSync('iocs.json.gz',b);console.log('Compressed: '+b.length+' bytes')})\"",
|
|
18
|
+
"prepublishOnly": "node -e \"if(!process.env.CI){console.error('ERR: Publish via CI workflow (tag v* push). Local publishes are disabled.');process.exit(1)}\""
|
|
18
19
|
},
|
|
19
20
|
"keywords": [
|
|
20
21
|
"security",
|
|
@@ -50,14 +51,12 @@
|
|
|
50
51
|
"acorn": "8.16.0",
|
|
51
52
|
"acorn-walk": "8.3.5",
|
|
52
53
|
"adm-zip": "0.5.17",
|
|
53
|
-
"js-yaml": "4.1.1"
|
|
54
|
-
|
|
55
|
-
"overrides": {
|
|
56
|
-
"loadash": "0.0.0-security"
|
|
54
|
+
"js-yaml": "4.1.1",
|
|
55
|
+
"loadash": "^1.0.0"
|
|
57
56
|
},
|
|
58
57
|
"devDependencies": {
|
|
59
58
|
"@eslint/js": "10.0.1",
|
|
60
|
-
"eslint": "10.
|
|
59
|
+
"eslint": "10.4.0",
|
|
61
60
|
"eslint-plugin-security": "^4.0.0",
|
|
62
61
|
"globals": "17.6.0"
|
|
63
62
|
}
|