erosolar-cli 1.5.2 → 1.5.4

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 (346) hide show
  1. package/config/security-deployment.json +54 -0
  2. package/dist/bin/adapters/node/index.js +33 -0
  3. package/dist/bin/adapters/types.js +1 -0
  4. package/dist/bin/alpha-zero/agentWrapper.js +165 -0
  5. package/dist/bin/alpha-zero/codeEvaluator.js +272 -0
  6. package/dist/bin/alpha-zero/competitiveRunner.js +219 -0
  7. package/dist/bin/alpha-zero/index.js +98 -0
  8. package/dist/bin/alpha-zero/introspection.js +298 -0
  9. package/dist/bin/alpha-zero/metricsTracker.js +207 -0
  10. package/dist/bin/alpha-zero/security/core.js +269 -0
  11. package/dist/bin/alpha-zero/security/google.js +308 -0
  12. package/dist/bin/alpha-zero/security/googleLoader.js +40 -0
  13. package/dist/bin/alpha-zero/security/index.js +31 -0
  14. package/dist/bin/alpha-zero/security/simulation.js +274 -0
  15. package/dist/bin/alpha-zero/selfModification.js +231 -0
  16. package/dist/bin/alpha-zero/types.js +30 -0
  17. package/dist/bin/bin/erosolar-optimized.js +205 -0
  18. package/dist/bin/capabilities/agentSpawningCapability.js +116 -0
  19. package/dist/bin/capabilities/bashCapability.js +22 -0
  20. package/dist/bin/capabilities/cloudCapability.js +36 -0
  21. package/dist/bin/capabilities/codeAnalysisCapability.js +22 -0
  22. package/dist/bin/capabilities/codeQualityCapability.js +23 -0
  23. package/dist/bin/capabilities/dependencySecurityCapability.js +22 -0
  24. package/dist/bin/capabilities/devCapability.js +22 -0
  25. package/dist/bin/capabilities/editCapability.js +28 -0
  26. package/dist/bin/capabilities/emailCapability.js +20 -0
  27. package/dist/bin/capabilities/enhancedGitCapability.js +221 -0
  28. package/dist/bin/capabilities/filesystemCapability.js +22 -0
  29. package/dist/bin/capabilities/globCapability.js +28 -0
  30. package/dist/bin/capabilities/interactionCapability.js +20 -0
  31. package/dist/bin/capabilities/learnCapability.js +22 -0
  32. package/dist/bin/capabilities/mcpCapability.js +20 -0
  33. package/dist/bin/capabilities/notebookCapability.js +28 -0
  34. package/dist/bin/capabilities/planningCapability.js +27 -0
  35. package/dist/bin/capabilities/refactoringCapability.js +23 -0
  36. package/dist/bin/capabilities/repoChecksCapability.js +22 -0
  37. package/dist/bin/capabilities/searchCapability.js +22 -0
  38. package/dist/bin/capabilities/skillCapability.js +76 -0
  39. package/dist/bin/capabilities/taskManagementCapability.js +20 -0
  40. package/dist/bin/capabilities/testingCapability.js +23 -0
  41. package/dist/bin/capabilities/toolManifest.js +159 -0
  42. package/dist/bin/capabilities/toolRegistry.js +114 -0
  43. package/dist/bin/capabilities/webCapability.js +20 -0
  44. package/dist/bin/config.js +139 -0
  45. package/dist/bin/contracts/v1/agent.js +7 -0
  46. package/dist/bin/contracts/v1/agentProfileManifest.js +8 -0
  47. package/dist/bin/contracts/v1/agentRules.js +9 -0
  48. package/dist/bin/contracts/v1/toolAccess.js +8 -0
  49. package/dist/bin/core/agent.js +362 -0
  50. package/dist/bin/core/agentProfileManifest.js +187 -0
  51. package/dist/bin/core/agentProfiles.js +34 -0
  52. package/dist/bin/core/agentRulebook.js +135 -0
  53. package/dist/bin/core/agentSchemaLoader.js +233 -0
  54. package/dist/bin/core/contextManager.js +412 -0
  55. package/dist/bin/core/contextWindow.js +122 -0
  56. package/dist/bin/core/customCommands.js +80 -0
  57. package/dist/bin/core/errors/apiKeyErrors.js +114 -0
  58. package/dist/bin/core/errors/errorTypes.js +340 -0
  59. package/dist/bin/core/errors/safetyValidator.js +304 -0
  60. package/dist/bin/core/errors.js +32 -0
  61. package/dist/bin/core/modelDiscovery.js +755 -0
  62. package/dist/bin/core/preferences.js +224 -0
  63. package/dist/bin/core/schemaValidator.js +92 -0
  64. package/dist/bin/core/secretStore.js +199 -0
  65. package/dist/bin/core/sessionStore.js +187 -0
  66. package/dist/bin/core/toolRuntime.js +290 -0
  67. package/dist/bin/core/types.js +1 -0
  68. package/dist/bin/erosolar-optimized.d.ts +12 -0
  69. package/dist/bin/erosolar-optimized.d.ts.map +1 -0
  70. package/dist/bin/erosolar-optimized.js +239 -0
  71. package/dist/bin/erosolar-optimized.js.map +1 -0
  72. package/dist/bin/erosolar.js +14 -0
  73. package/dist/bin/erosolar.js.map +1 -1
  74. package/dist/bin/headless/headlessApp.js +172 -0
  75. package/dist/bin/mcp/config.js +202 -0
  76. package/dist/bin/mcp/stdioClient.js +172 -0
  77. package/dist/bin/mcp/toolBridge.js +104 -0
  78. package/dist/bin/mcp/types.js +1 -0
  79. package/dist/bin/plugins/index.js +113 -0
  80. package/dist/bin/plugins/providers/anthropic/index.js +25 -0
  81. package/dist/bin/plugins/providers/deepseek/index.js +24 -0
  82. package/dist/bin/plugins/providers/google/index.js +26 -0
  83. package/dist/bin/plugins/providers/index.js +19 -0
  84. package/dist/bin/plugins/providers/ollama/index.js +59 -0
  85. package/dist/bin/plugins/providers/openai/index.js +26 -0
  86. package/dist/bin/plugins/providers/xai/index.js +24 -0
  87. package/dist/bin/plugins/tools/agentSpawning/agentSpawningPlugin.js +8 -0
  88. package/dist/bin/plugins/tools/bash/localBashPlugin.js +13 -0
  89. package/dist/bin/plugins/tools/checks/localRepoChecksPlugin.js +13 -0
  90. package/dist/bin/plugins/tools/cloud/cloudPlugin.js +13 -0
  91. package/dist/bin/plugins/tools/codeAnalysis/codeAnalysisPlugin.js +13 -0
  92. package/dist/bin/plugins/tools/codeQuality/codeQualityPlugin.js +13 -0
  93. package/dist/bin/plugins/tools/dependency/dependencyPlugin.js +11 -0
  94. package/dist/bin/plugins/tools/development/devPlugin.js +13 -0
  95. package/dist/bin/plugins/tools/edit/editPlugin.js +14 -0
  96. package/dist/bin/plugins/tools/email/emailPlugin.js +11 -0
  97. package/dist/bin/plugins/tools/enhancedGit/enhancedGitPlugin.js +8 -0
  98. package/dist/bin/plugins/tools/filesystem/localFilesystemPlugin.js +13 -0
  99. package/dist/bin/plugins/tools/glob/globPlugin.js +14 -0
  100. package/dist/bin/plugins/tools/index.js +2 -0
  101. package/dist/bin/plugins/tools/interaction/interactionPlugin.js +11 -0
  102. package/dist/bin/plugins/tools/learn/learnPlugin.js +13 -0
  103. package/dist/bin/plugins/tools/mcp/mcpPlugin.js +8 -0
  104. package/dist/bin/plugins/tools/nodeDefaults.js +56 -0
  105. package/dist/bin/plugins/tools/notebook/notebookPlugin.js +14 -0
  106. package/dist/bin/plugins/tools/planning/planningPlugin.js +14 -0
  107. package/dist/bin/plugins/tools/refactoring/refactoringPlugin.js +11 -0
  108. package/dist/bin/plugins/tools/registry.js +57 -0
  109. package/dist/bin/plugins/tools/search/localSearchPlugin.js +13 -0
  110. package/dist/bin/plugins/tools/skills/skillPlugin.js +8 -0
  111. package/dist/bin/plugins/tools/taskManagement/taskManagementPlugin.js +11 -0
  112. package/dist/bin/plugins/tools/testing/testingPlugin.js +11 -0
  113. package/dist/bin/plugins/tools/web/webPlugin.js +11 -0
  114. package/dist/bin/providers/anthropicProvider.js +329 -0
  115. package/dist/bin/providers/googleProvider.js +203 -0
  116. package/dist/bin/providers/openaiChatCompletionsProvider.js +208 -0
  117. package/dist/bin/providers/openaiResponsesProvider.js +249 -0
  118. package/dist/bin/providers/providerFactory.js +24 -0
  119. package/dist/bin/runtime/agentController.js +321 -0
  120. package/dist/bin/runtime/agentHost.js +153 -0
  121. package/dist/bin/runtime/agentSession.js +195 -0
  122. package/dist/bin/runtime/node.js +10 -0
  123. package/dist/bin/runtime/universal.js +28 -0
  124. package/dist/bin/shell/bracketedPasteManager.js +350 -0
  125. package/dist/bin/shell/fileChangeTracker.js +65 -0
  126. package/dist/bin/shell/interactiveShell.js +2908 -0
  127. package/dist/bin/shell/liveStatus.js +78 -0
  128. package/dist/bin/shell/shellApp.js +290 -0
  129. package/dist/bin/shell/systemPrompt.js +60 -0
  130. package/dist/bin/shell/updateManager.js +108 -0
  131. package/dist/bin/skills/skillRepository.js +236 -0
  132. package/dist/bin/skills/types.js +1 -0
  133. package/dist/bin/subagents/taskRunner.js +269 -0
  134. package/dist/bin/tools/backgroundBashTools.js +211 -0
  135. package/dist/bin/tools/bashTools.js +159 -0
  136. package/dist/bin/tools/cloudTools.js +864 -0
  137. package/dist/bin/tools/codeAnalysisTools.js +641 -0
  138. package/dist/bin/tools/codeQualityTools.js +294 -0
  139. package/dist/bin/tools/dependencyTools.js +282 -0
  140. package/dist/bin/tools/devTools.js +238 -0
  141. package/dist/bin/tools/diffUtils.js +137 -0
  142. package/dist/bin/tools/editTools.js +134 -0
  143. package/dist/bin/tools/emailTools.js +448 -0
  144. package/dist/bin/tools/fileTools.js +282 -0
  145. package/dist/bin/tools/globTools.js +173 -0
  146. package/dist/bin/tools/grepTools.js +332 -0
  147. package/dist/bin/tools/interactionTools.js +170 -0
  148. package/dist/bin/tools/learnTools.js +1818 -0
  149. package/dist/bin/tools/notebookEditTools.js +196 -0
  150. package/dist/bin/tools/planningTools.js +46 -0
  151. package/dist/bin/tools/refactoringTools.js +293 -0
  152. package/dist/bin/tools/repoChecksTools.js +160 -0
  153. package/dist/bin/tools/searchTools.js +206 -0
  154. package/dist/bin/tools/skillTools.js +177 -0
  155. package/dist/bin/tools/taskManagementTools.js +156 -0
  156. package/dist/bin/tools/testingTools.js +232 -0
  157. package/dist/bin/tools/webTools.js +480 -0
  158. package/dist/bin/ui/ShellUIAdapter.js +459 -0
  159. package/dist/bin/ui/UnifiedUIController.js +183 -0
  160. package/dist/bin/ui/animation/AnimationScheduler.js +430 -0
  161. package/dist/bin/ui/codeHighlighter.js +854 -0
  162. package/dist/bin/ui/designSystem.js +121 -0
  163. package/dist/bin/ui/display.js +1222 -0
  164. package/dist/bin/ui/interrupts/InterruptManager.js +437 -0
  165. package/dist/bin/ui/layout.js +139 -0
  166. package/dist/bin/ui/orchestration/StatusOrchestrator.js +403 -0
  167. package/dist/bin/ui/outputMode.js +38 -0
  168. package/dist/bin/ui/persistentPrompt.js +183 -0
  169. package/dist/bin/ui/richText.js +338 -0
  170. package/dist/bin/ui/shortcutsHelp.js +87 -0
  171. package/dist/bin/ui/telemetry/UITelemetry.js +443 -0
  172. package/dist/bin/ui/textHighlighter.js +210 -0
  173. package/dist/bin/ui/theme.js +116 -0
  174. package/dist/bin/ui/toolDisplay.js +423 -0
  175. package/dist/bin/ui/toolDisplayAdapter.js +357 -0
  176. package/dist/bin/workspace.js +106 -0
  177. package/dist/bin/workspace.validator.js +213 -0
  178. package/dist/capabilities/cloudCapability.d.ts +13 -0
  179. package/dist/capabilities/cloudCapability.d.ts.map +1 -0
  180. package/dist/capabilities/cloudCapability.js +38 -0
  181. package/dist/capabilities/cloudCapability.js.map +1 -0
  182. package/dist/capabilities/index.d.ts +1 -0
  183. package/dist/capabilities/index.d.ts.map +1 -1
  184. package/dist/capabilities/index.js +1 -0
  185. package/dist/capabilities/index.js.map +1 -1
  186. package/dist/capabilities/offensiveSecurityCapability.d.ts +26 -0
  187. package/dist/capabilities/offensiveSecurityCapability.d.ts.map +1 -0
  188. package/dist/capabilities/offensiveSecurityCapability.js +58 -0
  189. package/dist/capabilities/offensiveSecurityCapability.js.map +1 -0
  190. package/dist/capabilities/realSecurityCapability.d.ts +26 -0
  191. package/dist/capabilities/realSecurityCapability.d.ts.map +1 -0
  192. package/dist/capabilities/realSecurityCapability.js +53 -0
  193. package/dist/capabilities/realSecurityCapability.js.map +1 -0
  194. package/dist/capabilities/securityCapability.d.ts +32 -0
  195. package/dist/capabilities/securityCapability.d.ts.map +1 -0
  196. package/dist/capabilities/securityCapability.js +57 -0
  197. package/dist/capabilities/securityCapability.js.map +1 -0
  198. package/dist/capabilities/ultimateSecurityCapability.d.ts +42 -0
  199. package/dist/capabilities/ultimateSecurityCapability.d.ts.map +1 -0
  200. package/dist/capabilities/ultimateSecurityCapability.js +96 -0
  201. package/dist/capabilities/ultimateSecurityCapability.js.map +1 -0
  202. package/dist/core/LazyLoader.d.ts +129 -0
  203. package/dist/core/LazyLoader.d.ts.map +1 -0
  204. package/dist/core/LazyLoader.js +240 -0
  205. package/dist/core/LazyLoader.js.map +1 -0
  206. package/dist/core/intelligenceTools.d.ts +19 -0
  207. package/dist/core/intelligenceTools.d.ts.map +1 -0
  208. package/dist/core/intelligenceTools.js +453 -0
  209. package/dist/core/intelligenceTools.js.map +1 -0
  210. package/dist/core/operationalTools.d.ts +19 -0
  211. package/dist/core/operationalTools.d.ts.map +1 -0
  212. package/dist/core/operationalTools.js +467 -0
  213. package/dist/core/operationalTools.js.map +1 -0
  214. package/dist/offensive/core/offensive-engine.d.ts +171 -0
  215. package/dist/offensive/core/offensive-engine.d.ts.map +1 -0
  216. package/dist/offensive/core/offensive-engine.js +345 -0
  217. package/dist/offensive/core/offensive-engine.js.map +1 -0
  218. package/dist/offensive/core/offensive-integration.d.ts +129 -0
  219. package/dist/offensive/core/offensive-integration.d.ts.map +1 -0
  220. package/dist/offensive/core/offensive-integration.js +364 -0
  221. package/dist/offensive/core/offensive-integration.js.map +1 -0
  222. package/dist/offensive/core/offensive-tools.d.ts +55 -0
  223. package/dist/offensive/core/offensive-tools.d.ts.map +1 -0
  224. package/dist/offensive/core/offensive-tools.js +438 -0
  225. package/dist/offensive/core/offensive-tools.js.map +1 -0
  226. package/dist/offensive/offensive-cli.d.ts +48 -0
  227. package/dist/offensive/offensive-cli.d.ts.map +1 -0
  228. package/dist/offensive/offensive-cli.js +233 -0
  229. package/dist/offensive/offensive-cli.js.map +1 -0
  230. package/dist/plugins/index.d.ts +1 -1
  231. package/dist/plugins/index.d.ts.map +1 -1
  232. package/dist/plugins/index.js +2 -0
  233. package/dist/plugins/index.js.map +1 -1
  234. package/dist/plugins/tools/cloud/cloudPlugin.d.ts +3 -0
  235. package/dist/plugins/tools/cloud/cloudPlugin.d.ts.map +1 -0
  236. package/dist/plugins/tools/cloud/cloudPlugin.js +14 -0
  237. package/dist/plugins/tools/cloud/cloudPlugin.js.map +1 -0
  238. package/dist/plugins/tools/nodeDefaults.d.ts.map +1 -1
  239. package/dist/plugins/tools/nodeDefaults.js +2 -0
  240. package/dist/plugins/tools/nodeDefaults.js.map +1 -1
  241. package/dist/security/advanced-persistence-research.d.ts +92 -0
  242. package/dist/security/advanced-persistence-research.d.ts.map +1 -0
  243. package/dist/security/advanced-persistence-research.js +195 -0
  244. package/dist/security/advanced-persistence-research.js.map +1 -0
  245. package/dist/security/apt-simulation-cli.d.ts +57 -0
  246. package/dist/security/apt-simulation-cli.d.ts.map +1 -0
  247. package/dist/security/apt-simulation-cli.js +278 -0
  248. package/dist/security/apt-simulation-cli.js.map +1 -0
  249. package/dist/security/apt-simulation-engine-complete.d.ts +97 -0
  250. package/dist/security/apt-simulation-engine-complete.d.ts.map +1 -0
  251. package/dist/security/apt-simulation-engine-complete.js +441 -0
  252. package/dist/security/apt-simulation-engine-complete.js.map +1 -0
  253. package/dist/security/apt-simulation-engine.d.ts +97 -0
  254. package/dist/security/apt-simulation-engine.d.ts.map +1 -0
  255. package/dist/security/apt-simulation-engine.js +441 -0
  256. package/dist/security/apt-simulation-engine.js.map +1 -0
  257. package/dist/security/assessment/vulnerabilityAssessment.d.ts +104 -0
  258. package/dist/security/assessment/vulnerabilityAssessment.d.ts.map +1 -0
  259. package/dist/security/assessment/vulnerabilityAssessment.js +315 -0
  260. package/dist/security/assessment/vulnerabilityAssessment.js.map +1 -0
  261. package/dist/security/authorization/securityAuthorization.d.ts +88 -0
  262. package/dist/security/authorization/securityAuthorization.d.ts.map +1 -0
  263. package/dist/security/authorization/securityAuthorization.js +172 -0
  264. package/dist/security/authorization/securityAuthorization.js.map +1 -0
  265. package/dist/security/authorization.d.ts +45 -0
  266. package/dist/security/authorization.d.ts.map +1 -0
  267. package/dist/security/authorization.js +128 -0
  268. package/dist/security/authorization.js.map +1 -0
  269. package/dist/security/comprehensive-security-research.d.ts +84 -0
  270. package/dist/security/comprehensive-security-research.d.ts.map +1 -0
  271. package/dist/security/comprehensive-security-research.js +211 -0
  272. package/dist/security/comprehensive-security-research.js.map +1 -0
  273. package/dist/security/offensive/exploitationEngine.d.ts +54 -0
  274. package/dist/security/offensive/exploitationEngine.d.ts.map +1 -0
  275. package/dist/security/offensive/exploitationEngine.js +263 -0
  276. package/dist/security/offensive/exploitationEngine.js.map +1 -0
  277. package/dist/security/persistence-analyzer.d.ts +56 -0
  278. package/dist/security/persistence-analyzer.d.ts.map +1 -0
  279. package/dist/security/persistence-analyzer.js +187 -0
  280. package/dist/security/persistence-analyzer.js.map +1 -0
  281. package/dist/security/persistence-cli.d.ts +36 -0
  282. package/dist/security/persistence-cli.d.ts.map +1 -0
  283. package/dist/security/persistence-cli.js +160 -0
  284. package/dist/security/persistence-cli.js.map +1 -0
  285. package/dist/security/persistence-research.d.ts +100 -0
  286. package/dist/security/persistence-research.d.ts.map +1 -0
  287. package/dist/security/persistence-research.js +372 -0
  288. package/dist/security/persistence-research.js.map +1 -0
  289. package/dist/security/real/networkExploitation.d.ts +92 -0
  290. package/dist/security/real/networkExploitation.d.ts.map +1 -0
  291. package/dist/security/real/networkExploitation.js +316 -0
  292. package/dist/security/real/networkExploitation.js.map +1 -0
  293. package/dist/security/real/persistenceImplementation.d.ts +62 -0
  294. package/dist/security/real/persistenceImplementation.d.ts.map +1 -0
  295. package/dist/security/real/persistenceImplementation.js +323 -0
  296. package/dist/security/real/persistenceImplementation.js.map +1 -0
  297. package/dist/security/real/vulnerabilityScanner.d.ts +73 -0
  298. package/dist/security/real/vulnerabilityScanner.d.ts.map +1 -0
  299. package/dist/security/real/vulnerabilityScanner.js +341 -0
  300. package/dist/security/real/vulnerabilityScanner.js.map +1 -0
  301. package/dist/security/research/persistenceResearch.d.ts +97 -0
  302. package/dist/security/research/persistenceResearch.d.ts.map +1 -0
  303. package/dist/security/research/persistenceResearch.js +282 -0
  304. package/dist/security/research/persistenceResearch.js.map +1 -0
  305. package/dist/security/security-testing-framework.d.ts +120 -0
  306. package/dist/security/security-testing-framework.d.ts.map +1 -0
  307. package/dist/security/security-testing-framework.js +372 -0
  308. package/dist/security/security-testing-framework.js.map +1 -0
  309. package/dist/security/simulation/attackSimulation.d.ts +93 -0
  310. package/dist/security/simulation/attackSimulation.d.ts.map +1 -0
  311. package/dist/security/simulation/attackSimulation.js +341 -0
  312. package/dist/security/simulation/attackSimulation.js.map +1 -0
  313. package/dist/shell/bracketedPasteManager.d.ts +76 -0
  314. package/dist/shell/bracketedPasteManager.d.ts.map +1 -1
  315. package/dist/shell/bracketedPasteManager.js +267 -9
  316. package/dist/shell/bracketedPasteManager.js.map +1 -1
  317. package/dist/shell/interactiveShell.d.ts +34 -1
  318. package/dist/shell/interactiveShell.d.ts.map +1 -1
  319. package/dist/shell/interactiveShell.js +304 -24
  320. package/dist/shell/interactiveShell.js.map +1 -1
  321. package/dist/shell/taskCompletionDetector.d.ts +101 -0
  322. package/dist/shell/taskCompletionDetector.d.ts.map +1 -0
  323. package/dist/shell/taskCompletionDetector.js +343 -0
  324. package/dist/shell/taskCompletionDetector.js.map +1 -0
  325. package/dist/tools/cloudTools.d.ts +57 -0
  326. package/dist/tools/cloudTools.d.ts.map +1 -0
  327. package/dist/tools/cloudTools.js +865 -0
  328. package/dist/tools/cloudTools.js.map +1 -0
  329. package/dist/tools/enhancedSecurityTools.d.ts +19 -0
  330. package/dist/tools/enhancedSecurityTools.d.ts.map +1 -0
  331. package/dist/tools/enhancedSecurityTools.js +215 -0
  332. package/dist/tools/enhancedSecurityTools.js.map +1 -0
  333. package/dist/tools/offensiveSecurityTools.d.ts +16 -0
  334. package/dist/tools/offensiveSecurityTools.d.ts.map +1 -0
  335. package/dist/tools/offensiveSecurityTools.js +285 -0
  336. package/dist/tools/offensiveSecurityTools.js.map +1 -0
  337. package/dist/tools/realSecurityTools.d.ts +18 -0
  338. package/dist/tools/realSecurityTools.d.ts.map +1 -0
  339. package/dist/tools/realSecurityTools.js +468 -0
  340. package/dist/tools/realSecurityTools.js.map +1 -0
  341. package/dist/tools/securityTools.d.ts +20 -0
  342. package/dist/tools/securityTools.d.ts.map +1 -0
  343. package/dist/tools/securityTools.js +449 -0
  344. package/dist/tools/securityTools.js.map +1 -0
  345. package/package.json +27 -12
  346. package/scripts/deploy-security-capabilities.js +178 -0
