@cccsaurora/howler-ui 2.19.0-dev.836 → 2.19.0-dev.842

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 (328) 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 +41 -8
  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} +98 -43
  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/action/edit/ActionEditor.js +2 -2
  114. package/components/routes/action/view/ActionSearch.js +1 -1
  115. package/components/routes/advanced/QueryBuilder.js +1 -1
  116. package/components/routes/advanced/QueryEditor.js +3 -3
  117. package/components/routes/advanced/historyCompletionProvider.js +3 -3
  118. package/components/routes/analytics/AnalyticDetails.js +2 -2
  119. package/components/routes/analytics/AnalyticSearch.js +1 -1
  120. package/components/routes/cases/CaseViewer.d.ts +2 -0
  121. package/components/routes/cases/CaseViewer.js +44 -0
  122. package/components/routes/cases/CaseViewer.test.d.ts +1 -0
  123. package/components/routes/cases/CaseViewer.test.js +133 -0
  124. package/components/routes/cases/Cases.d.ts +2 -0
  125. package/components/routes/cases/Cases.js +148 -0
  126. package/components/routes/cases/constants.d.ts +6 -0
  127. package/components/routes/cases/constants.js +6 -0
  128. package/components/routes/cases/detail/AlertPanel.d.ts +6 -0
  129. package/components/routes/cases/detail/AlertPanel.js +33 -0
  130. package/components/routes/cases/detail/CaseAssets.d.ts +11 -0
  131. package/components/routes/cases/detail/CaseAssets.js +104 -0
  132. package/components/routes/cases/detail/CaseAssets.test.d.ts +1 -0
  133. package/components/routes/cases/detail/CaseAssets.test.js +167 -0
  134. package/components/routes/cases/detail/CaseDashboard.d.ts +7 -0
  135. package/components/routes/cases/detail/CaseDashboard.js +66 -0
  136. package/components/routes/cases/detail/CaseDetails.d.ts +6 -0
  137. package/components/routes/cases/detail/CaseDetails.js +70 -0
  138. package/components/routes/cases/detail/CaseOverview.d.ts +7 -0
  139. package/components/routes/cases/detail/CaseOverview.js +43 -0
  140. package/components/routes/cases/detail/CaseRules.d.ts +7 -0
  141. package/components/routes/cases/detail/CaseRules.js +57 -0
  142. package/components/routes/cases/detail/CaseRules.test.d.ts +1 -0
  143. package/components/routes/cases/detail/CaseRules.test.js +221 -0
  144. package/components/routes/cases/detail/CaseSidebar.d.ts +8 -0
  145. package/components/routes/cases/detail/CaseSidebar.js +107 -0
  146. package/components/routes/cases/detail/CaseSidebar.test.d.ts +1 -0
  147. package/components/routes/cases/detail/CaseSidebar.test.js +266 -0
  148. package/components/routes/cases/detail/CaseTask.d.ts +11 -0
  149. package/components/routes/cases/detail/CaseTask.js +66 -0
  150. package/components/routes/cases/detail/CaseTimeline.d.ts +12 -0
  151. package/components/routes/cases/detail/CaseTimeline.js +106 -0
  152. package/components/routes/cases/detail/CaseTimeline.test.d.ts +1 -0
  153. package/components/routes/cases/detail/CaseTimeline.test.js +320 -0
  154. package/components/routes/cases/detail/CreateRuleDialog.d.ts +9 -0
  155. package/components/routes/cases/detail/CreateRuleDialog.js +163 -0
  156. package/components/routes/cases/detail/CreateRuleDialog.test.d.ts +1 -0
  157. package/components/routes/cases/detail/CreateRuleDialog.test.js +259 -0
  158. package/components/routes/cases/detail/ItemPage.d.ts +6 -0
  159. package/components/routes/cases/detail/ItemPage.js +95 -0
  160. package/components/routes/cases/detail/RelatedCasePanel.d.ts +6 -0
  161. package/components/routes/cases/detail/RelatedCasePanel.js +34 -0
  162. package/components/routes/cases/detail/TaskPanel.d.ts +7 -0
  163. package/components/routes/cases/detail/TaskPanel.js +52 -0
  164. package/components/routes/cases/detail/aggregates/CaseAggregate.d.ts +11 -0
  165. package/components/routes/cases/detail/aggregates/CaseAggregate.js +24 -0
  166. package/components/routes/cases/detail/aggregates/SourceAggregate.d.ts +6 -0
  167. package/components/routes/cases/detail/aggregates/SourceAggregate.js +26 -0
  168. package/components/routes/cases/detail/assets/Asset.d.ts +14 -0
  169. package/components/routes/cases/detail/assets/Asset.js +12 -0
  170. package/components/routes/cases/detail/assets/Asset.test.d.ts +1 -0
  171. package/components/routes/cases/detail/assets/Asset.test.js +72 -0
  172. package/components/routes/cases/detail/sidebar/CaseFolder.d.ts +20 -0
  173. package/components/routes/cases/detail/sidebar/CaseFolder.js +83 -0
  174. package/components/routes/cases/detail/sidebar/CaseFolder.test.d.ts +1 -0
  175. package/components/routes/cases/detail/sidebar/CaseFolder.test.js +295 -0
  176. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.d.ts +34 -0
  177. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.js +103 -0
  178. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.d.ts +1 -0
  179. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.js +363 -0
  180. package/components/routes/cases/detail/sidebar/FolderEntry.d.ts +25 -0
  181. package/components/routes/cases/detail/sidebar/FolderEntry.js +88 -0
  182. package/components/routes/cases/detail/sidebar/FolderEntry.test.d.ts +1 -0
  183. package/components/routes/cases/detail/sidebar/FolderEntry.test.js +206 -0
  184. package/components/routes/cases/detail/sidebar/RootDropZone.d.ts +5 -0
  185. package/components/routes/cases/detail/sidebar/RootDropZone.js +33 -0
  186. package/components/routes/cases/detail/sidebar/types.d.ts +9 -0
  187. package/components/routes/cases/detail/sidebar/utils.d.ts +3 -0
  188. package/components/routes/cases/detail/sidebar/utils.js +29 -0
  189. package/components/routes/cases/detail/sidebar/utils.test.d.ts +1 -0
  190. package/components/routes/cases/detail/sidebar/utils.test.js +82 -0
  191. package/components/routes/cases/hooks/useCase.d.ts +13 -0
  192. package/components/routes/cases/hooks/useCase.js +69 -0
  193. package/components/routes/cases/hooks/useCase.test.d.ts +1 -0
  194. package/components/routes/cases/hooks/useCase.test.js +141 -0
  195. package/components/routes/cases/modals/AddToCaseModal.d.ts +7 -0
  196. package/components/routes/cases/modals/AddToCaseModal.js +59 -0
  197. package/components/routes/cases/modals/AddToCaseModal.test.d.ts +1 -0
  198. package/components/routes/cases/modals/AddToCaseModal.test.js +313 -0
  199. package/components/routes/cases/modals/CaseRecordRow.d.ts +9 -0
  200. package/components/routes/cases/modals/CaseRecordRow.js +15 -0
  201. package/components/routes/cases/modals/CreateCaseModal.d.ts +7 -0
  202. package/components/routes/cases/modals/CreateCaseModal.js +55 -0
  203. package/components/routes/cases/modals/CreateCaseModal.test.d.ts +1 -0
  204. package/components/routes/cases/modals/CreateCaseModal.test.js +358 -0
  205. package/components/routes/cases/modals/RenameItemModal.d.ts +9 -0
  206. package/components/routes/cases/modals/RenameItemModal.js +48 -0
  207. package/components/routes/cases/modals/ResolveModal.d.ts +7 -0
  208. package/components/routes/cases/modals/ResolveModal.js +115 -0
  209. package/components/routes/cases/modals/ResolveModal.test.d.ts +1 -0
  210. package/components/routes/cases/modals/ResolveModal.test.js +394 -0
  211. package/components/routes/cases/modals/hooks.d.ts +7 -0
  212. package/components/routes/cases/modals/hooks.js +44 -0
  213. package/components/routes/cases/modals/types.d.ts +5 -0
  214. package/components/routes/cases/search/CaseAssigneeFilter.d.ts +6 -0
  215. package/components/routes/cases/search/CaseAssigneeFilter.js +33 -0
  216. package/components/routes/cases/search/CaseAssigneeFilter.test.d.ts +1 -0
  217. package/components/routes/cases/search/CaseAssigneeFilter.test.js +127 -0
  218. package/components/routes/cases/search/CaseDateFilter.d.ts +13 -0
  219. package/components/routes/cases/search/CaseDateFilter.js +26 -0
  220. package/components/routes/cases/search/CaseDateFilter.test.d.ts +1 -0
  221. package/components/routes/cases/search/CaseDateFilter.test.js +115 -0
  222. package/components/routes/cases/search/CaseStatusFilter.d.ts +6 -0
  223. package/components/routes/cases/search/CaseStatusFilter.js +13 -0
  224. package/components/routes/cases/search/CaseStatusFilter.test.d.ts +1 -0
  225. package/components/routes/cases/search/CaseStatusFilter.test.js +86 -0
  226. package/components/routes/dossiers/DossierEditor.js +2 -2
  227. package/components/routes/dossiers/DossierEditor.test.js +1 -1
  228. package/components/routes/help/ApiDocumentation.js +1 -1
  229. package/components/routes/help/HitBannerDocumentation.js +1 -0
  230. package/components/routes/help/HitDocumentation.js +1 -3
  231. package/components/routes/hits/search/InformationPane.d.ts +1 -0
  232. package/components/routes/hits/search/InformationPane.js +50 -63
  233. package/components/routes/hits/search/LayoutSettings.js +3 -3
  234. package/components/routes/hits/search/QuerySettings.js +2 -1
  235. package/components/routes/hits/search/QuerySettings.test.js +14 -9
  236. package/components/routes/hits/search/{HitBrowser.js → RecordBrowser.js} +9 -9
  237. package/components/routes/hits/search/{HitQuery.d.ts → RecordQuery.d.ts} +2 -2
  238. package/components/routes/hits/search/{HitQuery.js → RecordQuery.js} +6 -6
  239. package/components/routes/hits/search/SearchPane.js +26 -49
  240. package/components/routes/hits/search/ViewLink.js +3 -3
  241. package/components/routes/hits/search/ViewLink.test.js +8 -8
  242. package/components/routes/hits/search/grid/AddColumnModal.js +5 -4
  243. package/components/routes/hits/search/grid/EnhancedCell.d.ts +2 -1
  244. package/components/routes/hits/search/grid/EnhancedCell.js +2 -2
  245. package/components/routes/hits/search/grid/HitGrid.js +20 -18
  246. package/components/routes/hits/search/grid/{HitRow.d.ts → RecordRow.d.ts} +3 -2
  247. package/components/routes/hits/search/grid/{HitRow.js → RecordRow.js} +10 -8
  248. package/components/routes/hits/search/shared/IndexPicker.d.ts +2 -0
  249. package/components/routes/hits/search/shared/IndexPicker.js +20 -0
  250. package/components/routes/hits/view/HitViewer.js +12 -13
  251. package/components/routes/home/ViewCard.js +47 -41
  252. package/components/routes/observables/ObservableViewer.d.ts +7 -0
  253. package/components/routes/observables/ObservableViewer.js +27 -0
  254. package/components/routes/overviews/OverviewViewer.js +2 -2
  255. package/components/routes/views/ViewComposer.js +46 -19
  256. package/locales/en/translation.json +123 -3
  257. package/locales/fr/translation.json +121 -3
  258. package/models/WithMetadata.d.ts +2 -1
  259. package/models/entities/generated/AttachmentsFile.d.ts +12 -0
  260. package/models/entities/generated/Case.d.ts +28 -0
  261. package/models/entities/generated/DestinationOriginal.d.ts +19 -0
  262. package/models/entities/generated/EmailAttachment.d.ts +8 -0
  263. package/models/entities/generated/EmailParent.d.ts +19 -0
  264. package/models/entities/generated/Enrichments.d.ts +7 -0
  265. package/models/entities/generated/EnrichmentsIndicator.d.ts +21 -0
  266. package/models/entities/generated/Hit.d.ts +1 -0
  267. package/models/entities/generated/Howler.d.ts +0 -5
  268. package/models/entities/generated/HttpResponse.d.ts +11 -0
  269. package/models/entities/generated/Item.d.ts +9 -0
  270. package/models/entities/generated/Observable.d.ts +85 -0
  271. package/models/entities/generated/ObservableCloud.d.ts +20 -0
  272. package/models/entities/generated/ObservableDestination.d.ts +23 -0
  273. package/models/entities/generated/ObservableEmail.d.ts +30 -0
  274. package/models/entities/generated/ObservableFile.d.ts +36 -0
  275. package/models/entities/generated/ObservableHowler.d.ts +42 -0
  276. package/models/entities/generated/ObservableHttp.d.ts +11 -0
  277. package/models/entities/generated/ObservableObserver.d.ts +21 -0
  278. package/models/entities/generated/ObservableOrganization.d.ts +7 -0
  279. package/models/entities/generated/ObservableProcess.d.ts +34 -0
  280. package/models/entities/generated/ObservableSource.d.ts +23 -0
  281. package/models/entities/generated/ObservableThreat.d.ts +21 -0
  282. package/models/entities/generated/ObservableTls.d.ts +12 -0
  283. package/models/entities/generated/ObserverIngress.d.ts +9 -0
  284. package/models/entities/generated/Rule.d.ts +6 -9
  285. package/models/entities/generated/Task.d.ts +10 -0
  286. package/models/entities/generated/Threat.d.ts +2 -2
  287. package/models/entities/generated/{Enrichment.d.ts → ThreatEnrichment.d.ts} +1 -1
  288. package/models/entities/generated/View.d.ts +1 -0
  289. package/models/socket/CaseUpdate.d.ts +5 -0
  290. package/models/socket/ViewersUpdate.d.ts +4 -0
  291. package/package.json +21 -1
  292. package/plugins/clue/components/ClueTypography.js +2 -2
  293. package/plugins/clue/utils.d.ts +2 -1
  294. package/tests/mocks.d.ts +11 -1
  295. package/tests/mocks.js +12 -7
  296. package/tests/server-handlers.js +6 -1
  297. package/tests/utils.d.ts +4 -0
  298. package/tests/utils.js +20 -0
  299. package/utils/constants.d.ts +4 -3
  300. package/utils/constants.js +6 -0
  301. package/utils/hitFunctions.d.ts +2 -1
  302. package/utils/hitFunctions.js +4 -4
  303. package/utils/socketUtils.d.ts +14 -0
  304. package/utils/socketUtils.js +17 -1
  305. package/utils/socketUtils.test.d.ts +1 -0
  306. package/utils/socketUtils.test.js +59 -0
  307. package/utils/typeUtils.d.ts +7 -0
  308. package/utils/typeUtils.js +27 -0
  309. package/utils/viewUtils.js +3 -0
  310. package/components/app/providers/HitProvider.d.ts +0 -22
  311. package/components/elements/display/icons/BundleButton.d.ts +0 -6
  312. package/components/elements/display/icons/BundleButton.js +0 -32
  313. package/components/elements/hit/HitRelated.d.ts +0 -6
  314. package/components/elements/hit/HitRelated.js +0 -7
  315. package/components/routes/help/BundleDocumentation.d.ts +0 -3
  316. package/components/routes/help/BundleDocumentation.js +0 -12
  317. package/components/routes/help/markdown/en/bundles.md.js +0 -1
  318. package/components/routes/help/markdown/fr/bundles.md.js +0 -1
  319. package/components/routes/hits/search/BundleParentMenu.d.ts +0 -6
  320. package/components/routes/hits/search/BundleParentMenu.js +0 -32
  321. package/components/routes/hits/search/BundleScroller.d.ts +0 -2
  322. package/components/routes/hits/search/BundleScroller.js +0 -6
  323. package/components/routes/hits/search/HitContextMenu.js +0 -239
  324. /package/{components/app/providers/HitSearchProvider.test.d.ts → api/socket/viewers.test.d.ts} +0 -0
  325. /package/components/{routes/hits/search/HitContextMenu.test.d.ts → app/providers/RecordSearchProvider.test.d.ts} +0 -0
  326. /package/components/{routes/overviews/OverviewEditor.d.ts → elements/MarkdownEditor.d.ts} +0 -0
  327. /package/components/elements/hit/{HitDetails.d.ts → related/RelatedRecords.d.ts} +0 -0
  328. /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",
