@cccsaurora/howler-ui 2.19.0-dev.839 → 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.
- 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 -47
- 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/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 +268 -0
- package/components/elements/record/RecordContextMenu.test.d.ts +1 -0
- package/components/{routes/hits/search/HitContextMenu.test.js → elements/record/RecordContextMenu.test.js} +98 -43
- 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/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 -3
- package/locales/fr/translation.json +120 -3
- 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 +21 -1
- 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 -239
- /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,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,17 +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",
|
|
170
178
|
"hit.header.link": "Open Link",
|
|
171
179
|
"hit.header.rationale": "Rationale",
|
|
180
|
+
"hit.header.related": "{{count}} related records",
|
|
172
181
|
"hit.header.scrutiny": "Scrutiny: ",
|
|
173
182
|
"hit.header.status": "Status: ",
|
|
174
183
|
"hit.header.summary": "Summary",
|
|
175
184
|
"hit.header.target": "Target",
|
|
176
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}}",
|
|
177
189
|
"hit.header.votes": "Votes: ",
|
|
190
|
+
"hit.howler.related": "{{count}} related records",
|
|
178
191
|
"hit.label": "Labels",
|
|
179
192
|
"hit.label.category.assignments": "Category: Assignments - Specifies what analyst or team of analysts is assigned to triaging this hit.",
|
|
180
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.",
|
|
@@ -190,15 +203,16 @@
|
|
|
190
203
|
"hit.label.edit.add.error.duplicate": "Duplicated label not allowed",
|
|
191
204
|
"hit.label.edit.add.error.empty": "Can't add an empty label",
|
|
192
205
|
"hit.label.edit.add.label": "New label value",
|
|
206
|
+
"hit.label.edit.desc": "Add or remove labels",
|
|
193
207
|
"hit.notebook.confirm.dialog": "A notebook with that name already exists in your environment, do you wish to overwrite it?",
|
|
194
208
|
"hit.notebook.confirm.title": "Overwrite existing notebook?",
|
|
195
209
|
"hit.notebook.error.failToPost": "Failed to send notebook to Jupyterhub, make sure your user environment is running.",
|
|
196
210
|
"hit.notebook.goTo": "Go to Jupyterhub",
|
|
197
211
|
"hit.notebook.select": "Please Select a notebook",
|
|
198
212
|
"hit.notebook.tooltip": "Open in Jupyterhub",
|
|
213
|
+
"hit.open": "Open Hit",
|
|
199
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.",
|
|
200
215
|
"hit.panel.aggregation.run": "Create Summary",
|
|
201
|
-
"hit.panel.analytic.open": "Open Analytic",
|
|
202
216
|
"hit.panel.bundles.open": "Parent Bundles",
|
|
203
217
|
"hit.panel.bundles.open.prompt": "Open Parent Bundle",
|
|
204
218
|
"hit.panel.close": "Close",
|
|
@@ -211,9 +225,12 @@
|
|
|
211
225
|
"hit.panel.exclude": "Exclude By",
|
|
212
226
|
"hit.panel.hit.noselection": "No hit has been selected",
|
|
213
227
|
"hit.panel.include": "Include By",
|
|
214
|
-
"hit.panel.open": "Open Hit Viewer",
|
|
215
228
|
"hit.panel.view.layout": "Change View Panel",
|
|
216
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",
|
|
217
234
|
"hit.search.aggregate.button": "Create Summary",
|
|
218
235
|
"hit.search.button": "Perform search",
|
|
219
236
|
"hit.search.custom": "Custom Sort",
|
|
@@ -222,6 +239,9 @@
|
|
|
222
239
|
"hit.search.filter.fields": "Fields",
|
|
223
240
|
"hit.search.filter.label": "Lookup Filters",
|
|
224
241
|
"hit.search.filter.values": "Values",
|
|
242
|
+
"hit.search.index": "Indexes",
|
|
243
|
+
"hit.search.index.hit": "Hits",
|
|
244
|
+
"hit.search.index.observable": "Observables",
|
|
225
245
|
"hit.search.invalid": "Invalid Query",
|
|
226
246
|
"hit.search.keyboard": "Keyboard shortcuts",
|
|
227
247
|
"hit.search.keyboard.no_shortcuts": "No shortcuts",
|
|
@@ -259,6 +279,7 @@
|
|
|
259
279
|
"hit.summary.subtitle": "Limited to a maximum of 10 000 hits.",
|
|
260
280
|
"hit.summary.title": "Summary of Hits Over Time",
|
|
261
281
|
"hit.summary.zoom.reset": "Reset Zoom",
|
|
282
|
+
"hit.view.overview": "Overview",
|
|
262
283
|
"hit.viewer.aggregate": "Summary",
|
|
263
284
|
"hit.viewer.comments": "Comments",
|
|
264
285
|
"hit.viewer.data": "Raw Data",
|
|
@@ -294,6 +315,31 @@
|
|
|
294
315
|
"modal.action.empty": "Action Name cannot be empty.",
|
|
295
316
|
"modal.action.label": "Action Name",
|
|
296
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.",
|
|
297
343
|
"modal.confirm.delete.description": "Are you sure you want to delete this item?",
|
|
298
344
|
"modal.confirm.delete.title": "Confirm Deletion",
|
|
299
345
|
"modal.rationale.description": "Provide a rationale that succinctly explains to other analysts why you are confident in this assessment.",
|
|
@@ -315,6 +361,8 @@
|
|
|
315
361
|
"modal.rule.title": "Create a New Rule",
|
|
316
362
|
"no.data": "No Data",
|
|
317
363
|
"none": "None",
|
|
364
|
+
"normal": "Normal Priority",
|
|
365
|
+
"observable.open": "Open Observable",
|
|
318
366
|
"on": "on",
|
|
319
367
|
"open": "Open",
|
|
320
368
|
"operations.add_label": "Add Label",
|
|
@@ -336,6 +384,60 @@
|
|
|
336
384
|
"page.403.title": "403: Access Forbidden",
|
|
337
385
|
"page.404.description": "The page you are looking for cannot be found...",
|
|
338
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",
|
|
339
441
|
"page.dashboard.settings.edit": "Edit Dashboard",
|
|
340
442
|
"page.dashboard.settings.refreshRate": "Refresh Rate",
|
|
341
443
|
"page.dashboard.title": "Dashboard",
|
|
@@ -360,6 +462,7 @@
|
|
|
360
462
|
"page.help": "Help",
|
|
361
463
|
"page.help.title": "Help Dashboard",
|
|
362
464
|
"page.login.button": "Sign in",
|
|
465
|
+
"page.login.error": "Just type anything in the username and password fields...",
|
|
363
466
|
"page.login.password": "Password",
|
|
364
467
|
"page.login.username": "Username",
|
|
365
468
|
"page.logout": "Logging out current user ... ",
|
|
@@ -406,6 +509,8 @@
|
|
|
406
509
|
"page.user.search.column.groups": "Groups",
|
|
407
510
|
"page.user.search.column.username": "Username",
|
|
408
511
|
"page.user.search.prompt": "Search by username, fullname, email or group",
|
|
512
|
+
"pages.cases.detail.participants": "Participants",
|
|
513
|
+
"pages.cases.detail.status": "Status",
|
|
409
514
|
"password": "New Password",
|
|
410
515
|
"password.confirm": "Confirm Password",
|
|
411
516
|
"password.match": "Password and Confirm Password must match",
|
|
@@ -419,6 +524,7 @@
|
|
|
419
524
|
"personalization.showbreadcrumbs": "Show Breadcrumbs",
|
|
420
525
|
"personalization.sticky": "Sticky Topbar",
|
|
421
526
|
"query": "Query",
|
|
527
|
+
"query.invalid": "Invalid query",
|
|
422
528
|
"quicksearch.aria": "search",
|
|
423
529
|
"quicksearch.placeholder": "Search ...",
|
|
424
530
|
"rationale.default": "Hit assessed as {{assessment}}",
|
|
@@ -534,6 +640,16 @@
|
|
|
534
640
|
"route.analytics.triage.title": "Triage Settings",
|
|
535
641
|
"route.analytics.updated": "Analytic Updated!",
|
|
536
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",
|
|
537
653
|
"route.clear": "Clear query",
|
|
538
654
|
"route.dossiers": "Dossiers",
|
|
539
655
|
"route.dossiers.create": "New Dossier",
|
|
@@ -596,8 +712,10 @@
|
|
|
596
712
|
"route.help.actions": "Action Documentation",
|
|
597
713
|
"route.help.api": "API Documentation",
|
|
598
714
|
"route.help.auth": "Authentication",
|
|
715
|
+
"route.help.bundles": "Hit Bundles",
|
|
599
716
|
"route.help.client": "Howler Client",
|
|
600
717
|
"route.help.hit": "Hit Documentation",
|
|
718
|
+
"route.help.hit.banner": "Hit Banner Documentation",
|
|
601
719
|
"route.help.main": "Dashboard",
|
|
602
720
|
"route.help.notebook": "Notebook Documentation",
|
|
603
721
|
"route.help.overviews": "Overviews",
|
|
@@ -710,6 +828,7 @@
|
|
|
710
828
|
"search.result.showing": "Showing {{offset}} to {{length}} of {{total}} results",
|
|
711
829
|
"search.result.showing.single": "No results",
|
|
712
830
|
"search.total": "There are a total of {{count}} hits matching this query.",
|
|
831
|
+
"started": "Started",
|
|
713
832
|
"templates.edit.analytic": "Edit analytic template",
|
|
714
833
|
"templates.edit.detection": "Edit detection template",
|
|
715
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,17 +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",
|
|
172
178
|
"hit.header.link": "Ouvrir lien",
|
|
173
179
|
"hit.header.rationale": "Justification",
|
|
180
|
+
"hit.header.related": "{{count}} documrents associés",
|
|
174
181
|
"hit.header.scrutiny": "Examen minutieux: ",
|
|
175
182
|
"hit.header.status": "Statut: ",
|
|
176
183
|
"hit.header.summary": "Résumé",
|
|
177
184
|
"hit.header.target": "Cible",
|
|
178
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}}",
|
|
179
189
|
"hit.header.votes": "Votes: ",
|
|
190
|
+
"hit.howler.related": "{{count}} enregistrements associés",
|
|
180
191
|
"hit.label": "Étiquettes",
|
|
181
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.",
|
|
182
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.",
|
|
@@ -199,9 +210,9 @@
|
|
|
199
210
|
"hit.notebook.goTo": "Aller a Jupyterhub",
|
|
200
211
|
"hit.notebook.select": "Veuillez sélectionner un notebook",
|
|
201
212
|
"hit.notebook.tooltip": "Ouvrir dans Jupyterhub",
|
|
213
|
+
"hit.open": "Ouvrir hit",
|
|
202
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.",
|
|
203
215
|
"hit.panel.aggregation.run": "Créer un sommaire",
|
|
204
|
-
"hit.panel.analytic.open": "Ouvrir l'analyse",
|
|
205
216
|
"hit.panel.bundles.open": "Groupes parentaux",
|
|
206
217
|
"hit.panel.bundles.open.prompt": "Ouvrir le groupe parent",
|
|
207
218
|
"hit.panel.close": "Fermer",
|
|
@@ -214,9 +225,12 @@
|
|
|
214
225
|
"hit.panel.exclude": "Exclure par",
|
|
215
226
|
"hit.panel.hit.noselection": "Aucun résultat n'a été sélectionné",
|
|
216
227
|
"hit.panel.include": "Inclure par",
|
|
217
|
-
"hit.panel.open": "Ouvrir hit",
|
|
218
228
|
"hit.panel.view.layout": "Modifier le panneau d'affichage",
|
|
219
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",
|
|
220
234
|
"hit.search.aggregate.button": "Créer un sommaire",
|
|
221
235
|
"hit.search.button": "Effectuer une recherche",
|
|
222
236
|
"hit.search.custom": "Triage personnalisé",
|
|
@@ -225,6 +239,9 @@
|
|
|
225
239
|
"hit.search.filter.fields": "Paramètres",
|
|
226
240
|
"hit.search.filter.label": "Filtres de recherche",
|
|
227
241
|
"hit.search.filter.values": "Valeurs",
|
|
242
|
+
"hit.search.index": "Indexes",
|
|
243
|
+
"hit.search.index.hit": "Hits",
|
|
244
|
+
"hit.search.index.observable": "Observables",
|
|
228
245
|
"hit.search.invalid": "Requête invalide",
|
|
229
246
|
"hit.search.keyboard": "Raccourcis clavier",
|
|
230
247
|
"hit.search.keyboard.no_shortcuts": "Pas de raccourcis",
|
|
@@ -298,6 +315,31 @@
|
|
|
298
315
|
"modal.action.empty": "Le nom de l'action ne peut pas être vide.",
|
|
299
316
|
"modal.action.label": "Nom de l'action",
|
|
300
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.",
|
|
301
343
|
"modal.confirm.delete.description": "Êtes-vous sûr de vouloir supprimer cet élément ?",
|
|
302
344
|
"modal.confirm.delete.title": "Confirmer la suppression",
|
|
303
345
|
"modal.rationale.description": "Fournissez une justification qui explique succinctement aux autres analystes les raisons pour lesquelles vous êtes confiant dans cette évaluation.",
|
|
@@ -319,6 +361,8 @@
|
|
|
319
361
|
"modal.rule.title": "Créer une nouvelle règle",
|
|
320
362
|
"no.data": "Aucune donnée",
|
|
321
363
|
"none": "Rien",
|
|
364
|
+
"normal": "Priorité normale",
|
|
365
|
+
"observable.open": "Ouvrir observable",
|
|
322
366
|
"on": "sur",
|
|
323
367
|
"open": "Ouvert",
|
|
324
368
|
"operations.add_label": "Ajouter un label",
|
|
@@ -340,6 +384,60 @@
|
|
|
340
384
|
"page.403.title": "403: Accès interdit",
|
|
341
385
|
"page.404.description": "La page que vous recherchez est introuvable ...",
|
|
342
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",
|
|
343
441
|
"page.dashboard.settings.edit": "Modifier le tableau de bord",
|
|
344
442
|
"page.dashboard.settings.refreshRate": "Fréquence de rafraîchissement",
|
|
345
443
|
"page.dashboard.title": "Tableau de bord",
|
|
@@ -411,6 +509,8 @@
|
|
|
411
509
|
"page.user.search.column.groups": "Groupes",
|
|
412
510
|
"page.user.search.column.username": "Nom d'utilisateur",
|
|
413
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",
|
|
414
514
|
"password": "Nouveau mot de passe",
|
|
415
515
|
"password.confirm": "Confirmer le mot de passe",
|
|
416
516
|
"password.match": "Le mot de passe et le mot de passe de confirmation doivent correspondre",
|
|
@@ -443,6 +543,7 @@
|
|
|
443
543
|
"route.actions.create": "Nouveau action",
|
|
444
544
|
"route.actions.edit": "Modifier",
|
|
445
545
|
"route.actions.execute": "Exécuter",
|
|
546
|
+
"route.actions.manager": "Gestionnaire d'actions",
|
|
446
547
|
"route.actions.name": "Nom de l'action",
|
|
447
548
|
"route.actions.open": "Ouvrir la requête",
|
|
448
549
|
"route.actions.operation.add": "Ajouter une nouvelle opération",
|
|
@@ -539,6 +640,16 @@
|
|
|
539
640
|
"route.analytics.triage.title": "Paramètres de triage",
|
|
540
641
|
"route.analytics.updated": "Analytic mis a jour!",
|
|
541
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",
|
|
542
653
|
"route.clear": "Effacer la requête",
|
|
543
654
|
"route.dossiers": "Dossiers",
|
|
544
655
|
"route.dossiers.create": "Nouveau dossier",
|
|
@@ -598,6 +709,7 @@
|
|
|
598
709
|
"route.dossiers.search.prompt": "Recherche par titre, requête ou propriétaire.",
|
|
599
710
|
"route.dossiers.view": "Voir le dossier",
|
|
600
711
|
"route.help": "Aide",
|
|
712
|
+
"route.help.actions": "Documentation sur les actions",
|
|
601
713
|
"route.help.api": "Documentation de l'API",
|
|
602
714
|
"route.help.auth": "Authentification",
|
|
603
715
|
"route.help.bundles": "Groupes des hits",
|
|
@@ -661,6 +773,7 @@
|
|
|
661
773
|
"route.overviews.theme.dark": "Prévoyez en mode sombre",
|
|
662
774
|
"route.overviews.theme.light": "Prévoyez en mode clair",
|
|
663
775
|
"route.overviews.view": "Voir la vue d'ensemble",
|
|
776
|
+
"route.search": "Rechercher",
|
|
664
777
|
"route.templates": "Modèles",
|
|
665
778
|
"route.templates.analytic": "Choisir une analyse",
|
|
666
779
|
"route.templates.builtin": "Intégré",
|
|
@@ -671,6 +784,7 @@
|
|
|
671
784
|
"route.templates.detection": "Choisir une détection",
|
|
672
785
|
"route.templates.global": "Général",
|
|
673
786
|
"route.templates.manager.global": "Global",
|
|
787
|
+
"route.templates.manager.open": "Ouvrir la vue",
|
|
674
788
|
"route.templates.manager.personal": "Personnel",
|
|
675
789
|
"route.templates.manager.readonly": "Intégré",
|
|
676
790
|
"route.templates.manager.search": "Rechercher les modèles",
|
|
@@ -694,8 +808,10 @@
|
|
|
694
808
|
"route.views.manager.personal": "Personnel",
|
|
695
809
|
"route.views.manager.readonly": "Intégré",
|
|
696
810
|
"route.views.manager.search": "Rechercher les vues",
|
|
811
|
+
"route.views.name": "Nom de la vue",
|
|
697
812
|
"route.views.save": "Enregistrer cette requête comme vue",
|
|
698
813
|
"route.views.saved": "Vues épinglées",
|
|
814
|
+
"route.views.search.prompt": "Rechercher par nom, requête ou propriétaire.",
|
|
699
815
|
"route.views.show": "Voir les vues",
|
|
700
816
|
"route.views.update.success": "Vue actualisée.",
|
|
701
817
|
"rule.interval": "Intervalle d'exécution de la règle",
|
|
@@ -712,6 +828,7 @@
|
|
|
712
828
|
"search.result.showing": "Affichage de {{offset}} à {{length}} sur {{total}} articles",
|
|
713
829
|
"search.result.showing.single": "Aucun articles",
|
|
714
830
|
"search.total": "Il y a un total de {{count}} résultats correspondant à cette requête.",
|
|
831
|
+
"started": "Démarré",
|
|
715
832
|
"templates.edit.analytic": "Modifier modèle pour cette analyse",
|
|
716
833
|
"templates.edit.detection": "Modifier modèle pour cette détection",
|
|
717
834
|
"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
|
+
}
|