cognium-dev 3.187.0 → 3.188.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 +9 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -10614,6 +10614,14 @@ var DEFAULT_SOURCES = [
10614
10614
  { annotation: "Cookie", type: "http_cookie", severity: "high", param_tainted: true },
10615
10615
  { annotation: "Form", type: "http_param", severity: "high", param_tainted: true },
10616
10616
  { annotation: "File", type: "file_input", severity: "high", param_tainted: true },
10617
+ { annotation: "Param", type: "http_path", severity: "high", param_tainted: true },
10618
+ { annotation: "Req", type: "http_body", severity: "high", param_tainted: true },
10619
+ { annotation: "Request", type: "http_body", severity: "high", param_tainted: true },
10620
+ { annotation: "Session", type: "http_cookie", severity: "high", param_tainted: true },
10621
+ { annotation: "Ip", type: "network_input", severity: "high", param_tainted: true },
10622
+ { annotation: "HostParam", type: "http_path", severity: "high", param_tainted: true },
10623
+ { annotation: "UploadedFile", type: "file_input", severity: "high", param_tainted: true },
10624
+ { annotation: "UploadedFiles", type: "file_input", severity: "high", param_tainted: true },
10617
10625
  { method: "json", class: "Request", type: "http_body", severity: "high", return_tainted: true },
10618
10626
  { method: "form", class: "Request", type: "http_param", severity: "high", return_tainted: true },
10619
10627
  { method: "body", class: "Request", type: "http_body", severity: "high", return_tainted: true },
@@ -45892,7 +45900,7 @@ var colors = {
45892
45900
  };
45893
45901
 
45894
45902
  // src/version.ts
45895
- var version = "3.187.0";
45903
+ var version = "3.188.0";
45896
45904
 
45897
45905
  // src/formatters.ts
45898
45906
  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.187.0",
3
+ "version": "3.188.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.187.0"
69
+ "circle-ir": "^3.188.0"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@types/node": "^25.5.0",