@@ -335,6 +384,60 @@
335
384
  "page.403.title": "403: Access Forbidden",
336
385
  "page.404.description": "The page you are looking for cannot be found...",
337
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",
338
441
  "page.dashboard.settings.edit": "Edit Dashboard",
339
442
  "page.dashboard.settings.refreshRate": "Refresh Rate",
340
443
  "page.dashboard.title": "Dashboard",
@@ -359,6 +462,7 @@
359
462
  "page.help": "Help",
360
463
  "page.help.title": "Help Dashboard",
361
464
  "page.login.button": "Sign in",
465
+ "page.login.error": "Just type anything in the username and password fields...",
362
466
  "page.login.password": "Password",
363
467
  "page.login.username": "Username",
364
468
  "page.logout": "Logging out current user ... ",
@@ -405,6 +509,8 @@
405
509
  "page.user.search.column.groups": "Groups",
406
510
  "page.user.search.column.username": "Username",
407
511
  "page.user.search.prompt": "Search by username, fullname, email or group",
512
+ "pages.cases.detail.participants": "Participants",
513
+ "pages.cases.detail.status": "Status",
408
514
  "password": "New Password",
409
515
  "password.confirm": "Confirm Password",
410
516
  "password.match": "Password and Confirm Password must match",
@@ -418,6 +524,7 @@
418
524
  "personalization.showbreadcrumbs": "Show Breadcrumbs",
