@cccsaurora/howler-ui 2.18.0-dev.778 → 2.18.0-dev.781
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 +2 -0
- package/api/index.js +4 -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/v2/case/index.d.ts +8 -0
- package/api/v2/case/index.js +20 -0
- package/api/v2/case/items.d.ts +6 -0
- package/api/v2/case/items.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 +36 -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 +3 -3
- 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/UserListProvider.js +28 -8
- package/components/elements/ContextMenu.d.ts +56 -0
- package/components/elements/ContextMenu.js +109 -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/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/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 +22 -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 +61 -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/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 +246 -0
- package/components/routes/cases/detail/CaseTask.d.ts +11 -0
- package/components/routes/cases/detail/CaseTask.js +57 -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/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 +51 -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 +384 -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 +47 -60
- 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 +109 -5
- package/locales/fr/translation.json +107 -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 -4
- 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 +43 -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 +2 -10
- 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/package.json +21 -3
- 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/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 -227
- /package/components/app/providers/{HitSearchProvider.test.d.ts → RecordSearchProvider.test.d.ts} +0 -0
- /package/components/{routes/hits/search/HitContextMenu.test.d.ts → elements/ContextMenu.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,11 @@
|
|
|
106
109
|
"drawer.expand": "Expand Menu",
|
|
107
110
|
"duplicates.omitted": "Some duplicate entries have been omitted.",
|
|
108
111
|
"edit": "Edit",
|
|
112
|
+
"event.module": "Event Module",
|
|
113
|
+
"event.type": "Event Type",
|
|
109
114
|
"features.warning.description": "This feature is undergoing active development, and is not yet in a finished state. You may encounter bugs or instability.",
|
|
110
115
|
"features.warning.title": "Feature In Active Development",
|
|
116
|
+
"focus": "Main focus",
|
|
111
117
|
"global": "Global",
|
|
112
118
|
"help.actions.introduction": "Introduction to Actions",
|
|
113
119
|
"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 +170,20 @@
|
|
|
164
170
|
"hit.header.assignment": "Assignment: {{user}}",
|
|
165
171
|
"hit.header.assignment.add": "Assign to a user",
|
|
166
172
|
"hit.header.assignment.change": "Change assignment",
|
|
167
|
-
"hit.header.bundlesize": "{{hits}} hits",
|
|
168
173
|
"hit.header.escalation": "Escalation Level: ",
|
|
169
174
|
"hit.header.indicators": "Indicators",
|
|
170
175
|
"hit.header.rationale": "Rationale",
|
|
176
|
+
"hit.header.related": "{{count}} related records",
|
|
171
177
|
"hit.header.scrutiny": "Scrutiny: ",
|
|
172
178
|
"hit.header.status": "Status: ",
|
|
173
179
|
"hit.header.summary": "Summary",
|
|
174
180
|
"hit.header.target": "Target",
|
|
175
181
|
"hit.header.threat": "Threat",
|
|
182
|
+
"hit.header.view.case": "View case {{id}}",
|
|
183
|
+
"hit.header.view.hit": "View hit {{id}}",
|
|
184
|
+
"hit.header.view.observable": "View observable {{id}}",
|
|
176
185
|
"hit.header.votes": "Votes: ",
|
|
186
|
+
"hit.howler.related": "{{count}} related records",
|
|
177
187
|
"hit.label": "Labels",
|
|
178
188
|
"hit.label.category.assignments": "Category: Assignments - Specifies what analyst or team of analysts is assigned to triaging this hit.",
|
|
179
189
|
"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 +199,16 @@
|
|
|
189
199
|
"hit.label.edit.add.error.duplicate": "Duplicated label not allowed",
|
|
190
200
|
"hit.label.edit.add.error.empty": "Can't add an empty label",
|
|
191
201
|
"hit.label.edit.add.label": "New label value",
|
|
202
|
+
"hit.label.edit.desc": "Add or remove labels",
|
|
192
203
|
"hit.notebook.confirm.dialog": "A notebook with that name already exists in your environment, do you wish to overwrite it?",
|
|
193
204
|
"hit.notebook.confirm.title": "Overwrite existing notebook?",
|
|
194
205
|
"hit.notebook.error.failToPost": "Failed to send notebook to Jupyterhub, make sure your user environment is running.",
|
|
195
206
|
"hit.notebook.goTo": "Go to Jupyterhub",
|
|
196
207
|
"hit.notebook.select": "Please Select a notebook",
|
|
197
208
|
"hit.notebook.tooltip": "Open in Jupyterhub",
|
|
209
|
+
"hit.open": "Open Hit",
|
|
198
210
|
"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
211
|
"hit.panel.aggregation.run": "Create Summary",
|
|
200
|
-
"hit.panel.analytic.open": "Open Analytic",
|
|
201
212
|
"hit.panel.bundles.open": "Parent Bundles",
|
|
202
213
|
"hit.panel.bundles.open.prompt": "Open Parent Bundle",
|
|
203
214
|
"hit.panel.close": "Close",
|
|
@@ -210,9 +221,12 @@
|
|
|
210
221
|
"hit.panel.exclude": "Exclude By",
|
|
211
222
|
"hit.panel.hit.noselection": "No hit has been selected",
|
|
212
223
|
"hit.panel.include": "Include By",
|
|
213
|
-
"hit.panel.open": "Open Hit Viewer",
|
|
214
224
|
"hit.panel.view.layout": "Change View Panel",
|
|
215
225
|
"hit.quicksearch": "Search by assignment, analytic, detection or status",
|
|
226
|
+
"hit.related.tab.case": "Cases",
|
|
227
|
+
"hit.related.tab.hit": "Hits",
|
|
228
|
+
"hit.related.tab.links": "Links",
|
|
229
|
+
"hit.related.tab.observable": "Observables",
|
|
216
230
|
"hit.search.aggregate.button": "Create Summary",
|
|
217
231
|
"hit.search.button": "Perform search",
|
|
218
232
|
"hit.search.custom": "Custom Sort",
|
|
@@ -221,6 +235,8 @@
|
|
|
221
235
|
"hit.search.filter.fields": "Fields",
|
|
222
236
|
"hit.search.filter.label": "Lookup Filters",
|
|
223
237
|
"hit.search.filter.values": "Values",
|
|
238
|
+
"hit.search.index.hit": "Hits",
|
|
239
|
+
"hit.search.index.observable": "Observables",
|
|
224
240
|
"hit.search.invalid": "Invalid Query",
|
|
225
241
|
"hit.search.keyboard": "Keyboard shortcuts",
|
|
226
242
|
"hit.search.keyboard.no_shortcuts": "No shortcuts",
|
|
@@ -258,6 +274,7 @@
|
|
|
258
274
|
"hit.summary.subtitle": "Limited to a maximum of 10 000 hits.",
|
|
259
275
|
"hit.summary.title": "Summary of Hits Over Time",
|
|
260
276
|
"hit.summary.zoom.reset": "Reset Zoom",
|
|
277
|
+
"hit.view.overview": "Overview",
|
|
261
278
|
"hit.viewer.aggregate": "Summary",
|
|
262
279
|
"hit.viewer.comments": "Comments",
|
|
263
280
|
"hit.viewer.data": "Raw Data",
|
|
@@ -293,6 +310,31 @@
|
|
|
293
310
|
"modal.action.empty": "Action Name cannot be empty.",
|
|
294
311
|
"modal.action.label": "Action Name",
|
|
295
312
|
"modal.action.title": "Save Action",
|
|
313
|
+
"modal.cases.add_to_case": "Add to Case",
|
|
314
|
+
"modal.cases.add_to_case.full_path": "Full path: {{path}}",
|
|
315
|
+
"modal.cases.add_to_case.items_section": "Alert Placement",
|
|
316
|
+
"modal.cases.add_to_case.path_invalid": "Path must not start or end with a /",
|
|
317
|
+
"modal.cases.add_to_case.select_case": "Search Cases",
|
|
318
|
+
"modal.cases.add_to_case.select_path": "Select Folder Path",
|
|
319
|
+
"modal.cases.add_to_case.title": "Item Title",
|
|
320
|
+
"modal.cases.alerts.resolved": "Resolved Alerts",
|
|
321
|
+
"modal.cases.create_case": "Create Case",
|
|
322
|
+
"modal.cases.create_case.escalation": "Escalation",
|
|
323
|
+
"modal.cases.create_case.full_path": "Full path: {{path}}",
|
|
324
|
+
"modal.cases.create_case.item.path": "Folder Path (optional)",
|
|
325
|
+
"modal.cases.create_case.item.title": "Item Title",
|
|
326
|
+
"modal.cases.create_case.items_section": "Alert Placement",
|
|
327
|
+
"modal.cases.create_case.overview": "Case Overview (Markdown, optional)",
|
|
328
|
+
"modal.cases.create_case.summary": "Short Case Summary",
|
|
329
|
+
"modal.cases.create_case.title": "Case Title",
|
|
330
|
+
"modal.cases.rename_item": "Rename Item",
|
|
331
|
+
"modal.cases.rename_item.error.empty": "Name cannot be empty",
|
|
332
|
+
"modal.cases.rename_item.error.slash": "Name cannot contain '/'",
|
|
333
|
+
"modal.cases.rename_item.error.taken": "An item already exists at this path",
|
|
334
|
+
"modal.cases.rename_item.folder_path": "Folder: {{path}}",
|
|
335
|
+
"modal.cases.rename_item.new_name": "New Name",
|
|
336
|
+
"modal.cases.resolve": "Resolve Case",
|
|
337
|
+
"modal.cases.resolve.description": "When resolving a case, you must either assess all open alerts, or add an assessment to the alerts.",
|
|
296
338
|
"modal.confirm.delete.description": "Are you sure you want to delete this item?",
|
|
297
339
|
"modal.confirm.delete.title": "Confirm Deletion",
|
|
298
340
|
"modal.rationale.description": "Provide a rationale that succinctly explains to other analysts why you are confident in this assessment.",
|
|
@@ -314,6 +356,8 @@
|
|
|
314
356
|
"modal.rule.title": "Create a New Rule",
|
|
315
357
|
"no.data": "No Data",
|
|
316
358
|
"none": "None",
|
|
359
|
+
"normal": "Normal Priority",
|
|
360
|
+
"observable.open": "Open Observable",
|
|
317
361
|
"on": "on",
|
|
318
362
|
"open": "Open",
|
|
319
363
|
"operations.add_label": "Add Label",
|
|
@@ -333,6 +377,49 @@
|
|
|
333
377
|
"owner": "Owner",
|
|
334
378
|
"page.404.description": "The page you are looking for cannot be found...",
|
|
335
379
|
"page.404.title": "404: Not found",
|
|
380
|
+
"page.cases.assets": "Assets",
|
|
381
|
+
"page.cases.assets.empty": "No assets found.",
|
|
382
|
+
"page.cases.assets.filter_by_type": "Filter by type:",
|
|
383
|
+
"page.cases.assets.seen_in": "Seen in",
|
|
384
|
+
"page.cases.assets.type.hash": "Hash",
|
|
385
|
+
"page.cases.assets.type.hosts": "Host",
|
|
386
|
+
"page.cases.assets.type.id": "ID",
|
|
387
|
+
"page.cases.assets.type.ids": "ID",
|
|
388
|
+
"page.cases.assets.type.ip": "IP",
|
|
389
|
+
"page.cases.assets.type.signature": "Signature",
|
|
390
|
+
"page.cases.assets.type.uri": "URI",
|
|
391
|
+
"page.cases.assets.type.user": "User",
|
|
392
|
+
"page.cases.created": "Created",
|
|
393
|
+
"page.cases.dashboard": "Dashboard",
|
|
394
|
+
"page.cases.dashboard.alerts": "Alerts",
|
|
395
|
+
"page.cases.dashboard.cases": "Related Cases",
|
|
396
|
+
"page.cases.dashboard.duration": "Duration",
|
|
397
|
+
"page.cases.dashboard.indicators": "Indicators",
|
|
398
|
+
"page.cases.dashboard.target": "Targets",
|
|
399
|
+
"page.cases.dashboard.tasks": "Tasks",
|
|
400
|
+
"page.cases.dashboard.threat": "Threats",
|
|
401
|
+
"page.cases.detail.participants": "Participants",
|
|
402
|
+
"page.cases.detail.properties": "Properties",
|
|
403
|
+
"page.cases.detail.status": "Status",
|
|
404
|
+
"page.cases.escalation": "Escalation",
|
|
405
|
+
"page.cases.folder.drop.root": "Place here to move to root",
|
|
406
|
+
"page.cases.sidebar.folder.remove": "Remove folder",
|
|
407
|
+
"page.cases.sidebar.item.open": "Open item",
|
|
408
|
+
"page.cases.sidebar.item.remove": "Remove item",
|
|
409
|
+
"page.cases.sidebar.item.rename": "Rename item",
|
|
410
|
+
"page.cases.sources": "Sources",
|
|
411
|
+
"page.cases.status.in-progress": "In Progress",
|
|
412
|
+
"page.cases.status.on-hold": "On Hold",
|
|
413
|
+
"page.cases.status.open": "Open",
|
|
414
|
+
"page.cases.status.resolved": "Resolved",
|
|
415
|
+
"page.cases.timeline": "Timeline",
|
|
416
|
+
"page.cases.timeline.empty": "No events match the selected filters.",
|
|
417
|
+
"page.cases.timeline.filter.escalation": "Escalation",
|
|
418
|
+
"page.cases.timeline.filter.escalation.empty": "No escalation levels found.",
|
|
419
|
+
"page.cases.timeline.filter.label": "Show only",
|
|
420
|
+
"page.cases.timeline.filter.mitre": "MITRE ATT&CK",
|
|
421
|
+
"page.cases.timeline.filter.mitre.empty": "No tactics or techniques found.",
|
|
422
|
+
"page.cases.updated": "Updated",
|
|
336
423
|
"page.dashboard.settings.edit": "Edit Dashboard",
|
|
337
424
|
"page.dashboard.settings.refreshRate": "Refresh Rate",
|
|
338
425
|
"page.dashboard.title": "Dashboard",
|
|
@@ -357,6 +444,7 @@
|
|
|
357
444
|
"page.help": "Help",
|
|
358
445
|
"page.help.title": "Help Dashboard",
|
|
359
446
|
"page.login.button": "Sign in",
|
|
447
|
+
"page.login.error": "Just type anything in the username and password fields...",
|
|
360
448
|
"page.login.password": "Password",
|
|
361
449
|
"page.login.username": "Username",
|
|
362
450
|
"page.logout": "Logging out current user ... ",
|
|
@@ -403,6 +491,8 @@
|
|
|
403
491
|
"page.user.search.column.groups": "Groups",
|
|
404
492
|
"page.user.search.column.username": "Username",
|
|
405
493
|
"page.user.search.prompt": "Search by username, fullname, email or group",
|
|
494
|
+
"pages.cases.detail.participants": "Participants",
|
|
495
|
+
"pages.cases.detail.status": "Status",
|
|
406
496
|
"password": "New Password",
|
|
407
497
|
"password.confirm": "Confirm Password",
|
|
408
498
|
"password.match": "Password and Confirm Password must match",
|
|
@@ -416,6 +506,7 @@
|
|
|
416
506
|
"personalization.showbreadcrumbs": "Show Breadcrumbs",
|
|
417
507
|
"personalization.sticky": "Sticky Topbar",
|
|
418
508
|
"query": "Query",
|
|
509
|
+
"query.invalid": "Invalid query",
|
|
419
510
|
"quicksearch.aria": "search",
|
|
420
511
|
"quicksearch.placeholder": "Search ...",
|
|
421
512
|
"rationale.default": "Hit assessed as {{assessment}}",
|
|
@@ -531,6 +622,16 @@
|
|
|
531
622
|
"route.analytics.triage.title": "Triage Settings",
|
|
532
623
|
"route.analytics.updated": "Analytic Updated!",
|
|
533
624
|
"route.analytics.view": "View Analytic",
|
|
625
|
+
"route.cases": "Cases",
|
|
626
|
+
"route.cases.create": "Create Case",
|
|
627
|
+
"route.cases.filter.assignee": "Assignee",
|
|
628
|
+
"route.cases.filter.assignees": "Assignees",
|
|
629
|
+
"route.cases.filter.date": "Date Range",
|
|
630
|
+
"route.cases.filter.myself": "Myself",
|
|
631
|
+
"route.cases.filter.status": "Status",
|
|
632
|
+
"route.cases.manager.search": "Search Cases",
|
|
633
|
+
"route.cases.search.prompt": "Search cases by title, summary, description, participants or task details",
|
|
634
|
+
"route.cases.view": "View Case",
|
|
534
635
|
"route.clear": "Clear query",
|
|
535
636
|
"route.dossiers": "Dossiers",
|
|
536
637
|
"route.dossiers.create": "New Dossier",
|
|
@@ -593,8 +694,10 @@
|
|
|
593
694
|
"route.help.actions": "Action Documentation",
|
|
594
695
|
"route.help.api": "API Documentation",
|
|
595
696
|
"route.help.auth": "Authentication",
|
|
697
|
+
"route.help.bundles": "Hit Bundles",
|
|
596
698
|
"route.help.client": "Howler Client",
|
|
597
699
|
"route.help.hit": "Hit Documentation",
|
|
700
|
+
"route.help.hit.banner": "Hit Banner Documentation",
|
|
598
701
|
"route.help.main": "Dashboard",
|
|
599
702
|
"route.help.notebook": "Notebook Documentation",
|
|
600
703
|
"route.help.overviews": "Overviews",
|
|
@@ -707,6 +810,7 @@
|
|
|
707
810
|
"search.result.showing": "Showing {{offset}} to {{length}} of {{total}} results",
|
|
708
811
|
"search.result.showing.single": "No results",
|
|
709
812
|
"search.total": "There are a total of {{count}} hits matching this query.",
|
|
813
|
+
"started": "Started",
|
|
710
814
|
"templates.edit.analytic": "Edit analytic template",
|
|
711
815
|
"templates.edit.detection": "Edit detection template",
|
|
712
816
|
"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,11 @@
|
|
|
108
109
|
"drawer.expand": "Ouvrir le Menu",
|
|
109
110
|
"duplicates.omitted": "Certains doublons ont été omis.",
|
|
110
111
|
"edit": "Modifier",
|
|
112
|
+
"event.module": "Module d'événement",
|
|
113
|
+
"event.type": "Type d'événement",
|
|
111
114
|
"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
115
|
"features.warning.title": "Fonctionnalité en développement actif",
|
|
116
|
+
"focus": "Focus principal",
|
|
113
117
|
"global": "Global",
|
|
114
118
|
"help.actions.introduction": "Introduction aux actions",
|
|
115
119
|
"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 +170,20 @@
|
|
|
166
170
|
"hit.header.assignment": "Affectation: {{user}}",
|
|
167
171
|
"hit.header.assignment.add": "Attribuer à un utilisateur",
|
|
168
172
|
"hit.header.assignment.change": "Changer l'affectation",
|
|
169
|
-
"hit.header.bundlesize": "{{hits}} hits",
|
|
170
173
|
"hit.header.escalation": "Niveau d'escalade: ",
|
|
171
174
|
"hit.header.indicators": "Indicateurs",
|
|
172
175
|
"hit.header.rationale": "Justification",
|
|
176
|
+
"hit.header.related": "{{count}} documrents associés",
|
|
173
177
|
"hit.header.scrutiny": "Examen minutieux: ",
|
|
174
178
|
"hit.header.status": "Statut: ",
|
|
175
179
|
"hit.header.summary": "Résumé",
|
|
176
180
|
"hit.header.target": "Cible",
|
|
177
181
|
"hit.header.threat": "Menace",
|
|
182
|
+
"hit.header.view.case": "Voir le cas {{id}}",
|
|
183
|
+
"hit.header.view.hit": "Voir l'alerte {{id}}",
|
|
184
|
+
"hit.header.view.observable": "Voir l'observable {{id}}",
|
|
178
185
|
"hit.header.votes": "Votes: ",
|
|
186
|
+
"hit.howler.related": "{{count}} enregistrements associés",
|
|
179
187
|
"hit.label": "Étiquettes",
|
|
180
188
|
"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
189
|
"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 +206,9 @@
|
|
|
198
206
|
"hit.notebook.goTo": "Aller a Jupyterhub",
|
|
199
207
|
"hit.notebook.select": "Veuillez sélectionner un notebook",
|
|
200
208
|
"hit.notebook.tooltip": "Ouvrir dans Jupyterhub",
|
|
209
|
+
"hit.open": "Ouvrir hit",
|
|
201
210
|
"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
211
|
"hit.panel.aggregation.run": "Créer un sommaire",
|
|
203
|
-
"hit.panel.analytic.open": "Ouvrir l'analyse",
|
|
204
212
|
"hit.panel.bundles.open": "Groupes parentaux",
|
|
205
213
|
"hit.panel.bundles.open.prompt": "Ouvrir le groupe parent",
|
|
206
214
|
"hit.panel.close": "Fermer",
|
|
@@ -213,9 +221,12 @@
|
|
|
213
221
|
"hit.panel.exclude": "Exclure par",
|
|
214
222
|
"hit.panel.hit.noselection": "Aucun résultat n'a été sélectionné",
|
|
215
223
|
"hit.panel.include": "Inclure par",
|
|
216
|
-
"hit.panel.open": "Ouvrir hit",
|
|
217
224
|
"hit.panel.view.layout": "Modifier le panneau d'affichage",
|
|
218
225
|
"hit.quicksearch": "Recherche par affectation, analytique, détection ou état",
|
|
226
|
+
"hit.related.tab.case": "Cas",
|
|
227
|
+
"hit.related.tab.hit": "Alertes",
|
|
228
|
+
"hit.related.tab.links": "Liens",
|
|
229
|
+
"hit.related.tab.observable": "Observables",
|
|
219
230
|
"hit.search.aggregate.button": "Créer un sommaire",
|
|
220
231
|
"hit.search.button": "Effectuer une recherche",
|
|
221
232
|
"hit.search.custom": "Triage personnalisé",
|
|
@@ -224,6 +235,8 @@
|
|
|
224
235
|
"hit.search.filter.fields": "Paramètres",
|
|
225
236
|
"hit.search.filter.label": "Filtres de recherche",
|
|
226
237
|
"hit.search.filter.values": "Valeurs",
|
|
238
|
+
"hit.search.index.hit": "Hits",
|
|
239
|
+
"hit.search.index.observable": "Observables",
|
|
227
240
|
"hit.search.invalid": "Requête invalide",
|
|
228
241
|
"hit.search.keyboard": "Raccourcis clavier",
|
|
229
242
|
"hit.search.keyboard.no_shortcuts": "Pas de raccourcis",
|
|
@@ -297,6 +310,31 @@
|
|
|
297
310
|
"modal.action.empty": "Le nom de l'action ne peut pas être vide.",
|
|
298
311
|
"modal.action.label": "Nom de l'action",
|
|
299
312
|
"modal.action.title": "Enregistrer l'action",
|
|
313
|
+
"modal.cases.add_to_case": "Ajouter au cas",
|
|
314
|
+
"modal.cases.add_to_case.full_path": "Chemin complet : {{path}}",
|
|
315
|
+
"modal.cases.add_to_case.items_section": "Placement des alertes",
|
|
316
|
+
"modal.cases.add_to_case.path_invalid": "Le chemin ne doit pas commencer ou se terminer par un /",
|
|
317
|
+
"modal.cases.add_to_case.select_case": "Rechercher des cas",
|
|
318
|
+
"modal.cases.add_to_case.select_path": "Sélectionner le chemin du dossier",
|
|
319
|
+
"modal.cases.add_to_case.title": "Titre de l'élément",
|
|
320
|
+
"modal.cases.alerts.resolved": "Alertes résolues",
|
|
321
|
+
"modal.cases.create_case": "Créer un cas",
|
|
322
|
+
"modal.cases.create_case.escalation": "Escalade",
|
|
323
|
+
"modal.cases.create_case.full_path": "Chemin complet : {{path}}",
|
|
324
|
+
"modal.cases.create_case.item.path": "Chemin du dossier (optionnel)",
|
|
325
|
+
"modal.cases.create_case.item.title": "Titre de l'élément",
|
|
326
|
+
"modal.cases.create_case.items_section": "Placement des alertes",
|
|
327
|
+
"modal.cases.create_case.overview": "Vue d'ensemble du cas (Markdown, optionnel)",
|
|
328
|
+
"modal.cases.create_case.summary": "Résumé court du cas",
|
|
329
|
+
"modal.cases.create_case.title": "Titre du cas",
|
|
330
|
+
"modal.cases.rename_item": "Renommer l'élément",
|
|
331
|
+
"modal.cases.rename_item.error.empty": "Le nom ne peut pas être vide",
|
|
332
|
+
"modal.cases.rename_item.error.slash": "Le nom ne peut pas contenir '/'",
|
|
333
|
+
"modal.cases.rename_item.error.taken": "Un élément existe déjà à ce chemin",
|
|
334
|
+
"modal.cases.rename_item.folder_path": "Dossier : {{path}}",
|
|
335
|
+
"modal.cases.rename_item.new_name": "Nouveau nom",
|
|
336
|
+
"modal.cases.resolve": "Résoudre le cas",
|
|
337
|
+
"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
338
|
"modal.confirm.delete.description": "Êtes-vous sûr de vouloir supprimer cet élément ?",
|
|
301
339
|
"modal.confirm.delete.title": "Confirmer la suppression",
|
|
302
340
|
"modal.rationale.description": "Fournissez une justification qui explique succinctement aux autres analystes les raisons pour lesquelles vous êtes confiant dans cette évaluation.",
|
|
@@ -318,6 +356,8 @@
|
|
|
318
356
|
"modal.rule.title": "Créer une nouvelle règle",
|
|
319
357
|
"no.data": "Aucune donnée",
|
|
320
358
|
"none": "Rien",
|
|
359
|
+
"normal": "Priorité normale",
|
|
360
|
+
"observable.open": "Ouvrir observable",
|
|
321
361
|
"on": "sur",
|
|
322
362
|
"open": "Ouvert",
|
|
323
363
|
"operations.add_label": "Ajouter un label",
|
|
@@ -337,6 +377,49 @@
|
|
|
337
377
|
"owner": "Propriétaire",
|
|
338
378
|
"page.404.description": "La page que vous recherchez est introuvable ...",
|
|
339
379
|
"page.404.title": "404: Introuvable",
|
|
380
|
+
"page.cases.assets": "Actifs",
|
|
381
|
+
"page.cases.assets.empty": "Aucun actif trouvé.",
|
|
382
|
+
"page.cases.assets.filter_by_type": "Filtrer par type :",
|
|
383
|
+
"page.cases.assets.seen_in": "Vu dans",
|
|
384
|
+
"page.cases.assets.type.hash": "Hachage",
|
|
385
|
+
"page.cases.assets.type.hosts": "Hôte",
|
|
386
|
+
"page.cases.assets.type.id": "Identifiant",
|
|
387
|
+
"page.cases.assets.type.ids": "Identifiant",
|
|
388
|
+
"page.cases.assets.type.ip": "IP",
|
|
389
|
+
"page.cases.assets.type.signature": "Signature",
|
|
390
|
+
"page.cases.assets.type.uri": "URI",
|
|
391
|
+
"page.cases.assets.type.user": "Utilisateur",
|
|
392
|
+
"page.cases.created": "Créé",
|
|
393
|
+
"page.cases.dashboard": "Tableau de bord",
|
|
394
|
+
"page.cases.dashboard.alerts": "Alertes",
|
|
395
|
+
"page.cases.dashboard.cases": "Cas connexes",
|
|
396
|
+
"page.cases.dashboard.duration": "Durée",
|
|
397
|
+
"page.cases.dashboard.indicators": "Indicateurs",
|
|
398
|
+
"page.cases.dashboard.target": "Cibles",
|
|
399
|
+
"page.cases.dashboard.tasks": "Tâches",
|
|
400
|
+
"page.cases.dashboard.threat": "Menaces",
|
|
401
|
+
"page.cases.detail.participants": "Participants",
|
|
402
|
+
"page.cases.detail.properties": "Propriétés",
|
|
403
|
+
"page.cases.detail.status": "Statut",
|
|
404
|
+
"page.cases.escalation": "Escalade",
|
|
405
|
+
"page.cases.folder.drop.root": "Déposer ici pour déplacer à la racine",
|
|
406
|
+
"page.cases.sidebar.folder.remove": "Supprimer le dossier",
|
|
407
|
+
"page.cases.sidebar.item.open": "Ouvrir l'élément",
|
|
408
|
+
"page.cases.sidebar.item.remove": "Supprimer l'élément",
|
|
409
|
+
"page.cases.sidebar.item.rename": "Renommer l'élément",
|
|
410
|
+
"page.cases.sources": "Sources",
|
|
411
|
+
"page.cases.status.in-progress": "En cours",
|
|
412
|
+
"page.cases.status.on-hold": "En attente",
|
|
413
|
+
"page.cases.status.open": "Ouvert",
|
|
414
|
+
"page.cases.status.resolved": "Résolu",
|
|
415
|
+
"page.cases.timeline": "Chronologie",
|
|
416
|
+
"page.cases.timeline.empty": "Aucun événement ne correspond aux filtres sélectionnés.",
|
|
417
|
+
"page.cases.timeline.filter.escalation": "Escalade",
|
|
418
|
+
"page.cases.timeline.filter.escalation.empty": "Aucun niveau d'escalade trouvé.",
|
|
419
|
+
"page.cases.timeline.filter.label": "Afficher uniquement",
|
|
420
|
+
"page.cases.timeline.filter.mitre": "MITRE ATT&CK",
|
|
421
|
+
"page.cases.timeline.filter.mitre.empty": "Aucune tactique ou technique trouvée.",
|
|
422
|
+
"page.cases.updated": "Mis à jour",
|
|
340
423
|
"page.dashboard.settings.edit": "Modifier le tableau de bord",
|
|
341
424
|
"page.dashboard.settings.refreshRate": "Fréquence de rafraîchissement",
|
|
342
425
|
"page.dashboard.title": "Tableau de bord",
|
|
@@ -408,6 +491,8 @@
|
|
|
408
491
|
"page.user.search.column.groups": "Groupes",
|
|
409
492
|
"page.user.search.column.username": "Nom d'utilisateur",
|
|
410
493
|
"page.user.search.prompt": "Rechercher par nom d'utilisateur, nom complet, e-mail ou groupe",
|
|
494
|
+
"pages.cases.detail.participants": "Participants",
|
|
495
|
+
"pages.cases.detail.status": "Statut",
|
|
411
496
|
"password": "Nouveau mot de passe",
|
|
412
497
|
"password.confirm": "Confirmer le mot de passe",
|
|
413
498
|
"password.match": "Le mot de passe et le mot de passe de confirmation doivent correspondre",
|
|
@@ -440,6 +525,7 @@
|
|
|
440
525
|
"route.actions.create": "Nouveau action",
|
|
441
526
|
"route.actions.edit": "Modifier",
|
|
442
527
|
"route.actions.execute": "Exécuter",
|
|
528
|
+
"route.actions.manager": "Gestionnaire d'actions",
|
|
443
529
|
"route.actions.name": "Nom de l'action",
|
|
444
530
|
"route.actions.open": "Ouvrir la requête",
|
|
445
531
|
"route.actions.operation.add": "Ajouter une nouvelle opération",
|
|
@@ -536,6 +622,16 @@
|
|
|
536
622
|
"route.analytics.triage.title": "Paramètres de triage",
|
|
537
623
|
"route.analytics.updated": "Analytic mis a jour!",
|
|
538
624
|
"route.analytics.view": "Voir l'analyse",
|
|
625
|
+
"route.cases": "Cas",
|
|
626
|
+
"route.cases.create": "Créer un cas",
|
|
627
|
+
"route.cases.filter.assignee": "Assigné",
|
|
628
|
+
"route.cases.filter.assignees": "Assignés",
|
|
629
|
+
"route.cases.filter.date": "Plage de dates",
|
|
630
|
+
"route.cases.filter.myself": "Moi-même",
|
|
631
|
+
"route.cases.filter.status": "Statut",
|
|
632
|
+
"route.cases.manager.search": "Rechercher des cas",
|
|
633
|
+
"route.cases.search.prompt": "Rechercher des cas par titre, résumé, description, participants ou détails des tâches",
|
|
634
|
+
"route.cases.view": "Voir le cas",
|
|
539
635
|
"route.clear": "Effacer la requête",
|
|
540
636
|
"route.dossiers": "Dossiers",
|
|
541
637
|
"route.dossiers.create": "Nouveau dossier",
|
|
@@ -595,6 +691,7 @@
|
|
|
595
691
|
"route.dossiers.search.prompt": "Recherche par titre, requête ou propriétaire.",
|
|
596
692
|
"route.dossiers.view": "Voir le dossier",
|
|
597
693
|
"route.help": "Aide",
|
|
694
|
+
"route.help.actions": "Documentation sur les actions",
|
|
598
695
|
"route.help.api": "Documentation de l'API",
|
|
599
696
|
"route.help.auth": "Authentification",
|
|
600
697
|
"route.help.bundles": "Groupes des hits",
|
|
@@ -658,6 +755,7 @@
|
|
|
658
755
|
"route.overviews.theme.dark": "Prévoyez en mode sombre",
|
|
659
756
|
"route.overviews.theme.light": "Prévoyez en mode clair",
|
|
660
757
|
"route.overviews.view": "Voir la vue d'ensemble",
|
|
758
|
+
"route.search": "Rechercher",
|
|
661
759
|
"route.templates": "Modèles",
|
|
662
760
|
"route.templates.analytic": "Choisir une analyse",
|
|
663
761
|
"route.templates.builtin": "Intégré",
|
|
@@ -668,6 +766,7 @@
|
|
|
668
766
|
"route.templates.detection": "Choisir une détection",
|
|
669
767
|
"route.templates.global": "Général",
|
|
670
768
|
"route.templates.manager.global": "Global",
|
|
769
|
+
"route.templates.manager.open": "Ouvrir la vue",
|
|
671
770
|
"route.templates.manager.personal": "Personnel",
|
|
672
771
|
"route.templates.manager.readonly": "Intégré",
|
|
673
772
|
"route.templates.manager.search": "Rechercher les modèles",
|
|
@@ -691,8 +790,10 @@
|
|
|
691
790
|
"route.views.manager.personal": "Personnel",
|
|
692
791
|
"route.views.manager.readonly": "Intégré",
|
|
693
792
|
"route.views.manager.search": "Rechercher les vues",
|
|
793
|
+
"route.views.name": "Nom de la vue",
|
|
694
794
|
"route.views.save": "Enregistrer cette requête comme vue",
|
|
695
795
|
"route.views.saved": "Vues épinglées",
|
|
796
|
+
"route.views.search.prompt": "Rechercher par nom, requête ou propriétaire.",
|
|
696
797
|
"route.views.show": "Voir les vues",
|
|
697
798
|
"route.views.update.success": "Vue actualisée.",
|
|
698
799
|
"rule.interval": "Intervalle d'exécution de la règle",
|
|
@@ -709,6 +810,7 @@
|
|
|
709
810
|
"search.result.showing": "Affichage de {{offset}} à {{length}} sur {{total}} articles",
|
|
710
811
|
"search.result.showing.single": "Aucun articles",
|
|
711
812
|
"search.total": "Il y a un total de {{count}} résultats correspondant à cette requête.",
|
|
813
|
+
"started": "Démarré",
|
|
712
814
|
"templates.edit.analytic": "Modifier modèle pour cette analyse",
|
|
713
815
|
"templates.edit.detection": "Modifier modèle pour cette détection",
|
|
714
816
|
"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
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { IndicatorEmail } from './IndicatorEmail';
|
|
2
|
+
import type { IndicatorFile } from './IndicatorFile';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* NOTE: This is an auto-generated file. Don't edit this manually.
|
|
6
|
+
*/
|
|
7
|
+
export interface EnrichmentsIndicator {
|
|
8
|
+
confidence?: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
email?: IndicatorEmail;
|
|
11
|
+
file?: IndicatorFile;
|
|
12
|
+
first_seen?: string;
|
|
13
|
+
ip?: string;
|
|
14
|
+
last_seen?: string;
|
|
15
|
+
port?: number;
|
|
16
|
+
provider?: string;
|
|
17
|
+
reference?: string;
|
|
18
|
+
scanner_stats?: number;
|
|
19
|
+
sightings?: number;
|
|
20
|
+
type?: string;
|
|
21
|
+
}
|