cognium-dev 3.200.0 → 3.201.0

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/dist/cli.js +5 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -24488,6 +24488,10 @@ var JS_TAINTED_PATTERNS = [
24488
24488
  { pattern: /\blocation\.href\b/, type: "http_path" },
24489
24489
  { pattern: /\bdocument\.getElementById\b/, type: "dom_input" },
24490
24490
  { pattern: /\bdocument\.querySelector\b/, type: "dom_input" },
24491
+ { pattern: /\bdocument\.getElementsByName\b/, type: "dom_input" },
24492
+ { pattern: /\bdocument\.getElementsByClassName\b/, type: "dom_input" },
24493
+ { pattern: /\bdocument\.getElementsByTagName\b/, type: "dom_input" },
24494
+ { pattern: /\bdocument\.querySelectorAll\b/, type: "dom_input" },
24491
24495
  { pattern: /\b(?:event|e)\.(?:target\.)?value\b/, type: "dom_input" },
24492
24496
  { pattern: /\bdocument\.referrer\b/, type: "http_header" },
24493
24497
  { pattern: /\bdocument\.cookie\b/, type: "http_cookie" },
@@ -46511,7 +46515,7 @@ var colors = {
46511
46515
  };
46512
46516
 
46513
46517
  // src/version.ts
46514
- var version = "3.200.0";
46518
+ var version = "3.201.0";
46515
46519
 
46516
46520
  // src/formatters.ts
46517
46521
  var LIBRARY_API_SURFACE_TAG2 = "library-api-surface:caller-responsibility";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cognium-dev",
3
- "version": "3.200.0",
3
+ "version": "3.201.0",
4
4
  "description": "Static Application Security Testing CLI for detecting security vulnerabilities via taint tracking",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -66,7 +66,7 @@
66
66
  },
67
67
  "dependencies": {
68
68
  "@cognium/project-profile-detect": "^1.1.0",
69
- "circle-ir": "^3.200.0"
69
+ "circle-ir": "^3.201.0"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@types/node": "^25.5.0",