419
525
  "personalization.sticky": "Sticky Topbar",
420
526
  "query": "Query",
527
+ "query.invalid": "Invalid query",
421
528
  "quicksearch.aria": "search",
422
529
  "quicksearch.placeholder": "Search ...",
423
530
  "rationale.default": "Hit assessed as {{assessment}}",
@@ -533,6 +640,16 @@
533
640
  "route.analytics.triage.title": "Triage Settings",
534
641
  "route.analytics.updated": "Analytic Updated!",
535
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",
536
653
  "route.clear": "Clear query",
537
654
  "route.dossiers": "Dossiers",
538
655
  "route.dossiers.create": "New Dossier",
@@ -595,8 +712,10 @@
595
712
  "route.help.actions": "Action Documentation",
596
713
  "route.help.api": "API Documentation",
597
714
  "route.help.auth": "Authentication",
715
+ "route.help.bundles": "Hit Bundles",
598
716
  "route.help.client": "Howler Client",
599
717
  "route.help.hit": "Hit Documentation",
718
+ "route.help.hit.banner": "Hit Banner Documentation",
600
719
  "route.help.main": "Dashboard",
601
720
  "route.help.notebook": "Notebook Documentation",
602
721
  "route.help.overviews": "Overviews",
@@ -709,6 +828,7 @@
709
828
  "search.result.showing": "Showing {{offset}} to {{length}} of {{total}} results",
