@oculum/scanner 1.0.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 (281) hide show
  1. package/dist/formatters/cli-terminal.d.ts +27 -0
  2. package/dist/formatters/cli-terminal.d.ts.map +1 -0
  3. package/dist/formatters/cli-terminal.js +412 -0
  4. package/dist/formatters/cli-terminal.js.map +1 -0
  5. package/dist/formatters/github-comment.d.ts +41 -0
  6. package/dist/formatters/github-comment.d.ts.map +1 -0
  7. package/dist/formatters/github-comment.js +306 -0
  8. package/dist/formatters/github-comment.js.map +1 -0
  9. package/dist/formatters/grouping.d.ts +52 -0
  10. package/dist/formatters/grouping.d.ts.map +1 -0
  11. package/dist/formatters/grouping.js +152 -0
  12. package/dist/formatters/grouping.js.map +1 -0
  13. package/dist/formatters/index.d.ts +9 -0
  14. package/dist/formatters/index.d.ts.map +1 -0
  15. package/dist/formatters/index.js +35 -0
  16. package/dist/formatters/index.js.map +1 -0
  17. package/dist/formatters/vscode-diagnostic.d.ts +103 -0
  18. package/dist/formatters/vscode-diagnostic.d.ts.map +1 -0
  19. package/dist/formatters/vscode-diagnostic.js +151 -0
  20. package/dist/formatters/vscode-diagnostic.js.map +1 -0
  21. package/dist/index.d.ts +52 -0
  22. package/dist/index.d.ts.map +1 -0
  23. package/dist/index.js +648 -0
  24. package/dist/index.js.map +1 -0
  25. package/dist/layer1/comments.d.ts +8 -0
  26. package/dist/layer1/comments.d.ts.map +1 -0
  27. package/dist/layer1/comments.js +203 -0
  28. package/dist/layer1/comments.js.map +1 -0
  29. package/dist/layer1/config-audit.d.ts +8 -0
  30. package/dist/layer1/config-audit.d.ts.map +1 -0
  31. package/dist/layer1/config-audit.js +252 -0
  32. package/dist/layer1/config-audit.js.map +1 -0
  33. package/dist/layer1/entropy.d.ts +8 -0
  34. package/dist/layer1/entropy.d.ts.map +1 -0
  35. package/dist/layer1/entropy.js +500 -0
  36. package/dist/layer1/entropy.js.map +1 -0
  37. package/dist/layer1/file-flags.d.ts +7 -0
  38. package/dist/layer1/file-flags.d.ts.map +1 -0
  39. package/dist/layer1/file-flags.js +112 -0
  40. package/dist/layer1/file-flags.js.map +1 -0
  41. package/dist/layer1/index.d.ts +36 -0
  42. package/dist/layer1/index.d.ts.map +1 -0
  43. package/dist/layer1/index.js +132 -0
  44. package/dist/layer1/index.js.map +1 -0
  45. package/dist/layer1/patterns.d.ts +8 -0
  46. package/dist/layer1/patterns.d.ts.map +1 -0
  47. package/dist/layer1/patterns.js +482 -0
  48. package/dist/layer1/patterns.js.map +1 -0
  49. package/dist/layer1/urls.d.ts +8 -0
  50. package/dist/layer1/urls.d.ts.map +1 -0
  51. package/dist/layer1/urls.js +296 -0
  52. package/dist/layer1/urls.js.map +1 -0
  53. package/dist/layer1/weak-crypto.d.ts +7 -0
  54. package/dist/layer1/weak-crypto.d.ts.map +1 -0
  55. package/dist/layer1/weak-crypto.js +291 -0
  56. package/dist/layer1/weak-crypto.js.map +1 -0
  57. package/dist/layer2/ai-agent-tools.d.ts +19 -0
  58. package/dist/layer2/ai-agent-tools.d.ts.map +1 -0
  59. package/dist/layer2/ai-agent-tools.js +528 -0
  60. package/dist/layer2/ai-agent-tools.js.map +1 -0
  61. package/dist/layer2/ai-endpoint-protection.d.ts +36 -0
  62. package/dist/layer2/ai-endpoint-protection.d.ts.map +1 -0
  63. package/dist/layer2/ai-endpoint-protection.js +332 -0
  64. package/dist/layer2/ai-endpoint-protection.js.map +1 -0
  65. package/dist/layer2/ai-execution-sinks.d.ts +18 -0
  66. package/dist/layer2/ai-execution-sinks.d.ts.map +1 -0
  67. package/dist/layer2/ai-execution-sinks.js +496 -0
  68. package/dist/layer2/ai-execution-sinks.js.map +1 -0
  69. package/dist/layer2/ai-fingerprinting.d.ts +7 -0
  70. package/dist/layer2/ai-fingerprinting.d.ts.map +1 -0
  71. package/dist/layer2/ai-fingerprinting.js +654 -0
  72. package/dist/layer2/ai-fingerprinting.js.map +1 -0
  73. package/dist/layer2/ai-prompt-hygiene.d.ts +19 -0
  74. package/dist/layer2/ai-prompt-hygiene.d.ts.map +1 -0
  75. package/dist/layer2/ai-prompt-hygiene.js +356 -0
  76. package/dist/layer2/ai-prompt-hygiene.js.map +1 -0
  77. package/dist/layer2/ai-rag-safety.d.ts +21 -0
  78. package/dist/layer2/ai-rag-safety.d.ts.map +1 -0
  79. package/dist/layer2/ai-rag-safety.js +459 -0
  80. package/dist/layer2/ai-rag-safety.js.map +1 -0
  81. package/dist/layer2/ai-schema-validation.d.ts +25 -0
  82. package/dist/layer2/ai-schema-validation.d.ts.map +1 -0
  83. package/dist/layer2/ai-schema-validation.js +375 -0
  84. package/dist/layer2/ai-schema-validation.js.map +1 -0
  85. package/dist/layer2/auth-antipatterns.d.ts +20 -0
  86. package/dist/layer2/auth-antipatterns.d.ts.map +1 -0
  87. package/dist/layer2/auth-antipatterns.js +333 -0
  88. package/dist/layer2/auth-antipatterns.js.map +1 -0
  89. package/dist/layer2/byok-patterns.d.ts +12 -0
  90. package/dist/layer2/byok-patterns.d.ts.map +1 -0
  91. package/dist/layer2/byok-patterns.js +299 -0
  92. package/dist/layer2/byok-patterns.js.map +1 -0
  93. package/dist/layer2/dangerous-functions.d.ts +7 -0
  94. package/dist/layer2/dangerous-functions.d.ts.map +1 -0
  95. package/dist/layer2/dangerous-functions.js +1375 -0
  96. package/dist/layer2/dangerous-functions.js.map +1 -0
  97. package/dist/layer2/data-exposure.d.ts +16 -0
  98. package/dist/layer2/data-exposure.d.ts.map +1 -0
  99. package/dist/layer2/data-exposure.js +279 -0
  100. package/dist/layer2/data-exposure.js.map +1 -0
  101. package/dist/layer2/framework-checks.d.ts +7 -0
  102. package/dist/layer2/framework-checks.d.ts.map +1 -0
  103. package/dist/layer2/framework-checks.js +388 -0
  104. package/dist/layer2/framework-checks.js.map +1 -0
  105. package/dist/layer2/index.d.ts +58 -0
  106. package/dist/layer2/index.d.ts.map +1 -0
  107. package/dist/layer2/index.js +380 -0
  108. package/dist/layer2/index.js.map +1 -0
  109. package/dist/layer2/logic-gates.d.ts +7 -0
  110. package/dist/layer2/logic-gates.d.ts.map +1 -0
  111. package/dist/layer2/logic-gates.js +182 -0
  112. package/dist/layer2/logic-gates.js.map +1 -0
  113. package/dist/layer2/risky-imports.d.ts +7 -0
  114. package/dist/layer2/risky-imports.d.ts.map +1 -0
  115. package/dist/layer2/risky-imports.js +161 -0
  116. package/dist/layer2/risky-imports.js.map +1 -0
  117. package/dist/layer2/variables.d.ts +8 -0
  118. package/dist/layer2/variables.d.ts.map +1 -0
  119. package/dist/layer2/variables.js +152 -0
  120. package/dist/layer2/variables.js.map +1 -0
  121. package/dist/layer3/anthropic.d.ts +83 -0
  122. package/dist/layer3/anthropic.d.ts.map +1 -0
  123. package/dist/layer3/anthropic.js +1745 -0
  124. package/dist/layer3/anthropic.js.map +1 -0
  125. package/dist/layer3/index.d.ts +24 -0
  126. package/dist/layer3/index.d.ts.map +1 -0
  127. package/dist/layer3/index.js +119 -0
  128. package/dist/layer3/index.js.map +1 -0
  129. package/dist/layer3/openai.d.ts +25 -0
  130. package/dist/layer3/openai.d.ts.map +1 -0
  131. package/dist/layer3/openai.js +238 -0
  132. package/dist/layer3/openai.js.map +1 -0
  133. package/dist/layer3/package-check.d.ts +63 -0
  134. package/dist/layer3/package-check.d.ts.map +1 -0
  135. package/dist/layer3/package-check.js +508 -0
  136. package/dist/layer3/package-check.js.map +1 -0
  137. package/dist/modes/incremental.d.ts +66 -0
  138. package/dist/modes/incremental.d.ts.map +1 -0
  139. package/dist/modes/incremental.js +200 -0
  140. package/dist/modes/incremental.js.map +1 -0
  141. package/dist/tiers.d.ts +125 -0
  142. package/dist/tiers.d.ts.map +1 -0
  143. package/dist/tiers.js +234 -0
  144. package/dist/tiers.js.map +1 -0
  145. package/dist/types.d.ts +175 -0
  146. package/dist/types.d.ts.map +1 -0
  147. package/dist/types.js +50 -0
  148. package/dist/types.js.map +1 -0
  149. package/dist/utils/auth-helper-detector.d.ts +56 -0
  150. package/dist/utils/auth-helper-detector.d.ts.map +1 -0
  151. package/dist/utils/auth-helper-detector.js +360 -0
  152. package/dist/utils/auth-helper-detector.js.map +1 -0
  153. package/dist/utils/context-helpers.d.ts +96 -0
  154. package/dist/utils/context-helpers.d.ts.map +1 -0
  155. package/dist/utils/context-helpers.js +493 -0
  156. package/dist/utils/context-helpers.js.map +1 -0
  157. package/dist/utils/diff-detector.d.ts +53 -0
  158. package/dist/utils/diff-detector.d.ts.map +1 -0
  159. package/dist/utils/diff-detector.js +104 -0
  160. package/dist/utils/diff-detector.js.map +1 -0
  161. package/dist/utils/diff-parser.d.ts +80 -0
  162. package/dist/utils/diff-parser.d.ts.map +1 -0
  163. package/dist/utils/diff-parser.js +202 -0
  164. package/dist/utils/diff-parser.js.map +1 -0
  165. package/dist/utils/imported-auth-detector.d.ts +37 -0
  166. package/dist/utils/imported-auth-detector.d.ts.map +1 -0
  167. package/dist/utils/imported-auth-detector.js +251 -0
  168. package/dist/utils/imported-auth-detector.js.map +1 -0
  169. package/dist/utils/middleware-detector.d.ts +55 -0
  170. package/dist/utils/middleware-detector.d.ts.map +1 -0
  171. package/dist/utils/middleware-detector.js +260 -0
  172. package/dist/utils/middleware-detector.js.map +1 -0
  173. package/dist/utils/oauth-flow-detector.d.ts +41 -0
  174. package/dist/utils/oauth-flow-detector.d.ts.map +1 -0
  175. package/dist/utils/oauth-flow-detector.js +202 -0
  176. package/dist/utils/oauth-flow-detector.js.map +1 -0
  177. package/dist/utils/path-exclusions.d.ts +55 -0
  178. package/dist/utils/path-exclusions.d.ts.map +1 -0
  179. package/dist/utils/path-exclusions.js +222 -0
  180. package/dist/utils/path-exclusions.js.map +1 -0
  181. package/dist/utils/project-context-builder.d.ts +119 -0
  182. package/dist/utils/project-context-builder.d.ts.map +1 -0
  183. package/dist/utils/project-context-builder.js +534 -0
  184. package/dist/utils/project-context-builder.js.map +1 -0
  185. package/dist/utils/registry-clients.d.ts +93 -0
  186. package/dist/utils/registry-clients.d.ts.map +1 -0
  187. package/dist/utils/registry-clients.js +273 -0
  188. package/dist/utils/registry-clients.js.map +1 -0
  189. package/dist/utils/trpc-analyzer.d.ts +78 -0
  190. package/dist/utils/trpc-analyzer.d.ts.map +1 -0
  191. package/dist/utils/trpc-analyzer.js +297 -0
  192. package/dist/utils/trpc-analyzer.js.map +1 -0
  193. package/package.json +45 -0
  194. package/src/__tests__/benchmark/fixtures/false-positives.ts +227 -0
  195. package/src/__tests__/benchmark/fixtures/index.ts +68 -0
  196. package/src/__tests__/benchmark/fixtures/layer1/config-audit.ts +364 -0
  197. package/src/__tests__/benchmark/fixtures/layer1/hardcoded-secrets.ts +173 -0
  198. package/src/__tests__/benchmark/fixtures/layer1/high-entropy.ts +234 -0
  199. package/src/__tests__/benchmark/fixtures/layer1/index.ts +31 -0
  200. package/src/__tests__/benchmark/fixtures/layer1/sensitive-urls.ts +90 -0
  201. package/src/__tests__/benchmark/fixtures/layer1/weak-crypto.ts +197 -0
  202. package/src/__tests__/benchmark/fixtures/layer2/ai-agent-tools.ts +170 -0
  203. package/src/__tests__/benchmark/fixtures/layer2/ai-endpoint-protection.ts +418 -0
  204. package/src/__tests__/benchmark/fixtures/layer2/ai-execution-sinks.ts +189 -0
  205. package/src/__tests__/benchmark/fixtures/layer2/ai-fingerprinting.ts +316 -0
  206. package/src/__tests__/benchmark/fixtures/layer2/ai-prompt-hygiene.ts +178 -0
  207. package/src/__tests__/benchmark/fixtures/layer2/ai-rag-safety.ts +184 -0
  208. package/src/__tests__/benchmark/fixtures/layer2/ai-schema-validation.ts +434 -0
  209. package/src/__tests__/benchmark/fixtures/layer2/auth-antipatterns.ts +159 -0
  210. package/src/__tests__/benchmark/fixtures/layer2/byok-patterns.ts +112 -0
  211. package/src/__tests__/benchmark/fixtures/layer2/dangerous-functions.ts +246 -0
  212. package/src/__tests__/benchmark/fixtures/layer2/data-exposure.ts +168 -0
  213. package/src/__tests__/benchmark/fixtures/layer2/framework-checks.ts +346 -0
  214. package/src/__tests__/benchmark/fixtures/layer2/index.ts +67 -0
  215. package/src/__tests__/benchmark/fixtures/layer2/injection-vulnerabilities.ts +239 -0
  216. package/src/__tests__/benchmark/fixtures/layer2/logic-gates.ts +246 -0
  217. package/src/__tests__/benchmark/fixtures/layer2/risky-imports.ts +231 -0
  218. package/src/__tests__/benchmark/fixtures/layer2/variables.ts +167 -0
  219. package/src/__tests__/benchmark/index.ts +29 -0
  220. package/src/__tests__/benchmark/run-benchmark.ts +144 -0
  221. package/src/__tests__/benchmark/run-depth-validation.ts +206 -0
  222. package/src/__tests__/benchmark/run-real-world-test.ts +243 -0
  223. package/src/__tests__/benchmark/security-benchmark-script.ts +1737 -0
  224. package/src/__tests__/benchmark/tier-integration-script.ts +177 -0
  225. package/src/__tests__/benchmark/types.ts +144 -0
  226. package/src/__tests__/benchmark/utils/test-runner.ts +475 -0
  227. package/src/__tests__/regression/known-false-positives.test.ts +467 -0
  228. package/src/__tests__/snapshots/__snapshots__/scan-depth.test.ts.snap +178 -0
  229. package/src/__tests__/snapshots/scan-depth.test.ts +258 -0
  230. package/src/__tests__/validation/analyze-results.ts +542 -0
  231. package/src/__tests__/validation/extract-for-triage.ts +146 -0
  232. package/src/__tests__/validation/fp-deep-analysis.ts +327 -0
  233. package/src/__tests__/validation/run-validation.ts +364 -0
  234. package/src/__tests__/validation/triage-template.md +132 -0
  235. package/src/formatters/cli-terminal.ts +446 -0
  236. package/src/formatters/github-comment.ts +382 -0
  237. package/src/formatters/grouping.ts +190 -0
  238. package/src/formatters/index.ts +47 -0
  239. package/src/formatters/vscode-diagnostic.ts +243 -0
  240. package/src/index.ts +823 -0
  241. package/src/layer1/comments.ts +218 -0
  242. package/src/layer1/config-audit.ts +289 -0
  243. package/src/layer1/entropy.ts +583 -0
  244. package/src/layer1/file-flags.ts +127 -0
  245. package/src/layer1/index.ts +181 -0
  246. package/src/layer1/patterns.ts +516 -0
  247. package/src/layer1/urls.ts +334 -0
  248. package/src/layer1/weak-crypto.ts +328 -0
  249. package/src/layer2/ai-agent-tools.ts +601 -0
  250. package/src/layer2/ai-endpoint-protection.ts +387 -0
  251. package/src/layer2/ai-execution-sinks.ts +580 -0
  252. package/src/layer2/ai-fingerprinting.ts +758 -0
  253. package/src/layer2/ai-prompt-hygiene.ts +411 -0
  254. package/src/layer2/ai-rag-safety.ts +511 -0
  255. package/src/layer2/ai-schema-validation.ts +421 -0
  256. package/src/layer2/auth-antipatterns.ts +394 -0
  257. package/src/layer2/byok-patterns.ts +336 -0
  258. package/src/layer2/dangerous-functions.ts +1563 -0
  259. package/src/layer2/data-exposure.ts +315 -0
  260. package/src/layer2/framework-checks.ts +433 -0
  261. package/src/layer2/index.ts +473 -0
  262. package/src/layer2/logic-gates.ts +206 -0
  263. package/src/layer2/risky-imports.ts +186 -0
  264. package/src/layer2/variables.ts +166 -0
  265. package/src/layer3/anthropic.ts +2030 -0
  266. package/src/layer3/index.ts +130 -0
  267. package/src/layer3/package-check.ts +604 -0
  268. package/src/modes/incremental.ts +293 -0
  269. package/src/tiers.ts +318 -0
  270. package/src/types.ts +284 -0
  271. package/src/utils/auth-helper-detector.ts +443 -0
  272. package/src/utils/context-helpers.ts +535 -0
  273. package/src/utils/diff-detector.ts +135 -0
  274. package/src/utils/diff-parser.ts +272 -0
  275. package/src/utils/imported-auth-detector.ts +320 -0
  276. package/src/utils/middleware-detector.ts +333 -0
  277. package/src/utils/oauth-flow-detector.ts +246 -0
  278. package/src/utils/path-exclusions.ts +266 -0
  279. package/src/utils/project-context-builder.ts +707 -0
  280. package/src/utils/registry-clients.ts +351 -0
  281. package/src/utils/trpc-analyzer.ts +382 -0
