@cccsaurora/howler-ui 2.19.0-cases.863 → 2.19.0-dev.1000
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 +0 -4
- package/api/index.js +2 -10
- package/api/search/facet/hit.d.ts +3 -1
- package/api/search/facet/index.d.ts +1 -3
- package/api/search/index.d.ts +1 -2
- package/api/search/index.js +1 -2
- package/commons/components/leftnav/LeftNavDrawer.js +1 -1
- package/components/app/App.d.ts +1 -0
- package/components/app/App.js +20 -42
- package/components/app/hooks/useMatchers.d.ts +1 -1
- package/components/app/hooks/useMatchers.js +11 -23
- package/components/app/hooks/useMatchers.test.js +22 -22
- package/components/app/hooks/useTitle.js +5 -5
- package/components/app/providers/FavouritesProvider.js +2 -6
- package/components/app/providers/HitProvider.d.ts +22 -0
- package/components/app/providers/{RecordProvider.js → HitProvider.js} +42 -42
- package/components/app/providers/{RecordSearchProvider.d.ts → HitSearchProvider.d.ts} +6 -6
- package/components/app/providers/{RecordSearchProvider.js → HitSearchProvider.js} +17 -12
- package/components/app/providers/{RecordSearchProvider.test.js → HitSearchProvider.test.js} +71 -52
- package/components/app/providers/ModalProvider.d.ts +1 -1
- package/components/app/providers/ModalProvider.js +5 -1
- package/components/app/providers/ParameterProvider.d.ts +2 -9
- package/components/app/providers/ParameterProvider.js +240 -165
- package/components/app/providers/ParameterProvider.test.js +94 -346
- package/components/app/providers/SocketProvider.d.ts +2 -11
- package/components/app/providers/SocketProvider.js +5 -18
- package/components/app/providers/UserListProvider.js +8 -28
- package/components/elements/PluginTypography.d.ts +1 -2
- package/components/elements/PluginTypography.js +2 -3
- package/components/elements/UserList.d.ts +2 -5
- package/components/elements/UserList.js +8 -18
- package/components/elements/addons/buttons/CustomButton.test.js +106 -0
- package/components/elements/addons/layout/FlexOne.test.js +30 -0
- package/components/elements/addons/lists/TuiListBase.js +4 -0
- package/components/elements/addons/lists/TuiListElement.js +6 -3
- package/components/elements/addons/lists/index.d.ts +1 -0
- package/components/elements/addons/search/SearchPagination.test.js +80 -0
- package/components/elements/addons/search/SearchTotal.test.js +45 -0
- package/components/elements/addons/search/phrase/Phrase.js +1 -1
- package/components/elements/display/ChipPopper.d.ts +1 -1
- package/components/elements/display/ChipPopper.js +5 -5
- package/components/elements/display/DocumentationButton.test.js +84 -0
- package/components/elements/display/DynamicTabs.test.js +93 -0
- package/components/elements/display/HowlerAvatar.js +2 -1
- package/components/elements/display/HowlerCard.js +1 -1
- package/components/elements/display/HowlerCard.test.js +55 -0
- package/components/elements/display/Image.test.js +79 -0
- package/components/elements/display/Markdown.js +9 -2
- package/components/elements/display/Modal.js +0 -2
- package/components/elements/display/QueryResultText.test.js +48 -0
- package/components/elements/display/TextDivider.test.js +43 -0
- package/components/elements/display/TypingIndicator.test.js +33 -0
- package/components/elements/display/icons/BundleButton.d.ts +6 -0
- package/components/elements/display/icons/BundleButton.js +32 -0
- package/components/elements/display/modals/ConfirmDeleteModal.d.ts +4 -0
- package/components/elements/display/modals/ConfirmDeleteModal.js +4 -2
- package/components/elements/hit/HitActions.js +4 -4
- package/components/elements/hit/HitBanner.d.ts +0 -1
- package/components/elements/hit/HitBanner.js +49 -31
- package/components/elements/hit/HitCard.d.ts +0 -2
- package/components/elements/hit/HitCard.js +7 -7
- package/components/elements/{record/RecordComments.d.ts → hit/HitComments.d.ts} +4 -5
- package/components/elements/{record/RecordComments.js → hit/HitComments.js} +28 -29
- package/components/elements/{ObjectDetails.js → hit/HitDetails.js} +17 -17
- package/components/elements/hit/HitLabels.js +2 -2
- package/components/elements/hit/HitOutline.d.ts +0 -1
- package/components/elements/hit/HitOutline.js +3 -3
- package/components/elements/hit/{HitPreview.d.ts → HitQuickSearch.d.ts} +3 -3
- package/components/elements/hit/{HitPreview.js → HitQuickSearch.js} +4 -10
- package/components/elements/hit/HitRelated.d.ts +6 -0
- package/components/elements/hit/HitRelated.js +7 -0
- package/components/elements/hit/HitSummary.d.ts +1 -2
- package/components/elements/hit/HitSummary.js +8 -8
- package/components/elements/{record/RecordWorklog.d.ts → hit/HitWorklog.d.ts} +3 -4
- package/components/elements/{record/RecordWorklog.js → hit/HitWorklog.js} +13 -15
- package/components/elements/hit/aggregate/HitGraph.js +8 -8
- package/components/elements/hit/elements/{Assigned.d.ts → HitUsers.d.ts} +5 -2
- package/components/elements/hit/elements/HitUsers.js +33 -0
- package/components/elements/hit/outlines/DefaultOutline.js +1 -1
- package/components/elements/view/ViewTitle.d.ts +0 -1
- package/components/elements/view/ViewTitle.js +2 -9
- package/components/hooks/useHitActions.d.ts +1 -1
- package/components/hooks/useHitActions.js +4 -4
- package/components/hooks/{useRecordSelection.d.ts → useHitSelection.d.ts} +2 -2
- package/components/hooks/{useRecordSelection.js → useHitSelection.js} +33 -12
- package/components/hooks/useMyPreferences.js +3 -11
- package/components/hooks/useMySearch.js +2 -2
- package/components/hooks/useMySitemap.js +1 -4
- package/components/hooks/useMyTheme.js +2 -9
- package/components/routes/403.test.js +27 -0
- package/components/routes/404.test.js +26 -0
- package/components/routes/ErrorBoundary.test.js +43 -0
- package/components/routes/ErrorOccured.test.js +35 -0
- package/components/routes/Logout.test.js +59 -0
- package/components/routes/action/edit/ActionEditor.js +2 -2
- package/components/routes/action/view/ActionDetails.js +4 -2
- package/components/routes/action/view/ActionSearch.js +12 -7
- 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 +12 -8
- package/components/routes/analytics/AnalyticSearch.js +1 -1
- package/components/routes/dossiers/DossierEditor.js +2 -2
- package/components/routes/dossiers/DossierEditor.test.js +1 -1
- package/components/routes/dossiers/Dossiers.js +15 -11
- package/components/routes/help/ApiDocumentation.js +1 -1
- package/components/routes/help/BundleDocumentation.d.ts +3 -0
- package/components/routes/help/BundleDocumentation.js +12 -0
- package/components/routes/help/HitBannerDocumentation.js +0 -1
- package/components/routes/help/HitDocumentation.js +3 -1
- package/components/routes/help/markdown/en/bundles.md.js +1 -0
- package/components/routes/help/markdown/en/client.md.js +1 -1
- package/components/routes/help/markdown/fr/bundles.md.js +1 -0
- package/components/routes/help/markdown/fr/client.md.js +1 -1
- package/components/routes/hits/search/BundleParentMenu.d.ts +6 -0
- package/components/routes/hits/search/BundleParentMenu.js +32 -0
- package/components/routes/hits/search/BundleScroller.d.ts +2 -0
- package/components/routes/hits/search/BundleScroller.js +6 -0
- package/components/routes/hits/search/{RecordBrowser.js → HitBrowser.js} +9 -9
- package/components/{elements/record/RecordContextMenu.d.ts → routes/hits/search/HitContextMenu.d.ts} +3 -3
- package/components/routes/hits/search/HitContextMenu.js +239 -0
- package/components/{elements/record/RecordContextMenu.test.js → routes/hits/search/HitContextMenu.test.js} +43 -98
- package/components/routes/hits/search/{RecordQuery.d.ts → HitQuery.d.ts} +2 -2
- package/components/routes/hits/search/{RecordQuery.js → HitQuery.js} +6 -6
- package/components/routes/hits/search/InformationPane.d.ts +0 -1
- package/components/routes/hits/search/InformationPane.js +63 -50
- package/components/routes/hits/search/LayoutSettings.js +3 -3
- package/components/routes/hits/search/QuerySettings.js +1 -2
- package/components/routes/hits/search/QuerySettings.test.js +9 -14
- package/components/routes/hits/search/SearchPane.js +49 -26
- 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 +4 -5
- package/components/routes/hits/search/grid/EnhancedCell.d.ts +1 -2
- package/components/routes/hits/search/grid/EnhancedCell.js +2 -2
- package/components/routes/hits/search/grid/HitGrid.js +18 -20
- package/components/routes/hits/search/grid/{RecordRow.d.ts → HitRow.d.ts} +2 -3
- package/components/routes/hits/search/grid/{RecordRow.js → HitRow.js} +9 -11
- package/components/routes/hits/search/shared/CustomSpan.js +7 -7
- package/components/routes/hits/search/shared/CustomSpan.test.js +170 -0
- package/components/routes/hits/view/HitViewer.js +13 -12
- package/components/routes/home/AddNewCard.test.js +68 -0
- package/components/routes/home/ViewCard.js +41 -47
- package/components/routes/home/ViewRefresh.test.js +79 -0
- package/components/routes/overviews/OverviewCard.test.js +108 -0
- package/components/{elements/MarkdownEditor.js → routes/overviews/OverviewEditor.js} +3 -3
- package/components/routes/overviews/OverviewViewer.js +14 -10
- package/components/routes/overviews/Overviews.js +15 -11
- package/components/routes/settings/LocalSection.js +2 -1
- package/components/routes/settings/SettingsSection.test.js +19 -0
- package/components/routes/templates/TemplateCard.d.ts +3 -1
- package/components/routes/templates/TemplateCard.js +8 -4
- package/components/routes/templates/TemplateCard.test.d.ts +1 -0
- package/components/routes/templates/TemplateCard.test.js +115 -0
- package/components/routes/templates/TemplateViewer.js +57 -16
- package/components/routes/templates/Templates.js +23 -6
- package/components/routes/views/ViewComposer.js +19 -46
- package/components/routes/views/Views.js +8 -4
- package/locales/en/translation.json +17 -117
- package/locales/fr/translation.json +19 -119
- package/models/WithMetadata.d.ts +1 -2
- package/models/entities/generated/{ThreatEnrichment.d.ts → Enrichment.d.ts} +1 -1
- package/models/entities/generated/Hit.d.ts +1 -1
- package/models/entities/generated/Howler.d.ts +6 -0
- package/models/entities/generated/Rule.d.ts +9 -6
- package/models/entities/generated/Threat.d.ts +2 -2
- package/models/entities/generated/UserUser.d.ts +2 -0
- package/models/entities/generated/View.d.ts +0 -1
- package/package.json +112 -132
- package/plugins/clue/components/ClueTypography.js +2 -2
- package/plugins/clue/utils.d.ts +1 -2
- package/rest/FetchClient.test.d.ts +1 -0
- package/rest/FetchClient.test.js +81 -0
- package/setupTests.js +5 -0
- package/tests/mocks.d.ts +1 -11
- package/tests/mocks.js +7 -12
- package/tests/server-handlers.js +1 -6
- package/tests/utils.d.ts +0 -4
- package/tests/utils.js +0 -20
- package/utils/Throttler.test.d.ts +1 -0
- package/utils/Throttler.test.js +135 -0
- package/utils/actionUtils.test.d.ts +1 -0
- package/utils/actionUtils.test.js +140 -0
- package/utils/constants.d.ts +4 -4
- package/utils/constants.js +1 -6
- package/utils/hitFunctions.d.ts +1 -2
- package/utils/hitFunctions.js +4 -4
- package/utils/hitFunctions.test.d.ts +1 -0
- package/utils/hitFunctions.test.js +52 -0
- package/utils/localStorage.test.d.ts +1 -0
- package/utils/localStorage.test.js +96 -0
- package/utils/menuUtils.test.d.ts +1 -0
- package/utils/menuUtils.test.js +198 -0
- package/utils/sessionStorage.test.d.ts +1 -0
- package/utils/sessionStorage.test.js +81 -0
- package/utils/socketUtils.d.ts +0 -14
- package/utils/socketUtils.js +1 -17
- package/utils/socketUtils.test.js +16 -49
- package/utils/stringUtils.test.d.ts +1 -0
- package/utils/stringUtils.test.js +159 -0
- package/utils/utils.test.d.ts +1 -0
- package/utils/utils.test.js +292 -0
- package/utils/viewUtils.js +0 -3
- package/utils/viewUtils.test.d.ts +1 -0
- package/utils/viewUtils.test.js +45 -0
- package/utils/xsrf.test.d.ts +1 -0
- package/utils/xsrf.test.js +41 -0
- package/api/search/case.d.ts +0 -4
- package/api/search/case.js +0 -8
- package/api/socket/index.d.ts +0 -3
- package/api/socket/index.js +0 -6
- package/api/socket/viewers.d.ts +0 -2
- package/api/socket/viewers.js +0 -8
- package/api/socket/viewers.test.js +0 -44
- package/api/v2/case/index.d.ts +0 -9
- package/api/v2/case/index.js +0 -21
- package/api/v2/case/items.d.ts +0 -6
- package/api/v2/case/items.js +0 -18
- package/api/v2/case/rules.d.ts +0 -6
- package/api/v2/case/rules.js +0 -18
- package/api/v2/index.d.ts +0 -4
- package/api/v2/index.js +0 -6
- package/api/v2/search/facet.d.ts +0 -3
- package/api/v2/search/facet.js +0 -12
- package/api/v2/search/index.d.ts +0 -5
- package/api/v2/search/index.js +0 -24
- package/components/app/providers/RecordProvider.d.ts +0 -23
- package/components/elements/ContextMenu.d.ts +0 -56
- package/components/elements/ContextMenu.js +0 -109
- package/components/elements/ContextMenu.test.js +0 -215
- package/components/elements/ObjectDetails.d.ts +0 -6
- package/components/elements/case/CaseCard.d.ts +0 -12
- package/components/elements/case/CaseCard.js +0 -42
- package/components/elements/case/CasePreview.d.ts +0 -6
- package/components/elements/case/CasePreview.js +0 -17
- package/components/elements/case/StatusIcon.d.ts +0 -5
- package/components/elements/case/StatusIcon.js +0 -13
- package/components/elements/hit/elements/AnalyticLink.d.ts +0 -9
- package/components/elements/hit/elements/AnalyticLink.js +0 -22
- package/components/elements/hit/elements/Assigned.js +0 -34
- package/components/elements/hit/elements/Assigned.test.js +0 -65
- package/components/elements/hit/related/RelatedRecords.js +0 -63
- package/components/elements/observable/ObservableCard.d.ts +0 -6
- package/components/elements/observable/ObservableCard.js +0 -22
- package/components/elements/observable/ObservablePreview.d.ts +0 -6
- package/components/elements/observable/ObservablePreview.js +0 -12
- package/components/elements/record/RecordContextMenu.js +0 -268
- package/components/elements/record/RecordRelated.d.ts +0 -7
- package/components/elements/record/RecordRelated.js +0 -34
- package/components/hooks/useRelatedRecords.d.ts +0 -13
- package/components/hooks/useRelatedRecords.js +0 -32
- package/components/routes/cases/CaseViewer.d.ts +0 -2
- package/components/routes/cases/CaseViewer.js +0 -44
- package/components/routes/cases/CaseViewer.test.js +0 -133
- package/components/routes/cases/Cases.d.ts +0 -2
- package/components/routes/cases/Cases.js +0 -148
- package/components/routes/cases/constants.d.ts +0 -6
- package/components/routes/cases/constants.js +0 -6
- package/components/routes/cases/detail/AlertPanel.d.ts +0 -6
- package/components/routes/cases/detail/AlertPanel.js +0 -33
- package/components/routes/cases/detail/CaseAssets.d.ts +0 -11
- package/components/routes/cases/detail/CaseAssets.js +0 -104
- package/components/routes/cases/detail/CaseAssets.test.js +0 -167
- package/components/routes/cases/detail/CaseDashboard.d.ts +0 -7
- package/components/routes/cases/detail/CaseDashboard.js +0 -66
- package/components/routes/cases/detail/CaseDetails.d.ts +0 -6
- package/components/routes/cases/detail/CaseDetails.js +0 -70
- package/components/routes/cases/detail/CaseOverview.d.ts +0 -7
- package/components/routes/cases/detail/CaseOverview.js +0 -43
- package/components/routes/cases/detail/CaseRules.d.ts +0 -7
- package/components/routes/cases/detail/CaseRules.js +0 -57
- package/components/routes/cases/detail/CaseRules.test.js +0 -221
- package/components/routes/cases/detail/CaseSidebar.d.ts +0 -8
- package/components/routes/cases/detail/CaseSidebar.js +0 -107
- package/components/routes/cases/detail/CaseSidebar.test.js +0 -266
- package/components/routes/cases/detail/CaseTask.d.ts +0 -11
- package/components/routes/cases/detail/CaseTask.js +0 -66
- package/components/routes/cases/detail/CaseTimeline.d.ts +0 -12
- package/components/routes/cases/detail/CaseTimeline.js +0 -106
- package/components/routes/cases/detail/CaseTimeline.test.js +0 -320
- package/components/routes/cases/detail/CreateRuleDialog.d.ts +0 -9
- package/components/routes/cases/detail/CreateRuleDialog.js +0 -163
- package/components/routes/cases/detail/CreateRuleDialog.test.js +0 -259
- package/components/routes/cases/detail/ItemPage.d.ts +0 -6
- package/components/routes/cases/detail/ItemPage.js +0 -95
- package/components/routes/cases/detail/RelatedCasePanel.d.ts +0 -6
- package/components/routes/cases/detail/RelatedCasePanel.js +0 -34
- package/components/routes/cases/detail/TaskPanel.d.ts +0 -7
- package/components/routes/cases/detail/TaskPanel.js +0 -52
- package/components/routes/cases/detail/aggregates/CaseAggregate.d.ts +0 -11
- package/components/routes/cases/detail/aggregates/CaseAggregate.js +0 -24
- package/components/routes/cases/detail/aggregates/SourceAggregate.d.ts +0 -6
- package/components/routes/cases/detail/aggregates/SourceAggregate.js +0 -26
- package/components/routes/cases/detail/assets/Asset.d.ts +0 -14
- package/components/routes/cases/detail/assets/Asset.js +0 -12
- package/components/routes/cases/detail/assets/Asset.test.js +0 -72
- package/components/routes/cases/detail/sidebar/CaseFolder.d.ts +0 -20
- package/components/routes/cases/detail/sidebar/CaseFolder.js +0 -83
- package/components/routes/cases/detail/sidebar/CaseFolder.test.js +0 -295
- package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.d.ts +0 -34
- package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.js +0 -103
- package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.js +0 -363
- package/components/routes/cases/detail/sidebar/FolderEntry.d.ts +0 -25
- package/components/routes/cases/detail/sidebar/FolderEntry.js +0 -88
- package/components/routes/cases/detail/sidebar/FolderEntry.test.js +0 -206
- package/components/routes/cases/detail/sidebar/RootDropZone.d.ts +0 -5
- package/components/routes/cases/detail/sidebar/RootDropZone.js +0 -33
- package/components/routes/cases/detail/sidebar/types.d.ts +0 -9
- package/components/routes/cases/detail/sidebar/utils.d.ts +0 -3
- package/components/routes/cases/detail/sidebar/utils.js +0 -29
- package/components/routes/cases/detail/sidebar/utils.test.js +0 -82
- package/components/routes/cases/hooks/useCase.d.ts +0 -13
- package/components/routes/cases/hooks/useCase.js +0 -69
- package/components/routes/cases/hooks/useCase.test.js +0 -141
- package/components/routes/cases/modals/AddToCaseModal.d.ts +0 -7
- package/components/routes/cases/modals/AddToCaseModal.js +0 -59
- package/components/routes/cases/modals/AddToCaseModal.test.js +0 -313
- package/components/routes/cases/modals/CaseRecordRow.d.ts +0 -9
- package/components/routes/cases/modals/CaseRecordRow.js +0 -15
- package/components/routes/cases/modals/CreateCaseModal.d.ts +0 -7
- package/components/routes/cases/modals/CreateCaseModal.js +0 -55
- package/components/routes/cases/modals/CreateCaseModal.test.js +0 -358
- package/components/routes/cases/modals/RenameItemModal.d.ts +0 -9
- package/components/routes/cases/modals/RenameItemModal.js +0 -48
- package/components/routes/cases/modals/ResolveModal.d.ts +0 -7
- package/components/routes/cases/modals/ResolveModal.js +0 -115
- package/components/routes/cases/modals/ResolveModal.test.js +0 -394
- package/components/routes/cases/modals/hooks.d.ts +0 -7
- package/components/routes/cases/modals/hooks.js +0 -44
- package/components/routes/cases/modals/types.d.ts +0 -5
- package/components/routes/cases/search/CaseAssigneeFilter.d.ts +0 -6
- package/components/routes/cases/search/CaseAssigneeFilter.js +0 -33
- package/components/routes/cases/search/CaseAssigneeFilter.test.js +0 -127
- package/components/routes/cases/search/CaseDateFilter.d.ts +0 -13
- package/components/routes/cases/search/CaseDateFilter.js +0 -26
- package/components/routes/cases/search/CaseDateFilter.test.js +0 -115
- package/components/routes/cases/search/CaseStatusFilter.d.ts +0 -6
- package/components/routes/cases/search/CaseStatusFilter.js +0 -13
- package/components/routes/cases/search/CaseStatusFilter.test.js +0 -86
- package/components/routes/hits/search/shared/IndexPicker.d.ts +0 -2
- package/components/routes/hits/search/shared/IndexPicker.js +0 -20
- package/components/routes/observables/ObservableViewer.d.ts +0 -7
- package/components/routes/observables/ObservableViewer.js +0 -27
- package/models/entities/generated/AttachmentsFile.d.ts +0 -12
- package/models/entities/generated/Case.d.ts +0 -28
- package/models/entities/generated/DestinationOriginal.d.ts +0 -19
- package/models/entities/generated/EmailAttachment.d.ts +0 -8
- package/models/entities/generated/EmailParent.d.ts +0 -19
- package/models/entities/generated/Enrichments.d.ts +0 -7
- package/models/entities/generated/EnrichmentsIndicator.d.ts +0 -21
- package/models/entities/generated/HttpResponse.d.ts +0 -11
- package/models/entities/generated/Item.d.ts +0 -9
- package/models/entities/generated/Observable.d.ts +0 -85
- package/models/entities/generated/ObservableCloud.d.ts +0 -20
- package/models/entities/generated/ObservableDestination.d.ts +0 -23
- package/models/entities/generated/ObservableEmail.d.ts +0 -30
- package/models/entities/generated/ObservableFile.d.ts +0 -36
- package/models/entities/generated/ObservableHowler.d.ts +0 -42
- package/models/entities/generated/ObservableHttp.d.ts +0 -11
- package/models/entities/generated/ObservableObserver.d.ts +0 -21
- package/models/entities/generated/ObservableOrganization.d.ts +0 -7
- package/models/entities/generated/ObservableProcess.d.ts +0 -34
- package/models/entities/generated/ObservableSource.d.ts +0 -23
- package/models/entities/generated/ObservableThreat.d.ts +0 -21
- package/models/entities/generated/ObservableTls.d.ts +0 -12
- package/models/entities/generated/ObserverIngress.d.ts +0 -9
- package/models/entities/generated/Task.d.ts +0 -10
- package/models/socket/CaseUpdate.d.ts +0 -5
- package/models/socket/ViewersUpdate.d.ts +0 -4
- package/utils/typeUtils.d.ts +0 -7
- package/utils/typeUtils.js +0 -27
- /package/{api/socket/viewers.test.d.ts → components/app/providers/HitSearchProvider.test.d.ts} +0 -0
- /package/components/{app/providers/RecordSearchProvider.test.d.ts → elements/addons/buttons/CustomButton.test.d.ts} +0 -0
- /package/components/elements/{ContextMenu.test.d.ts → addons/layout/FlexOne.test.d.ts} +0 -0
- /package/components/elements/{hit/elements/Assigned.test.d.ts → addons/search/SearchPagination.test.d.ts} +0 -0
- /package/components/elements/{record/RecordContextMenu.test.d.ts → addons/search/SearchTotal.test.d.ts} +0 -0
- /package/components/{routes/cases/CaseViewer.test.d.ts → elements/display/DocumentationButton.test.d.ts} +0 -0
- /package/components/{routes/cases/detail/CaseAssets.test.d.ts → elements/display/DynamicTabs.test.d.ts} +0 -0
- /package/components/{routes/cases/detail/CaseRules.test.d.ts → elements/display/HowlerCard.test.d.ts} +0 -0
- /package/components/{routes/cases/detail/CaseSidebar.test.d.ts → elements/display/Image.test.d.ts} +0 -0
- /package/components/{routes/cases/detail/CaseTimeline.test.d.ts → elements/display/QueryResultText.test.d.ts} +0 -0
- /package/components/{routes/cases/detail/CreateRuleDialog.test.d.ts → elements/display/TextDivider.test.d.ts} +0 -0
- /package/components/{routes/cases/detail/assets/Asset.test.d.ts → elements/display/TypingIndicator.test.d.ts} +0 -0
- /package/components/elements/hit/{related/RelatedRecords.d.ts → HitDetails.d.ts} +0 -0
- /package/components/routes/{cases/detail/sidebar/CaseFolder.test.d.ts → 403.test.d.ts} +0 -0
- /package/components/routes/{cases/detail/sidebar/CaseFolderContextMenu.test.d.ts → 404.test.d.ts} +0 -0
- /package/components/routes/{cases/detail/sidebar/FolderEntry.test.d.ts → ErrorBoundary.test.d.ts} +0 -0
- /package/components/routes/{cases/detail/sidebar/utils.test.d.ts → ErrorOccured.test.d.ts} +0 -0
- /package/components/routes/{cases/hooks/useCase.test.d.ts → Logout.test.d.ts} +0 -0
- /package/components/routes/hits/search/{RecordBrowser.d.ts → HitBrowser.d.ts} +0 -0
- /package/components/routes/{cases/modals/AddToCaseModal.test.d.ts → hits/search/HitContextMenu.test.d.ts} +0 -0
- /package/components/routes/{cases/modals/CreateCaseModal.test.d.ts → hits/search/shared/CustomSpan.test.d.ts} +0 -0
- /package/components/routes/{cases/modals/ResolveModal.test.d.ts → home/AddNewCard.test.d.ts} +0 -0
- /package/components/routes/{cases/search/CaseAssigneeFilter.test.d.ts → home/ViewRefresh.test.d.ts} +0 -0
- /package/components/routes/{cases/search/CaseDateFilter.test.d.ts → overviews/OverviewCard.test.d.ts} +0 -0
- /package/components/{elements/MarkdownEditor.d.ts → routes/overviews/OverviewEditor.d.ts} +0 -0
- /package/components/routes/{cases/search/CaseStatusFilter.test.d.ts → settings/SettingsSection.test.d.ts} +0 -0
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"*": "All values",
|
|
3
3
|
"Protected B": "Protected B",
|
|
4
4
|
"Unclassified//Official Use Only": "Unclassified//Official Use Only",
|
|
5
|
+
"actions.error": "Action \"{{action}}\" had error(s): {{messages}}",
|
|
5
6
|
"actions.running": "Action \"{{action}}\" is executing.",
|
|
6
|
-
"actions.succeeded": "Action \"{{action}}\" completed successfully.",
|
|
7
7
|
"actions.skipped": "Action \"{{action}}\" was skipped: {{messages}}",
|
|
8
|
-
"actions.
|
|
8
|
+
"actions.succeeded": "Action \"{{action}}\" completed successfully.",
|
|
9
9
|
"add": "Add",
|
|
10
10
|
"adminmenu": "Admin menu",
|
|
11
11
|
"adminmenu.config": "Configuration",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"analytic.notebook.error.minFields": "Name and link are required.",
|
|
16
16
|
"analytic.notebook.link": "Link",
|
|
17
17
|
"analytic.notebook.name": "Name",
|
|
18
|
-
"analytic.open": "Open Analytic",
|
|
19
18
|
"any": "Any",
|
|
20
19
|
"api.user.apikey.removed": "API key removed successfully.",
|
|
21
20
|
"api.user.apikey.updated": "New API key added successfully.",
|
|
@@ -27,6 +26,9 @@
|
|
|
27
26
|
"apikey.impersonate": "Impersonate",
|
|
28
27
|
"apikey.read": "Read",
|
|
29
28
|
"apikey.write": "Write",
|
|
29
|
+
"app.drawer.hit.assessment.assessor": "Assessor",
|
|
30
|
+
"app.drawer.hit.assessment.unknown.name": "Unknown",
|
|
31
|
+
"app.drawer.hit.assignment.assignee": "Assignee",
|
|
30
32
|
"app.drawer.hit.assignment.autocomplete.label": "Choose Assignee",
|
|
31
33
|
"app.drawer.hit.assignment.description": "Choose a user to assign this hit to.",
|
|
32
34
|
"app.drawer.hit.assignment.success": "User assigned to hit sucessfully.",
|
|
@@ -84,8 +86,6 @@
|
|
|
84
86
|
"comments.edit.stop": "Stop Editing",
|
|
85
87
|
"comments.edited": "Edited",
|
|
86
88
|
"comments.quote": "Quote Reply",
|
|
87
|
-
"complete": "Complete",
|
|
88
|
-
"crisis": "Crisis",
|
|
89
89
|
"custom": "Custom",
|
|
90
90
|
"date.range.1.day": "The last day",
|
|
91
91
|
"date.range.1.month": "The last month",
|
|
@@ -111,12 +111,8 @@
|
|
|
111
111
|
"drawer.expand": "Expand Menu",
|
|
112
112
|
"duplicates.omitted": "Some duplicate entries have been omitted.",
|
|
113
113
|
"edit": "Edit",
|
|
114
|
-
"enabled": "Enabled",
|
|
115
|
-
"event.module": "Event Module",
|
|
116
|
-
"event.type": "Event Type",
|
|
117
114
|
"features.warning.description": "This feature is undergoing active development, and is not yet in a finished state. You may encounter bugs or instability.",
|
|
118
115
|
"features.warning.title": "Feature In Active Development",
|
|
119
|
-
"focus": "Main focus",
|
|
120
116
|
"global": "Global",
|
|
121
117
|
"help.actions.introduction": "Introduction to Actions",
|
|
122
118
|
"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.",
|
|
@@ -173,21 +169,17 @@
|
|
|
173
169
|
"hit.header.assignment": "Assignment: {{user}}",
|
|
174
170
|
"hit.header.assignment.add": "Assign to a user",
|
|
175
171
|
"hit.header.assignment.change": "Change assignment",
|
|
172
|
+
"hit.header.bundlesize": "{{hits}} hits",
|
|
176
173
|
"hit.header.escalation": "Escalation Level: ",
|
|
177
174
|
"hit.header.indicators": "Indicators",
|
|
178
175
|
"hit.header.link": "Open Link",
|
|
179
176
|
"hit.header.rationale": "Rationale",
|
|
180
|
-
"hit.header.related": "{{count}} related records",
|
|
181
177
|
"hit.header.scrutiny": "Scrutiny: ",
|
|
182
178
|
"hit.header.status": "Status: ",
|
|
183
179
|
"hit.header.summary": "Summary",
|
|
184
180
|
"hit.header.target": "Target",
|
|
185
181
|
"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}}",
|
|
189
182
|
"hit.header.votes": "Votes: ",
|
|
190
|
-
"hit.howler.related": "{{count}} related records",
|
|
191
183
|
"hit.label": "Labels",
|
|
192
184
|
"hit.label.category.assignments": "Category: Assignments - Specifies what analyst or team of analysts is assigned to triaging this hit.",
|
|
193
185
|
"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.",
|
|
@@ -210,9 +202,9 @@
|
|
|
210
202
|
"hit.notebook.goTo": "Go to Jupyterhub",
|
|
211
203
|
"hit.notebook.select": "Please Select a notebook",
|
|
212
204
|
"hit.notebook.tooltip": "Open in Jupyterhub",
|
|
213
|
-
"hit.open": "Open Hit",
|
|
214
205
|
"hit.overview.missing": "No overview has been created for this hit. In order to create an overview, press the add button to the right.",
|
|
215
206
|
"hit.panel.aggregation.run": "Create Summary",
|
|
207
|
+
"hit.panel.analytic.open": "Open Analytic",
|
|
216
208
|
"hit.panel.bundles.open": "Parent Bundles",
|
|
217
209
|
"hit.panel.bundles.open.prompt": "Open Parent Bundle",
|
|
218
210
|
"hit.panel.close": "Close",
|
|
@@ -225,12 +217,9 @@
|
|
|
225
217
|
"hit.panel.exclude": "Exclude By",
|
|
226
218
|
"hit.panel.hit.noselection": "No hit has been selected",
|
|
227
219
|
"hit.panel.include": "Include By",
|
|
220
|
+
"hit.panel.open": "Open Hit Viewer",
|
|
228
221
|
"hit.panel.view.layout": "Change View Panel",
|
|
229
222
|
"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",
|
|
234
223
|
"hit.search.aggregate.button": "Create Summary",
|
|
235
224
|
"hit.search.button": "Perform search",
|
|
236
225
|
"hit.search.custom": "Custom Sort",
|
|
@@ -239,9 +228,6 @@
|
|
|
239
228
|
"hit.search.filter.fields": "Fields",
|
|
240
229
|
"hit.search.filter.label": "Lookup Filters",
|
|
241
230
|
"hit.search.filter.values": "Values",
|
|
242
|
-
"hit.search.index": "Indexes",
|
|
243
|
-
"hit.search.index.hit": "Hits",
|
|
244
|
-
"hit.search.index.observable": "Observables",
|
|
245
231
|
"hit.search.invalid": "Invalid Query",
|
|
246
232
|
"hit.search.keyboard": "Keyboard shortcuts",
|
|
247
233
|
"hit.search.keyboard.no_shortcuts": "No shortcuts",
|
|
@@ -315,31 +301,6 @@
|
|
|
315
301
|
"modal.action.empty": "Action Name cannot be empty.",
|
|
316
302
|
"modal.action.label": "Action Name",
|
|
317
303
|
"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.",
|
|
343
304
|
"modal.confirm.delete.description": "Are you sure you want to delete this item?",
|
|
344
305
|
"modal.confirm.delete.title": "Confirm Deletion",
|
|
345
306
|
"modal.rationale.description": "Provide a rationale that succinctly explains to other analysts why you are confident in this assessment.",
|
|
@@ -361,8 +322,6 @@
|
|
|
361
322
|
"modal.rule.title": "Create a New Rule",
|
|
362
323
|
"no.data": "No Data",
|
|
363
324
|
"none": "None",
|
|
364
|
-
"normal": "Normal Priority",
|
|
365
|
-
"observable.open": "Open Observable",
|
|
366
325
|
"on": "on",
|
|
367
326
|
"open": "Open",
|
|
368
327
|
"operations.add_label": "Add Label",
|
|
@@ -384,60 +343,6 @@
|
|
|
384
343
|
"page.403.title": "403: Access Forbidden",
|
|
385
344
|
"page.404.description": "The page you are looking for cannot be found...",
|
|
386
345
|
"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",
|
|
441
346
|
"page.dashboard.settings.edit": "Edit Dashboard",
|
|
442
347
|
"page.dashboard.settings.refreshRate": "Refresh Rate",
|
|
443
348
|
"page.dashboard.title": "Dashboard",
|
|
@@ -462,7 +367,6 @@
|
|
|
462
367
|
"page.help": "Help",
|
|
463
368
|
"page.help.title": "Help Dashboard",
|
|
464
369
|
"page.login.button": "Sign in",
|
|
465
|
-
"page.login.error": "Just type anything in the username and password fields...",
|
|
466
370
|
"page.login.password": "Password",
|
|
467
371
|
"page.login.username": "Username",
|
|
468
372
|
"page.logout": "Logging out current user ... ",
|
|
@@ -489,6 +393,8 @@
|
|
|
489
393
|
"page.settings.local.results.count.description": "How many results should we show per page when showing search results?",
|
|
490
394
|
"page.settings.local.search.width": "Maximum Results Width",
|
|
491
395
|
"page.settings.local.search.width.description": "The maximum size (in pixels) the results column in the search page.",
|
|
396
|
+
"page.settings.local.show.hit.summary.graph": "Show the Hit Summary Graph in Hit Search",
|
|
397
|
+
"page.settings.local.show.hit.summary.graph.description": "Shows the Hit Summary Graph in the Hit Search",
|
|
492
398
|
"page.settings.local.title": "UI Preferences",
|
|
493
399
|
"page.settings.profile.table.email": "Email",
|
|
494
400
|
"page.settings.profile.table.groups": "Groups",
|
|
@@ -509,8 +415,6 @@
|
|
|
509
415
|
"page.user.search.column.groups": "Groups",
|
|
510
416
|
"page.user.search.column.username": "Username",
|
|
511
417
|
"page.user.search.prompt": "Search by username, fullname, email or group",
|
|
512
|
-
"pages.cases.detail.participants": "Participants",
|
|
513
|
-
"pages.cases.detail.status": "Status",
|
|
514
418
|
"password": "New Password",
|
|
515
419
|
"password.confirm": "Confirm Password",
|
|
516
420
|
"password.match": "Password and Confirm Password must match",
|
|
@@ -604,9 +508,11 @@
|
|
|
604
508
|
"route.analytics.deleted": "Deleted Rule!",
|
|
605
509
|
"route.analytics.detection.title": "Hits Ingested in the Last Three Months by Detection",
|
|
606
510
|
"route.analytics.detections": "Detections:",
|
|
511
|
+
"route.analytics.dropdown.detection": "Detection",
|
|
607
512
|
"route.analytics.escalation.title": "Escalation of Created Hits",
|
|
608
513
|
"route.analytics.filter.rule": "Filter on Rules",
|
|
609
514
|
"route.analytics.ingestion.title": "Number of Hits Created",
|
|
515
|
+
"route.analytics.manager.search": "Search Analytics",
|
|
610
516
|
"route.analytics.overview.description": "Description",
|
|
611
517
|
"route.analytics.overview.empty.description": "There are no existing hits for this analytic. Statistics cannot be shown.",
|
|
612
518
|
"route.analytics.overview.empty.title": "No Statistics to Show",
|
|
@@ -640,16 +546,6 @@
|
|
|
640
546
|
"route.analytics.triage.title": "Triage Settings",
|
|
641
547
|
"route.analytics.updated": "Analytic Updated!",
|
|
642
548
|
"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",
|
|
653
549
|
"route.clear": "Clear query",
|
|
654
550
|
"route.dossiers": "Dossiers",
|
|
655
551
|
"route.dossiers.create": "New Dossier",
|
|
@@ -783,6 +679,10 @@
|
|
|
783
679
|
"route.templates.default": "Default",
|
|
784
680
|
"route.templates.detection": "Choose Detection",
|
|
785
681
|
"route.templates.global": "Global",
|
|
682
|
+
"route.templates.manager.error.action": "Click to open quick fix options",
|
|
683
|
+
"route.templates.manager.error.message": "Invalid Detection",
|
|
684
|
+
"route.templates.manager.error.modal.description": "The template fields are read only and will not be used. Do you want to remove the template?",
|
|
685
|
+
"route.templates.manager.error.modal.title": "Template detection no longer exists",
|
|
786
686
|
"route.templates.manager.global": "Global",
|
|
787
687
|
"route.templates.manager.open": "Open View",
|
|
788
688
|
"route.templates.manager.personal": "Personal",
|
|
@@ -824,11 +724,11 @@
|
|
|
824
724
|
"rule.interval.thirty.minutes": "Every thirty minutes",
|
|
825
725
|
"rule.interval.three.hours": "Every three hours",
|
|
826
726
|
"save": "Save",
|
|
727
|
+
"search.layout.settings": "Edit search result layout",
|
|
827
728
|
"search.open": "Open Search",
|
|
828
729
|
"search.result.showing": "Showing {{offset}} to {{length}} of {{total}} results",
|
|
829
730
|
"search.result.showing.single": "No results",
|
|
830
731
|
"search.total": "There are a total of {{count}} hits matching this query.",
|
|
831
|
-
"started": "Started",
|
|
832
732
|
"templates.edit.analytic": "Edit analytic template",
|
|
833
733
|
"templates.edit.detection": "Edit detection template",
|
|
834
734
|
"to": "to",
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"*": "Toutes les valeurs",
|
|
3
3
|
"Protected B": "Protégé B",
|
|
4
4
|
"Unclassified//Official Use Only": "Non classé//Réservé à des fins officielles",
|
|
5
|
+
"actions.error": "Action \"{{action}}\" a rencontré une ou des erreur(s): {{messages}}",
|
|
5
6
|
"actions.running": "Action \"{{action}}\" s'exécute.",
|
|
6
|
-
"actions.succeeded": "Action \"{{action}}\" achevé avec succès.",
|
|
7
7
|
"actions.skipped": "Action \"{{action}}\" a été ignorée: {{messages}}",
|
|
8
|
-
"actions.
|
|
8
|
+
"actions.succeeded": "Action \"{{action}}\" achevé avec succès.",
|
|
9
9
|
"add": "Ajouter",
|
|
10
10
|
"adminmenu": "Menu d'administration",
|
|
11
11
|
"adminmenu.config": "Configuration",
|
|
@@ -15,7 +15,6 @@
|
|
|
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",
|
|
19
18
|
"any": "Tous",
|
|
20
19
|
"api.user.apikey.removed": "Clé API supprimée avec succès",
|
|
21
20
|
"api.user.apikey.updated": "Nouvelle clé API ajoutée avec succès.",
|
|
@@ -27,6 +26,9 @@
|
|
|
27
26
|
"apikey.impersonate": "Imiter",
|
|
28
27
|
"apikey.read": "Lire",
|
|
29
28
|
"apikey.write": "Écrire",
|
|
29
|
+
"app.drawer.hit.assessment.assessor": "Évaluateur",
|
|
30
|
+
"app.drawer.hit.assessment.unknown.name": "Inconnu",
|
|
31
|
+
"app.drawer.hit.assignment.assignee": "Cessionnaire",
|
|
30
32
|
"app.drawer.hit.assignment.autocomplete.label": "Choisissez le destinataire",
|
|
31
33
|
"app.drawer.hit.assignment.description": "Choisissez un utilisateur à qui assigner ce hit.",
|
|
32
34
|
"app.drawer.hit.assignment.success": "L'utilisateur a été assigné au hit avec succès.",
|
|
@@ -84,8 +86,6 @@
|
|
|
84
86
|
"comments.edit.stop": "Arrêter Modification",
|
|
85
87
|
"comments.edited": "Modifié",
|
|
86
88
|
"comments.quote": "Citation Réponse",
|
|
87
|
-
"complete": "Terminé",
|
|
88
|
-
"crisis": "Crise",
|
|
89
89
|
"custom": "Personnalisé",
|
|
90
90
|
"date.range.1.day": "Dernier jour",
|
|
91
91
|
"date.range.1.month": "Le dernier mois",
|
|
@@ -111,12 +111,8 @@
|
|
|
111
111
|
"drawer.expand": "Ouvrir le Menu",
|
|
112
112
|
"duplicates.omitted": "Certains doublons ont été omis.",
|
|
113
113
|
"edit": "Modifier",
|
|
114
|
-
"enabled": "Activé",
|
|
115
|
-
"event.module": "Module d'événement",
|
|
116
|
-
"event.type": "Type d'événement",
|
|
117
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é.",
|
|
118
115
|
"features.warning.title": "Fonctionnalité en développement actif",
|
|
119
|
-
"focus": "Focus principal",
|
|
120
116
|
"global": "Global",
|
|
121
117
|
"help.actions.introduction": "Introduction aux actions",
|
|
122
118
|
"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.",
|
|
@@ -173,21 +169,17 @@
|
|
|
173
169
|
"hit.header.assignment": "Affectation: {{user}}",
|
|
174
170
|
"hit.header.assignment.add": "Attribuer à un utilisateur",
|
|
175
171
|
"hit.header.assignment.change": "Changer l'affectation",
|
|
172
|
+
"hit.header.bundlesize": "{{hits}} hits",
|
|
176
173
|
"hit.header.escalation": "Niveau d'escalade: ",
|
|
177
174
|
"hit.header.indicators": "Indicateurs",
|
|
178
175
|
"hit.header.link": "Ouvrir lien",
|
|
179
176
|
"hit.header.rationale": "Justification",
|
|
180
|
-
"hit.header.related": "{{count}} documrents associés",
|
|
181
177
|
"hit.header.scrutiny": "Examen minutieux: ",
|
|
182
178
|
"hit.header.status": "Statut: ",
|
|
183
179
|
"hit.header.summary": "Résumé",
|
|
184
180
|
"hit.header.target": "Cible",
|
|
185
181
|
"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}}",
|
|
189
182
|
"hit.header.votes": "Votes: ",
|
|
190
|
-
"hit.howler.related": "{{count}} enregistrements associés",
|
|
191
183
|
"hit.label": "Étiquettes",
|
|
192
184
|
"hit.label.category.assignments": "Catégorie : Affectation - Indique quel analyste ou quelle équipe d'analystes est chargé(e) de trier cette réponse positive.",
|
|
193
185
|
"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.",
|
|
@@ -210,9 +202,9 @@
|
|
|
210
202
|
"hit.notebook.goTo": "Aller a Jupyterhub",
|
|
211
203
|
"hit.notebook.select": "Veuillez sélectionner un notebook",
|
|
212
204
|
"hit.notebook.tooltip": "Ouvrir dans Jupyterhub",
|
|
213
|
-
"hit.open": "Ouvrir hit",
|
|
214
205
|
"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.",
|
|
215
206
|
"hit.panel.aggregation.run": "Créer un sommaire",
|
|
207
|
+
"hit.panel.analytic.open": "Ouvrir l'analyse",
|
|
216
208
|
"hit.panel.bundles.open": "Groupes parentaux",
|
|
217
209
|
"hit.panel.bundles.open.prompt": "Ouvrir le groupe parent",
|
|
218
210
|
"hit.panel.close": "Fermer",
|
|
@@ -225,12 +217,9 @@
|
|
|
225
217
|
"hit.panel.exclude": "Exclure par",
|
|
226
218
|
"hit.panel.hit.noselection": "Aucun résultat n'a été sélectionné",
|
|
227
219
|
"hit.panel.include": "Inclure par",
|
|
220
|
+
"hit.panel.open": "Ouvrir hit",
|
|
228
221
|
"hit.panel.view.layout": "Modifier le panneau d'affichage",
|
|
229
222
|
"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",
|
|
234
223
|
"hit.search.aggregate.button": "Créer un sommaire",
|
|
235
224
|
"hit.search.button": "Effectuer une recherche",
|
|
236
225
|
"hit.search.custom": "Triage personnalisé",
|
|
@@ -239,9 +228,6 @@
|
|
|
239
228
|
"hit.search.filter.fields": "Paramètres",
|
|
240
229
|
"hit.search.filter.label": "Filtres de recherche",
|
|
241
230
|
"hit.search.filter.values": "Valeurs",
|
|
242
|
-
"hit.search.index": "Indexes",
|
|
243
|
-
"hit.search.index.hit": "Hits",
|
|
244
|
-
"hit.search.index.observable": "Observables",
|
|
245
231
|
"hit.search.invalid": "Requête invalide",
|
|
246
232
|
"hit.search.keyboard": "Raccourcis clavier",
|
|
247
233
|
"hit.search.keyboard.no_shortcuts": "Pas de raccourcis",
|
|
@@ -315,31 +301,6 @@
|
|
|
315
301
|
"modal.action.empty": "Le nom de l'action ne peut pas être vide.",
|
|
316
302
|
"modal.action.label": "Nom de l'action",
|
|
317
303
|
"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.",
|
|
343
304
|
"modal.confirm.delete.description": "Êtes-vous sûr de vouloir supprimer cet élément ?",
|
|
344
305
|
"modal.confirm.delete.title": "Confirmer la suppression",
|
|
345
306
|
"modal.rationale.description": "Fournissez une justification qui explique succinctement aux autres analystes les raisons pour lesquelles vous êtes confiant dans cette évaluation.",
|
|
@@ -361,8 +322,6 @@
|
|
|
361
322
|
"modal.rule.title": "Créer une nouvelle règle",
|
|
362
323
|
"no.data": "Aucune donnée",
|
|
363
324
|
"none": "Rien",
|
|
364
|
-
"normal": "Priorité normale",
|
|
365
|
-
"observable.open": "Ouvrir observable",
|
|
366
325
|
"on": "sur",
|
|
367
326
|
"open": "Ouvert",
|
|
368
327
|
"operations.add_label": "Ajouter un label",
|
|
@@ -384,60 +343,6 @@
|
|
|
384
343
|
"page.403.title": "403: Accès interdit",
|
|
385
344
|
"page.404.description": "La page que vous recherchez est introuvable ...",
|
|
386
345
|
"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",
|
|
441
346
|
"page.dashboard.settings.edit": "Modifier le tableau de bord",
|
|
442
347
|
"page.dashboard.settings.refreshRate": "Fréquence de rafraîchissement",
|
|
443
348
|
"page.dashboard.title": "Tableau de bord",
|
|
@@ -462,7 +367,6 @@
|
|
|
462
367
|
"page.help": "Aide",
|
|
463
368
|
"page.help.title": "Tableau de bord de l'aide",
|
|
464
369
|
"page.login.button": "Se connecter",
|
|
465
|
-
"page.login.error": "Tapez simplement n'importe quoi dans les champs du nom d'utilisateur et du mot de passe ...",
|
|
466
370
|
"page.login.password": "Mot de passe",
|
|
467
371
|
"page.login.username": "Nom d'utilisateur",
|
|
468
372
|
"page.logout": "Déconnexion de l'utilisateur actuel ... ",
|
|
@@ -489,6 +393,8 @@
|
|
|
489
393
|
"page.settings.local.results.count.description": "Combien de résultats devons-nous afficher par page lors de l'affichage des résultats de recherche ?",
|
|
490
394
|
"page.settings.local.search.width": "Largeur maximale des résultats",
|
|
491
395
|
"page.settings.local.search.width.description": "Taille maximale (en pixels) de la colonne des résultats dans la page de recherche.",
|
|
396
|
+
"page.settings.local.show.hit.summary.graph": "Afficher le graphique du résumé des résultats dans le volet Résumé des résultats",
|
|
397
|
+
"page.settings.local.show.hit.summary.graph.description": "Affiche le graphique du résumé des résultats dans le volet Résumé des résultats",
|
|
492
398
|
"page.settings.local.title": "Préférences de l'interface utilisateur",
|
|
493
399
|
"page.settings.profile.table.email": "Courriel",
|
|
494
400
|
"page.settings.profile.table.groups": "Groupes",
|
|
@@ -509,8 +415,6 @@
|
|
|
509
415
|
"page.user.search.column.groups": "Groupes",
|
|
510
416
|
"page.user.search.column.username": "Nom d'utilisateur",
|
|
511
417
|
"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",
|
|
514
418
|
"password": "Nouveau mot de passe",
|
|
515
419
|
"password.confirm": "Confirmer le mot de passe",
|
|
516
420
|
"password.match": "Le mot de passe et le mot de passe de confirmation doivent correspondre",
|
|
@@ -543,7 +447,7 @@
|
|
|
543
447
|
"route.actions.create": "Nouveau action",
|
|
544
448
|
"route.actions.edit": "Modifier",
|
|
545
449
|
"route.actions.execute": "Exécuter",
|
|
546
|
-
"route.actions.manager": "
|
|
450
|
+
"route.actions.manager": "Gestion des actions",
|
|
547
451
|
"route.actions.name": "Nom de l'action",
|
|
548
452
|
"route.actions.open": "Ouvrir la requête",
|
|
549
453
|
"route.actions.operation.add": "Ajouter une nouvelle opération",
|
|
@@ -604,9 +508,11 @@
|
|
|
604
508
|
"route.analytics.deleted": "Règle supprimée!",
|
|
605
509
|
"route.analytics.detection.title": "Hits ingérés au cours des trois derniers mois par détection",
|
|
606
510
|
"route.analytics.detections": "Détections:",
|
|
511
|
+
"route.analytics.dropdown.detection": "Détection",
|
|
607
512
|
"route.analytics.escalation.title": "Escalade des hits créés",
|
|
608
513
|
"route.analytics.filter.rule": "Filtre sur les règles",
|
|
609
514
|
"route.analytics.ingestion.title": "Nombre de hits créés",
|
|
515
|
+
"route.analytics.manager.search": "Rechercher les analyses",
|
|
610
516
|
"route.analytics.overview.description": "Description",
|
|
611
517
|
"route.analytics.overview.empty.description": "Il n'y a pas de résultats existants pour cette analyse. Les statistiques ne peuvent pas être affichées.",
|
|
612
518
|
"route.analytics.overview.empty.title": "Pas de statistiques à montrer",
|
|
@@ -640,16 +546,6 @@
|
|
|
640
546
|
"route.analytics.triage.title": "Paramètres de triage",
|
|
641
547
|
"route.analytics.updated": "Analytic mis a jour!",
|
|
642
548
|
"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",
|
|
653
549
|
"route.clear": "Effacer la requête",
|
|
654
550
|
"route.dossiers": "Dossiers",
|
|
655
551
|
"route.dossiers.create": "Nouveau dossier",
|
|
@@ -782,7 +678,11 @@
|
|
|
782
678
|
"route.templates.create": "Nouvelle modèle",
|
|
783
679
|
"route.templates.default": "Défaut",
|
|
784
680
|
"route.templates.detection": "Choisir une détection",
|
|
785
|
-
"route.templates.global": "
|
|
681
|
+
"route.templates.global": "Global",
|
|
682
|
+
"route.templates.manager.error.action": "Cliquez ici pour afficher les options de correction rapide",
|
|
683
|
+
"route.templates.manager.error.message": "Détection non valide",
|
|
684
|
+
"route.templates.manager.error.modal.description": "Les clés du modèle sont en lecture seule et ne seront pas utilisées. Voulez-vous supprimer le modèle ?",
|
|
685
|
+
"route.templates.manager.error.modal.title": "La détection du modèle n'existe plus",
|
|
786
686
|
"route.templates.manager.global": "Global",
|
|
787
687
|
"route.templates.manager.open": "Ouvrir la vue",
|
|
788
688
|
"route.templates.manager.personal": "Personnel",
|
|
@@ -824,11 +724,11 @@
|
|
|
824
724
|
"rule.interval.thirty.minutes": "Toutes les trente minutes",
|
|
825
725
|
"rule.interval.three.hours": "Toutes les trois heures",
|
|
826
726
|
"save": "Sauvegarder",
|
|
727
|
+
"search.layout.settings": "Modifier la présentation des résultats de recherche",
|
|
827
728
|
"search.open": "Ouvrir la recherche",
|
|
828
729
|
"search.result.showing": "Affichage de {{offset}} à {{length}} sur {{total}} articles",
|
|
829
730
|
"search.result.showing.single": "Aucun articles",
|
|
830
731
|
"search.total": "Il y a un total de {{count}} résultats correspondant à cette requête.",
|
|
831
|
-
"started": "Démarré",
|
|
832
732
|
"templates.edit.analytic": "Modifier modèle pour cette analyse",
|
|
833
733
|
"templates.edit.detection": "Modifier modèle pour cette détection",
|
|
834
734
|
"to": "à",
|
package/models/WithMetadata.d.ts
CHANGED
|
@@ -4,10 +4,9 @@ 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
|
-
|
|
9
7
|
__analytic?: Analytic;
|
|
10
8
|
__overview?: Overview;
|
|
11
9
|
__template?: Template;
|
|
10
|
+
|
|
12
11
|
__dossiers?: Dossier[];
|
|
13
12
|
};
|
|
@@ -40,12 +40,12 @@ import type { Vulnerability } from './Vulnerability';
|
|
|
40
40
|
* NOTE: This is an auto-generated file. Don't edit this manually.
|
|
41
41
|
*/
|
|
42
42
|
export interface Hit {
|
|
43
|
-
__index: 'hit';
|
|
44
43
|
agent?: Agent;
|
|
45
44
|
assemblyline?: Assemblyline;
|
|
46
45
|
aws?: Aws;
|
|
47
46
|
azure?: Azure;
|
|
48
47
|
cbs?: Cbs;
|
|
48
|
+
classification?: string;
|
|
49
49
|
cloud?: Cloud;
|
|
50
50
|
clue?: Clue;
|
|
51
51
|
container?: Container;
|