@cccsaurora/howler-ui 2.18.0 → 2.19.0-cases.861

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 (342) hide show
  1. package/api/index.d.ts +4 -0
  2. package/api/index.js +10 -2
  3. package/api/search/case.d.ts +4 -0
  4. package/api/search/case.js +8 -0
  5. package/api/search/facet/hit.d.ts +1 -3
  6. package/api/search/facet/index.d.ts +3 -1
  7. package/api/search/index.d.ts +2 -1
  8. package/api/search/index.js +2 -1
  9. package/api/socket/index.d.ts +3 -0
  10. package/api/socket/index.js +6 -0
  11. package/api/socket/viewers.d.ts +2 -0
  12. package/api/socket/viewers.js +8 -0
  13. package/api/socket/viewers.test.js +44 -0
  14. package/api/v2/case/index.d.ts +9 -0
  15. package/api/v2/case/index.js +21 -0
  16. package/api/v2/case/items.d.ts +6 -0
  17. package/api/v2/case/items.js +18 -0
  18. package/api/v2/case/rules.d.ts +6 -0
  19. package/api/v2/case/rules.js +18 -0
  20. package/api/v2/index.d.ts +4 -0
  21. package/api/v2/index.js +6 -0
  22. package/api/v2/search/facet.d.ts +3 -0
  23. package/api/v2/search/facet.js +12 -0
  24. package/api/v2/search/index.d.ts +5 -0
  25. package/api/v2/search/index.js +24 -0
  26. package/commons/components/leftnav/LeftNavDrawer.js +1 -1
  27. package/components/app/App.js +52 -12
  28. package/components/app/hooks/useMatchers.d.ts +1 -1
  29. package/components/app/hooks/useMatchers.js +23 -11
  30. package/components/app/hooks/useMatchers.test.js +22 -22
  31. package/components/app/hooks/useTitle.js +5 -5
  32. package/components/app/providers/FavouritesProvider.js +2 -2
  33. package/components/app/providers/ModalProvider.d.ts +1 -0
  34. package/components/app/providers/ParameterProvider.d.ts +9 -2
  35. package/components/app/providers/ParameterProvider.js +165 -240
  36. package/components/app/providers/ParameterProvider.test.js +346 -94
  37. package/components/app/providers/RecordProvider.d.ts +23 -0
  38. package/components/app/providers/{HitProvider.js → RecordProvider.js} +41 -41
  39. package/components/app/providers/{HitSearchProvider.d.ts → RecordSearchProvider.d.ts} +6 -6
  40. package/components/app/providers/{HitSearchProvider.js → RecordSearchProvider.js} +12 -17
  41. package/components/app/providers/{HitSearchProvider.test.js → RecordSearchProvider.test.js} +52 -71
  42. package/components/app/providers/SocketProvider.d.ts +11 -2
  43. package/components/app/providers/SocketProvider.js +18 -5
  44. package/components/app/providers/UserListProvider.js +28 -8
  45. package/components/elements/ContextMenu.d.ts +56 -0
  46. package/components/elements/ContextMenu.js +109 -0
  47. package/components/elements/ContextMenu.test.d.ts +1 -0
  48. package/components/elements/ContextMenu.test.js +215 -0
  49. package/components/{routes/overviews/OverviewEditor.js → elements/MarkdownEditor.js} +3 -3
  50. package/components/elements/ObjectDetails.d.ts +6 -0
  51. package/components/elements/{hit/HitDetails.js → ObjectDetails.js} +17 -17
  52. package/components/elements/PluginTypography.d.ts +2 -1
  53. package/components/elements/PluginTypography.js +3 -2
  54. package/components/elements/UserList.d.ts +5 -2
  55. package/components/elements/UserList.js +18 -8
  56. package/components/elements/addons/search/phrase/Phrase.js +1 -1
  57. package/components/elements/case/CaseCard.d.ts +12 -0
  58. package/components/elements/case/CaseCard.js +42 -0
  59. package/components/elements/case/CasePreview.d.ts +6 -0
  60. package/components/elements/case/CasePreview.js +17 -0
  61. package/components/elements/case/StatusIcon.d.ts +5 -0
  62. package/components/elements/case/StatusIcon.js +13 -0
  63. package/components/elements/display/ChipPopper.d.ts +1 -1
  64. package/components/elements/display/ChipPopper.js +5 -5
  65. package/components/elements/display/HowlerCard.js +1 -1
  66. package/components/elements/display/Modal.js +2 -0
  67. package/components/elements/hit/HitActions.js +4 -4
  68. package/components/elements/hit/HitBanner.d.ts +1 -0
  69. package/components/elements/hit/HitBanner.js +34 -51
  70. package/components/elements/hit/HitCard.d.ts +2 -0
  71. package/components/elements/hit/HitCard.js +7 -7
  72. package/components/elements/hit/HitLabels.js +2 -2
  73. package/components/elements/hit/HitOutline.d.ts +1 -0
  74. package/components/elements/hit/HitOutline.js +3 -3
  75. package/components/elements/hit/{HitQuickSearch.d.ts → HitPreview.d.ts} +3 -3
  76. package/components/elements/hit/{HitQuickSearch.js → HitPreview.js} +10 -4
  77. package/components/elements/hit/HitSummary.d.ts +2 -1
  78. package/components/elements/hit/HitSummary.js +6 -5
  79. package/components/elements/hit/aggregate/HitGraph.js +8 -8
  80. package/components/elements/hit/elements/AnalyticLink.d.ts +9 -0
  81. package/components/elements/hit/elements/AnalyticLink.js +22 -0
  82. package/components/elements/hit/elements/Assigned.js +6 -3
  83. package/components/elements/hit/elements/Assigned.test.d.ts +1 -0
  84. package/components/elements/hit/elements/Assigned.test.js +65 -0
  85. package/components/elements/hit/outlines/DefaultOutline.js +1 -1
  86. package/components/elements/hit/related/RelatedRecords.js +63 -0
  87. package/components/elements/observable/ObservableCard.d.ts +6 -0
  88. package/components/elements/observable/ObservableCard.js +22 -0
  89. package/components/elements/observable/ObservablePreview.d.ts +6 -0
  90. package/components/elements/observable/ObservablePreview.js +12 -0
  91. package/components/elements/{hit/HitComments.d.ts → record/RecordComments.d.ts} +5 -4
  92. package/components/elements/{hit/HitComments.js → record/RecordComments.js} +29 -28
  93. package/components/{routes/hits/search/HitContextMenu.d.ts → elements/record/RecordContextMenu.d.ts} +3 -3
  94. package/components/elements/record/RecordContextMenu.js +268 -0
  95. package/components/elements/record/RecordContextMenu.test.d.ts +1 -0
  96. package/components/{routes/hits/search/HitContextMenu.test.js → elements/record/RecordContextMenu.test.js} +190 -39
  97. package/components/elements/record/RecordRelated.d.ts +7 -0
  98. package/components/elements/record/RecordRelated.js +34 -0
  99. package/components/elements/{hit/HitWorklog.d.ts → record/RecordWorklog.d.ts} +4 -3
  100. package/components/elements/{hit/HitWorklog.js → record/RecordWorklog.js} +15 -13
  101. package/components/elements/view/ViewTitle.d.ts +1 -0
  102. package/components/elements/view/ViewTitle.js +9 -2
  103. package/components/hooks/useHitActions.d.ts +1 -1
  104. package/components/hooks/useHitActions.js +4 -4
  105. package/components/hooks/useMyPreferences.js +10 -1
  106. package/components/hooks/useMySearch.js +2 -2
  107. package/components/hooks/useMySitemap.js +4 -1
  108. package/components/hooks/useMyTheme.js +9 -2
  109. package/components/hooks/{useHitSelection.d.ts → useRecordSelection.d.ts} +2 -2
  110. package/components/hooks/{useHitSelection.js → useRecordSelection.js} +12 -33
  111. package/components/hooks/useRelatedRecords.d.ts +13 -0
  112. package/components/hooks/useRelatedRecords.js +32 -0
  113. package/components/routes/403.d.ts +3 -0
  114. package/components/routes/403.js +10 -0
  115. package/components/routes/action/edit/ActionEditor.js +3 -3
  116. package/components/routes/action/useMyActionFunctions.js +4 -1
  117. package/components/routes/action/view/ActionDetails.js +6 -1
  118. package/components/routes/action/view/ActionSearch.js +5 -4
  119. package/components/routes/action/view/markdown/integrations.en.md.js +1 -1
  120. package/components/routes/action/view/markdown/integrations.fr.md.js +1 -1
  121. package/components/routes/advanced/QueryBuilder.js +1 -1
  122. package/components/routes/advanced/QueryEditor.js +3 -3
  123. package/components/routes/advanced/historyCompletionProvider.js +3 -3
  124. package/components/routes/analytics/AnalyticDetails.js +2 -2
  125. package/components/routes/analytics/AnalyticSearch.js +1 -1
  126. package/components/routes/cases/CaseViewer.d.ts +2 -0
  127. package/components/routes/cases/CaseViewer.js +44 -0
  128. package/components/routes/cases/CaseViewer.test.d.ts +1 -0
  129. package/components/routes/cases/CaseViewer.test.js +133 -0
  130. package/components/routes/cases/Cases.d.ts +2 -0
  131. package/components/routes/cases/Cases.js +148 -0
  132. package/components/routes/cases/constants.d.ts +6 -0
  133. package/components/routes/cases/constants.js +6 -0
  134. package/components/routes/cases/detail/AlertPanel.d.ts +6 -0
  135. package/components/routes/cases/detail/AlertPanel.js +33 -0
  136. package/components/routes/cases/detail/CaseAssets.d.ts +11 -0
  137. package/components/routes/cases/detail/CaseAssets.js +104 -0
  138. package/components/routes/cases/detail/CaseAssets.test.d.ts +1 -0
  139. package/components/routes/cases/detail/CaseAssets.test.js +167 -0
  140. package/components/routes/cases/detail/CaseDashboard.d.ts +7 -0
  141. package/components/routes/cases/detail/CaseDashboard.js +66 -0
  142. package/components/routes/cases/detail/CaseDetails.d.ts +6 -0
  143. package/components/routes/cases/detail/CaseDetails.js +70 -0
  144. package/components/routes/cases/detail/CaseOverview.d.ts +7 -0
  145. package/components/routes/cases/detail/CaseOverview.js +43 -0
  146. package/components/routes/cases/detail/CaseRules.d.ts +7 -0
  147. package/components/routes/cases/detail/CaseRules.js +57 -0
  148. package/components/routes/cases/detail/CaseRules.test.d.ts +1 -0
  149. package/components/routes/cases/detail/CaseRules.test.js +221 -0
  150. package/components/routes/cases/detail/CaseSidebar.d.ts +8 -0
  151. package/components/routes/cases/detail/CaseSidebar.js +107 -0
  152. package/components/routes/cases/detail/CaseSidebar.test.d.ts +1 -0
  153. package/components/routes/cases/detail/CaseSidebar.test.js +266 -0
  154. package/components/routes/cases/detail/CaseTask.d.ts +11 -0
  155. package/components/routes/cases/detail/CaseTask.js +66 -0
  156. package/components/routes/cases/detail/CaseTimeline.d.ts +12 -0
  157. package/components/routes/cases/detail/CaseTimeline.js +106 -0
  158. package/components/routes/cases/detail/CaseTimeline.test.d.ts +1 -0
  159. package/components/routes/cases/detail/CaseTimeline.test.js +320 -0
  160. package/components/routes/cases/detail/CreateRuleDialog.d.ts +9 -0
  161. package/components/routes/cases/detail/CreateRuleDialog.js +163 -0
  162. package/components/routes/cases/detail/CreateRuleDialog.test.d.ts +1 -0
  163. package/components/routes/cases/detail/CreateRuleDialog.test.js +259 -0
  164. package/components/routes/cases/detail/ItemPage.d.ts +6 -0
  165. package/components/routes/cases/detail/ItemPage.js +95 -0
  166. package/components/routes/cases/detail/RelatedCasePanel.d.ts +6 -0
  167. package/components/routes/cases/detail/RelatedCasePanel.js +34 -0
  168. package/components/routes/cases/detail/TaskPanel.d.ts +7 -0
  169. package/components/routes/cases/detail/TaskPanel.js +52 -0
  170. package/components/routes/cases/detail/aggregates/CaseAggregate.d.ts +11 -0
  171. package/components/routes/cases/detail/aggregates/CaseAggregate.js +24 -0
  172. package/components/routes/cases/detail/aggregates/SourceAggregate.d.ts +6 -0
  173. package/components/routes/cases/detail/aggregates/SourceAggregate.js +26 -0
  174. package/components/routes/cases/detail/assets/Asset.d.ts +14 -0
  175. package/components/routes/cases/detail/assets/Asset.js +12 -0
  176. package/components/routes/cases/detail/assets/Asset.test.d.ts +1 -0
  177. package/components/routes/cases/detail/assets/Asset.test.js +72 -0
  178. package/components/routes/cases/detail/sidebar/CaseFolder.d.ts +20 -0
  179. package/components/routes/cases/detail/sidebar/CaseFolder.js +83 -0
  180. package/components/routes/cases/detail/sidebar/CaseFolder.test.d.ts +1 -0
  181. package/components/routes/cases/detail/sidebar/CaseFolder.test.js +295 -0
  182. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.d.ts +34 -0
  183. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.js +103 -0
  184. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.d.ts +1 -0
  185. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.js +363 -0
  186. package/components/routes/cases/detail/sidebar/FolderEntry.d.ts +25 -0
  187. package/components/routes/cases/detail/sidebar/FolderEntry.js +88 -0
  188. package/components/routes/cases/detail/sidebar/FolderEntry.test.d.ts +1 -0
  189. package/components/routes/cases/detail/sidebar/FolderEntry.test.js +206 -0
  190. package/components/routes/cases/detail/sidebar/RootDropZone.d.ts +5 -0
  191. package/components/routes/cases/detail/sidebar/RootDropZone.js +33 -0
  192. package/components/routes/cases/detail/sidebar/types.d.ts +9 -0
  193. package/components/routes/cases/detail/sidebar/utils.d.ts +3 -0
  194. package/components/routes/cases/detail/sidebar/utils.js +29 -0
  195. package/components/routes/cases/detail/sidebar/utils.test.d.ts +1 -0
  196. package/components/routes/cases/detail/sidebar/utils.test.js +82 -0
  197. package/components/routes/cases/hooks/useCase.d.ts +13 -0
  198. package/components/routes/cases/hooks/useCase.js +69 -0
  199. package/components/routes/cases/hooks/useCase.test.d.ts +1 -0
  200. package/components/routes/cases/hooks/useCase.test.js +141 -0
  201. package/components/routes/cases/modals/AddToCaseModal.d.ts +7 -0
  202. package/components/routes/cases/modals/AddToCaseModal.js +59 -0
  203. package/components/routes/cases/modals/AddToCaseModal.test.d.ts +1 -0
  204. package/components/routes/cases/modals/AddToCaseModal.test.js +313 -0
  205. package/components/routes/cases/modals/CaseRecordRow.d.ts +9 -0
  206. package/components/routes/cases/modals/CaseRecordRow.js +15 -0
  207. package/components/routes/cases/modals/CreateCaseModal.d.ts +7 -0
  208. package/components/routes/cases/modals/CreateCaseModal.js +55 -0
  209. package/components/routes/cases/modals/CreateCaseModal.test.d.ts +1 -0
  210. package/components/routes/cases/modals/CreateCaseModal.test.js +358 -0
  211. package/components/routes/cases/modals/RenameItemModal.d.ts +9 -0
  212. package/components/routes/cases/modals/RenameItemModal.js +48 -0
  213. package/components/routes/cases/modals/ResolveModal.d.ts +7 -0
  214. package/components/routes/cases/modals/ResolveModal.js +115 -0
  215. package/components/routes/cases/modals/ResolveModal.test.d.ts +1 -0
  216. package/components/routes/cases/modals/ResolveModal.test.js +394 -0
  217. package/components/routes/cases/modals/hooks.d.ts +7 -0
  218. package/components/routes/cases/modals/hooks.js +44 -0
  219. package/components/routes/cases/modals/types.d.ts +5 -0
  220. package/components/routes/cases/search/CaseAssigneeFilter.d.ts +6 -0
  221. package/components/routes/cases/search/CaseAssigneeFilter.js +33 -0
  222. package/components/routes/cases/search/CaseAssigneeFilter.test.d.ts +1 -0
  223. package/components/routes/cases/search/CaseAssigneeFilter.test.js +127 -0
  224. package/components/routes/cases/search/CaseDateFilter.d.ts +13 -0
  225. package/components/routes/cases/search/CaseDateFilter.js +26 -0
  226. package/components/routes/cases/search/CaseDateFilter.test.d.ts +1 -0
  227. package/components/routes/cases/search/CaseDateFilter.test.js +115 -0
  228. package/components/routes/cases/search/CaseStatusFilter.d.ts +6 -0
  229. package/components/routes/cases/search/CaseStatusFilter.js +13 -0
  230. package/components/routes/cases/search/CaseStatusFilter.test.d.ts +1 -0
  231. package/components/routes/cases/search/CaseStatusFilter.test.js +86 -0
  232. package/components/routes/dossiers/DossierEditor.js +2 -2
  233. package/components/routes/dossiers/DossierEditor.test.js +1 -1
  234. package/components/routes/help/ActionIntroductionDocumentation.js +1 -1
  235. package/components/routes/help/ApiDocumentation.js +1 -1
  236. package/components/routes/help/HitBannerDocumentation.js +1 -0
  237. package/components/routes/help/HitDocumentation.js +1 -3
  238. package/components/routes/help/markdown/en/retention.md.js +1 -1
  239. package/components/routes/help/markdown/fr/retention.md.js +1 -1
  240. package/components/routes/hits/search/InformationPane.d.ts +1 -0
  241. package/components/routes/hits/search/InformationPane.js +50 -63
  242. package/components/routes/hits/search/LayoutSettings.js +3 -3
  243. package/components/routes/hits/search/QuerySettings.js +2 -1
  244. package/components/routes/hits/search/QuerySettings.test.js +14 -9
  245. package/components/routes/hits/search/{HitBrowser.js → RecordBrowser.js} +9 -9
  246. package/components/routes/hits/search/{HitQuery.d.ts → RecordQuery.d.ts} +2 -2
  247. package/components/routes/hits/search/{HitQuery.js → RecordQuery.js} +6 -6
  248. package/components/routes/hits/search/SearchPane.js +26 -49
  249. package/components/routes/hits/search/ViewLink.js +3 -3
  250. package/components/routes/hits/search/ViewLink.test.js +8 -8
  251. package/components/routes/hits/search/grid/AddColumnModal.js +5 -4
  252. package/components/routes/hits/search/grid/EnhancedCell.d.ts +2 -1
  253. package/components/routes/hits/search/grid/EnhancedCell.js +2 -2
  254. package/components/routes/hits/search/grid/HitGrid.js +20 -18
  255. package/components/routes/hits/search/grid/{HitRow.d.ts → RecordRow.d.ts} +3 -2
  256. package/components/routes/hits/search/grid/{HitRow.js → RecordRow.js} +10 -8
  257. package/components/routes/hits/search/shared/IndexPicker.d.ts +2 -0
  258. package/components/routes/hits/search/shared/IndexPicker.js +20 -0
  259. package/components/routes/hits/view/HitViewer.js +12 -13
  260. package/components/routes/home/AddNewCard.js +1 -1
  261. package/components/routes/home/ViewCard.js +47 -41
  262. package/components/routes/observables/ObservableViewer.d.ts +7 -0
  263. package/components/routes/observables/ObservableViewer.js +27 -0
  264. package/components/routes/overviews/OverviewViewer.js +2 -2
  265. package/components/routes/overviews/template/en.md.js +1 -1
  266. package/components/routes/overviews/template/fr.md.js +1 -1
  267. package/components/routes/views/ViewComposer.js +46 -19
  268. package/locales/en/translation.json +125 -3
  269. package/locales/fr/translation.json +123 -3
  270. package/models/WithMetadata.d.ts +2 -1
  271. package/models/entities/generated/ApiType.d.ts +1 -1
  272. package/models/entities/generated/AttachmentsFile.d.ts +12 -0
  273. package/models/entities/generated/Case.d.ts +28 -0
  274. package/models/entities/generated/DestinationOriginal.d.ts +19 -0
  275. package/models/entities/generated/EmailAttachment.d.ts +8 -0
  276. package/models/entities/generated/EmailParent.d.ts +19 -0
  277. package/models/entities/generated/Enrichments.d.ts +7 -0
  278. package/models/entities/generated/EnrichmentsIndicator.d.ts +21 -0
  279. package/models/entities/generated/Hit.d.ts +1 -0
  280. package/models/entities/generated/Howler.d.ts +0 -5
  281. package/models/entities/generated/HttpResponse.d.ts +11 -0
  282. package/models/entities/generated/Item.d.ts +9 -0
  283. package/models/entities/generated/Observable.d.ts +85 -0
  284. package/models/entities/generated/ObservableCloud.d.ts +20 -0
  285. package/models/entities/generated/ObservableDestination.d.ts +23 -0
  286. package/models/entities/generated/ObservableEmail.d.ts +30 -0
  287. package/models/entities/generated/ObservableFile.d.ts +36 -0
  288. package/models/entities/generated/ObservableHowler.d.ts +42 -0
  289. package/models/entities/generated/ObservableHttp.d.ts +11 -0
  290. package/models/entities/generated/ObservableObserver.d.ts +21 -0
  291. package/models/entities/generated/ObservableOrganization.d.ts +7 -0
  292. package/models/entities/generated/ObservableProcess.d.ts +34 -0
  293. package/models/entities/generated/ObservableSource.d.ts +23 -0
  294. package/models/entities/generated/ObservableThreat.d.ts +21 -0
  295. package/models/entities/generated/ObservableTls.d.ts +12 -0
  296. package/models/entities/generated/ObserverIngress.d.ts +9 -0
  297. package/models/entities/generated/Rule.d.ts +6 -9
  298. package/models/entities/generated/Task.d.ts +10 -0
  299. package/models/entities/generated/Threat.d.ts +2 -2
  300. package/models/entities/generated/{Enrichment.d.ts → ThreatEnrichment.d.ts} +1 -1
  301. package/models/entities/generated/View.d.ts +1 -0
  302. package/models/socket/CaseUpdate.d.ts +5 -0
  303. package/models/socket/ViewersUpdate.d.ts +4 -0
  304. package/package.json +23 -8
  305. package/plugins/clue/components/ClueTypography.js +2 -2
  306. package/plugins/clue/utils.d.ts +2 -1
  307. package/tests/mocks.d.ts +11 -1
  308. package/tests/mocks.js +12 -7
  309. package/tests/server-handlers.js +6 -1
  310. package/tests/utils.d.ts +4 -0
  311. package/tests/utils.js +20 -0
  312. package/utils/constants.d.ts +4 -3
  313. package/utils/constants.js +6 -0
  314. package/utils/hitFunctions.d.ts +2 -1
  315. package/utils/hitFunctions.js +4 -4
  316. package/utils/menuUtils.js +1 -1
  317. package/utils/socketUtils.d.ts +14 -0
  318. package/utils/socketUtils.js +17 -1
  319. package/utils/socketUtils.test.d.ts +1 -0
  320. package/utils/socketUtils.test.js +59 -0
  321. package/utils/typeUtils.d.ts +7 -0
  322. package/utils/typeUtils.js +27 -0
  323. package/utils/viewUtils.js +3 -0
  324. package/components/app/providers/HitProvider.d.ts +0 -22
  325. package/components/elements/display/icons/BundleButton.d.ts +0 -6
  326. package/components/elements/display/icons/BundleButton.js +0 -32
  327. package/components/elements/hit/HitRelated.d.ts +0 -6
  328. package/components/elements/hit/HitRelated.js +0 -7
  329. package/components/routes/help/BundleDocumentation.d.ts +0 -3
  330. package/components/routes/help/BundleDocumentation.js +0 -12
  331. package/components/routes/help/markdown/en/bundles.md.js +0 -1
  332. package/components/routes/help/markdown/fr/bundles.md.js +0 -1
  333. package/components/routes/hits/search/BundleParentMenu.d.ts +0 -6
  334. package/components/routes/hits/search/BundleParentMenu.js +0 -32
  335. package/components/routes/hits/search/BundleScroller.d.ts +0 -2
  336. package/components/routes/hits/search/BundleScroller.js +0 -6
  337. package/components/routes/hits/search/HitContextMenu.js +0 -229
  338. /package/{components/app/providers/HitSearchProvider.test.d.ts → api/socket/viewers.test.d.ts} +0 -0
  339. /package/components/{routes/hits/search/HitContextMenu.test.d.ts → app/providers/RecordSearchProvider.test.d.ts} +0 -0
  340. /package/components/{routes/overviews/OverviewEditor.d.ts → elements/MarkdownEditor.d.ts} +0 -0
  341. /package/components/elements/hit/{HitDetails.d.ts → related/RelatedRecords.d.ts} +0 -0
  342. /package/components/routes/hits/search/{HitBrowser.d.ts → RecordBrowser.d.ts} +0 -0