710
829
  "search.result.showing.single": "No results",
711
830
  "search.total": "There are a total of {{count}} hits matching this query.",
831
+ "started": "Started",
712
832
  "templates.edit.analytic": "Edit analytic template",
713
833
  "templates.edit.detection": "Edit detection template",
714
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",
@@ -339,6 +384,60 @@
339
384
  "page.403.title": "403: Accès interdit",
340
385
  "page.404.description": "La page que vous recherchez est introuvable ...",
341
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",
342
441
  "page.dashboard.settings.edit": "Modifier le tableau de bord",
343
442
  "page.dashboard.settings.refreshRate": "Fréquence de rafraîchissement",
344
443
  "page.dashboard.title": "Tableau de bord",
@@ -410,6 +509,8 @@
410
509
  "page.user.search.column.groups": "Groupes",
411
510
  "page.user.search.column.username": "Nom d'utilisateur",
412
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",
413
514
  "password": "Nouveau mot de passe",
414
515
  "password.confirm": "Confirmer le mot de passe",
415
516
  "password.match": "Le mot de passe et le mot de passe de confirmation doivent correspondre",
@@ -442,6 +543,7 @@
442
543
  "route.actions.create": "Nouveau action",
443
544
  "route.actions.edit": "Modifier",
444
545
  "route.actions.execute": "Exécuter",