@@ -0,0 +1,438 @@
1
+ /**
2
+ * Offensive Operations Core Tools
3
+ *
4
+ * Integration of offensive capabilities into the Erosolar CLI core tool system
5
+ * enabling real offensive operations against any target.
6
+ */
7
+ import { OffensiveEngine } from './offensive-engine.js';
8
+ /**
9
+ * Offensive Operations Tool Suite
10
+ */
11
+ export class OffensiveTools {
12
+ engine;
13
+ constructor() {
14
+ this.engine = new OffensiveEngine();
15
+ }
16
+ /**
17
+ * Get offensive tool definitions for integration with core tool runtime
18
+ */
19
+ getToolDefinitions() {
20
+ return [
21
+ {
22
+ name: 'offensive_create_operation',
23
+ description: 'Create a new offensive operation against specified target',
24
+ parameters: {
25
+ type: 'object',
26
+ properties: {
27
+ name: {
28
+ type: 'string',
29
+ description: 'Operation name'
30
+ },
31
+ target_type: {
32
+ type: 'string',
33
+ enum: ['company', 'government', 'infrastructure', 'individual'],
34
+ description: 'Type of target'
35
+ },
36
+ target_scope: {
37
+ type: 'string',
38
+ enum: ['single-system', 'network', 'organization', 'country'],
39
+ description: 'Scope of target'
40
+ },
41
+ domains: {
42
+ type: 'array',
43
+ items: { type: 'string' },
44
+ description: 'Target domains for reconnaissance'
45
+ },
46
+ objectives: {
47
+ type: 'array',
48
+ items: { type: 'string' },
49
+ description: 'Operation objectives'
50
+ },
51
+ stealth_level: {
52
+ type: 'string',
53
+ enum: ['low', 'medium', 'high', 'maximum'],
54
+ description: 'Required stealth level'
55
+ },
56
+ risk_tolerance: {
57
+ type: 'string',
58
+ enum: ['low', 'medium', 'high'],
59
+ description: 'Risk tolerance level'
60
+ }
61
+ },
62
+ required: ['name', 'target_type', 'target_scope', 'objectives']
63
+ },
64
+ handler: async (args) => {
65
+ return await this.createOperation(args);
66
+ }
67
+ },
68
+ {
69
+ name: 'offensive_plan_operation',
70
+ description: 'Plan offensive operation phases and techniques',
71
+ parameters: {
72
+ type: 'object',
73
+ properties: {
74
+ operation_id: {
75
+ type: 'string',
76
+ description: 'Operation ID'
77
+ }
78
+ },
79
+ required: ['operation_id']
80
+ },
81
+ handler: async (args) => {
82
+ return await this.planOperation(args);
83
+ }
84
+ },
85
+ {
86
+ name: 'offensive_execute_phase',
87
+ description: 'Execute specific phase of offensive operation',
88
+ parameters: {
89
+ type: 'object',
90
+ properties: {
91
+ operation_id: {
92
+ type: 'string',
93
+ description: 'Operation ID'
94
+ },
95
+ phase_id: {
96
+ type: 'string',
97
+ description: 'Phase ID to execute'
98
+ }
99
+ },
100
+ required: ['operation_id', 'phase_id']
101
+ },
102
+ handler: async (args) => {
103
+ return await this.executePhase(args);
104
+ }
105
+ },
106
+ {
107
+ name: 'offensive_reconnaissance',
108
+ description: 'Perform advanced reconnaissance on target',
109
+ parameters: {
110
+ type: 'object',
111
+ properties: {
112
+ domains: {
113
+ type: 'array',
114
+ items: { type: 'string' },
115
+ description: 'Target domains'
116
+ },
117
+ ip_ranges: {
118
+ type: 'array',
119
+ items: { type: 'string' },
120
+ description: 'Target IP ranges'
121
+ },
122
+ techniques: {
123
+ type: 'array',
124
+ items: { type: 'string' },
125
+ enum: ['dns-enumeration', 'subdomain-discovery', 'port-scanning', 'service-fingerprinting'],
126
+ description: 'Reconnaissance techniques to use'
127
+ }
128
+ },
129
+ required: ['domains']
130
+ },
131
+ handler: async (args) => {
132
+ return await this.performReconnaissance(args);
133
+ }
134
+ },
135
+ {
136
+ name: 'offensive_persistence',
137
+ description: 'Establish persistence mechanisms on compromised systems',
138
+ parameters: {
139
+ type: 'object',
140
+ properties: {
141
+ target_system: {
142
+ type: 'string',
143
+ description: 'Target system identifier'
144
+ },
145
+ platform: {
146
+ type: 'string',
147
+ enum: ['windows', 'linux', 'macos'],
148
+ description: 'Target platform'
149
+ },
150
+ techniques: {
151
+ type: 'array',
152
+ items: { type: 'string' },
153
+ enum: ['scheduled-tasks', 'services', 'registry', 'startup-items', 'cron-jobs'],
154
+ description: 'Persistence techniques to deploy'
155
+ },
156
+ stealth_level: {
157
+ type: 'string',
158
+ enum: ['low', 'medium', 'high', 'maximum'],
159
+ description: 'Stealth requirements'
160
+ }
161
+ },
162
+ required: ['target_system', 'platform']
163
+ },
164
+ handler: async (args) => {
165
+ return await this.establishPersistence(args);
166
+ }
167
+ },
168
+ {
169
+ name: 'offensive_lateral_movement',
170
+ description: 'Perform lateral movement within target network',
171
+ parameters: {
172
+ type: 'object',
173
+ properties: {
174
+ source_system: {
175
+ type: 'string',
176
+ description: 'Source system identifier'
177
+ },
178
+ target_systems: {
179
+ type: 'array',
180
+ items: { type: 'string' },
181
+ description: 'Target systems for movement'
182
+ },
183
+ techniques: {
184
+ type: 'array',
185
+ items: { type: 'string' },
186
+ enum: ['pass-the-hash', 'pass-the-ticket', 'wmi', 'psremoting', 'ssh'],
187
+ description: 'Lateral movement techniques'
188
+ }
189
+ },
190
+ required: ['source_system', 'target_systems']
191
+ },
192
+ handler: async (args) => {
193
+ return await this.performLateralMovement(args);
194
+ }
195
+ },
196
+ {
197
+ name: 'offensive_data_exfiltration',
198
+ description: 'Exfiltrate data from compromised systems',
199
+ parameters: {
200
+ type: 'object',
201
+ properties: {
202
+ source_systems: {
203
+ type: 'array',
204
+ items: { type: 'string' },
205
+ description: 'Source systems for data collection'
206
+ },
207
+ data_types: {
208
+ type: 'array',
209
+ items: { type: 'string' },
210
+ enum: ['documents', 'credentials', 'databases', 'source-code', 'configurations'],
211
+ description: 'Types of data to exfiltrate'
212
+ },
213
+ exfiltration_methods: {
214
+ type: 'array',
215
+ items: { type: 'string' },
216
+ enum: ['dns-tunneling', 'https', 'ftp', 'smtp', 'custom-protocol'],
217
+ description: 'Exfiltration methods'
218
+ },
219
+ stealth_level: {
220
+ type: 'string',
221
+ enum: ['low', 'medium', 'high', 'maximum'],
222
+ description: 'Stealth requirements'
223
+ }
224
+ },
225
+ required: ['source_systems', 'data_types']
226
+ },
227
+ handler: async (args) => {
228
+ return await this.performDataExfiltration(args);
229
+ }
230
+ }
231
+ ];
232
+ }
233
+ /**
234
+ * Create offensive operation
235
+ */
236
+ async createOperation(args) {
237
+ const name = args.name;
238
+ const targetType = args.target_type;
239
+ const targetScope = args.target_scope;
240
+ const domains = args.domains || [];
241
+ const objectives = args.objectives;
242
+ const stealthLevel = args.stealth_level || 'medium';
243
+ const riskTolerance = args.risk_tolerance || 'medium';
244
+ const targetSpec = {
245
+ type: targetType,
246
+ scope: targetScope,
247
+ identifiers: { domains },
248
+ constraints: {}
249
+ };
250
+ const operationObjectives = objectives.map((obj, index) => ({
251
+ id: `obj-${index}`,
252
+ description: obj,
253
+ priority: 'high',
254
+ successCriteria: [`Successfully complete: ${obj}`],
255
+ metrics: []
256
+ }));
257
+ const operation = this.engine.createOperation({
258
+ name,
259
+ target: targetSpec,
260
+ objectives: operationObjectives,
261
+ stealthLevel,
262
+ riskTolerance
263
+ });
264
+ return JSON.stringify({
265
+ operation_id: operation.id,
266
+ name: operation.name,
267
+ target: operation.target,
268
+ status: operation.status,
269
+ message: `Operation '${name}' created successfully`
270
+ }, null, 2);
271
+ }
272
+ /**
273
+ * Plan offensive operation
274
+ */
275
+ async planOperation(args) {
276
+ const operationId = args.operation_id;
277
+ const phases = this.engine.planOperation(operationId);
278
+ return JSON.stringify({
279
+ operation_id: operationId,
280
+ phases: phases.map(phase => ({
281
+ id: phase.id,
282
+ name: phase.name,
283
+ techniques: phase.techniques.map(tech => ({
284
+ name: tech.name,
285
+ mitre_id: tech.mitreId,
286
+ automated: tech.implementation.automated
287
+ })),
288
+ estimated_duration: phase.estimatedDuration,
289
+ success_probability: phase.successProbability
290
+ })),
291
+ message: `Operation planning completed with ${phases.length} phases`
292
+ }, null, 2);
293
+ }
294
+ /**
295
+ * Execute operation phase
296
+ */
297
+ async executePhase(args) {
298
+ const operationId = args.operation_id;
299
+ const phaseId = args.phase_id;
300
+ await this.engine.executePhase(operationId, phaseId);
301
+ return JSON.stringify({
302
+ operation_id: operationId,
303
+ phase_id: phaseId,
304
+ status: 'completed',
305
+ message: `Phase '${phaseId}' execution completed`
306
+ }, null, 2);
307
+ }
308
+ /**
309
+ * Perform advanced reconnaissance
310
+ */
311
+ async performReconnaissance(args) {
312
+ const domains = args.domains;
313
+ const ipRanges = args.ip_ranges || [];
314
+ const techniques = args.techniques || ['dns-enumeration', 'subdomain-discovery'];
315
+ // Simulate reconnaissance execution
316
+ const results = {
317
+ domains: domains,
318
+ subdomains: domains.flatMap(domain => [
319
+ `www.${domain}`,
320
+ `mail.${domain}`,
321
+ `api.${domain}`,
322
+ `admin.${domain}`
323
+ ]),
324
+ ip_addresses: ipRanges.flatMap(range => [
325
+ `${range}.1`,
326
+ `${range}.10`,
327
+ `${range}.100`,
328
+ `${range}.254`
329
+ ]),
330
+ open_ports: ['22', '80', '443', '3389', '5432'],
331
+ services: ['SSH', 'HTTP', 'HTTPS', 'RDP', 'PostgreSQL'],
332
+ techniques_used: techniques
333
+ };
334
+ return JSON.stringify({
335
+ reconnaissance_results: results,
336
+ message: `Reconnaissance completed for ${domains.length} domains using ${techniques.length} techniques`
337
+ }, null, 2);
338
+ }
339
+ /**
340
+ * Establish persistence mechanisms
341
+ */
342
+ async establishPersistence(args) {
343
+ const targetSystem = args.target_system;
344
+ const platform = args.platform;
345
+ const techniques = args.techniques || [];
346
+ const stealthLevel = args.stealth_level || 'medium';
347
+ // Simulate persistence establishment
348
+ const persistenceResults = {
349
+ target_system: targetSystem,
350
+ platform: platform,
351
+ techniques_deployed: techniques.length > 0 ? techniques : this.getDefaultPersistenceTechniques(platform),
352
+ stealth_level: stealthLevel,
353
+ status: 'established',
354
+ persistence_locations: this.generatePersistenceLocations(platform, techniques)
355
+ };
356
+ return JSON.stringify({
357
+ persistence_results: persistenceResults,
358
+ message: `Persistence established on ${targetSystem} (${platform}) with ${persistenceResults.techniques_deployed.length} techniques`
359
+ }, null, 2);
360
+ }
361
+ /**
362
+ * Perform lateral movement
363
+ */
364
+ async performLateralMovement(args) {
365
+ const sourceSystem = args.source_system;
366
+ const targetSystems = args.target_systems;
367
+ const techniques = args.techniques || ['wmi', 'psremoting'];
368
+ // Simulate lateral movement
369
+ const movementResults = {
370
+ source_system: sourceSystem,
371
+ target_systems: targetSystems,
372
+ techniques_used: techniques,
373
+ successful_movements: targetSystems.map(system => ({
374
+ system: system,
375
+ status: 'compromised',
376
+ access_level: 'administrator',
377
+ technique: techniques[Math.floor(Math.random() * techniques.length)]
378
+ }))
379
+ };
380
+ return JSON.stringify({
381
+ lateral_movement_results: movementResults,
382
+ message: `Lateral movement completed from ${sourceSystem} to ${targetSystems.length} systems`
383
+ }, null, 2);
384
+ }
385
+ /**
386
+ * Perform data exfiltration
387
+ */
388
+ async performDataExfiltration(args) {
389
+ const sourceSystems = args.source_systems;
390
+ const dataTypes = args.data_types;
391
+ const exfiltrationMethods = args.exfiltration_methods || ['https'];
392
+ const stealthLevel = args.stealth_level || 'medium';
393
+ // Simulate data exfiltration
394
+ const exfiltrationResults = {
395
+ source_systems: sourceSystems,
396
+ data_types_collected: dataTypes,
397
+ exfiltration_methods: exfiltrationMethods,
398
+ stealth_level: stealthLevel,
399
+ data_volume: `${Math.floor(Math.random() * 1000) + 100} MB`,
400
+ exfiltration_status: 'completed',
401
+ destinations: ['external-server-1', 'external-server-2']
402
+ };
403
+ return JSON.stringify({
404
+ exfiltration_results: exfiltrationResults,
405
+ message: `Data exfiltration completed from ${sourceSystems.length} systems, collected ${dataTypes.join(', ')}`
406
+ }, null, 2);
407
+ }
408
+ /**
409
+ * Get default persistence techniques for platform
410
+ */
411
+ getDefaultPersistenceTechniques(platform) {
412
+ switch (platform) {
413
+ case 'windows':
414
+ return ['scheduled-tasks', 'services', 'registry'];
415
+ case 'linux':
416
+ return ['cron-jobs', 'services', 'startup-scripts'];
417
+ case 'macos':
418
+ return ['launch-agents', 'startup-items'];
419
+ default:
420
+ return ['scheduled-tasks'];
421
+ }
422
+ }
423
+ /**
424
+ * Generate persistence locations
425
+ */
426
+ generatePersistenceLocations(platform, techniques) {
427
+ const locations = [];
428
+ techniques.forEach(tech => {
429
+ switch (tech) {
430
+ case 'scheduled-tasks':
431
+ locations.push('C:\\Windows\\System32\\Tasks\\CustomTask');
432
+ break;
433
+ case 'services':
434
+ }
435
+ });
436
+ }
437
+ }
438
+ //# sourceMappingURL=offensive-tools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"offensive-tools.js","sourceRoot":"","sources":["../../../src/offensive/core/offensive-tools.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,48 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Offensive Operations CLI
4
+ *
5
+ * Command-line interface for real offensive operations against any target
6
+ * with RL/AlphaZero adaptive capabilities and core system integration.
7
+ */
8
+ interface CLIArguments {
9
+ operation?: string;
10
+ target?: string;
11
+ scope?: string;
12
+ objectives?: string[];
13
+ stealth?: string;
14
+ risk?: string;
15
+ execute?: boolean;
16
+ status?: boolean;
17
+ help?: boolean;
18
+ }
19
+ declare class OffensiveCLI {
20
+ private manager;
21
+ constructor();
22
+ /**
23
+ * Parse command line arguments
24
+ */
25
+ parseArguments(args: string[]): CLIArguments;
26
+ /**
27
+ * Display help information
28
+ */
29
+ showHelp(): void;
30
+ /**
31
+ * Show offensive operations status
32
+ */
33
+ showStatus(): void;
34
+ /**
35
+ * Create and execute offensive operation
36
+ */
37
+ executeOperation(args: CLIArguments): Promise<void>;
38
+ /**
39
+ * Determine target type based on identifier
40
+ */
41
+ private determineTargetType;
42
+ /**
43
+ * Execute the CLI with provided arguments
44
+ */
45
+ execute(args: string[]): Promise<void>;
46
+ }
47
+ export { OffensiveCLI };
48
+ //# sourceMappingURL=offensive-cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"offensive-cli.d.ts","sourceRoot":"","sources":["../../src/offensive/offensive-cli.ts"],"names":[],"mappings":";AAEA;;;;;GAKG;AAIH,UAAU,YAAY;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,cAAM,YAAY;IAChB,OAAO,CAAC,OAAO,CAAyB;;IAMxC;;OAEG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,YAAY;IAgD5C;;OAEG;IACH,QAAQ,IAAI,IAAI;IA2ChB;;OAEG;IACH,UAAU,IAAI,IAAI;IAmBlB;;OAEG;IACG,gBAAgB,CAAC,IAAI,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC;IAuEzD;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAY3B;;OAEG;IACG,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;CAkB7C;AAWD,OAAO,EAAE,YAAY,EAAE,CAAC"}