@cccsaurora/howler-ui 2.18.0-dev.824 → 2.18.0-dev.841
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.
- package/api/index.d.ts +4 -0
- package/api/index.js +10 -2
- package/api/search/case.d.ts +4 -0
- package/api/search/case.js +8 -0
- package/api/search/facet/hit.d.ts +1 -3
- package/api/search/facet/index.d.ts +3 -1
- package/api/search/index.d.ts +2 -1
- package/api/search/index.js +2 -1
- package/api/socket/index.d.ts +3 -0
- package/api/socket/index.js +6 -0
- package/api/socket/viewers.d.ts +2 -0
- package/api/socket/viewers.js +8 -0
- package/api/socket/viewers.test.js +44 -0
- package/api/v2/case/index.d.ts +9 -0
- package/api/v2/case/index.js +21 -0
- package/api/v2/case/items.d.ts +6 -0
- package/api/v2/case/items.js +18 -0
- package/api/v2/case/rules.d.ts +6 -0
- package/api/v2/case/rules.js +18 -0
- package/api/v2/index.d.ts +4 -0
- package/api/v2/index.js +6 -0
- package/api/v2/search/facet.d.ts +3 -0
- package/api/v2/search/facet.js +12 -0
- package/api/v2/search/index.d.ts +5 -0
- package/api/v2/search/index.js +24 -0
- package/commons/components/leftnav/LeftNavDrawer.js +1 -1
- package/components/app/App.js +41 -8
- package/components/app/hooks/useMatchers.d.ts +1 -1
- package/components/app/hooks/useMatchers.js +23 -11
- package/components/app/hooks/useMatchers.test.js +22 -22
- package/components/app/hooks/useTitle.js +5 -5
- package/components/app/providers/FavouritesProvider.js +2 -2
- package/components/app/providers/ModalProvider.d.ts +1 -0
- package/components/app/providers/ParameterProvider.d.ts +9 -2
- package/components/app/providers/ParameterProvider.js +165 -240
- package/components/app/providers/ParameterProvider.test.js +346 -94
- package/components/app/providers/RecordProvider.d.ts +23 -0
- package/components/app/providers/{HitProvider.js → RecordProvider.js} +41 -41
- package/components/app/providers/{HitSearchProvider.d.ts → RecordSearchProvider.d.ts} +6 -6
- package/components/app/providers/{HitSearchProvider.js → RecordSearchProvider.js} +12 -17
- package/components/app/providers/{HitSearchProvider.test.js → RecordSearchProvider.test.js} +52 -71
- package/components/app/providers/SocketProvider.d.ts +11 -2
- package/components/app/providers/SocketProvider.js +18 -5
- package/components/app/providers/UserListProvider.js +28 -8
- package/components/elements/ContextMenu.d.ts +56 -0
- package/components/elements/ContextMenu.js +109 -0
- package/components/elements/ContextMenu.test.d.ts +1 -0
- package/components/elements/ContextMenu.test.js +215 -0
- package/components/{routes/overviews/OverviewEditor.js → elements/MarkdownEditor.js} +3 -3
- package/components/elements/ObjectDetails.d.ts +6 -0
- package/components/elements/{hit/HitDetails.js → ObjectDetails.js} +17 -17
- package/components/elements/PluginTypography.d.ts +2 -1
- package/components/elements/PluginTypography.js +3 -2
- package/components/elements/UserList.d.ts +5 -2
- package/components/elements/UserList.js +18 -8
- package/components/elements/addons/search/phrase/Phrase.js +1 -1
- package/components/elements/case/CaseCard.d.ts +12 -0
- package/components/elements/case/CaseCard.js +42 -0
- package/components/elements/case/CasePreview.d.ts +6 -0
- package/components/elements/case/CasePreview.js +17 -0
- package/components/elements/case/StatusIcon.d.ts +5 -0
- package/components/elements/case/StatusIcon.js +13 -0
- package/components/elements/display/ChipPopper.d.ts +1 -1
- package/components/elements/display/ChipPopper.js +5 -5
- package/components/elements/display/HowlerCard.js +1 -1
- package/components/elements/display/Modal.js +2 -0
- package/components/elements/hit/HitActions.js +4 -4
- package/components/elements/hit/HitBanner.d.ts +1 -0
- package/components/elements/hit/HitBanner.js +29 -49
- package/components/elements/hit/HitCard.d.ts +2 -0
- package/components/elements/hit/HitCard.js +7 -7
- package/components/elements/hit/HitLabels.js +2 -2
- package/components/elements/hit/HitLinks.js +1 -1
- package/components/elements/hit/HitOutline.d.ts +1 -0
- package/components/elements/hit/HitOutline.js +3 -3
- package/components/elements/hit/{HitQuickSearch.d.ts → HitPreview.d.ts} +3 -3
- package/components/elements/hit/{HitQuickSearch.js → HitPreview.js} +10 -4
- package/components/elements/hit/HitSummary.d.ts +2 -1
- package/components/elements/hit/HitSummary.js +6 -5
- package/components/elements/hit/aggregate/HitGraph.js +8 -8
- package/components/elements/hit/elements/AnalyticLink.d.ts +9 -0
- package/components/elements/hit/elements/AnalyticLink.js +22 -0
- package/components/elements/hit/elements/Assigned.js +6 -3
- package/components/elements/hit/elements/Assigned.test.d.ts +1 -0
- package/components/elements/hit/elements/Assigned.test.js +65 -0
- package/components/elements/hit/outlines/DefaultOutline.js +1 -1
- package/components/elements/hit/related/RelatedRecords.js +63 -0
- package/components/elements/observable/ObservableCard.d.ts +6 -0
- package/components/elements/observable/ObservableCard.js +22 -0
- package/components/elements/observable/ObservablePreview.d.ts +6 -0
- package/components/elements/observable/ObservablePreview.js +12 -0
- package/components/elements/{hit/HitComments.d.ts → record/RecordComments.d.ts} +5 -4
- package/components/elements/{hit/HitComments.js → record/RecordComments.js} +29 -28
- package/components/{routes/hits/search/HitContextMenu.d.ts → elements/record/RecordContextMenu.d.ts} +3 -3
- package/components/elements/record/RecordContextMenu.js +256 -0
- package/components/elements/record/RecordContextMenu.test.d.ts +1 -0
- package/components/{routes/hits/search/HitContextMenu.test.js → elements/record/RecordContextMenu.test.js} +94 -39
- package/components/elements/record/RecordRelated.d.ts +7 -0
- package/components/elements/record/RecordRelated.js +34 -0
- package/components/elements/{hit/HitWorklog.d.ts → record/RecordWorklog.d.ts} +4 -3
- package/components/elements/{hit/HitWorklog.js → record/RecordWorklog.js} +15 -13
- package/components/elements/view/ViewTitle.d.ts +1 -0
- package/components/elements/view/ViewTitle.js +9 -2
- package/components/hooks/useHitActions.d.ts +1 -1
- package/components/hooks/useHitActions.js +4 -4
- package/components/hooks/useMyPreferences.js +10 -1
- package/components/hooks/useMySearch.js +2 -2
- package/components/hooks/useMySitemap.js +4 -1
- package/components/hooks/useMyTheme.js +9 -2
- package/components/hooks/{useHitSelection.d.ts → useRecordSelection.d.ts} +2 -2
- package/components/hooks/{useHitSelection.js → useRecordSelection.js} +12 -33
- package/components/hooks/useRelatedRecords.d.ts +13 -0
- package/components/hooks/useRelatedRecords.js +32 -0
- package/components/routes/action/edit/ActionEditor.js +2 -2
- package/components/routes/action/useMyActionFunctions.js +4 -22
- package/components/routes/action/view/ActionSearch.js +1 -1
- package/components/routes/advanced/QueryBuilder.js +1 -1
- package/components/routes/advanced/QueryEditor.js +3 -3
- package/components/routes/advanced/historyCompletionProvider.js +3 -3
- package/components/routes/analytics/AnalyticDetails.js +2 -2
- package/components/routes/analytics/AnalyticSearch.js +1 -1
- package/components/routes/cases/CaseViewer.d.ts +2 -0
- package/components/routes/cases/CaseViewer.js +44 -0
- package/components/routes/cases/CaseViewer.test.d.ts +1 -0
- package/components/routes/cases/CaseViewer.test.js +133 -0
- package/components/routes/cases/Cases.d.ts +2 -0
- package/components/routes/cases/Cases.js +148 -0
- package/components/routes/cases/constants.d.ts +6 -0
- package/components/routes/cases/constants.js +6 -0
- package/components/routes/cases/detail/AlertPanel.d.ts +6 -0
- package/components/routes/cases/detail/AlertPanel.js +33 -0
- package/components/routes/cases/detail/CaseAssets.d.ts +11 -0
- package/components/routes/cases/detail/CaseAssets.js +104 -0
- package/components/routes/cases/detail/CaseAssets.test.d.ts +1 -0
- package/components/routes/cases/detail/CaseAssets.test.js +167 -0
- package/components/routes/cases/detail/CaseDashboard.d.ts +7 -0
- package/components/routes/cases/detail/CaseDashboard.js +66 -0
- package/components/routes/cases/detail/CaseDetails.d.ts +6 -0
- package/components/routes/cases/detail/CaseDetails.js +70 -0
- package/components/routes/cases/detail/CaseOverview.d.ts +7 -0
- package/components/routes/cases/detail/CaseOverview.js +43 -0
- package/components/routes/cases/detail/CaseRules.d.ts +7 -0
- package/components/routes/cases/detail/CaseRules.js +57 -0
- package/components/routes/cases/detail/CaseRules.test.d.ts +1 -0
- package/components/routes/cases/detail/CaseRules.test.js +221 -0
- package/components/routes/cases/detail/CaseSidebar.d.ts +8 -0
- package/components/routes/cases/detail/CaseSidebar.js +107 -0
- package/components/routes/cases/detail/CaseSidebar.test.d.ts +1 -0
- package/components/routes/cases/detail/CaseSidebar.test.js +266 -0
- package/components/routes/cases/detail/CaseTask.d.ts +11 -0
- package/components/routes/cases/detail/CaseTask.js +66 -0
- package/components/routes/cases/detail/CaseTimeline.d.ts +12 -0
- package/components/routes/cases/detail/CaseTimeline.js +106 -0
- package/components/routes/cases/detail/CaseTimeline.test.d.ts +1 -0
- package/components/routes/cases/detail/CaseTimeline.test.js +320 -0
- package/components/routes/cases/detail/CreateRuleDialog.d.ts +9 -0
- package/components/routes/cases/detail/CreateRuleDialog.js +163 -0
- package/components/routes/cases/detail/CreateRuleDialog.test.d.ts +1 -0
- package/components/routes/cases/detail/CreateRuleDialog.test.js +259 -0
- package/components/routes/cases/detail/ItemPage.d.ts +6 -0
- package/components/routes/cases/detail/ItemPage.js +95 -0
- package/components/routes/cases/detail/RelatedCasePanel.d.ts +6 -0
- package/components/routes/cases/detail/RelatedCasePanel.js +34 -0
- package/components/routes/cases/detail/TaskPanel.d.ts +7 -0
- package/components/routes/cases/detail/TaskPanel.js +52 -0
- package/components/routes/cases/detail/aggregates/CaseAggregate.d.ts +11 -0
- package/components/routes/cases/detail/aggregates/CaseAggregate.js +24 -0
- package/components/routes/cases/detail/aggregates/SourceAggregate.d.ts +6 -0
- package/components/routes/cases/detail/aggregates/SourceAggregate.js +26 -0
- package/components/routes/cases/detail/assets/Asset.d.ts +14 -0
- package/components/routes/cases/detail/assets/Asset.js +12 -0
- package/components/routes/cases/detail/assets/Asset.test.d.ts +1 -0
- package/components/routes/cases/detail/assets/Asset.test.js +72 -0
- package/components/routes/cases/detail/sidebar/CaseFolder.d.ts +20 -0
- package/components/routes/cases/detail/sidebar/CaseFolder.js +83 -0
- package/components/routes/cases/detail/sidebar/CaseFolder.test.d.ts +1 -0
- package/components/routes/cases/detail/sidebar/CaseFolder.test.js +295 -0
- package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.d.ts +34 -0
- package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.js +103 -0
- package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.d.ts +1 -0
- package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.js +363 -0
- package/components/routes/cases/detail/sidebar/FolderEntry.d.ts +25 -0
- package/components/routes/cases/detail/sidebar/FolderEntry.js +88 -0
- package/components/routes/cases/detail/sidebar/FolderEntry.test.d.ts +1 -0
- package/components/routes/cases/detail/sidebar/FolderEntry.test.js +206 -0
- package/components/routes/cases/detail/sidebar/RootDropZone.d.ts +5 -0
- package/components/routes/cases/detail/sidebar/RootDropZone.js +33 -0
- package/components/routes/cases/detail/sidebar/types.d.ts +9 -0
- package/components/routes/cases/detail/sidebar/utils.d.ts +3 -0
- package/components/routes/cases/detail/sidebar/utils.js +29 -0
- package/components/routes/cases/detail/sidebar/utils.test.d.ts +1 -0
- package/components/routes/cases/detail/sidebar/utils.test.js +82 -0
- package/components/routes/cases/hooks/useCase.d.ts +13 -0
- package/components/routes/cases/hooks/useCase.js +69 -0
- package/components/routes/cases/hooks/useCase.test.d.ts +1 -0
- package/components/routes/cases/hooks/useCase.test.js +141 -0
- package/components/routes/cases/modals/AddToCaseModal.d.ts +7 -0
- package/components/routes/cases/modals/AddToCaseModal.js +59 -0
- package/components/routes/cases/modals/AddToCaseModal.test.d.ts +1 -0
- package/components/routes/cases/modals/AddToCaseModal.test.js +313 -0
- package/components/routes/cases/modals/CaseRecordRow.d.ts +9 -0
- package/components/routes/cases/modals/CaseRecordRow.js +15 -0
- package/components/routes/cases/modals/CreateCaseModal.d.ts +7 -0
- package/components/routes/cases/modals/CreateCaseModal.js +55 -0
- package/components/routes/cases/modals/CreateCaseModal.test.d.ts +1 -0
- package/components/routes/cases/modals/CreateCaseModal.test.js +358 -0
- package/components/routes/cases/modals/RenameItemModal.d.ts +9 -0
- package/components/routes/cases/modals/RenameItemModal.js +48 -0
- package/components/routes/cases/modals/ResolveModal.d.ts +7 -0
- package/components/routes/cases/modals/ResolveModal.js +115 -0
- package/components/routes/cases/modals/ResolveModal.test.d.ts +1 -0
- package/components/routes/cases/modals/ResolveModal.test.js +394 -0
- package/components/routes/cases/modals/hooks.d.ts +7 -0
- package/components/routes/cases/modals/hooks.js +44 -0
- package/components/routes/cases/modals/types.d.ts +5 -0
- package/components/routes/cases/search/CaseAssigneeFilter.d.ts +6 -0
- package/components/routes/cases/search/CaseAssigneeFilter.js +33 -0
- package/components/routes/cases/search/CaseAssigneeFilter.test.d.ts +1 -0
- package/components/routes/cases/search/CaseAssigneeFilter.test.js +127 -0
- package/components/routes/cases/search/CaseDateFilter.d.ts +13 -0
- package/components/routes/cases/search/CaseDateFilter.js +26 -0
- package/components/routes/cases/search/CaseDateFilter.test.d.ts +1 -0
- package/components/routes/cases/search/CaseDateFilter.test.js +115 -0
- package/components/routes/cases/search/CaseStatusFilter.d.ts +6 -0
- package/components/routes/cases/search/CaseStatusFilter.js +13 -0
- package/components/routes/cases/search/CaseStatusFilter.test.d.ts +1 -0
- package/components/routes/cases/search/CaseStatusFilter.test.js +86 -0
- package/components/routes/dossiers/DossierEditor.js +2 -2
- package/components/routes/dossiers/DossierEditor.test.js +1 -1
- package/components/routes/help/ApiDocumentation.js +1 -1
- package/components/routes/help/HitBannerDocumentation.js +1 -0
- package/components/routes/help/HitDocumentation.js +1 -3
- package/components/routes/hits/search/InformationPane.d.ts +1 -0
- package/components/routes/hits/search/InformationPane.js +50 -63
- package/components/routes/hits/search/LayoutSettings.js +3 -3
- package/components/routes/hits/search/QuerySettings.js +2 -1
- package/components/routes/hits/search/QuerySettings.test.js +14 -9
- package/components/routes/hits/search/{HitBrowser.js → RecordBrowser.js} +9 -9
- package/components/routes/hits/search/{HitQuery.d.ts → RecordQuery.d.ts} +2 -2
- package/components/routes/hits/search/{HitQuery.js → RecordQuery.js} +6 -6
- package/components/routes/hits/search/SearchPane.js +26 -49
- package/components/routes/hits/search/ViewLink.js +3 -3
- package/components/routes/hits/search/ViewLink.test.js +8 -8
- package/components/routes/hits/search/grid/AddColumnModal.js +5 -4
- package/components/routes/hits/search/grid/EnhancedCell.d.ts +2 -1
- package/components/routes/hits/search/grid/EnhancedCell.js +2 -2
- package/components/routes/hits/search/grid/HitGrid.js +20 -18
- package/components/routes/hits/search/grid/{HitRow.d.ts → RecordRow.d.ts} +3 -2
- package/components/routes/hits/search/grid/{HitRow.js → RecordRow.js} +10 -8
- package/components/routes/hits/search/shared/IndexPicker.d.ts +2 -0
- package/components/routes/hits/search/shared/IndexPicker.js +20 -0
- package/components/routes/hits/view/HitViewer.js +12 -13
- package/components/routes/home/ViewCard.js +47 -41
- package/components/routes/observables/ObservableViewer.d.ts +7 -0
- package/components/routes/observables/ObservableViewer.js +27 -0
- package/components/routes/overviews/OverviewViewer.js +2 -2
- package/components/routes/views/ViewComposer.js +46 -19
- package/locales/en/translation.json +122 -5
- package/locales/fr/translation.json +120 -5
- package/models/WithMetadata.d.ts +2 -1
- package/models/entities/generated/AttachmentsFile.d.ts +12 -0
- package/models/entities/generated/Case.d.ts +28 -0
- package/models/entities/generated/DestinationOriginal.d.ts +19 -0
- package/models/entities/generated/EmailAttachment.d.ts +8 -0
- package/models/entities/generated/EmailParent.d.ts +19 -0
- package/models/entities/generated/Enrichments.d.ts +7 -0
- package/models/entities/generated/EnrichmentsIndicator.d.ts +21 -0
- package/models/entities/generated/Hit.d.ts +1 -0
- package/models/entities/generated/Howler.d.ts +0 -5
- package/models/entities/generated/HttpResponse.d.ts +11 -0
- package/models/entities/generated/Item.d.ts +9 -0
- package/models/entities/generated/Observable.d.ts +85 -0
- package/models/entities/generated/ObservableCloud.d.ts +20 -0
- package/models/entities/generated/ObservableDestination.d.ts +23 -0
- package/models/entities/generated/ObservableEmail.d.ts +30 -0
- package/models/entities/generated/ObservableFile.d.ts +36 -0
- package/models/entities/generated/ObservableHowler.d.ts +42 -0
- package/models/entities/generated/ObservableHttp.d.ts +11 -0
- package/models/entities/generated/ObservableObserver.d.ts +21 -0
- package/models/entities/generated/ObservableOrganization.d.ts +7 -0
- package/models/entities/generated/ObservableProcess.d.ts +34 -0
- package/models/entities/generated/ObservableSource.d.ts +23 -0
- package/models/entities/generated/ObservableThreat.d.ts +21 -0
- package/models/entities/generated/ObservableTls.d.ts +12 -0
- package/models/entities/generated/ObserverIngress.d.ts +9 -0
- package/models/entities/generated/Rule.d.ts +6 -9
- package/models/entities/generated/Task.d.ts +10 -0
- package/models/entities/generated/Threat.d.ts +2 -2
- package/models/entities/generated/{Enrichment.d.ts → ThreatEnrichment.d.ts} +1 -1
- package/models/entities/generated/View.d.ts +1 -0
- package/models/socket/CaseUpdate.d.ts +5 -0
- package/models/socket/ViewersUpdate.d.ts +4 -0
- package/package.json +26 -6
- package/plugins/clue/components/ClueTypography.js +2 -2
- package/plugins/clue/utils.d.ts +2 -1
- package/tests/mocks.d.ts +11 -1
- package/tests/mocks.js +12 -7
- package/tests/server-handlers.js +6 -1
- package/tests/utils.d.ts +4 -0
- package/tests/utils.js +20 -0
- package/utils/constants.d.ts +4 -3
- package/utils/constants.js +6 -0
- package/utils/hitFunctions.d.ts +2 -1
- package/utils/hitFunctions.js +4 -4
- package/utils/socketUtils.d.ts +14 -0
- package/utils/socketUtils.js +17 -1
- package/utils/socketUtils.test.d.ts +1 -0
- package/utils/socketUtils.test.js +59 -0
- package/utils/typeUtils.d.ts +7 -0
- package/utils/typeUtils.js +27 -0
- package/utils/viewUtils.js +3 -0
- package/components/app/providers/HitProvider.d.ts +0 -22
- package/components/elements/display/icons/BundleButton.d.ts +0 -6
- package/components/elements/display/icons/BundleButton.js +0 -32
- package/components/elements/hit/HitRelated.d.ts +0 -6
- package/components/elements/hit/HitRelated.js +0 -7
- package/components/routes/help/BundleDocumentation.d.ts +0 -3
- package/components/routes/help/BundleDocumentation.js +0 -12
- package/components/routes/help/markdown/en/bundles.md.js +0 -1
- package/components/routes/help/markdown/fr/bundles.md.js +0 -1
- package/components/routes/hits/search/BundleParentMenu.d.ts +0 -6
- package/components/routes/hits/search/BundleParentMenu.js +0 -32
- package/components/routes/hits/search/BundleScroller.d.ts +0 -2
- package/components/routes/hits/search/BundleScroller.js +0 -6
- package/components/routes/hits/search/HitContextMenu.js +0 -229
- /package/{components/app/providers/HitSearchProvider.test.d.ts → api/socket/viewers.test.d.ts} +0 -0
- /package/components/{routes/hits/search/HitContextMenu.test.d.ts → app/providers/RecordSearchProvider.test.d.ts} +0 -0
- /package/components/{routes/overviews/OverviewEditor.d.ts → elements/MarkdownEditor.d.ts} +0 -0
- /package/components/elements/hit/{HitDetails.d.ts → related/RelatedRecords.d.ts} +0 -0
- /package/components/routes/hits/search/{HitBrowser.d.ts → RecordBrowser.d.ts} +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
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
|
-
"actions.skipped": "Action \"{{action}}\" was skipped: {{messages}}",
|
|
6
|
-
"actions.error": "Action \"{{action}}\" had error(s): {{messages}}",
|
|
7
7
|
"add": "Add",
|
|
8
8
|
"adminmenu": "Admin menu",
|
|
9
9
|
"adminmenu.config": "Configuration",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"analytic.notebook.error.minFields": "Name and link are required.",
|
|
14
14
|
"analytic.notebook.link": "Link",
|
|
15
15
|
"analytic.notebook.name": "Name",
|
|
16
|
+
"analytic.open": "Open Analytic",
|
|
16
17
|
"any": "Any",
|
|
17
18
|
"api.user.apikey.removed": "API key removed successfully.",
|
|
18
19
|
"api.user.apikey.updated": "New API key added successfully.",
|
|
@@ -81,6 +82,8 @@
|
|
|
81
82
|
"comments.edit.stop": "Stop Editing",
|
|
82
83
|
"comments.edited": "Edited",
|
|
83
84
|
"comments.quote": "Quote Reply",
|
|
85
|
+
"complete": "Complete",
|
|
86
|
+
"crisis": "Crisis",
|
|
84
87
|
"custom": "Custom",
|
|
85
88
|
"date.range.1.day": "The last day",
|
|
86
89
|
"date.range.1.month": "The last month",
|
|
@@ -106,8 +109,12 @@
|
|
|
106
109
|
"drawer.expand": "Expand Menu",
|
|
107
110
|
"duplicates.omitted": "Some duplicate entries have been omitted.",
|
|
108
111
|
"edit": "Edit",
|
|
112
|
+
"enabled": "Enabled",
|
|
113
|
+
"event.module": "Event Module",
|
|
114
|
+
"event.type": "Event Type",
|
|
109
115
|
"features.warning.description": "This feature is undergoing active development, and is not yet in a finished state. You may encounter bugs or instability.",
|
|
110
116
|
"features.warning.title": "Feature In Active Development",
|
|
117
|
+
"focus": "Main focus",
|
|
111
118
|
"global": "Global",
|
|
112
119
|
"help.actions.introduction": "Introduction to Actions",
|
|
113
120
|
"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 +171,20 @@
|
|
|
164
171
|
"hit.header.assignment": "Assignment: {{user}}",
|
|
165
172
|
"hit.header.assignment.add": "Assign to a user",
|
|
166
173
|
"hit.header.assignment.change": "Change assignment",
|
|
167
|
-
"hit.header.bundlesize": "{{hits}} hits",
|
|
168
174
|
"hit.header.escalation": "Escalation Level: ",
|
|
169
175
|
"hit.header.indicators": "Indicators",
|
|
170
176
|
"hit.header.rationale": "Rationale",
|
|
177
|
+
"hit.header.related": "{{count}} related records",
|
|
171
178
|
"hit.header.scrutiny": "Scrutiny: ",
|
|
172
179
|
"hit.header.status": "Status: ",
|
|
173
180
|
"hit.header.summary": "Summary",
|
|
174
181
|
"hit.header.target": "Target",
|
|
175
182
|
"hit.header.threat": "Threat",
|
|
183
|
+
"hit.header.view.case": "View case {{id}}",
|
|
184
|
+
"hit.header.view.hit": "View hit {{id}}",
|
|
185
|
+
"hit.header.view.observable": "View observable {{id}}",
|
|
176
186
|
"hit.header.votes": "Votes: ",
|
|
187
|
+
"hit.howler.related": "{{count}} related records",
|
|
177
188
|
"hit.label": "Labels",
|
|
178
189
|
"hit.label.category.assignments": "Category: Assignments - Specifies what analyst or team of analysts is assigned to triaging this hit.",
|
|
179
190
|
"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 +200,16 @@
|
|
|
189
200
|
"hit.label.edit.add.error.duplicate": "Duplicated label not allowed",
|
|
190
201
|
"hit.label.edit.add.error.empty": "Can't add an empty label",
|
|
191
202
|
"hit.label.edit.add.label": "New label value",
|
|
203
|
+
"hit.label.edit.desc": "Add or remove labels",
|
|
192
204
|
"hit.notebook.confirm.dialog": "A notebook with that name already exists in your environment, do you wish to overwrite it?",
|
|
193
205
|
"hit.notebook.confirm.title": "Overwrite existing notebook?",
|
|
194
206
|
"hit.notebook.error.failToPost": "Failed to send notebook to Jupyterhub, make sure your user environment is running.",
|
|
195
207
|
"hit.notebook.goTo": "Go to Jupyterhub",
|
|
196
208
|
"hit.notebook.select": "Please Select a notebook",
|
|
197
209
|
"hit.notebook.tooltip": "Open in Jupyterhub",
|
|
210
|
+
"hit.open": "Open Hit",
|
|
198
211
|
"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
212
|
"hit.panel.aggregation.run": "Create Summary",
|
|
200
|
-
"hit.panel.analytic.open": "Open Analytic",
|
|
201
213
|
"hit.panel.bundles.open": "Parent Bundles",
|
|
202
214
|
"hit.panel.bundles.open.prompt": "Open Parent Bundle",
|
|
203
215
|
"hit.panel.close": "Close",
|
|
@@ -210,9 +222,12 @@
|
|
|
210
222
|
"hit.panel.exclude": "Exclude By",
|
|
211
223
|
"hit.panel.hit.noselection": "No hit has been selected",
|
|
212
224
|
"hit.panel.include": "Include By",
|
|
213
|
-
"hit.panel.open": "Open Hit Viewer",
|
|
214
225
|
"hit.panel.view.layout": "Change View Panel",
|
|
215
226
|
"hit.quicksearch": "Search by assignment, analytic, detection or status",
|
|
227
|
+
"hit.related.tab.case": "Cases",
|
|
228
|
+
"hit.related.tab.hit": "Hits",
|
|
229
|
+
"hit.related.tab.links": "Links",
|
|
230
|
+
"hit.related.tab.observable": "Observables",
|
|
216
231
|
"hit.search.aggregate.button": "Create Summary",
|
|
217
232
|
"hit.search.button": "Perform search",
|
|
218
233
|
"hit.search.custom": "Custom Sort",
|
|
@@ -221,6 +236,9 @@
|
|
|
221
236
|
"hit.search.filter.fields": "Fields",
|
|
222
237
|
"hit.search.filter.label": "Lookup Filters",
|
|
223
238
|
"hit.search.filter.values": "Values",
|
|
239
|
+
"hit.search.index": "Indexes",
|
|
240
|
+
"hit.search.index.hit": "Hits",
|
|
241
|
+
"hit.search.index.observable": "Observables",
|
|
224
242
|
"hit.search.invalid": "Invalid Query",
|
|
225
243
|
"hit.search.keyboard": "Keyboard shortcuts",
|
|
226
244
|
"hit.search.keyboard.no_shortcuts": "No shortcuts",
|
|
@@ -258,6 +276,7 @@
|
|
|
258
276
|
"hit.summary.subtitle": "Limited to a maximum of 10 000 hits.",
|
|
259
277
|
"hit.summary.title": "Summary of Hits Over Time",
|
|
260
278
|
"hit.summary.zoom.reset": "Reset Zoom",
|
|
279
|
+
"hit.view.overview": "Overview",
|
|
261
280
|
"hit.viewer.aggregate": "Summary",
|
|
262
281
|
"hit.viewer.comments": "Comments",
|
|
263
282
|
"hit.viewer.data": "Raw Data",
|
|
@@ -293,6 +312,31 @@
|
|
|
293
312
|
"modal.action.empty": "Action Name cannot be empty.",
|
|
294
313
|
"modal.action.label": "Action Name",
|
|
295
314
|
"modal.action.title": "Save Action",
|
|
315
|
+
"modal.cases.add_to_case": "Add to Case",
|
|
316
|
+
"modal.cases.add_to_case.full_path": "Full path: {{path}}",
|
|
317
|
+
"modal.cases.add_to_case.items_section": "Alert Placement",
|
|
318
|
+
"modal.cases.add_to_case.path_invalid": "Path must not start or end with a /",
|
|
319
|
+
"modal.cases.add_to_case.select_case": "Search Cases",
|
|
320
|
+
"modal.cases.add_to_case.select_path": "Select Folder Path",
|
|
321
|
+
"modal.cases.add_to_case.title": "Item Title",
|
|
322
|
+
"modal.cases.alerts.resolved": "Resolved Alerts",
|
|
323
|
+
"modal.cases.create_case": "Create Case",
|
|
324
|
+
"modal.cases.create_case.escalation": "Escalation",
|
|
325
|
+
"modal.cases.create_case.full_path": "Full path: {{path}}",
|
|
326
|
+
"modal.cases.create_case.item.path": "Folder Path (optional)",
|
|
327
|
+
"modal.cases.create_case.item.title": "Item Title",
|
|
328
|
+
"modal.cases.create_case.items_section": "Alert Placement",
|
|
329
|
+
"modal.cases.create_case.overview": "Case Overview (Markdown, optional)",
|
|
330
|
+
"modal.cases.create_case.summary": "Short Case Summary",
|
|
331
|
+
"modal.cases.create_case.title": "Case Title",
|
|
332
|
+
"modal.cases.rename_item": "Rename Item",
|
|
333
|
+
"modal.cases.rename_item.error.empty": "Name cannot be empty",
|
|
334
|
+
"modal.cases.rename_item.error.slash": "Name cannot contain '/'",
|
|
335
|
+
"modal.cases.rename_item.error.taken": "An item already exists at this path",
|
|
336
|
+
"modal.cases.rename_item.folder_path": "Folder: {{path}}",
|
|
337
|
+
"modal.cases.rename_item.new_name": "New Name",
|
|
338
|
+
"modal.cases.resolve": "Resolve Case",
|
|
339
|
+
"modal.cases.resolve.description": "When resolving a case, you must either assess all open alerts, or add an assessment to the alerts.",
|
|
296
340
|
"modal.confirm.delete.description": "Are you sure you want to delete this item?",
|
|
297
341
|
"modal.confirm.delete.title": "Confirm Deletion",
|
|
298
342
|
"modal.rationale.description": "Provide a rationale that succinctly explains to other analysts why you are confident in this assessment.",
|
|
@@ -314,6 +358,8 @@
|
|
|
314
358
|
"modal.rule.title": "Create a New Rule",
|
|
315
359
|
"no.data": "No Data",
|
|
316
360
|
"none": "None",
|
|
361
|
+
"normal": "Normal Priority",
|
|
362
|
+
"observable.open": "Open Observable",
|
|
317
363
|
"on": "on",
|
|
318
364
|
"open": "Open",
|
|
319
365
|
"operations.add_label": "Add Label",
|
|
@@ -333,6 +379,60 @@
|
|
|
333
379
|
"owner": "Owner",
|
|
334
380
|
"page.404.description": "The page you are looking for cannot be found...",
|
|
335
381
|
"page.404.title": "404: Not found",
|
|
382
|
+
"page.cases.assets": "Assets",
|
|
383
|
+
"page.cases.assets.empty": "No assets found.",
|
|
384
|
+
"page.cases.assets.filter_by_type": "Filter by type:",
|
|
385
|
+
"page.cases.assets.seen_in": "Seen in",
|
|
386
|
+
"page.cases.assets.type.hash": "Hash",
|
|
387
|
+
"page.cases.assets.type.hosts": "Host",
|
|
388
|
+
"page.cases.assets.type.id": "ID",
|
|
389
|
+
"page.cases.assets.type.ids": "ID",
|
|
390
|
+
"page.cases.assets.type.ip": "IP",
|
|
391
|
+
"page.cases.assets.type.signature": "Signature",
|
|
392
|
+
"page.cases.assets.type.uri": "URI",
|
|
393
|
+
"page.cases.assets.type.user": "User",
|
|
394
|
+
"page.cases.created": "Created",
|
|
395
|
+
"page.cases.dashboard": "Dashboard",
|
|
396
|
+
"page.cases.dashboard.alerts": "Alerts",
|
|
397
|
+
"page.cases.dashboard.cases": "Related Cases",
|
|
398
|
+
"page.cases.dashboard.duration": "Duration",
|
|
399
|
+
"page.cases.dashboard.indicators": "Indicators",
|
|
400
|
+
"page.cases.dashboard.target": "Targets",
|
|
401
|
+
"page.cases.dashboard.tasks": "Tasks",
|
|
402
|
+
"page.cases.dashboard.threat": "Threats",
|
|
403
|
+
"page.cases.detail.participants": "Participants",
|
|
404
|
+
"page.cases.detail.properties": "Properties",
|
|
405
|
+
"page.cases.detail.status": "Status",
|
|
406
|
+
"page.cases.detail.viewers": "Active Viewers",
|
|
407
|
+
"page.cases.escalation": "Escalation",
|
|
408
|
+
"page.cases.folder.drop.root": "Place here to move to root",
|
|
409
|
+
"page.cases.rules": "Rules",
|
|
410
|
+
"page.cases.rules.author": "Author",
|
|
411
|
+
"page.cases.rules.create": "Create Rule",
|
|
412
|
+
"page.cases.rules.delete.confirm": "Delete this rule?",
|
|
413
|
+
"page.cases.rules.destination": "Alert Destination Path",
|
|
414
|
+
"page.cases.rules.destination.help": "Handlebars template for the case item path (e.g. alerts/{{howler.analytic}})",
|
|
415
|
+
"page.cases.rules.empty": "No correlation rules configured.",
|
|
416
|
+
"page.cases.rules.no_expiry": "No expiry",
|
|
417
|
+
"page.cases.rules.query": "Match Query",
|
|
418
|
+
"page.cases.rules.timeframe": "Rule Expiry",
|
|
419
|
+
"page.cases.sidebar.folder.remove": "Remove folder",
|
|
420
|
+
"page.cases.sidebar.item.open": "Open item",
|
|
421
|
+
"page.cases.sidebar.item.remove": "Remove item",
|
|
422
|
+
"page.cases.sidebar.item.rename": "Rename item",
|
|
423
|
+
"page.cases.sources": "Sources",
|
|
424
|
+
"page.cases.status.in-progress": "In Progress",
|
|
425
|
+
"page.cases.status.on-hold": "On Hold",
|
|
426
|
+
"page.cases.status.open": "Open",
|
|
427
|
+
"page.cases.status.resolved": "Resolved",
|
|
428
|
+
"page.cases.timeline": "Timeline",
|
|
429
|
+
"page.cases.timeline.empty": "No events match the selected filters.",
|
|
430
|
+
"page.cases.timeline.filter.escalation": "Escalation",
|
|
431
|
+
"page.cases.timeline.filter.escalation.empty": "No escalation levels found.",
|
|
432
|
+
"page.cases.timeline.filter.label": "Show only",
|
|
433
|
+
"page.cases.timeline.filter.mitre": "MITRE ATT&CK",
|
|
434
|
+
"page.cases.timeline.filter.mitre.empty": "No tactics or techniques found.",
|
|
435
|
+
"page.cases.updated": "Updated",
|
|
336
436
|
"page.dashboard.settings.edit": "Edit Dashboard",
|
|
337
437
|
"page.dashboard.settings.refreshRate": "Refresh Rate",
|
|
338
438
|
"page.dashboard.title": "Dashboard",
|
|
@@ -357,6 +457,7 @@
|
|
|
357
457
|
"page.help": "Help",
|
|
358
458
|
"page.help.title": "Help Dashboard",
|
|
359
459
|
"page.login.button": "Sign in",
|
|
460
|
+
"page.login.error": "Just type anything in the username and password fields...",
|
|
360
461
|
"page.login.password": "Password",
|
|
361
462
|
"page.login.username": "Username",
|
|
362
463
|
"page.logout": "Logging out current user ... ",
|
|
@@ -403,6 +504,8 @@
|
|
|
403
504
|
"page.user.search.column.groups": "Groups",
|
|
404
505
|
"page.user.search.column.username": "Username",
|
|
405
506
|
"page.user.search.prompt": "Search by username, fullname, email or group",
|
|
507
|
+
"pages.cases.detail.participants": "Participants",
|
|
508
|
+
"pages.cases.detail.status": "Status",
|
|
406
509
|
"password": "New Password",
|
|
407
510
|
"password.confirm": "Confirm Password",
|
|
408
511
|
"password.match": "Password and Confirm Password must match",
|
|
@@ -416,6 +519,7 @@
|
|
|
416
519
|
"personalization.showbreadcrumbs": "Show Breadcrumbs",
|
|
417
520
|
"personalization.sticky": "Sticky Topbar",
|
|
418
521
|
"query": "Query",
|
|
522
|
+
"query.invalid": "Invalid query",
|
|
419
523
|
"quicksearch.aria": "search",
|
|
420
524
|
"quicksearch.placeholder": "Search ...",
|
|
421
525
|
"rationale.default": "Hit assessed as {{assessment}}",
|
|
@@ -531,6 +635,16 @@
|
|
|
531
635
|
"route.analytics.triage.title": "Triage Settings",
|
|
532
636
|
"route.analytics.updated": "Analytic Updated!",
|
|
533
637
|
"route.analytics.view": "View Analytic",
|
|
638
|
+
"route.cases": "Cases",
|
|
639
|
+
"route.cases.create": "Create Case",
|
|
640
|
+
"route.cases.filter.assignee": "Assignee",
|
|
641
|
+
"route.cases.filter.assignees": "Assignees",
|
|
642
|
+
"route.cases.filter.date": "Date Range",
|
|
643
|
+
"route.cases.filter.myself": "Myself",
|
|
644
|
+
"route.cases.filter.status": "Status",
|
|
645
|
+
"route.cases.manager.search": "Search Cases",
|
|
646
|
+
"route.cases.search.prompt": "Search cases by title, summary, description, participants or task details",
|
|
647
|
+
"route.cases.view": "View Case",
|
|
534
648
|
"route.clear": "Clear query",
|
|
535
649
|
"route.dossiers": "Dossiers",
|
|
536
650
|
"route.dossiers.create": "New Dossier",
|
|
@@ -593,8 +707,10 @@
|
|
|
593
707
|
"route.help.actions": "Action Documentation",
|
|
594
708
|
"route.help.api": "API Documentation",
|
|
595
709
|
"route.help.auth": "Authentication",
|
|
710
|
+
"route.help.bundles": "Hit Bundles",
|
|
596
711
|
"route.help.client": "Howler Client",
|
|
597
712
|
"route.help.hit": "Hit Documentation",
|
|
713
|
+
"route.help.hit.banner": "Hit Banner Documentation",
|
|
598
714
|
"route.help.main": "Dashboard",
|
|
599
715
|
"route.help.notebook": "Notebook Documentation",
|
|
600
716
|
"route.help.overviews": "Overviews",
|
|
@@ -707,6 +823,7 @@
|
|
|
707
823
|
"search.result.showing": "Showing {{offset}} to {{length}} of {{total}} results",
|
|
708
824
|
"search.result.showing.single": "No results",
|
|
709
825
|
"search.total": "There are a total of {{count}} hits matching this query.",
|
|
826
|
+
"started": "Started",
|
|
710
827
|
"templates.edit.analytic": "Edit analytic template",
|
|
711
828
|
"templates.edit.detection": "Edit detection template",
|
|
712
829
|
"to": "to",
|
|
@@ -4,8 +4,6 @@
|
|
|
4
4
|
"Unclassified//Official Use Only": "Non classé//Réservé à des fins officielles",
|
|
5
5
|
"actions.running": "Action \"{{action}}\" s'exécute.",
|
|
6
6
|
"actions.succeeded": "Action \"{{action}}\" achevé avec succès.",
|
|
7
|
-
"actions.skipped": "Action \"{{action}}\" a été ignorée: {{messages}}",
|
|
8
|
-
"actions.error": "Action \"{{action}}\" a rencontré une ou des erreur(s): {{messages}}",
|
|
9
7
|
"add": "Ajouter",
|
|
10
8
|
"adminmenu": "Menu d'administration",
|
|
11
9
|
"adminmenu.config": "Configuration",
|
|
@@ -15,6 +13,7 @@
|
|
|
15
13
|
"analytic.notebook.error.minFields": "Nom et lien requis.",
|
|
16
14
|
"analytic.notebook.link": "Lien",
|
|
17
15
|
"analytic.notebook.name": "Nom",
|
|
16
|
+
"analytic.open": "Ouvrir l'analyse",
|
|
18
17
|
"any": "Tous",
|
|
19
18
|
"api.user.apikey.removed": "Clé API supprimée avec succès",
|
|
20
19
|
"api.user.apikey.updated": "Nouvelle clé API ajoutée avec succès.",
|
|
@@ -83,6 +82,8 @@
|
|
|
83
82
|
"comments.edit.stop": "Arrêter Modification",
|
|
84
83
|
"comments.edited": "Modifié",
|
|
85
84
|
"comments.quote": "Citation Réponse",
|
|
85
|
+
"complete": "Terminé",
|
|
86
|
+
"crisis": "Crise",
|
|
86
87
|
"custom": "Personnalisé",
|
|
87
88
|
"date.range.1.day": "Dernier jour",
|
|
88
89
|
"date.range.1.month": "Le dernier mois",
|
|
@@ -108,8 +109,12 @@
|
|
|
108
109
|
"drawer.expand": "Ouvrir le Menu",
|
|
109
110
|
"duplicates.omitted": "Certains doublons ont été omis.",
|
|
110
111
|
"edit": "Modifier",
|
|
112
|
+
"enabled": "Activé",
|
|
113
|
+
"event.module": "Module d'événement",
|
|
114
|
+
"event.type": "Type d'événement",
|
|
111
115
|
"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
116
|
"features.warning.title": "Fonctionnalité en développement actif",
|
|
117
|
+
"focus": "Focus principal",
|
|
113
118
|
"global": "Global",
|
|
114
119
|
"help.actions.introduction": "Introduction aux actions",
|
|
115
120
|
"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 +171,20 @@
|
|
|
166
171
|
"hit.header.assignment": "Affectation: {{user}}",
|
|
167
172
|
"hit.header.assignment.add": "Attribuer à un utilisateur",
|
|
168
173
|
"hit.header.assignment.change": "Changer l'affectation",
|
|
169
|
-
"hit.header.bundlesize": "{{hits}} hits",
|
|
170
174
|
"hit.header.escalation": "Niveau d'escalade: ",
|
|
171
175
|
"hit.header.indicators": "Indicateurs",
|
|
172
176
|
"hit.header.rationale": "Justification",
|
|
177
|
+
"hit.header.related": "{{count}} documrents associés",
|
|
173
178
|
"hit.header.scrutiny": "Examen minutieux: ",
|
|
174
179
|
"hit.header.status": "Statut: ",
|
|
175
180
|
"hit.header.summary": "Résumé",
|
|
176
181
|
"hit.header.target": "Cible",
|
|
177
182
|
"hit.header.threat": "Menace",
|
|
183
|
+
"hit.header.view.case": "Voir le cas {{id}}",
|
|
184
|
+
"hit.header.view.hit": "Voir l'alerte {{id}}",
|
|
185
|
+
"hit.header.view.observable": "Voir l'observable {{id}}",
|
|
178
186
|
"hit.header.votes": "Votes: ",
|
|
187
|
+
"hit.howler.related": "{{count}} enregistrements associés",
|
|
179
188
|
"hit.label": "Étiquettes",
|
|
180
189
|
"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
190
|
"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 +207,9 @@
|
|
|
198
207
|
"hit.notebook.goTo": "Aller a Jupyterhub",
|
|
199
208
|
"hit.notebook.select": "Veuillez sélectionner un notebook",
|
|
200
209
|
"hit.notebook.tooltip": "Ouvrir dans Jupyterhub",
|
|
210
|
+
"hit.open": "Ouvrir hit",
|
|
201
211
|
"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
212
|
"hit.panel.aggregation.run": "Créer un sommaire",
|
|
203
|
-
"hit.panel.analytic.open": "Ouvrir l'analyse",
|
|
204
213
|
"hit.panel.bundles.open": "Groupes parentaux",
|
|
205
214
|
"hit.panel.bundles.open.prompt": "Ouvrir le groupe parent",
|
|
206
215
|
"hit.panel.close": "Fermer",
|
|
@@ -213,9 +222,12 @@
|
|
|
213
222
|
"hit.panel.exclude": "Exclure par",
|
|
214
223
|
"hit.panel.hit.noselection": "Aucun résultat n'a été sélectionné",
|
|
215
224
|
"hit.panel.include": "Inclure par",
|
|
216
|
-
"hit.panel.open": "Ouvrir hit",
|
|
217
225
|
"hit.panel.view.layout": "Modifier le panneau d'affichage",
|
|
218
226
|
"hit.quicksearch": "Recherche par affectation, analytique, détection ou état",
|
|
227
|
+
"hit.related.tab.case": "Cas",
|
|
228
|
+
"hit.related.tab.hit": "Alertes",
|
|
229
|
+
"hit.related.tab.links": "Liens",
|
|
230
|
+
"hit.related.tab.observable": "Observables",
|
|
219
231
|
"hit.search.aggregate.button": "Créer un sommaire",
|
|
220
232
|
"hit.search.button": "Effectuer une recherche",
|
|
221
233
|
"hit.search.custom": "Triage personnalisé",
|
|
@@ -224,6 +236,9 @@
|
|
|
224
236
|
"hit.search.filter.fields": "Paramètres",
|
|
225
237
|
"hit.search.filter.label": "Filtres de recherche",
|
|
226
238
|
"hit.search.filter.values": "Valeurs",
|
|
239
|
+
"hit.search.index": "Indexes",
|
|
240
|
+
"hit.search.index.hit": "Hits",
|
|
241
|
+
"hit.search.index.observable": "Observables",
|
|
227
242
|
"hit.search.invalid": "Requête invalide",
|
|
228
243
|
"hit.search.keyboard": "Raccourcis clavier",
|
|
229
244
|
"hit.search.keyboard.no_shortcuts": "Pas de raccourcis",
|
|
@@ -297,6 +312,31 @@
|
|
|
297
312
|
"modal.action.empty": "Le nom de l'action ne peut pas être vide.",
|
|
298
313
|
"modal.action.label": "Nom de l'action",
|
|
299
314
|
"modal.action.title": "Enregistrer l'action",
|
|
315
|
+
"modal.cases.add_to_case": "Ajouter au cas",
|
|
316
|
+
"modal.cases.add_to_case.full_path": "Chemin complet : {{path}}",
|
|
317
|
+
"modal.cases.add_to_case.items_section": "Placement des alertes",
|
|
318
|
+
"modal.cases.add_to_case.path_invalid": "Le chemin ne doit pas commencer ou se terminer par un /",
|
|
319
|
+
"modal.cases.add_to_case.select_case": "Rechercher des cas",
|
|
320
|
+
"modal.cases.add_to_case.select_path": "Sélectionner le chemin du dossier",
|
|
321
|
+
"modal.cases.add_to_case.title": "Titre de l'élément",
|
|
322
|
+
"modal.cases.alerts.resolved": "Alertes résolues",
|
|
323
|
+
"modal.cases.create_case": "Créer un cas",
|
|
324
|
+
"modal.cases.create_case.escalation": "Escalade",
|
|
325
|
+
"modal.cases.create_case.full_path": "Chemin complet : {{path}}",
|
|
326
|
+
"modal.cases.create_case.item.path": "Chemin du dossier (optionnel)",
|
|
327
|
+
"modal.cases.create_case.item.title": "Titre de l'élément",
|
|
328
|
+
"modal.cases.create_case.items_section": "Placement des alertes",
|
|
329
|
+
"modal.cases.create_case.overview": "Vue d'ensemble du cas (Markdown, optionnel)",
|
|
330
|
+
"modal.cases.create_case.summary": "Résumé court du cas",
|
|
331
|
+
"modal.cases.create_case.title": "Titre du cas",
|
|
332
|
+
"modal.cases.rename_item": "Renommer l'élément",
|
|
333
|
+
"modal.cases.rename_item.error.empty": "Le nom ne peut pas être vide",
|
|
334
|
+
"modal.cases.rename_item.error.slash": "Le nom ne peut pas contenir '/'",
|
|
335
|
+
"modal.cases.rename_item.error.taken": "Un élément existe déjà à ce chemin",
|
|
336
|
+
"modal.cases.rename_item.folder_path": "Dossier : {{path}}",
|
|
337
|
+
"modal.cases.rename_item.new_name": "Nouveau nom",
|
|
338
|
+
"modal.cases.resolve": "Résoudre le cas",
|
|
339
|
+
"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
340
|
"modal.confirm.delete.description": "Êtes-vous sûr de vouloir supprimer cet élément ?",
|
|
301
341
|
"modal.confirm.delete.title": "Confirmer la suppression",
|
|
302
342
|
"modal.rationale.description": "Fournissez une justification qui explique succinctement aux autres analystes les raisons pour lesquelles vous êtes confiant dans cette évaluation.",
|
|
@@ -318,6 +358,8 @@
|
|
|
318
358
|
"modal.rule.title": "Créer une nouvelle règle",
|
|
319
359
|
"no.data": "Aucune donnée",
|
|
320
360
|
"none": "Rien",
|
|
361
|
+
"normal": "Priorité normale",
|
|
362
|
+
"observable.open": "Ouvrir observable",
|
|
321
363
|
"on": "sur",
|
|
322
364
|
"open": "Ouvert",
|
|
323
365
|
"operations.add_label": "Ajouter un label",
|
|
@@ -337,6 +379,60 @@
|
|
|
337
379
|
"owner": "Propriétaire",
|
|
338
380
|
"page.404.description": "La page que vous recherchez est introuvable ...",
|
|
339
381
|
"page.404.title": "404: Introuvable",
|
|
382
|
+
"page.cases.assets": "Actifs",
|
|
383
|
+
"page.cases.assets.empty": "Aucun actif trouvé.",
|
|
384
|
+
"page.cases.assets.filter_by_type": "Filtrer par type :",
|
|
385
|
+
"page.cases.assets.seen_in": "Vu dans",
|
|
386
|
+
"page.cases.assets.type.hash": "Hachage",
|
|
387
|
+
"page.cases.assets.type.hosts": "Hôte",
|
|
388
|
+
"page.cases.assets.type.id": "Identifiant",
|
|
389
|
+
"page.cases.assets.type.ids": "Identifiant",
|
|
390
|
+
"page.cases.assets.type.ip": "IP",
|
|
391
|
+
"page.cases.assets.type.signature": "Signature",
|
|
392
|
+
"page.cases.assets.type.uri": "URI",
|
|
393
|
+
"page.cases.assets.type.user": "Utilisateur",
|
|
394
|
+
"page.cases.created": "Créé",
|
|
395
|
+
"page.cases.dashboard": "Tableau de bord",
|
|
396
|
+
"page.cases.dashboard.alerts": "Alertes",
|
|
397
|
+
"page.cases.dashboard.cases": "Cas connexes",
|
|
398
|
+
"page.cases.dashboard.duration": "Durée",
|
|
399
|
+
"page.cases.dashboard.indicators": "Indicateurs",
|
|
400
|
+
"page.cases.dashboard.target": "Cibles",
|
|
401
|
+
"page.cases.dashboard.tasks": "Tâches",
|
|
402
|
+
"page.cases.dashboard.threat": "Menaces",
|
|
403
|
+
"page.cases.detail.participants": "Participants",
|
|
404
|
+
"page.cases.detail.properties": "Propriétés",
|
|
405
|
+
"page.cases.detail.status": "Statut",
|
|
406
|
+
"page.cases.detail.viewers": "Spectateurs actifs",
|
|
407
|
+
"page.cases.escalation": "Escalade",
|
|
408
|
+
"page.cases.folder.drop.root": "Déposer ici pour déplacer à la racine",
|
|
409
|
+
"page.cases.rules": "Règles",
|
|
410
|
+
"page.cases.rules.author": "Auteur",
|
|
411
|
+
"page.cases.rules.create": "Créer une règle",
|
|
412
|
+
"page.cases.rules.delete.confirm": "Supprimer cette règle ?",
|
|
413
|
+
"page.cases.rules.destination": "Chemin de destination des alertes",
|
|
414
|
+
"page.cases.rules.destination.help": "Modèle Handlebars pour le chemin de l'élément de cas (ex. alerts/{{howler.analytic}})",
|
|
415
|
+
"page.cases.rules.empty": "Aucune règle de corrélation configurée.",
|
|
416
|
+
"page.cases.rules.no_expiry": "Sans expiration",
|
|
417
|
+
"page.cases.rules.query": "Requête de correspondance",
|
|
418
|
+
"page.cases.rules.timeframe": "Expiration de la règle",
|
|
419
|
+
"page.cases.sidebar.folder.remove": "Supprimer le dossier",
|
|
420
|
+
"page.cases.sidebar.item.open": "Ouvrir l'élément",
|
|
421
|
+
"page.cases.sidebar.item.remove": "Supprimer l'élément",
|
|
422
|
+
"page.cases.sidebar.item.rename": "Renommer l'élément",
|
|
423
|
+
"page.cases.sources": "Sources",
|
|
424
|
+
"page.cases.status.in-progress": "En cours",
|
|
425
|
+
"page.cases.status.on-hold": "En attente",
|
|
426
|
+
"page.cases.status.open": "Ouvert",
|
|
427
|
+
"page.cases.status.resolved": "Résolu",
|
|
428
|
+
"page.cases.timeline": "Chronologie",
|
|
429
|
+
"page.cases.timeline.empty": "Aucun événement ne correspond aux filtres sélectionnés.",
|
|
430
|
+
"page.cases.timeline.filter.escalation": "Escalade",
|
|
431
|
+
"page.cases.timeline.filter.escalation.empty": "Aucun niveau d'escalade trouvé.",
|
|
432
|
+
"page.cases.timeline.filter.label": "Afficher uniquement",
|
|
433
|
+
"page.cases.timeline.filter.mitre": "MITRE ATT&CK",
|
|
434
|
+
"page.cases.timeline.filter.mitre.empty": "Aucune tactique ou technique trouvée.",
|
|
435
|
+
"page.cases.updated": "Mis à jour",
|
|
340
436
|
"page.dashboard.settings.edit": "Modifier le tableau de bord",
|
|
341
437
|
"page.dashboard.settings.refreshRate": "Fréquence de rafraîchissement",
|
|
342
438
|
"page.dashboard.title": "Tableau de bord",
|
|
@@ -408,6 +504,8 @@
|
|
|
408
504
|
"page.user.search.column.groups": "Groupes",
|
|
409
505
|
"page.user.search.column.username": "Nom d'utilisateur",
|
|
410
506
|
"page.user.search.prompt": "Rechercher par nom d'utilisateur, nom complet, e-mail ou groupe",
|
|
507
|
+
"pages.cases.detail.participants": "Participants",
|
|
508
|
+
"pages.cases.detail.status": "Statut",
|
|
411
509
|
"password": "Nouveau mot de passe",
|
|
412
510
|
"password.confirm": "Confirmer le mot de passe",
|
|
413
511
|
"password.match": "Le mot de passe et le mot de passe de confirmation doivent correspondre",
|
|
@@ -440,6 +538,7 @@
|
|
|
440
538
|
"route.actions.create": "Nouveau action",
|
|
441
539
|
"route.actions.edit": "Modifier",
|
|
442
540
|
"route.actions.execute": "Exécuter",
|
|
541
|
+
"route.actions.manager": "Gestionnaire d'actions",
|
|
443
542
|
"route.actions.name": "Nom de l'action",
|
|
444
543
|
"route.actions.open": "Ouvrir la requête",
|
|
445
544
|
"route.actions.operation.add": "Ajouter une nouvelle opération",
|
|
@@ -536,6 +635,16 @@
|
|
|
536
635
|
"route.analytics.triage.title": "Paramètres de triage",
|
|
537
636
|
"route.analytics.updated": "Analytic mis a jour!",
|
|
538
637
|
"route.analytics.view": "Voir l'analyse",
|
|
638
|
+
"route.cases": "Cas",
|
|
639
|
+
"route.cases.create": "Créer un cas",
|
|
640
|
+
"route.cases.filter.assignee": "Assigné",
|
|
641
|
+
"route.cases.filter.assignees": "Assignés",
|
|
642
|
+
"route.cases.filter.date": "Plage de dates",
|
|
643
|
+
"route.cases.filter.myself": "Moi-même",
|
|
644
|
+
"route.cases.filter.status": "Statut",
|
|
645
|
+
"route.cases.manager.search": "Rechercher des cas",
|
|
646
|
+
"route.cases.search.prompt": "Rechercher des cas par titre, résumé, description, participants ou détails des tâches",
|
|
647
|
+
"route.cases.view": "Voir le cas",
|
|
539
648
|
"route.clear": "Effacer la requête",
|
|
540
649
|
"route.dossiers": "Dossiers",
|
|
541
650
|
"route.dossiers.create": "Nouveau dossier",
|
|
@@ -595,6 +704,7 @@
|
|
|
595
704
|
"route.dossiers.search.prompt": "Recherche par titre, requête ou propriétaire.",
|
|
596
705
|
"route.dossiers.view": "Voir le dossier",
|
|
597
706
|
"route.help": "Aide",
|
|
707
|
+
"route.help.actions": "Documentation sur les actions",
|
|
598
708
|
"route.help.api": "Documentation de l'API",
|
|
599
709
|
"route.help.auth": "Authentification",
|
|
600
710
|
"route.help.bundles": "Groupes des hits",
|
|
@@ -658,6 +768,7 @@
|
|
|
658
768
|
"route.overviews.theme.dark": "Prévoyez en mode sombre",
|
|
659
769
|
"route.overviews.theme.light": "Prévoyez en mode clair",
|
|
660
770
|
"route.overviews.view": "Voir la vue d'ensemble",
|
|
771
|
+
"route.search": "Rechercher",
|
|
661
772
|
"route.templates": "Modèles",
|
|
662
773
|
"route.templates.analytic": "Choisir une analyse",
|
|
663
774
|
"route.templates.builtin": "Intégré",
|
|
@@ -668,6 +779,7 @@
|
|
|
668
779
|
"route.templates.detection": "Choisir une détection",
|
|
669
780
|
"route.templates.global": "Général",
|
|
670
781
|
"route.templates.manager.global": "Global",
|
|
782
|
+
"route.templates.manager.open": "Ouvrir la vue",
|
|
671
783
|
"route.templates.manager.personal": "Personnel",
|
|
672
784
|
"route.templates.manager.readonly": "Intégré",
|
|
673
785
|
"route.templates.manager.search": "Rechercher les modèles",
|
|
@@ -691,8 +803,10 @@
|
|
|
691
803
|
"route.views.manager.personal": "Personnel",
|
|
692
804
|
"route.views.manager.readonly": "Intégré",
|
|
693
805
|
"route.views.manager.search": "Rechercher les vues",
|
|
806
|
+
"route.views.name": "Nom de la vue",
|
|
694
807
|
"route.views.save": "Enregistrer cette requête comme vue",
|
|
695
808
|
"route.views.saved": "Vues épinglées",
|
|
809
|
+
"route.views.search.prompt": "Rechercher par nom, requête ou propriétaire.",
|
|
696
810
|
"route.views.show": "Voir les vues",
|
|
697
811
|
"route.views.update.success": "Vue actualisée.",
|
|
698
812
|
"rule.interval": "Intervalle d'exécution de la règle",
|
|
@@ -709,6 +823,7 @@
|
|
|
709
823
|
"search.result.showing": "Affichage de {{offset}} à {{length}} sur {{total}} articles",
|
|
710
824
|
"search.result.showing.single": "Aucun articles",
|
|
711
825
|
"search.total": "Il y a un total de {{count}} résultats correspondant à cette requête.",
|
|
826
|
+
"started": "Démarré",
|
|
712
827
|
"templates.edit.analytic": "Modifier modèle pour cette analyse",
|
|
713
828
|
"templates.edit.detection": "Modifier modèle pour cette détection",
|
|
714
829
|
"to": "à",
|
package/models/WithMetadata.d.ts
CHANGED
|
@@ -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,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
|
+
}
|