546
+ "route.actions.manager": "Gestionnaire d'actions",
445
547
  "route.actions.name": "Nom de l'action",
446
548
  "route.actions.open": "Ouvrir la requête",
447
549
  "route.actions.operation.add": "Ajouter une nouvelle opération",
@@ -538,6 +640,16 @@
538
640
  "route.analytics.triage.title": "Paramètres de triage",
539
641
  "route.analytics.updated": "Analytic mis a jour!",
540
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",
541
653
  "route.clear": "Effacer la requête",
542
654
  "route.dossiers": "Dossiers",
543
655
  "route.dossiers.create": "Nouveau dossier",
@@ -597,6 +709,7 @@
597
709
  "route.dossiers.search.prompt": "Recherche par titre, requête ou propriétaire.",
598
710
  "route.dossiers.view": "Voir le dossier",
599
711
  "route.help": "Aide",
712
+ "route.help.actions": "Documentation sur les actions",
600
713
  "route.help.api": "Documentation de l'API",
601
714
  "route.help.auth": "Authentification",
602
715
  "route.help.bundles": "Groupes des hits",
@@ -660,6 +773,7 @@
660
773
  "route.overviews.theme.dark": "Prévoyez en mode sombre",
661
774
  "route.overviews.theme.light": "Prévoyez en mode clair",
