muaddib-scanner 2.11.173 → 2.11.176
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/README.md +2 -2
- package/audit-data/all-review-results.json +54543 -0
- package/package.json +4 -3
- package/{self-scan-v2.11.173.json → self-scan-v2.11.176.json} +1 -1
- package/src/commands/hooks-init.js +30 -17
- package/src/commands/safe-install.js +25 -14
- package/src/ioc/bootstrap.js +20 -0
- package/src/ioc/scraper.js +29 -11
- package/src/ml/llm-detective.js +4 -1
- package/src/monitor/queue.js +94 -37
- package/src/monitor/webhook.js +21 -10
- package/src/pipeline/executor.js +45 -41
- package/src/runtime/serve.js +32 -4
- package/src/scanner/ai-config.js +4 -0
- package/src/scanner/anti-scanner-injection.js +4 -0
- package/src/scanner/ast-detectors/helpers.js +3 -19
- package/src/scanner/ast.js +1 -6
- package/src/scanner/dependencies.js +5 -0
- package/src/scanner/entropy.js +13 -25
- package/src/scanner/paranoid.js +4 -0
- package/src/scanner/python.js +18 -7
- package/src/scoring/delta-multiplier.js +4 -1
- package/src/shared/entropy.js +45 -0
- package/src/shared/registry-auth.js +5 -2
- package/src/utils.js +15 -1
- package/stats.json +2 -2
package/README.md
CHANGED
|
@@ -214,7 +214,7 @@ muaddib replay # Ground truth validation (90/94 TPR@3, v2.11
|
|
|
214
214
|
|
|
215
215
|
### <!--stat:rulesTotal-->277<!--/stat:rulesTotal--> detection rules
|
|
216
216
|
|
|
217
|
-
All rules (<!--stat:rulesCore-->272<!--/stat:rulesCore--> RULES + <!--stat:rulesParanoid-->5<!--/stat:rulesParanoid--> PARANOID) are mapped to MITRE ATT&CK techniques. See [SECURITY.md](SECURITY.md#detection-rules
|
|
217
|
+
All rules (<!--stat:rulesCore-->272<!--/stat:rulesCore--> RULES + <!--stat:rulesParanoid-->5<!--/stat:rulesParanoid--> PARANOID) are mapped to MITRE ATT&CK techniques. See [SECURITY.md](SECURITY.md#detection-rules) for the complete rules reference.
|
|
218
218
|
|
|
219
219
|
### Detected campaigns
|
|
220
220
|
|
|
@@ -345,7 +345,7 @@ npm test
|
|
|
345
345
|
|
|
346
346
|
### Testing
|
|
347
347
|
|
|
348
|
-
- **<!--stat:tests-->
|
|
348
|
+
- **<!--stat:tests-->4534<!--/stat:tests--> tests** across <!--stat:testFiles-->152<!--/stat:testFiles--> modular test files
|
|
349
349
|
- **56 fuzz tests** - Malformed inputs, ReDoS, unicode, binary
|
|
350
350
|
- **Datadog 17K benchmark** - 14,587 confirmed malware samples (in-scope)
|
|
351
351
|
- **Ground truth validation** - 96 real-world attacks (95.74% TPR@3, 88.30% TPR@20 — v2.11.48 full measure on 94 in-scope)
|