@@ -0,0 +1,496 @@
1
+ "use strict";
2
+ /**
3
+ * Layer 2: AI Execution Sink Detection
4
+ * Detects patterns where LLM output is fed into dangerous execution sinks
5
+ *
6
+ * Covers B2: Unsafe execution of model output (LLM02)
7
+ *
8
+ * Sinks include:
9
+ * - Code execution: eval(), Function(), vm.runInContext()
10
+ * - Shell execution: exec(), spawn(), child_process
11
+ * - SQL builders: .query(), .execute(), .raw()
12
+ * - Template rendering: innerHTML, dangerouslySetInnerHTML
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.detectAIExecutionSinks = detectAIExecutionSinks;
16
+ const context_helpers_1 = require("../utils/context-helpers");
17
+ const ai_prompt_hygiene_1 = require("./ai-prompt-hygiene");
18
+ // ============================================================================
19
+ // LLM Output Variable Detection
20
+ // ============================================================================
21
+ /**
22
+ * Check if line contains LLM API response context
23
+ */
24
+ function hasLLMResponseContext(lineContent, surroundingContext) {
25
+ const llmResponsePatterns = [
26
+ /\.choices\[0\]\.message\.content/i, // OpenAI response
27
+ /\.content\[0\]\.text/i, // Anthropic response
28
+ /completion\.text/i, // Generic completion
29
+ /\.data\.choices/i, // API response
30
+ /await\s+\w+\.(?:chat|messages|completions)\.create/i, // API call
31
+ /response\.text\s*\(/i, // Response text method
32
+ ];
33
+ const fullContext = lineContent + '\n' + surroundingContext;
34
+ return llmResponsePatterns.some(p => p.test(fullContext));
35
+ }
36
+ // ============================================================================
37
+ // UI Suggestion / Template Pattern Detection (False Positive Filters)
38
+ // ============================================================================
39
+ /**
40
+ * Check if this is a UI suggestion/template pattern rather than execution sink
41
+ * These patterns create display strings for command palettes, autocomplete, etc.
42
+ */
43
+ function isUITemplateSuggestion(lineContent, surroundingContext) {
44
+ const fullContext = lineContent + '\n' + surroundingContext;
45
+ // UI suggestion object patterns (command palette, autocomplete suggestions)
46
+ const uiSuggestionPatterns = [
47
+ // Object property patterns for suggestion items
48
+ /(?:id|key|label|title|name|description|completion|display|text|value|placeholder):\s*`[^`]*\$\{/i,
49
+ // Common suggestion UI patterns
50
+ /suggestions?\s*[=:]/i,
51
+ /completions?\s*[=:]/i,
52
+ /autocomplete/i,
53
+ /command\s*palette/i,
54
+ /fuzzy\s*search/i,
55
+ /search\s*result/i,
56
+ // UI component context patterns
57
+ /\.map\s*\(\s*\(?(?:item|result|suggestion|node|entry)/i,
58
+ /\.filter\s*\(/i,
59
+ // React/UI state patterns
60
+ /useState|setItems|setResults|setSuggestions/i,
61
+ // Template ID generation for UI
62
+ /id:\s*`[a-z]+-\$\{/i, // id: `delete-${...}`, id: `edit-${...}`
63
+ ];
64
+ // These patterns should NOT be considered UI suggestions
65
+ const notUISuggestionPatterns = [
66
+ /\.query\s*\(/i,
67
+ /\.execute\s*\(/i,
68
+ /\.raw\s*\(/i,
69
+ /await\s+db\./i,
70
+ /prisma\./i,
71
+ /supabase\./i,
72
+ /knex\./i,
73
+ /sequelize\./i,
74
+ /child_process/i,
75
+ /exec\s*\(/i,
76
+ /spawn\s*\(/i,
77
+ /eval\s*\(/i,
78
+ ];
79
+ // Check if context matches UI pattern but NOT execution pattern
80
+ const matchesUIPattern = uiSuggestionPatterns.some(p => p.test(fullContext));
81
+ const matchesExecutionPattern = notUISuggestionPatterns.some(p => p.test(lineContent));
82
+ return matchesUIPattern && !matchesExecutionPattern;
83
+ }
84
+ /**
85
+ * Check if this is a static template string (no actual LLM output interpolation)
86
+ * e.g., `delete ${node.title}` where node is app data, not LLM output
87
+ */
88
+ function isAppDataInterpolation(lineContent, surroundingContext) {
89
+ const fullContext = lineContent + '\n' + surroundingContext;
90
+ // Patterns indicating the interpolated variable is app data, not LLM output
91
+ const appDataPatterns = [
92
+ // Database result/record properties
93
+ /\$\{(?:result|item|record|row|entry|node)\.(?:id|title|name|slug|key|label)\}/i,
94
+ // UI state properties
95
+ /\$\{(?:selected|current|active|item|node)\.(?:id|title|name|value)\}/i,
96
+ // Form/input data
97
+ /\$\{(?:data|values|form|input)\.(?:id|name|value)\}/i,
98
+ // Array iteration context
99
+ /\.map\s*\(\s*\(?(?:item|node|row|entry|result)/i,
100
+ /\.forEach\s*\(\s*\(?(?:item|node|row|entry|result)/i,
101
+ ];
102
+ // Patterns that suggest LLM output (should not skip)
103
+ const llmOutputPatterns = [
104
+ /\$\{(?:response|completion|generated|output|answer|reply|message)\.?/i,
105
+ /\$\{(?:ai|llm|gpt|claude|chat)(?:Response|Output|Result)/i,
106
+ /\.choices\[0\]/i,
107
+ /\.content\[0\]\.text/i,
108
+ ];
109
+ const isAppData = appDataPatterns.some(p => p.test(fullContext));
110
+ const isLLMOutput = llmOutputPatterns.some(p => p.test(fullContext));
111
+ return isAppData && !isLLMOutput;
112
+ }
113
+ // ============================================================================
114
+ // Sandbox and Validation Detection
115
+ // ============================================================================
116
+ /**
117
+ * Check if execution is sandboxed
118
+ */
119
+ function isSandboxedExecution(content, lineNumber) {
120
+ const lines = content.split('\n');
121
+ const contextStart = Math.max(0, lineNumber - 25);
122
+ const contextEnd = Math.min(lines.length, lineNumber + 10);
123
+ const context = lines.slice(contextStart, contextEnd).join('\n');
124
+ const sandboxPatterns = [
125
+ /vm2/i,
126
+ /isolated-vm/i,
127
+ /safeeval/i,
128
+ /safe-eval/i,
129
+ /sandbox/i,
130
+ /runInNewContext.*\{.*timeout/i,
131
+ /runInContext.*\{.*timeout/i,
132
+ /allowedGlobals/i,
133
+ /allowedModules/i,
134
+ /quickjs/i,
135
+ /webworker/i,
136
+ /iframe.*sandbox/i,
137
+ ];
138
+ return sandboxPatterns.some(p => p.test(context));
139
+ }
140
+ /**
141
+ * Check if output has validation before execution
142
+ */
143
+ function hasOutputValidation(content, lineNumber) {
144
+ const lines = content.split('\n');
145
+ const contextStart = Math.max(0, lineNumber - 15);
146
+ const contextEnd = Math.min(lines.length, lineNumber + 5);
147
+ const context = lines.slice(contextStart, contextEnd).join('\n');
148
+ const validationPatterns = [
149
+ /validate/i,
150
+ /sanitize/i,
151
+ /escape/i,
152
+ /filter/i,
153
+ /parse.*catch/i,
154
+ /schema\./i,
155
+ /\.parse\s*\(/i,
156
+ /allowlist/i,
157
+ /whitelist/i,
158
+ /blocklist/i,
159
+ /blacklist/i,
160
+ /JSON\.parse.*catch/i,
161
+ /DOMPurify/i,
162
+ /xss/i,
163
+ ];
164
+ return validationPatterns.some(p => p.test(context));
165
+ }
166
+ /**
167
+ * Check if this appears to be display-only usage (not execution)
168
+ */
169
+ function isDisplayOnly(lineContent, surroundingContext) {
170
+ const displayPatterns = [
171
+ /console\.(log|info|debug|warn)/i,
172
+ /textContent\s*=/i,
173
+ /innerText\s*=/i,
174
+ /\.text\s*=/i,
175
+ /setState.*display/i,
176
+ /render.*\{/i,
177
+ /<p>|<div>|<span>/i,
178
+ /\.send\s*\(/i,
179
+ /\.json\s*\(/i,
180
+ /return\s+.*response/i,
181
+ ];
182
+ const fullContext = lineContent + '\n' + surroundingContext;
183
+ return displayPatterns.some(p => p.test(fullContext));
184
+ }
185
+ const EXECUTION_SINK_PATTERNS = [
186
+ // ========== Code Execution Sinks ==========
187
+ {
188
+ name: 'LLM output to eval()',
189
+ pattern: /eval\s*\(\s*(?:response|result|output|completion|message|content|answer|generated|text)(?:\.|\.data\.|\.text|\.content)?/gi,
190
+ sinkType: 'code_execution',
191
+ baseSeverity: 'critical',
192
+ description: 'LLM output is passed directly to eval(). This allows arbitrary code execution if the model is manipulated via prompt injection.',
193
+ suggestedFix: 'Never eval() LLM output. Use structured output (JSON schema) and validate before processing. Consider using a sandboxed environment like vm2 if code execution is required.',
194
+ },
195
+ {
196
+ name: 'LLM output to Function constructor',
197
+ pattern: /new\s+Function\s*\([^)]*(?:response|result|output|completion|message|content|answer|generated)/gi,
198
+ sinkType: 'code_execution',
199
+ baseSeverity: 'critical',
200
+ description: 'LLM output is passed to Function constructor, which is equivalent to eval().',
201
+ suggestedFix: 'Use JSON schemas to define expected output structure. Validate output before any processing.',
202
+ },
203
+ {
204
+ name: 'LLM output to vm.runInContext',
205
+ pattern: /vm\.run(?:InContext|InNewContext|InThisContext)\s*\(\s*(?:response|result|output|completion|content)/gi,
206
+ sinkType: 'code_execution',
207
+ baseSeverity: 'high',
208
+ description: 'LLM output executed in Node.js VM context. While isolated, VM can still be escaped in some versions.',
209
+ suggestedFix: 'Use vm2 or isolated-vm for proper sandboxing. Add timeout and memory limits. Validate output structure before execution.',
210
+ },
211
+ // Generic pattern for code from LLM
212
+ {
213
+ name: 'Dynamic code execution from AI',
214
+ pattern: /(?:eval|exec|execute)\s*\(\s*(?:ai|llm|gpt|claude|chat)(?:Response|Output|Result|Code)/gi,
215
+ sinkType: 'code_execution',
216
+ baseSeverity: 'critical',
217
+ description: 'AI-generated code is being executed dynamically.',
218
+ suggestedFix: 'Use a sandboxed code execution environment. Validate and restrict the allowed operations.',
219
+ },
220
+ // ========== Shell Command Sinks ==========
221
+ {
222
+ name: 'LLM output to exec()',
223
+ pattern: /(?:exec|execSync)\s*\(\s*(?:response|result|output|completion|command|content)(?:\.|\.data\.|\.text)?/gi,
224
+ sinkType: 'shell_command',
225
+ baseSeverity: 'critical',
226
+ description: 'LLM output is passed to shell exec(). Attackers can execute arbitrary system commands via prompt injection.',
227
+ suggestedFix: 'Never pass LLM output directly to shell. Use allowlists for permitted commands. Parse structured output and use execFile() with fixed command and arguments.',
228
+ },
229
+ {
230
+ name: 'LLM output to spawn()',
231
+ pattern: /spawn\s*\(\s*(?:response|result|output|completion|command|content)(?:\.|\.data\.|\.text)?/gi,
232
+ sinkType: 'shell_command',
233
+ baseSeverity: 'critical',
234
+ description: 'LLM output is passed to spawn(), allowing command execution.',
235
+ suggestedFix: 'Use a predefined list of allowed commands. Parse LLM output to extract only arguments, not command names.',
236
+ },
237
+ {
238
+ name: 'LLM output in shell template',
239
+ pattern: /`[^`]*\$\{(?:response|result|output|completion|command|content)[^}]*\}[^`]*`\s*(?:,|\))\s*(?:exec|spawn|child_process)/gi,
240
+ sinkType: 'shell_command',
241
+ baseSeverity: 'critical',
242
+ description: 'LLM output is interpolated into a shell command template.',
243
+ suggestedFix: 'Use execFile() with separate command and arguments array. Never interpolate AI output into shell strings.',
244
+ },
245
+ {
246
+ name: 'child_process with AI output',
247
+ pattern: /child_process\.\w+\s*\([^)]*(?:ai|llm|gpt|claude|chat)(?:Response|Output|Result)/gi,
248
+ sinkType: 'shell_command',
249
+ baseSeverity: 'critical',
250
+ description: 'AI-generated content passed to child_process module.',
251
+ suggestedFix: 'Implement strict allowlisting of commands. Parse structured output from LLM.',
252
+ },
253
+ // ========== SQL Builder Sinks ==========
254
+ {
255
+ name: 'LLM output in raw SQL',
256
+ pattern: /\.(?:query|execute|raw)\s*\(\s*(?:response|result|output|generated|sql|completion)(?:\.|\.data\.|\.text)?/gi,
257
+ sinkType: 'sql_builder',
258
+ baseSeverity: 'critical',
259
+ description: 'LLM-generated SQL is executed directly. This enables SQL injection via prompt manipulation.',
260
+ suggestedFix: 'Use parameterized queries. Have LLM generate query parameters, not raw SQL. Validate generated SQL against an allowlist of patterns.',
261
+ },
262
+ {
263
+ name: 'LLM output in SQL template',
264
+ pattern: /`(?:SELECT|INSERT|UPDATE|DELETE)[^`]*\$\{(?:response|result|output|generated|completion)/gi,
265
+ sinkType: 'sql_builder',
266
+ baseSeverity: 'critical',
267
+ description: 'LLM output interpolated into SQL query template.',
268
+ suggestedFix: 'Use parameterized queries. Have LLM output structured data (table names, conditions) that you validate against allowlists.',
269
+ },
270
+ {
271
+ name: 'Dynamic SQL from AI',
272
+ pattern: /(?:query|execute|sql)\s*\(\s*(?:ai|llm|gpt|claude)(?:Query|Sql|Response)/gi,
273
+ sinkType: 'sql_builder',
274
+ baseSeverity: 'critical',
275
+ description: 'AI-generated SQL query being executed.',
276
+ suggestedFix: 'Validate SQL structure. Use read-only database connections. Implement query allowlisting.',
277
+ },
278
+ // ========== Template/DOM Sinks ==========
279
+ {
280
+ name: 'LLM output to innerHTML',
281
+ pattern: /\.innerHTML\s*=\s*(?:response|result|output|completion|message|content)(?:\.|\.data\.|\.text|\.content)?/gi,
282
+ sinkType: 'template_render',
283
+ baseSeverity: 'high',
284
+ description: 'LLM output assigned to innerHTML. If the model outputs malicious HTML/JS, it will execute (XSS).',
285
+ suggestedFix: 'Use textContent for plain text. Sanitize HTML with DOMPurify before rendering. Use React/Vue which auto-escape by default.',
286
+ },
287
+ {
288
+ name: 'LLM output to dangerouslySetInnerHTML',
289
+ pattern: /dangerouslySetInnerHTML\s*=\s*\{\s*\{\s*__html:\s*(?:response|result|output|completion|message|content)/gi,
290
+ sinkType: 'template_render',
291
+ baseSeverity: 'high',
292
+ description: 'LLM output used in React dangerouslySetInnerHTML without sanitization.',
293
+ suggestedFix: 'Sanitize with DOMPurify: dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize(content) }}',
294
+ },
295
+ {
296
+ name: 'LLM output to document.write',
297
+ pattern: /document\.write\s*\(\s*(?:response|result|output|completion|message|content)/gi,
298
+ sinkType: 'template_render',
299
+ baseSeverity: 'high',
300
+ description: 'LLM output passed to document.write, allowing script injection.',
301
+ suggestedFix: 'Use DOM manipulation methods with proper escaping. Never use document.write with dynamic content.',
302
+ },
303
+ // ========== M5: File System Sinks ==========
304
+ {
305
+ name: 'LLM output in file path',
306
+ pattern: /(?:readFile|writeFile|readFileSync|writeFileSync|unlink|unlinkSync|mkdir|mkdirSync|rmdir|rmSync)\s*\(\s*(?:response|result|output|completion|message|content|path)(?:\.|\.data\.|\.path)?/gi,
307
+ sinkType: 'code_execution', // Path traversal is code-level risk
308
+ baseSeverity: 'critical',
309
+ description: 'LLM-generated value used as file path. Path traversal attack possible - model could access or modify arbitrary files.',
310
+ suggestedFix: 'Validate AI output against allowed paths: if (!allowedPaths.some(p => path.resolve(output).startsWith(p))) throw. Use path.resolve() and check the result is within allowed directory.',
311
+ },
312
+ {
313
+ name: 'LLM output in fs operation',
314
+ pattern: /fs\.(?:read|write|append|unlink|mkdir|rm|stat|access)\w*\s*\(\s*(?:response|result|output|completion|aiPath|generatedPath)/gi,
315
+ sinkType: 'code_execution',
316
+ baseSeverity: 'critical',
317
+ description: 'AI-generated path passed to filesystem operation. Model could traverse to sensitive directories.',
318
+ suggestedFix: 'Create allowlist of permitted paths/directories. Use path.resolve() and validate result is within allowed boundaries.',
319
+ },
320
+ {
321
+ name: 'LLM output in path.join',
322
+ pattern: /path\.(?:join|resolve)\s*\([^)]*(?:response|result|output|completion|content|aiPath)[^)]*\).*(?:fs\.|readFile|writeFile)/gi,
323
+ sinkType: 'code_execution',
324
+ baseSeverity: 'high',
325
+ description: 'AI output used in path construction before file operation. Validate the final path.',
326
+ suggestedFix: 'After path.join/resolve, check result is within allowed directory: const resolved = path.resolve(base, aiPath); if (!resolved.startsWith(allowedRoot)) throw',
327
+ },
328
+ // ========== M5: Dynamic Import Sinks ==========
329
+ {
330
+ name: 'LLM output in dynamic import',
331
+ pattern: /import\s*\(\s*(?:response|result|output|completion|message|content|moduleName|aiModule)/gi,
332
+ sinkType: 'code_execution',
333
+ baseSeverity: 'critical',
334
+ description: 'AI-generated value used in dynamic import(). Arbitrary module loading enables code execution.',
335
+ suggestedFix: 'Use allowlist for permitted modules: const allowed = ["lodash", "moment"]; if (!allowed.includes(moduleName)) throw. Never dynamically import AI-generated module paths.',
336
+ },
337
+ {
338
+ name: 'LLM output in require()',
339
+ pattern: /require\s*\(\s*(?:response|result|output|completion|message|content|moduleName|aiModule)/gi,
340
+ sinkType: 'code_execution',
341
+ baseSeverity: 'critical',
342
+ description: 'AI-generated value used in require(). Can load arbitrary modules including native code.',
343
+ suggestedFix: 'Use allowlist for permitted modules. Consider using import maps or module aliases instead of dynamic require.',
344
+ },
345
+ {
346
+ name: 'LLM output in module resolution',
347
+ pattern: /(?:require\.resolve|import\.meta\.resolve)\s*\(\s*(?:response|result|output|completion|moduleName)/gi,
348
+ sinkType: 'code_execution',
349
+ baseSeverity: 'high',
350
+ description: 'AI output used in module path resolution. Could leak information about file system or enable module confusion attacks.',
351
+ suggestedFix: 'Validate module name against allowlist before resolution.',
352
+ },
353
+ ];
354
+ // ============================================================================
355
+ // Main Detection Function
356
+ // ============================================================================
357
+ /**
358
+ * Get surrounding context for analysis
359
+ */
360
+ function getSurroundingContext(content, lineIndex, windowSize = 15) {
361
+ const lines = content.split('\n');
362
+ const start = Math.max(0, lineIndex - windowSize);
363
+ const end = Math.min(lines.length, lineIndex + windowSize);
364
+ return lines.slice(start, end).join('\n');
365
+ }
366
+ /**
367
+ * Calculate severity based on sandbox and validation status
368
+ */
369
+ function calculateSeverity(baseSeverity, sinkType, isSandboxed, hasValidation, isTestFile, isExample = false, isLibrary = false) {
370
+ let severity = baseSeverity;
371
+ // Test files get significant downgrade
372
+ if (isTestFile) {
373
+ return 'info';
374
+ }
375
+ // Example/demo code - not production, for tutorials
376
+ if (isExample) {
377
+ return 'info';
378
+ }
379
+ // Library code - base utilities, consumers add restrictions
380
+ if (isLibrary) {
381
+ return 'info';
382
+ }
383
+ // Sandboxing provides major protection for code execution
384
+ if (isSandboxed) {
385
+ if (sinkType === 'code_execution') {
386
+ severity = hasValidation ? 'low' : 'medium';
387
+ }
388
+ else {
389
+ // Sandboxing less relevant for SQL/shell
390
+ severity = hasValidation ? 'medium' : 'high';
391
+ }
392
+ }
393
+ else if (hasValidation) {
394
+ // Validation alone helps but doesn't eliminate risk
395
+ if (baseSeverity === 'critical') {
396
+ severity = 'high';
397
+ }
398
+ else if (baseSeverity === 'high') {
399
+ severity = 'medium';
400
+ }
401
+ }
402
+ return severity;
403
+ }
404
+ /**
405
+ * Main detection function for LLM output execution sinks
406
+ */
407
+ function detectAIExecutionSinks(content, filePath) {
408
+ const vulnerabilities = [];
409
+ // Skip non-applicable files
410
+ if ((0, context_helpers_1.isScannerOrFixtureFile)(filePath))
411
+ return vulnerabilities;
412
+ // Only deeply scan files that appear to be in LLM context
413
+ // But still do basic scanning on all files for obvious patterns
414
+ const isLLMFile = (0, ai_prompt_hygiene_1.isLLMContextFile)(filePath, content);
415
+ const lines = content.split('\n');
416
+ const isTestFile = (0, context_helpers_1.isTestOrMockFile)(filePath);
417
+ const isExample = (0, context_helpers_1.isExampleDirectory)(filePath);
418
+ const isLibrary = (0, context_helpers_1.isLibraryCode)(filePath);
419
+ for (const pattern of EXECUTION_SINK_PATTERNS) {
420
+ const regex = new RegExp(pattern.pattern.source, pattern.pattern.flags);
421
+ let match;
422
+ while ((match = regex.exec(content)) !== null) {
423
+ const lineNumber = content.substring(0, match.index).split('\n').length;
424
+ const lineContent = lines[lineNumber - 1]?.trim() || '';
425
+ // Skip comments
426
+ if ((0, context_helpers_1.isComment)(lineContent))
427
+ continue;
428
+ const surroundingContext = getSurroundingContext(content, lineNumber - 1);
429
+ // Check if this is actually in an LLM context
430
+ const hasLLMContext = isLLMFile || hasLLMResponseContext(lineContent, surroundingContext);
431
+ // ===== FALSE POSITIVE FILTERS =====
432
+ // Skip UI suggestion/template patterns (command palettes, autocomplete, etc.)
433
+ // These are display strings, not execution sinks
434
+ if (isUITemplateSuggestion(lineContent, surroundingContext)) {
435
+ continue;
436
+ }
437
+ // Skip app data interpolation (e.g., ${node.title}, ${item.id})
438
+ // where the interpolated data is from the app, not LLM output
439
+ if (isAppDataInterpolation(lineContent, surroundingContext)) {
440
+ continue;
441
+ }
442
+ // For non-LLM files, require stronger signal
443
+ if (!hasLLMContext) {
444
+ // Check if the matched variable looks like LLM output
445
+ const matchText = match[0];
446
+ const variableMatch = matchText.match(/(?:response|result|output|completion|message|content|answer|generated|text)/i);
447
+ if (!variableMatch)
448
+ continue;
449
+ // Skip if this looks like display-only usage
450
+ if (isDisplayOnly(lineContent, surroundingContext))
451
+ continue;
452
+ }
453
+ // Check for sandboxing and validation
454
+ const isSandboxed = isSandboxedExecution(content, lineNumber);
455
+ const hasValidation = hasOutputValidation(content, lineNumber);
456
+ // Calculate final severity
457
+ const severity = calculateSeverity(pattern.baseSeverity, pattern.sinkType, isSandboxed, hasValidation, isTestFile, isExample, isLibrary);
458
+ // Build description with context
459
+ let description = pattern.description;
460
+ if (isSandboxed) {
461
+ description += ' (Sandbox detected - risk somewhat mitigated.)';
462
+ }
463
+ if (hasValidation) {
464
+ description += ' (Some validation detected nearby.)';
465
+ }
466
+ if (isTestFile) {
467
+ description += ' (In test file.)';
468
+ }
469
+ else if (isExample) {
470
+ description += ' (In example/demo directory - tutorial code.)';
471
+ }
472
+ else if (isLibrary) {
473
+ description += ' (Library code - consumers add restrictions.)';
474
+ }
475
+ // Skip info-level in non-LLM files to reduce noise
476
+ if (severity === 'info' && !isLLMFile)
477
+ continue;
478
+ vulnerabilities.push({
479
+ id: `ai-exec-${filePath}-${lineNumber}-${pattern.sinkType}`,
480
+ filePath,
481
+ lineNumber,
482
+ lineContent,
483
+ severity,
484
+ category: 'ai_unsafe_execution',
485
+ title: pattern.name,
486
+ description,
487
+ suggestedFix: pattern.suggestedFix,
488
+ confidence: hasLLMContext ? 'high' : 'medium',
489
+ layer: 2,
490
+ requiresAIValidation: severity !== 'info' && severity !== 'low',
491
+ });
492
+ }
493
+ }
494
+ return vulnerabilities;
495
+ }
496
+ //# sourceMappingURL=ai-execution-sinks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-execution-sinks.js","sourceRoot":"","sources":["../../src/layer2/ai-execution-sinks.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Layer 2: AI Code Fingerprinting
3
+ * Detects patterns commonly found in AI-generated code that may indicate security risks
4
+ */
5
+ import type { Vulnerability } from '../types';
6
+ export declare function detectAIFingerprints(content: string, filePath: string): Vulnerability[];
7
+ //# sourceMappingURL=ai-fingerprinting.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-fingerprinting.d.ts","sourceRoot":"","sources":["../../src/layer2/ai-fingerprinting.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAyB,MAAM,UAAU,CAAA;AAmnBpE,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,MAAM,GACf,aAAa,EAAE,CA0HjB"}