662
775
  "route.overviews.view": "Voir la vue d'ensemble",
776
+ "route.search": "Rechercher",
663
777
  "route.templates": "Modèles",
664
778
  "route.templates.analytic": "Choisir une analyse",
665
779
  "route.templates.builtin": "Intégré",
@@ -670,6 +784,7 @@
670
784
  "route.templates.detection": "Choisir une détection",
671
785
  "route.templates.global": "Général",
672
786
  "route.templates.manager.global": "Global",
787
+ "route.templates.manager.open": "Ouvrir la vue",
673
788
  "route.templates.manager.personal": "Personnel",
674
789
  "route.templates.manager.readonly": "Intégré",
675
790
  "route.templates.manager.search": "Rechercher les modèles",
@@ -693,8 +808,10 @@
693
808
  "route.views.manager.personal": "Personnel",
694
809
  "route.views.manager.readonly": "Intégré",
695
810
  "route.views.manager.search": "Rechercher les vues",
811
+ "route.views.name": "Nom de la vue",
696
812
  "route.views.save": "Enregistrer cette requête comme vue",
697
813
  "route.views.saved": "Vues épinglées",
814
+ "route.views.search.prompt": "Rechercher par nom, requête ou propriétaire.",
698
815
  "route.views.show": "Voir les vues",
699
816
  "route.views.update.success": "Vue actualisée.",
700
817
  "rule.interval": "Intervalle d'exécution de la règle",
@@ -711,6 +828,7 @@
711
828
  "search.result.showing": "Affichage de {{offset}} à {{length}} sur {{total}} articles",
712
829
  "search.result.showing.single": "Aucun articles",
713
830
  "search.total": "Il y a un total de {{count}} résultats correspondant à cette requête.",
831
+ "started": "Démarré",
714
832
  "templates.edit.analytic": "Modifier modèle pour cette analyse",
715
833
  "templates.edit.detection": "Modifier modèle pour cette détection",
716
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
  };
@@ -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
+ }
@@ -0,0 +1,19 @@
1
+ import type { Bcc } from './Bcc';
2
+ import type { Cc } from './Cc';
3
+ import type { From } from './From';
4
+ import type { To } from './To';
5
+
6
+ /**
7
+ * NOTE: This is an auto-generated file. Don't edit this manually.
8
+ */
9
+ export interface EmailParent {
10
+ bcc?: Bcc;
11
+ cc?: Cc;
12
+ destination?: string;
13
+ from?: From;
14
+ message_id?: string;
15
+ origination_timestamp?: string;
16
+ source?: string;
17
+ subject?: string;
18
+ to?: To;
19
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * NOTE: This is an auto-generated file. Don't edit this manually.
3
+ */
4
+ export interface Enrichments {
5
+ annotations?: string;
6
+ path?: string;
7
+ }