@@ -1,5 +1,7 @@
1
1
  {
2
2
  "*": "All values",
3
+ "Protected B": "Protected B",
4
+ "Unclassified//Official Use Only": "Unclassified//Official Use Only",
3
5
  "actions.running": "Action \"{{action}}\" is executing.",
4
6
  "actions.succeeded": "Action \"{{action}}\" completed successfully.",
5
7
  "actions.skipped": "Action \"{{action}}\" was skipped: {{messages}}",
@@ -13,6 +15,7 @@
13
15
  "analytic.notebook.error.minFields": "Name and link are required.",
14
16
  "analytic.notebook.link": "Link",
15
17
  "analytic.notebook.name": "Name",
18
+ "analytic.open": "Open Analytic",
16
19
  "any": "Any",
17
20
  "api.user.apikey.removed": "API key removed successfully.",
18
21
  "api.user.apikey.updated": "New API key added successfully.",
@@ -81,6 +84,8 @@
81
84
  "comments.edit.stop": "Stop Editing",
82
85
  "comments.edited": "Edited",
83
86
  "comments.quote": "Quote Reply",
87
+ "complete": "Complete",
88
+ "crisis": "Crisis",
84
89
  "custom": "Custom",
85
90
  "date.range.1.day": "The last day",
86
91
  "date.range.1.month": "The last month",
@@ -106,8 +111,12 @@
106
111
  "drawer.expand": "Expand Menu",
107
112
  "duplicates.omitted": "Some duplicate entries have been omitted.",
108
113
  "edit": "Edit",
114
+ "enabled": "Enabled",
115
+ "event.module": "Event Module",
116
+ "event.type": "Event Type",
109
117
  "features.warning.description": "This feature is undergoing active development, and is not yet in a finished state. You may encounter bugs or instability.",
110
118
  "features.warning.title": "Feature In Active Development",
119
+ "focus": "Main focus",
111
120
  "global": "Global",
112
121
  "help.actions.introduction": "Introduction to Actions",
113
122
  "help.hit.banner.description": "See the below hit banner example for the hit keys necessary to properly populate it. If you have any additional questions, ask in the HOWLER support channel.",
@@ -164,16 +173,21 @@
164
173
  "hit.header.assignment": "Assignment: {{user}}",
165
174
  "hit.header.assignment.add": "Assign to a user",
166
175
  "hit.header.assignment.change": "Change assignment",
167
- "hit.header.bundlesize": "{{hits}} hits",
168
176
  "hit.header.escalation": "Escalation Level: ",
169
177
  "hit.header.indicators": "Indicators",
178
+ "hit.header.link": "Open Link",
170
179
  "hit.header.rationale": "Rationale",
180
+ "hit.header.related": "{{count}} related records",
171
181
  "hit.header.scrutiny": "Scrutiny: ",
172
182
  "hit.header.status": "Status: ",
173
183
  "hit.header.summary": "Summary",
174
184
  "hit.header.target": "Target",
175
185
  "hit.header.threat": "Threat",
186
+ "hit.header.view.case": "View case {{id}}",
187
+ "hit.header.view.hit": "View hit {{id}}",
188
+ "hit.header.view.observable": "View observable {{id}}",
176
189
  "hit.header.votes": "Votes: ",
190
+ "hit.howler.related": "{{count}} related records",
177
191
  "hit.label": "Labels",
178
192
  "hit.label.category.assignments": "Category: Assignments - Specifies what analyst or team of analysts is assigned to triaging this hit.",
179
193
  "hit.label.category.campaign": "Catergory: Campaign - Identifies ongoing campaigns from specific malware families or phishing initiatives. They should only be considered correct attributions if the hit is promoted to evidence.",
@@ -189,15 +203,16 @@
189
203
  "hit.label.edit.add.error.duplicate": "Duplicated label not allowed",
190
204
  "hit.label.edit.add.error.empty": "Can't add an empty label",
191
205
  "hit.label.edit.add.label": "New label value",
206
+ "hit.label.edit.desc": "Add or remove labels",
192
207
  "hit.notebook.confirm.dialog": "A notebook with that name already exists in your environment, do you wish to overwrite it?",
193
208
  "hit.notebook.confirm.title": "Overwrite existing notebook?",
194
209
  "hit.notebook.error.failToPost": "Failed to send notebook to Jupyterhub, make sure your user environment is running.",
195
210
  "hit.notebook.goTo": "Go to Jupyterhub",
196
211
  "hit.notebook.select": "Please Select a notebook",
197
212
  "hit.notebook.tooltip": "Open in Jupyterhub",
213
+ "hit.open": "Open Hit",
198
214
  "hit.overview.missing": "No overview has been created for this hit. In order to create an overview, press the add button to the right.",
199
215
  "hit.panel.aggregation.run": "Create Summary",
200
- "hit.panel.analytic.open": "Open Analytic",
201
216
  "hit.panel.bundles.open": "Parent Bundles",
202
217
  "hit.panel.bundles.open.prompt": "Open Parent Bundle",
203
218
  "hit.panel.close": "Close",
@@ -210,9 +225,12 @@
210
225
  "hit.panel.exclude": "Exclude By",
211
226
  "hit.panel.hit.noselection": "No hit has been selected",
212
227
  "hit.panel.include": "Include By",
213
- "hit.panel.open": "Open Hit Viewer",
214
228
  "hit.panel.view.layout": "Change View Panel",
215
229
  "hit.quicksearch": "Search by assignment, analytic, detection or status",
230
+ "hit.related.tab.case": "Cases",
231
+ "hit.related.tab.hit": "Hits",
232
+ "hit.related.tab.links": "Links",
233
+ "hit.related.tab.observable": "Observables",
216
234
  "hit.search.aggregate.button": "Create Summary",
217
235
  "hit.search.button": "Perform search",
218
236
  "hit.search.custom": "Custom Sort",
@@ -221,6 +239,9 @@
221
239
  "hit.search.filter.fields": "Fields",
222
240
  "hit.search.filter.label": "Lookup Filters",
223
241
  "hit.search.filter.values": "Values",
242
+ "hit.search.index": "Indexes",
243
+ "hit.search.index.hit": "Hits",
244
+ "hit.search.index.observable": "Observables",
224
245
  "hit.search.invalid": "Invalid Query",
225
246
  "hit.search.keyboard": "Keyboard shortcuts",
226
247
  "hit.search.keyboard.no_shortcuts": "No shortcuts",
@@ -258,6 +279,7 @@
258
279
  "hit.summary.subtitle": "Limited to a maximum of 10 000 hits.",
259
280
  "hit.summary.title": "Summary of Hits Over Time",
260
281
  "hit.summary.zoom.reset": "Reset Zoom",
282
+ "hit.view.overview": "Overview",
261
283
  "hit.viewer.aggregate": "Summary",
262
284
  "hit.viewer.comments": "Comments",
263
285
  "hit.viewer.data": "Raw Data",
@@ -293,6 +315,31 @@
293
315
  "modal.action.empty": "Action Name cannot be empty.",
294
316
  "modal.action.label": "Action Name",
295
317
  "modal.action.title": "Save Action",
318
+ "modal.cases.add_to_case": "Add to Case",
319
+ "modal.cases.add_to_case.full_path": "Full path: {{path}}",
320
+ "modal.cases.add_to_case.items_section": "Alert Placement",
321
+ "modal.cases.add_to_case.path_invalid": "Path must not start or end with a /",
322
+ "modal.cases.add_to_case.select_case": "Search Cases",
323
+ "modal.cases.add_to_case.select_path": "Select Folder Path",
324
+ "modal.cases.add_to_case.title": "Item Title",
325
+ "modal.cases.alerts.resolved": "Resolved Alerts",
326
+ "modal.cases.create_case": "Create Case",
327
+ "modal.cases.create_case.escalation": "Escalation",
328
+ "modal.cases.create_case.full_path": "Full path: {{path}}",
329
+ "modal.cases.create_case.item.path": "Folder Path (optional)",
330
+ "modal.cases.create_case.item.title": "Item Title",
331
+ "modal.cases.create_case.items_section": "Alert Placement",
332
+ "modal.cases.create_case.overview": "Case Overview (Markdown, optional)",
333
+ "modal.cases.create_case.summary": "Short Case Summary",
334
+ "modal.cases.create_case.title": "Case Title",
335
+ "modal.cases.rename_item": "Rename Item",
336
+ "modal.cases.rename_item.error.empty": "Name cannot be empty",
337
+ "modal.cases.rename_item.error.slash": "Name cannot contain '/'",
338
+ "modal.cases.rename_item.error.taken": "An item already exists at this path",
339
+ "modal.cases.rename_item.folder_path": "Folder: {{path}}",
340
+ "modal.cases.rename_item.new_name": "New Name",
341
+ "modal.cases.resolve": "Resolve Case",
342
+ "modal.cases.resolve.description": "When resolving a case, you must either assess all open alerts, or add an assessment to the alerts.",
296
343
  "modal.confirm.delete.description": "Are you sure you want to delete this item?",
297
344
  "modal.confirm.delete.title": "Confirm Deletion",
298
345
  "modal.rationale.description": "Provide a rationale that succinctly explains to other analysts why you are confident in this assessment.",
@@ -314,6 +361,8 @@
314
361
  "modal.rule.title": "Create a New Rule",
315
362
  "no.data": "No Data",
316
363
  "none": "None",
364
+ "normal": "Normal Priority",
365
+ "observable.open": "Open Observable",
317
366
  "on": "on",
318
367
  "open": "Open",
319
368
  "operations.add_label": "Add Label",
@@ -331,8 +380,64 @@
331
380
  "outline.assemblyline.tags": "Tags",
332
381
  "overview.search": "Search Hit Data",
333
382
  "owner": "Owner",
383
+ "page.403.description": "You do not have permission to access this page.",
384
+ "page.403.title": "403: Access Forbidden",
334
385
  "page.404.description": "The page you are looking for cannot be found...",
335
386
  "page.404.title": "404: Not found",
387
+ "page.cases.assets": "Assets",
388
+ "page.cases.assets.empty": "No assets found.",
389
+ "page.cases.assets.filter_by_type": "Filter by type:",
390
+ "page.cases.assets.seen_in": "Seen in",
391
+ "page.cases.assets.type.hash": "Hash",
392
+ "page.cases.assets.type.hosts": "Host",
393
+ "page.cases.assets.type.id": "ID",
394
+ "page.cases.assets.type.ids": "ID",
395
+ "page.cases.assets.type.ip": "IP",
396
+ "page.cases.assets.type.signature": "Signature",
397
+ "page.cases.assets.type.uri": "URI",
398
+ "page.cases.assets.type.user": "User",
399
+ "page.cases.created": "Created",
400
+ "page.cases.dashboard": "Dashboard",
401
+ "page.cases.dashboard.alerts": "Alerts",
402
+ "page.cases.dashboard.cases": "Related Cases",
403
+ "page.cases.dashboard.duration": "Duration",
404
+ "page.cases.dashboard.indicators": "Indicators",
405
+ "page.cases.dashboard.target": "Targets",
406
+ "page.cases.dashboard.tasks": "Tasks",
407
+ "page.cases.dashboard.threat": "Threats",
408
+ "page.cases.detail.participants": "Participants",
409
+ "page.cases.detail.properties": "Properties",
410
+ "page.cases.detail.status": "Status",
411
+ "page.cases.detail.viewers": "Active Viewers",
412
+ "page.cases.escalation": "Escalation",
413
+ "page.cases.folder.drop.root": "Place here to move to root",
414
+ "page.cases.rules": "Rules",
415
+ "page.cases.rules.author": "Author",
416
+ "page.cases.rules.create": "Create Rule",
417
+ "page.cases.rules.delete.confirm": "Delete this rule?",
418
+ "page.cases.rules.destination": "Alert Destination Path",
419
+ "page.cases.rules.destination.help": "Handlebars template for the case item path (e.g. alerts/{{howler.analytic}})",
420
+ "page.cases.rules.empty": "No correlation rules configured.",
421
+ "page.cases.rules.no_expiry": "No expiry",
422
+ "page.cases.rules.query": "Match Query",
423
+ "page.cases.rules.timeframe": "Rule Expiry",
424
+ "page.cases.sidebar.folder.remove": "Remove folder",
425
+ "page.cases.sidebar.item.open": "Open item",
426
+ "page.cases.sidebar.item.remove": "Remove item",
427
+ "page.cases.sidebar.item.rename": "Rename item",
428
+ "page.cases.sources": "Sources",
429
+ "page.cases.status.in-progress": "In Progress",
430
+ "page.cases.status.on-hold": "On Hold",
431
+ "page.cases.status.open": "Open",
432
+ "page.cases.status.resolved": "Resolved",
433
+ "page.cases.timeline": "Timeline",
434
+ "page.cases.timeline.empty": "No events match the selected filters.",
435
+ "page.cases.timeline.filter.escalation": "Escalation",
436
+ "page.cases.timeline.filter.escalation.empty": "No escalation levels found.",
437
+ "page.cases.timeline.filter.label": "Show only",
438
+ "page.cases.timeline.filter.mitre": "MITRE ATT&CK",
439
+ "page.cases.timeline.filter.mitre.empty": "No tactics or techniques found.",
440
+ "page.cases.updated": "Updated",
336
441
  "page.dashboard.settings.edit": "Edit Dashboard",
337
442
  "page.dashboard.settings.refreshRate": "Refresh Rate",
338
443
  "page.dashboard.title": "Dashboard",
@@ -357,6 +462,7 @@
357
462
  "page.help": "Help",
358
463
  "page.help.title": "Help Dashboard",
359
464
  "page.login.button": "Sign in",
465
+ "page.login.error": "Just type anything in the username and password fields...",
360
466
  "page.login.password": "Password",
361
467
  "page.login.username": "Username",
362
468
  "page.logout": "Logging out current user ... ",
@@ -403,6 +509,8 @@
403
509
  "page.user.search.column.groups": "Groups",
404
510
  "page.user.search.column.username": "Username",
405
511
  "page.user.search.prompt": "Search by username, fullname, email or group",
512
+ "pages.cases.detail.participants": "Participants",
513
+ "pages.cases.detail.status": "Status",
406
514
  "password": "New Password",
407
515
  "password.confirm": "Confirm Password",
408
516
  "password.match": "Password and Confirm Password must match",
@@ -416,6 +524,7 @@
416
524
  "personalization.showbreadcrumbs": "Show Breadcrumbs",
417
525
  "personalization.sticky": "Sticky Topbar",
418
526
  "query": "Query",
527
+ "query.invalid": "Invalid query",
419
528
  "quicksearch.aria": "search",
420
529
  "quicksearch.placeholder": "Search ...",
421
530
  "rationale.default": "Hit assessed as {{assessment}}",
@@ -531,6 +640,16 @@
531
640
  "route.analytics.triage.title": "Triage Settings",
532
641
  "route.analytics.updated": "Analytic Updated!",
533
642
  "route.analytics.view": "View Analytic",
643
+ "route.cases": "Cases",
644
+ "route.cases.create": "Create Case",
645
+ "route.cases.filter.assignee": "Assignee",
646
+ "route.cases.filter.assignees": "Assignees",
647
+ "route.cases.filter.date": "Date Range",
648
+ "route.cases.filter.myself": "Myself",
649
+ "route.cases.filter.status": "Status",
650
+ "route.cases.manager.search": "Search Cases",
651
+ "route.cases.search.prompt": "Search cases by title, summary, description, participants or task details",
652
+ "route.cases.view": "View Case",
534
653
  "route.clear": "Clear query",
535
654
  "route.dossiers": "Dossiers",
536
655
  "route.dossiers.create": "New Dossier",
@@ -593,8 +712,10 @@
593
712
  "route.help.actions": "Action Documentation",
594
713
  "route.help.api": "API Documentation",
595
714
  "route.help.auth": "Authentication",
715
+ "route.help.bundles": "Hit Bundles",
596
716
  "route.help.client": "Howler Client",
597
717
  "route.help.hit": "Hit Documentation",
718
+ "route.help.hit.banner": "Hit Banner Documentation",
598
719
  "route.help.main": "Dashboard",
599
720
  "route.help.notebook": "Notebook Documentation",
600
721
  "route.help.overviews": "Overviews",
@@ -707,6 +828,7 @@
707
828
  "search.result.showing": "Showing {{offset}} to {{length}} of {{total}} results",
708
829
  "search.result.showing.single": "No results",
709
830
  "search.total": "There are a total of {{count}} hits matching this query.",
831
+ "started": "Started",
710
832
  "templates.edit.analytic": "Edit analytic template",
711
833
  "templates.edit.detection": "Edit detection template",
712
834
  "to": "to",
@@ -15,6 +15,7 @@
15
15
  "analytic.notebook.error.minFields": "Nom et lien requis.",
16
16
  "analytic.notebook.link": "Lien",
17
17
  "analytic.notebook.name": "Nom",
18
+ "analytic.open": "Ouvrir l'analyse",
18
19
  "any": "Tous",
19
20
  "api.user.apikey.removed": "Clé API supprimée avec succès",
20
21
  "api.user.apikey.updated": "Nouvelle clé API ajoutée avec succès.",
@@ -83,6 +84,8 @@
83
84
  "comments.edit.stop": "Arrêter Modification",
84
85
  "comments.edited": "Modifié",
85
86
  "comments.quote": "Citation Réponse",
87
+ "complete": "Terminé",
88
+ "crisis": "Crise",
86
89
  "custom": "Personnalisé",
87
90
  "date.range.1.day": "Dernier jour",
88
91
  "date.range.1.month": "Le dernier mois",
@@ -108,8 +111,12 @@
108
111
  "drawer.expand": "Ouvrir le Menu",
109
112
  "duplicates.omitted": "Certains doublons ont été omis.",
110
113
  "edit": "Modifier",
114
+ "enabled": "Activé",
115
+ "event.module": "Module d'événement",
116
+ "event.type": "Type d'événement",
111
117
  "features.warning.description": "Cette fonctionnalité fait l'objet d'un développement actif et n'est pas encore achevée. Il est possible que vous rencontriez des problèmes ou de l'instabilité.",
112
118
  "features.warning.title": "Fonctionnalité en développement actif",
119
+ "focus": "Focus principal",
113
120
  "global": "Global",
114
121
  "help.actions.introduction": "Introduction aux actions",
115
122
  "help.hit.banner.description": "Voir l'exemple d'en-tête de résultat ci-dessous pour connaître les clés de résultat nécessaires pour le remplir correctement. Si vous avez d'autres questions, posez-les dans le réseau d'assistance HOWLER.",
@@ -166,16 +173,21 @@
166
173
  "hit.header.assignment": "Affectation: {{user}}",
167
174
  "hit.header.assignment.add": "Attribuer à un utilisateur",
168
175
  "hit.header.assignment.change": "Changer l'affectation",
169
- "hit.header.bundlesize": "{{hits}} hits",
170
176
  "hit.header.escalation": "Niveau d'escalade: ",
171
177
  "hit.header.indicators": "Indicateurs",
178
+ "hit.header.link": "Ouvrir lien",
172
179
  "hit.header.rationale": "Justification",
180
+ "hit.header.related": "{{count}} documrents associés",
173
181
  "hit.header.scrutiny": "Examen minutieux: ",
174
182
  "hit.header.status": "Statut: ",
175
183
  "hit.header.summary": "Résumé",
176
184
  "hit.header.target": "Cible",
177
185
  "hit.header.threat": "Menace",
186
+ "hit.header.view.case": "Voir le cas {{id}}",
187
+ "hit.header.view.hit": "Voir l'alerte {{id}}",
188
+ "hit.header.view.observable": "Voir l'observable {{id}}",
178
189
  "hit.header.votes": "Votes: ",
190
+ "hit.howler.related": "{{count}} enregistrements associés",
179
191
  "hit.label": "Étiquettes",
180
192
  "hit.label.category.assignments": "Catégorie : Affectation - Indique quel analyste ou quelle équipe d'analystes est chargé(e) de trier cette réponse positive.",
181
193
  "hit.label.category.campaign": "Catégorie : Campagne - Identifie les campagnes en cours menées par des familles de logiciels malveillants ou des initiatives d'hameçonnage spécifiques. Elles ne doivent être considérées comme des attributions correctes que si le résultat positif est promu au rang de preuve.",
@@ -198,9 +210,9 @@
198
210
  "hit.notebook.goTo": "Aller a Jupyterhub",
199
211
  "hit.notebook.select": "Veuillez sélectionner un notebook",
200
212
  "hit.notebook.tooltip": "Ouvrir dans Jupyterhub",
213
+ "hit.open": "Ouvrir hit",
201
214
  "hit.overview.missing": "Aucune vue d'ensemble n'a été créée pour ce hit. Pour créer une vue d'ensemble, cliquez sur le bouton pour ajouter à droite.",
202
215
  "hit.panel.aggregation.run": "Créer un sommaire",
203
- "hit.panel.analytic.open": "Ouvrir l'analyse",
204
216
  "hit.panel.bundles.open": "Groupes parentaux",
205
217
  "hit.panel.bundles.open.prompt": "Ouvrir le groupe parent",
206
218
  "hit.panel.close": "Fermer",
@@ -213,9 +225,12 @@
213
225
  "hit.panel.exclude": "Exclure par",
214
226
  "hit.panel.hit.noselection": "Aucun résultat n'a été sélectionné",
215
227
  "hit.panel.include": "Inclure par",
216
- "hit.panel.open": "Ouvrir hit",
217
228
  "hit.panel.view.layout": "Modifier le panneau d'affichage",
218
229
  "hit.quicksearch": "Recherche par affectation, analytique, détection ou état",
230
+ "hit.related.tab.case": "Cas",
231
+ "hit.related.tab.hit": "Alertes",
232
+ "hit.related.tab.links": "Liens",
233
+ "hit.related.tab.observable": "Observables",
219
234
  "hit.search.aggregate.button": "Créer un sommaire",
220
235
  "hit.search.button": "Effectuer une recherche",
221
236
  "hit.search.custom": "Triage personnalisé",
@@ -224,6 +239,9 @@
224
239
  "hit.search.filter.fields": "Paramètres",
225
240
  "hit.search.filter.label": "Filtres de recherche",
226
241
  "hit.search.filter.values": "Valeurs",
242
+ "hit.search.index": "Indexes",
243
+ "hit.search.index.hit": "Hits",
244
+ "hit.search.index.observable": "Observables",
227
245
  "hit.search.invalid": "Requête invalide",
228
246
  "hit.search.keyboard": "Raccourcis clavier",
229
247
  "hit.search.keyboard.no_shortcuts": "Pas de raccourcis",
@@ -297,6 +315,31 @@
297
315
  "modal.action.empty": "Le nom de l'action ne peut pas être vide.",
298
316
  "modal.action.label": "Nom de l'action",
299
317
  "modal.action.title": "Enregistrer l'action",
318
+ "modal.cases.add_to_case": "Ajouter au cas",
319
+ "modal.cases.add_to_case.full_path": "Chemin complet : {{path}}",
320
+ "modal.cases.add_to_case.items_section": "Placement des alertes",
321
+ "modal.cases.add_to_case.path_invalid": "Le chemin ne doit pas commencer ou se terminer par un /",
322
+ "modal.cases.add_to_case.select_case": "Rechercher des cas",
323
+ "modal.cases.add_to_case.select_path": "Sélectionner le chemin du dossier",
324
+ "modal.cases.add_to_case.title": "Titre de l'élément",
325
+ "modal.cases.alerts.resolved": "Alertes résolues",
326
+ "modal.cases.create_case": "Créer un cas",
327
+ "modal.cases.create_case.escalation": "Escalade",
328
+ "modal.cases.create_case.full_path": "Chemin complet : {{path}}",
329
+ "modal.cases.create_case.item.path": "Chemin du dossier (optionnel)",
330
+ "modal.cases.create_case.item.title": "Titre de l'élément",
331
+ "modal.cases.create_case.items_section": "Placement des alertes",
332
+ "modal.cases.create_case.overview": "Vue d'ensemble du cas (Markdown, optionnel)",
333
+ "modal.cases.create_case.summary": "Résumé court du cas",
334
+ "modal.cases.create_case.title": "Titre du cas",
335
+ "modal.cases.rename_item": "Renommer l'élément",
336
+ "modal.cases.rename_item.error.empty": "Le nom ne peut pas être vide",
337
+ "modal.cases.rename_item.error.slash": "Le nom ne peut pas contenir '/'",
338
+ "modal.cases.rename_item.error.taken": "Un élément existe déjà à ce chemin",
339
+ "modal.cases.rename_item.folder_path": "Dossier : {{path}}",
340
+ "modal.cases.rename_item.new_name": "Nouveau nom",
341
+ "modal.cases.resolve": "Résoudre le cas",
342
+ "modal.cases.resolve.description": "Lors de la résolution d'un cas, vous devez soit évaluer toutes les alertes ouvertes, soit ajouter une évaluation aux alertes.",
300
343
  "modal.confirm.delete.description": "Êtes-vous sûr de vouloir supprimer cet élément ?",
301
344
  "modal.confirm.delete.title": "Confirmer la suppression",
302
345
  "modal.rationale.description": "Fournissez une justification qui explique succinctement aux autres analystes les raisons pour lesquelles vous êtes confiant dans cette évaluation.",
@@ -318,6 +361,8 @@
318
361
  "modal.rule.title": "Créer une nouvelle règle",
319
362
  "no.data": "Aucune donnée",
320
363
  "none": "Rien",
364
+ "normal": "Priorité normale",
365
+ "observable.open": "Ouvrir observable",
321
366
  "on": "sur",
322
367
  "open": "Ouvert",
323
368
  "operations.add_label": "Ajouter un label",
@@ -335,8 +380,64 @@
335
380
  "outline.assemblyline.tags": "Tags",
336
381
  "overview.search": "Recherche dans les champs du Hit",
337
382
  "owner": "Propriétaire",
383
+ "page.403.description": "Vous n'avez pas la permission d'accéder à cette page.",
384
+ "page.403.title": "403: Accès interdit",
338
385
  "page.404.description": "La page que vous recherchez est introuvable ...",
339
386
  "page.404.title": "404: Introuvable",
387
+ "page.cases.assets": "Actifs",
388
+ "page.cases.assets.empty": "Aucun actif trouvé.",
389
+ "page.cases.assets.filter_by_type": "Filtrer par type :",
390
+ "page.cases.assets.seen_in": "Vu dans",
391
+ "page.cases.assets.type.hash": "Hachage",
392
+ "page.cases.assets.type.hosts": "Hôte",
393
+ "page.cases.assets.type.id": "Identifiant",
394
+ "page.cases.assets.type.ids": "Identifiant",
395
+ "page.cases.assets.type.ip": "IP",
396
+ "page.cases.assets.type.signature": "Signature",
397
+ "page.cases.assets.type.uri": "URI",
398
+ "page.cases.assets.type.user": "Utilisateur",
399
+ "page.cases.created": "Créé",
400
+ "page.cases.dashboard": "Tableau de bord",
401
+ "page.cases.dashboard.alerts": "Alertes",
402
+ "page.cases.dashboard.cases": "Cas connexes",
403
+ "page.cases.dashboard.duration": "Durée",
404
+ "page.cases.dashboard.indicators": "Indicateurs",
405
+ "page.cases.dashboard.target": "Cibles",
406
+ "page.cases.dashboard.tasks": "Tâches",
407
+ "page.cases.dashboard.threat": "Menaces",
408
+ "page.cases.detail.participants": "Participants",
409
+ "page.cases.detail.properties": "Propriétés",
410
+ "page.cases.detail.status": "Statut",
411
+ "page.cases.detail.viewers": "Spectateurs actifs",
412
+ "page.cases.escalation": "Escalade",
413
+ "page.cases.folder.drop.root": "Déposer ici pour déplacer à la racine",
414
+ "page.cases.rules": "Règles",
415
+ "page.cases.rules.author": "Auteur",
416
+ "page.cases.rules.create": "Créer une règle",
417
+ "page.cases.rules.delete.confirm": "Supprimer cette règle ?",
418
+ "page.cases.rules.destination": "Chemin de destination des alertes",
419
+ "page.cases.rules.destination.help": "Modèle Handlebars pour le chemin de l'élément de cas (ex. alerts/{{howler.analytic}})",
420
+ "page.cases.rules.empty": "Aucune règle de corrélation configurée.",
421
+ "page.cases.rules.no_expiry": "Sans expiration",
422
+ "page.cases.rules.query": "Requête de correspondance",
423
+ "page.cases.rules.timeframe": "Expiration de la règle",
424
+ "page.cases.sidebar.folder.remove": "Supprimer le dossier",
425
+ "page.cases.sidebar.item.open": "Ouvrir l'élément",
426
+ "page.cases.sidebar.item.remove": "Supprimer l'élément",
427
+ "page.cases.sidebar.item.rename": "Renommer l'élément",
428
+ "page.cases.sources": "Sources",
429
+ "page.cases.status.in-progress": "En cours",
430
+ "page.cases.status.on-hold": "En attente",
431
+ "page.cases.status.open": "Ouvert",
432
+ "page.cases.status.resolved": "Résolu",
433
+ "page.cases.timeline": "Chronologie",
434
+ "page.cases.timeline.empty": "Aucun événement ne correspond aux filtres sélectionnés.",
435
+ "page.cases.timeline.filter.escalation": "Escalade",
436
+ "page.cases.timeline.filter.escalation.empty": "Aucun niveau d'escalade trouvé.",
437
+ "page.cases.timeline.filter.label": "Afficher uniquement",
438
+ "page.cases.timeline.filter.mitre": "MITRE ATT&CK",
439
+ "page.cases.timeline.filter.mitre.empty": "Aucune tactique ou technique trouvée.",
440
+ "page.cases.updated": "Mis à jour",
340
441
  "page.dashboard.settings.edit": "Modifier le tableau de bord",
341
442
  "page.dashboard.settings.refreshRate": "Fréquence de rafraîchissement",
342
443
  "page.dashboard.title": "Tableau de bord",
@@ -408,6 +509,8 @@
408
509
  "page.user.search.column.groups": "Groupes",
409
510
  "page.user.search.column.username": "Nom d'utilisateur",
410
511
  "page.user.search.prompt": "Rechercher par nom d'utilisateur, nom complet, e-mail ou groupe",
512
+ "pages.cases.detail.participants": "Participants",
513
+ "pages.cases.detail.status": "Statut",
411
514
  "password": "Nouveau mot de passe",
412
515
  "password.confirm": "Confirmer le mot de passe",
413
516
  "password.match": "Le mot de passe et le mot de passe de confirmation doivent correspondre",
@@ -440,6 +543,7 @@
440
543
  "route.actions.create": "Nouveau action",
441
544
  "route.actions.edit": "Modifier",
442
545
  "route.actions.execute": "Exécuter",
546
+ "route.actions.manager": "Gestionnaire d'actions",
443
547
  "route.actions.name": "Nom de l'action",
444
548
  "route.actions.open": "Ouvrir la requête",
445
549
  "route.actions.operation.add": "Ajouter une nouvelle opération",
@@ -536,6 +640,16 @@
536
640
  "route.analytics.triage.title": "Paramètres de triage",
537
641
  "route.analytics.updated": "Analytic mis a jour!",
538
642
  "route.analytics.view": "Voir l'analyse",
643
+ "route.cases": "Cas",
644
+ "route.cases.create": "Créer un cas",
645
+ "route.cases.filter.assignee": "Assigné",
646
+ "route.cases.filter.assignees": "Assignés",
647
+ "route.cases.filter.date": "Plage de dates",
648
+ "route.cases.filter.myself": "Moi-même",
649
+ "route.cases.filter.status": "Statut",
650
+ "route.cases.manager.search": "Rechercher des cas",
651
+ "route.cases.search.prompt": "Rechercher des cas par titre, résumé, description, participants ou détails des tâches",
652
+ "route.cases.view": "Voir le cas",
539
653
  "route.clear": "Effacer la requête",
540
654
  "route.dossiers": "Dossiers",
541
655
  "route.dossiers.create": "Nouveau dossier",
@@ -595,6 +709,7 @@
595
709
  "route.dossiers.search.prompt": "Recherche par titre, requête ou propriétaire.",
596
710
  "route.dossiers.view": "Voir le dossier",
597
711
  "route.help": "Aide",
712
+ "route.help.actions": "Documentation sur les actions",
598
713
  "route.help.api": "Documentation de l'API",
599
714
  "route.help.auth": "Authentification",
600
715
  "route.help.bundles": "Groupes des hits",
@@ -658,6 +773,7 @@
658
773
  "route.overviews.theme.dark": "Prévoyez en mode sombre",
659
774
  "route.overviews.theme.light": "Prévoyez en mode clair",
660
775
  "route.overviews.view": "Voir la vue d'ensemble",
776
+ "route.search": "Rechercher",
661
777
  "route.templates": "Modèles",
662
778
  "route.templates.analytic": "Choisir une analyse",
663
779
  "route.templates.builtin": "Intégré",
@@ -668,6 +784,7 @@
668
784
  "route.templates.detection": "Choisir une détection",
669
785
  "route.templates.global": "Général",
670
786
  "route.templates.manager.global": "Global",
787
+ "route.templates.manager.open": "Ouvrir la vue",
671
788
  "route.templates.manager.personal": "Personnel",
672
789
  "route.templates.manager.readonly": "Intégré",
673
790
  "route.templates.manager.search": "Rechercher les modèles",
@@ -691,8 +808,10 @@
691
808
  "route.views.manager.personal": "Personnel",
692
809
  "route.views.manager.readonly": "Intégré",
693
810
  "route.views.manager.search": "Rechercher les vues",
811
+ "route.views.name": "Nom de la vue",
694
812
  "route.views.save": "Enregistrer cette requête comme vue",
695
813
  "route.views.saved": "Vues épinglées",
814
+ "route.views.search.prompt": "Rechercher par nom, requête ou propriétaire.",
696
815
  "route.views.show": "Voir les vues",
697
816
  "route.views.update.success": "Vue actualisée.",
698
817
  "rule.interval": "Intervalle d'exécution de la règle",
@@ -709,6 +828,7 @@
709
828
  "search.result.showing": "Affichage de {{offset}} à {{length}} sur {{total}} articles",
710
829
  "search.result.showing.single": "Aucun articles",
711
830
  "search.total": "Il y a un total de {{count}} résultats correspondant à cette requête.",
831
+ "started": "Démarré",
712
832
  "templates.edit.analytic": "Modifier modèle pour cette analyse",
713
833
  "templates.edit.detection": "Modifier modèle pour cette détection",
714
834
  "to": "à",
@@ -4,9 +4,10 @@ import type { Overview } from './entities/generated/Overview';
4
4
  import type { Template } from './entities/generated/Template';
5
5
 
6
6
  export type WithMetadata<T> = T & {
7
+ __index?: string;
8
+
7
9
  __analytic?: Analytic;
8
10
  __overview?: Overview;
9
11
  __template?: Template;
10
-
11
12
  __dossiers?: Dossier[];
12
13
  };
@@ -51,7 +51,7 @@ export interface APILookups {
51
51
  techniques: { [index: string]: { key: string; name: string; url: string } };
52
52
  tactics: { [index: string]: { key: string; name: string; url: string } };
53
53
  icons: string[];
54
- roles: ['admin', 'automation_advanced', 'automation_basic', 'user'];
54
+ roles: ['admin', 'actionrunner_advanced', 'actionrunner_basic', 'automation_advanced', 'automation_basic', 'user'];
55
55
  }
56
56
 
57
57
  export interface APIConfiguration {
@@ -0,0 +1,12 @@
1
+ import type { FileHash } from './FileHash';
2
+
3
+ /**
4
+ * NOTE: This is an auto-generated file. Don't edit this manually.
5
+ */
6
+ export interface AttachmentsFile {
7
+ extension?: string;
8
+ hash?: FileHash;
9
+ mime_type?: string;
10
+ name?: string;
11
+ size?: number;
12
+ }
@@ -0,0 +1,28 @@
1
+ import type { Enrichments } from './Enrichments';
2
+ import type { Item } from './Item';
3
+ import type { Rule } from './Rule';
4
+ import type { Task } from './Task';
5
+
6
+ /**
7
+ * NOTE: This is an auto-generated file. Don't edit this manually.
8
+ */
9
+ export interface Case {
10
+ case_id?: string;
11
+ created?: string;
12
+ end?: string;
13
+ enrichments?: Enrichments;
14
+ escalation?: string;
15
+ indicators?: string[];
16
+ items?: Item[];
17
+ overview?: string;
18
+ participants?: string[];
19
+ rules?: Rule[];
20
+ status?: string;
21
+ start?: string;
22
+ summary?: string;
23
+ targets?: string[];
24
+ tasks?: Task[];
25
+ threats?: string[];
26
+ title?: string;
27
+ updated?: string;
28
+ }
@@ -0,0 +1,19 @@
1
+ import type { AutonomousSystems } from './AutonomousSystems';
2
+ import type { Geo } from './Geo';
3
+ import type { Nat } from './Nat';
4
+
5
+ /**
6
+ * NOTE: This is an auto-generated file. Don't edit this manually.
7
+ */
8
+ export interface DestinationOriginal {
9
+ address?: string;
10
+ autonomous_systems?: AutonomousSystems;
11
+ bytes?: number;
12
+ domain?: string;
13
+ geo?: Geo;
14
+ ip?: string;
15
+ mac?: string;
16
+ nat?: Nat;
17
+ packets?: number;
18
+ port?: number;
19
+ }
@@ -0,0 +1,8 @@
1
+ import type { AttachmentsFile } from './AttachmentsFile';
2
+
3
+ /**
4
+ * NOTE: This is an auto-generated file. Don't edit this manually.
5
+ */
6
+ export interface EmailAttachment {
7
+ file?: AttachmentsFile;
8
+ }