├── .github └── workflows │ └── build.yml ├── .gitignore ├── CONTRIBUTING.md ├── CTI_Blueprints_One_Pager.pdf ├── LICENSE ├── README.md ├── samples ├── CTID Campaign Sample Report.pdf ├── CTID Executive Sample Report.pdf ├── CTID Intrusion Analysis Sample Report.pdf └── CTID Threat Actor Sample Report.pdf ├── src ├── cti_authoring_tool │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo.png │ │ └── settings.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── configuration │ │ │ │ ├── app.config.js │ │ │ │ ├── app.config.ts │ │ │ │ ├── organization.png │ │ │ │ ├── plugins │ │ │ │ │ ├── ImportCSVPlugin.ts │ │ │ │ │ ├── MitreAttackFlowPlugin.ts │ │ │ │ │ ├── MitreAttackMaps.ts │ │ │ │ │ ├── MitreAttackSmartDropdownsPlugin.ts │ │ │ │ │ ├── MitreDefendPlugin.ts │ │ │ │ │ └── TextMetricsPlugin.ts │ │ │ │ ├── product.png │ │ │ │ ├── properties │ │ │ │ │ ├── Activity.ts │ │ │ │ │ ├── Artifact.ts │ │ │ │ │ ├── Assessment.ts │ │ │ │ │ ├── Attribution.ts │ │ │ │ │ ├── Control.ts │ │ │ │ │ ├── Criticality.ts │ │ │ │ │ ├── CveCvssScore.ts │ │ │ │ │ ├── CveNumber.ts │ │ │ │ │ ├── CvePatchApplied.ts │ │ │ │ │ ├── CvePatchAvailable.ts │ │ │ │ │ ├── CveRemediation.ts │ │ │ │ │ ├── Cves.ts │ │ │ │ │ ├── DateReported.ts │ │ │ │ │ ├── Defend.ts │ │ │ │ │ ├── Details.ts │ │ │ │ │ ├── ExecutiveSummary.ts │ │ │ │ │ ├── FirstReported.ts │ │ │ │ │ ├── IndicatorAnalysis.ts │ │ │ │ │ ├── Infrastructure.ts │ │ │ │ │ ├── IntelligenceRequirement.ts │ │ │ │ │ ├── IntelligenceRequirements.ts │ │ │ │ │ ├── InternalTelemetry.ts │ │ │ │ │ ├── InternalTelemetryTable.ts │ │ │ │ │ ├── IocAssociatedFileHash.ts │ │ │ │ │ ├── IocMalwareDescription.ts │ │ │ │ │ ├── IocMalwareHash.ts │ │ │ │ │ ├── IocMalwareHashType.ts │ │ │ │ │ ├── IocMalwareName.ts │ │ │ │ │ ├── IocMalwareSandbox.ts │ │ │ │ │ ├── IocsMalware.ts │ │ │ │ │ ├── IocsNetwork.ts │ │ │ │ │ ├── KeyIntelligenceGaps.ts │ │ │ │ │ ├── KeyPoints.ts │ │ │ │ │ ├── LastReported.ts │ │ │ │ │ ├── LocationGranular.ts │ │ │ │ │ ├── LocationRegion.ts │ │ │ │ │ ├── MitreAttackTable.ts │ │ │ │ │ ├── MitreAttackTableSimple.ts │ │ │ │ │ ├── NetworkIntrusionPhase.ts │ │ │ │ │ ├── Outlook.ts │ │ │ │ │ ├── Procedure.ts │ │ │ │ │ ├── ReportCitations.ts │ │ │ │ │ ├── ReportNumber.ts │ │ │ │ │ ├── ReportTitle.ts │ │ │ │ │ ├── Sector.ts │ │ │ │ │ ├── Sensitivity.ts │ │ │ │ │ ├── SignatureDescription.ts │ │ │ │ │ ├── Signatures.ts │ │ │ │ │ ├── SubTechnique.ts │ │ │ │ │ ├── SystemArtifactType.ts │ │ │ │ │ ├── SystemArtifacts.ts │ │ │ │ │ ├── Tactic.ts │ │ │ │ │ ├── Technique.ts │ │ │ │ │ ├── ThreatActorAliases.ts │ │ │ │ │ ├── ThreatActorAttribution.ts │ │ │ │ │ ├── ThreatActorAttributions.ts │ │ │ │ │ ├── ThreatActorInfrastructure.ts │ │ │ │ │ ├── ThreatActorMotivation.ts │ │ │ │ │ ├── ThreatActorName.ts │ │ │ │ │ ├── ThreatActorSummary.ts │ │ │ │ │ ├── ThreatActorVictims.ts │ │ │ │ │ ├── ThreatActorsTtp.ts │ │ │ │ │ ├── Timeline.ts │ │ │ │ │ ├── TimelineEndDate.ts │ │ │ │ │ ├── TimelineStartDate.ts │ │ │ │ │ ├── Timestamp.ts │ │ │ │ │ ├── TrafficLightProtocol.ts │ │ │ │ │ ├── VictimName.ts │ │ │ │ │ └── Victims.ts │ │ │ │ ├── sections │ │ │ │ │ ├── AssessmentSection.ts │ │ │ │ │ ├── CampaignMetadataSection.ts │ │ │ │ │ ├── DataSourcesSection.ts │ │ │ │ │ ├── ExecutiveSummarySection.ts │ │ │ │ │ ├── GeneralSection.ts │ │ │ │ │ ├── IndicatorAnalysisSection.ts │ │ │ │ │ ├── IntelligenceRequirementsSection.ts │ │ │ │ │ ├── IntrusionAnalysisMetadataSection.ts │ │ │ │ │ ├── IocsSection.ts │ │ │ │ │ ├── KeyIntelligenceGapsSection.ts │ │ │ │ │ ├── KeyPointsSection.ts │ │ │ │ │ ├── MitreAttackTableIaSection.ts │ │ │ │ │ ├── MitreAttackTableSection.ts │ │ │ │ │ ├── OutlookSection.ts │ │ │ │ │ ├── SignaturesSection.ts │ │ │ │ │ ├── ThreatActorMetadataSection.ts │ │ │ │ │ ├── ThreatActorSummarySection.ts │ │ │ │ │ ├── TimelineSection.ts │ │ │ │ │ └── VictimsSection.ts │ │ │ │ └── templates │ │ │ │ │ ├── Campaign.ts │ │ │ │ │ ├── Executive.ts │ │ │ │ │ ├── IntrusionAnalysis.ts │ │ │ │ │ └── ThreatActorProfile.ts │ │ │ ├── fonts │ │ │ │ ├── Inter-Black.woff │ │ │ │ ├── Inter-Black.woff2 │ │ │ │ ├── Inter-BlackItalic.woff │ │ │ │ ├── Inter-BlackItalic.woff2 │ │ │ │ ├── Inter-Bold.woff │ │ │ │ ├── Inter-Bold.woff2 │ │ │ │ ├── Inter-BoldItalic.woff │ │ │ │ ├── Inter-BoldItalic.woff2 │ │ │ │ ├── Inter-ExtraBold.woff │ │ │ │ ├── Inter-ExtraBold.woff2 │ │ │ │ ├── Inter-ExtraBoldItalic.woff │ │ │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ │ │ ├── Inter-ExtraLight.woff │ │ │ │ ├── Inter-ExtraLight.woff2 │ │ │ │ ├── Inter-ExtraLightItalic.woff │ │ │ │ ├── Inter-ExtraLightItalic.woff2 │ │ │ │ ├── Inter-Italic.woff │ │ │ │ ├── Inter-Italic.woff2 │ │ │ │ ├── Inter-Light.woff │ │ │ │ ├── Inter-Light.woff2 │ │ │ │ ├── Inter-LightItalic.woff │ │ │ │ ├── Inter-LightItalic.woff2 │ │ │ │ ├── Inter-Medium.woff │ │ │ │ ├── Inter-Medium.woff2 │ │ │ │ ├── Inter-MediumItalic.woff │ │ │ │ ├── Inter-MediumItalic.woff2 │ │ │ │ ├── Inter-Regular.woff │ │ │ │ ├── Inter-Regular.woff2 │ │ │ │ ├── Inter-SemiBold.woff │ │ │ │ ├── Inter-SemiBold.woff2 │ │ │ │ ├── Inter-SemiBoldItalic.woff │ │ │ │ ├── Inter-SemiBoldItalic.woff2 │ │ │ │ ├── Inter-Thin.woff │ │ │ │ ├── Inter-Thin.woff2 │ │ │ │ ├── Inter-ThinItalic.woff │ │ │ │ ├── Inter-ThinItalic.woff2 │ │ │ │ ├── Inter-italic.var.woff2 │ │ │ │ ├── Inter-roman.var.woff2 │ │ │ │ ├── Inter.var.woff2 │ │ │ │ ├── Roboto-Mono-Regular-Latin-Ext.woff2 │ │ │ │ ├── Roboto-Mono-Regular-Latin.woff2 │ │ │ │ ├── inter.css │ │ │ │ └── roboto_mono.css │ │ │ ├── images │ │ │ │ └── texture.png │ │ │ └── scripts │ │ │ │ ├── Application │ │ │ │ ├── Command.ts │ │ │ │ ├── Commands │ │ │ │ │ ├── AppCommand.ts │ │ │ │ │ ├── ApplicationSettings │ │ │ │ │ │ ├── ApplicationSettings.ts │ │ │ │ │ │ ├── LoadSettings.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── FileManagement │ │ │ │ │ │ ├── FileManagement.ts │ │ │ │ │ │ ├── LoadPage.ts │ │ │ │ │ │ ├── SavePageToDevice.ts │ │ │ │ │ │ ├── SwitchActivePage.ts │ │ │ │ │ │ ├── UnloadPage.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── PageElement │ │ │ │ │ │ ├── PageElement.ts │ │ │ │ │ │ ├── RedoPageCommand.ts │ │ │ │ │ │ ├── UndoPageCommand.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── PropertyElement │ │ │ │ │ │ ├── DestroyProperty.ts │ │ │ │ │ │ ├── InvokePropertyAction.ts │ │ │ │ │ │ ├── MountProperty.ts │ │ │ │ │ │ ├── PropertyElement.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── SectionElement │ │ │ │ │ │ ├── DestroySection.ts │ │ │ │ │ │ ├── MountSection.ts │ │ │ │ │ │ ├── SectionElement.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ViewManagement │ │ │ │ │ │ ├── OpenHyperlink.ts │ │ │ │ │ │ ├── SwitchToFullscreen.ts │ │ │ │ │ │ ├── ViewManagement.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Configuration │ │ │ │ │ ├── AppBranding.ts │ │ │ │ │ ├── AppConfiguration.ts │ │ │ │ │ ├── AppSettings.ts │ │ │ │ │ ├── DocumentTemplate.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ContextMenuTypes.ts │ │ │ │ └── index.ts │ │ │ │ ├── Page │ │ │ │ ├── Events │ │ │ │ │ └── EventEmitter.ts │ │ │ │ ├── Page.ts │ │ │ │ ├── PageAccessor.ts │ │ │ │ ├── PageAssembler.ts │ │ │ │ ├── PageElement.ts │ │ │ │ ├── PageParameters.ts │ │ │ │ ├── PlugableElement.ts │ │ │ │ ├── Plugins │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ ├── PluginInstance.ts │ │ │ │ │ ├── PluginManager.ts │ │ │ │ │ ├── PluginModule.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Property │ │ │ │ │ ├── AtomicProperty │ │ │ │ │ │ ├── Alignment.ts │ │ │ │ │ │ ├── AtomicProperty.ts │ │ │ │ │ │ ├── AtomicPropertyMetric.ts │ │ │ │ │ │ ├── AtomicPropertyMetrics.ts │ │ │ │ │ │ ├── AtomicPropertyParameters.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── BasicTableProperty │ │ │ │ │ │ ├── BasicTableProperty.ts │ │ │ │ │ │ ├── BasicTablePropertyLayout.ts │ │ │ │ │ │ ├── BasicTablePropertyParameters.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ComplexTableProperty │ │ │ │ │ │ ├── ComplexTableProperty.ts │ │ │ │ │ │ ├── ComplexTablePropertyLayout.ts │ │ │ │ │ │ ├── ComplexTablePropertyParameters.ts │ │ │ │ │ │ ├── FormattedText.ts │ │ │ │ │ │ ├── SummaryParser.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DateTimeProperty │ │ │ │ │ │ ├── DateProperty.ts │ │ │ │ │ │ ├── DateTimeProperty.ts │ │ │ │ │ │ ├── TimeProperty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── EnumProperty │ │ │ │ │ │ ├── EnumProperty.ts │ │ │ │ │ │ ├── EnumPropertyParameters.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── NumberProperty │ │ │ │ │ │ ├── FloatProperty.ts │ │ │ │ │ │ ├── IntegerProperty.ts │ │ │ │ │ │ ├── NumberProperty.ts │ │ │ │ │ │ ├── NumberPropertyParameters.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Property.ts │ │ │ │ │ ├── PropertyAccessor.ts │ │ │ │ │ ├── PropertyAction.ts │ │ │ │ │ ├── PropertyAssembler.ts │ │ │ │ │ ├── PropertyParameters.ts │ │ │ │ │ ├── StringProperty │ │ │ │ │ │ ├── StringProperty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TabularProperty │ │ │ │ │ │ ├── ColumnSnapshot.ts │ │ │ │ │ │ ├── Sort.ts │ │ │ │ │ │ ├── TableColumnState.ts │ │ │ │ │ │ ├── TabularProperty.ts │ │ │ │ │ │ ├── TabularPropertyAccessor.ts │ │ │ │ │ │ ├── TabularPropertyAssembler.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ReactivitySystem.ts │ │ │ │ ├── Section │ │ │ │ │ ├── Section.ts │ │ │ │ │ ├── SectionAccessor.ts │ │ │ │ │ ├── SectionAssembler.ts │ │ │ │ │ ├── SectionLayout.ts │ │ │ │ │ ├── SectionParameters.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ ├── PageEditor │ │ │ │ ├── Commands │ │ │ │ │ ├── GroupCommand.ts │ │ │ │ │ ├── PageCommand.ts │ │ │ │ │ ├── Property │ │ │ │ │ │ ├── Atomic │ │ │ │ │ │ │ ├── Atomic.ts │ │ │ │ │ │ │ ├── DeselectAtomicProperty.ts │ │ │ │ │ │ │ └── SelectAtomicProperty.ts │ │ │ │ │ │ ├── ComplexTable │ │ │ │ │ │ │ ├── CollapseComplexTablePropertyRow.ts │ │ │ │ │ │ │ └── ComplexTable.ts │ │ │ │ │ │ ├── DateTime │ │ │ │ │ │ │ ├── DateTime.ts │ │ │ │ │ │ │ └── SetDateTimeProperty.ts │ │ │ │ │ │ ├── Enum │ │ │ │ │ │ │ ├── Enum.ts │ │ │ │ │ │ │ └── SetEnumProperty.ts │ │ │ │ │ │ ├── Number │ │ │ │ │ │ │ ├── Number.ts │ │ │ │ │ │ │ └── SetNumberProperty.ts │ │ │ │ │ │ ├── String │ │ │ │ │ │ │ ├── SetStringProperty.ts │ │ │ │ │ │ │ └── String.ts │ │ │ │ │ │ ├── Tabular │ │ │ │ │ │ │ ├── CreateTabularPropertyRow.ts │ │ │ │ │ │ │ ├── DeleteTabularPropertyRow.ts │ │ │ │ │ │ │ ├── MoveTabularPropertyRow.ts │ │ │ │ │ │ │ ├── ReorderTabularProperty.ts │ │ │ │ │ │ │ └── Tabular.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── PageEditor.ts │ │ │ │ ├── PageExporter │ │ │ │ │ ├── Nodes │ │ │ │ │ │ ├── AtomicNode.ts │ │ │ │ │ │ ├── ExportNode.ts │ │ │ │ │ │ ├── MapNode.ts │ │ │ │ │ │ ├── ObjectArrayNode.ts │ │ │ │ │ │ ├── ObjectMapNode.ts │ │ │ │ │ │ ├── Value.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── PageExporter.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── PageImporter │ │ │ │ │ ├── PageImporter.ts │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── PageTemplate.ts │ │ │ │ │ │ ├── PluginType.ts │ │ │ │ │ │ ├── PluginTypeClassMap.ts │ │ │ │ │ │ ├── Plugins.ts │ │ │ │ │ │ ├── PropertyTemplate.ts │ │ │ │ │ │ ├── PropertyType.ts │ │ │ │ │ │ ├── SectionTemplate.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ │ └── Utilities │ │ │ │ ├── Browser.ts │ │ │ │ ├── Crypto.ts │ │ │ │ ├── Events.ts │ │ │ │ ├── HotkeyObserver.ts │ │ │ │ ├── Json.ts │ │ │ │ ├── MD5.ts │ │ │ │ ├── Math.ts │ │ │ │ ├── PointerTracker.ts │ │ │ │ ├── String.ts │ │ │ │ ├── WebTypes.ts │ │ │ │ └── index.ts │ │ ├── components │ │ │ ├── Containers │ │ │ │ ├── FocusBox.vue │ │ │ │ ├── HotkeyBox.vue │ │ │ │ └── ScrollBox.vue │ │ │ ├── Controls │ │ │ │ ├── ContextMenuListing.vue │ │ │ │ ├── Fields │ │ │ │ │ ├── BasicTableField.vue │ │ │ │ │ ├── ComplexTableField.vue │ │ │ │ │ ├── DateTimeField.vue │ │ │ │ │ ├── EnumField.vue │ │ │ │ │ ├── FieldGrid.vue │ │ │ │ │ ├── NumberField.vue │ │ │ │ │ ├── OptionsList.vue │ │ │ │ │ ├── TabularField.vue │ │ │ │ │ └── TextField.vue │ │ │ │ ├── FileSelect.vue │ │ │ │ ├── PageEditor.vue │ │ │ │ ├── PageEditorSection.vue │ │ │ │ ├── SplashMenu.vue │ │ │ │ └── TitleBar.vue │ │ │ ├── Elements │ │ │ │ ├── AppHotkeyBox.vue │ │ │ │ ├── AppMetricsBar.vue │ │ │ │ └── AppTitleBar.vue │ │ │ └── Icons │ │ │ │ ├── Duplicate.vue │ │ │ │ ├── File.vue │ │ │ │ ├── MoveArrow.vue │ │ │ │ ├── MoveDots.vue │ │ │ │ └── Trash.vue │ │ ├── main.ts │ │ ├── shims-vue.d.ts │ │ └── store │ │ │ ├── StoreTypes.ts │ │ │ ├── Stores │ │ │ ├── ApplicationStore.ts │ │ │ ├── ContextMenuStore.ts │ │ │ └── HotkeyStore.ts │ │ │ └── index.ts │ ├── tsconfig.json │ └── vue.config.js └── cti_publishing_tool │ ├── .gitignore │ ├── README.md │ ├── cti_publishing_tool.py │ ├── data │ ├── An Example Campaign Report.json │ ├── An Example Executive Report.json │ ├── An Example Intrusion Analysis Report.json │ └── An Example Threat Actor Report.json │ ├── requirements.txt │ └── templates │ └── sections │ ├── TORENAME.html │ ├── assessment.html │ ├── data_sources.html │ ├── executive_summary.html │ ├── feedback.html │ ├── indicator_analysis.html │ ├── intelligence_gaps.html │ ├── intelligence_requirements.html │ ├── iocs.html │ ├── key_intelligence_gaps.html │ ├── key_points.html │ ├── metadata_generic.html │ ├── metadata_ia.html │ ├── mitre_attack_table.html │ ├── mitre_attack_table_ia.html │ ├── outlook.html │ ├── report_footer.html │ ├── report_header.html │ ├── report_intro.html │ ├── signatures.html │ ├── threat_actor.html │ ├── timeline.html │ └── victims.html └── templates ├── CTID-CampaignReportTemplate.docx ├── CTID-ExecutiveReportTemplate.docx ├── CTID-IAReportTemplate.docx └── CTID-TAReportTemplate.docx /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CTI_Blueprints_One_Pager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/CTI_Blueprints_One_Pager.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/README.md -------------------------------------------------------------------------------- /samples/CTID Campaign Sample Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/samples/CTID Campaign Sample Report.pdf -------------------------------------------------------------------------------- /samples/CTID Executive Sample Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/samples/CTID Executive Sample Report.pdf -------------------------------------------------------------------------------- /samples/CTID Intrusion Analysis Sample Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/samples/CTID Intrusion Analysis Sample Report.pdf -------------------------------------------------------------------------------- /samples/CTID Threat Actor Sample Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/samples/CTID Threat Actor Sample Report.pdf -------------------------------------------------------------------------------- /src/cti_authoring_tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/.gitignore -------------------------------------------------------------------------------- /src/cti_authoring_tool/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/CHANGELOG.md -------------------------------------------------------------------------------- /src/cti_authoring_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/README.md -------------------------------------------------------------------------------- /src/cti_authoring_tool/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/package-lock.json -------------------------------------------------------------------------------- /src/cti_authoring_tool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/package.json -------------------------------------------------------------------------------- /src/cti_authoring_tool/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/public/favicon.ico -------------------------------------------------------------------------------- /src/cti_authoring_tool/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/public/index.html -------------------------------------------------------------------------------- /src/cti_authoring_tool/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/public/logo.png -------------------------------------------------------------------------------- /src/cti_authoring_tool/public/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/public/settings.json -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/App.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/app.config.js -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/app.config.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/organization.png -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/plugins/ImportCSVPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/plugins/ImportCSVPlugin.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/plugins/MitreAttackFlowPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/plugins/MitreAttackFlowPlugin.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/plugins/MitreAttackMaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/plugins/MitreAttackMaps.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/plugins/MitreAttackSmartDropdownsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/plugins/MitreAttackSmartDropdownsPlugin.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/plugins/MitreDefendPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/plugins/MitreDefendPlugin.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/plugins/TextMetricsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/plugins/TextMetricsPlugin.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/product.png -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Activity.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Artifact.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Assessment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Assessment.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Attribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Attribution.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Control.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Criticality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Criticality.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/CveCvssScore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/CveCvssScore.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/CveNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/CveNumber.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/CvePatchApplied.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/CvePatchApplied.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/CvePatchAvailable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/CvePatchAvailable.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/CveRemediation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/CveRemediation.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Cves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Cves.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/DateReported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/DateReported.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Defend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Defend.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Details.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ExecutiveSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ExecutiveSummary.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/FirstReported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/FirstReported.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IndicatorAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IndicatorAnalysis.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Infrastructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Infrastructure.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IntelligenceRequirement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IntelligenceRequirement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IntelligenceRequirements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IntelligenceRequirements.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/InternalTelemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/InternalTelemetry.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/InternalTelemetryTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/InternalTelemetryTable.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocAssociatedFileHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocAssociatedFileHash.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareDescription.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareHash.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareHashType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareHashType.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareName.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareSandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocMalwareSandbox.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocsMalware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocsMalware.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/IocsNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/IocsNetwork.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/KeyIntelligenceGaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/KeyIntelligenceGaps.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/KeyPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/KeyPoints.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/LastReported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/LastReported.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/LocationGranular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/LocationGranular.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/LocationRegion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/LocationRegion.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/MitreAttackTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/MitreAttackTable.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/MitreAttackTableSimple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/MitreAttackTableSimple.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/NetworkIntrusionPhase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/NetworkIntrusionPhase.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Outlook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Outlook.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Procedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Procedure.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ReportCitations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ReportCitations.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ReportNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ReportNumber.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ReportTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ReportTitle.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Sector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Sector.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Sensitivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Sensitivity.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/SignatureDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/SignatureDescription.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Signatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Signatures.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/SubTechnique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/SubTechnique.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/SystemArtifactType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/SystemArtifactType.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/SystemArtifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/SystemArtifacts.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Tactic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Tactic.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Technique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Technique.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorAliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorAliases.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorAttribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorAttribution.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorAttributions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorAttributions.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorInfrastructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorInfrastructure.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorMotivation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorMotivation.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorName.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorSummary.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorVictims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorVictims.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorsTtp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/ThreatActorsTtp.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Timeline.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/TimelineEndDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/TimelineEndDate.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/TimelineStartDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/TimelineStartDate.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Timestamp.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/TrafficLightProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/TrafficLightProtocol.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/VictimName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/VictimName.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/properties/Victims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/properties/Victims.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/AssessmentSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/AssessmentSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/CampaignMetadataSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/CampaignMetadataSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/DataSourcesSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/DataSourcesSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/ExecutiveSummarySection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/ExecutiveSummarySection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/GeneralSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/GeneralSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/IndicatorAnalysisSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/IndicatorAnalysisSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/IntelligenceRequirementsSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/IntelligenceRequirementsSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/IntrusionAnalysisMetadataSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/IntrusionAnalysisMetadataSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/IocsSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/IocsSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/KeyIntelligenceGapsSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/KeyIntelligenceGapsSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/KeyPointsSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/KeyPointsSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/MitreAttackTableIaSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/MitreAttackTableIaSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/MitreAttackTableSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/MitreAttackTableSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/OutlookSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/OutlookSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/SignaturesSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/SignaturesSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/ThreatActorMetadataSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/ThreatActorMetadataSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/ThreatActorSummarySection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/ThreatActorSummarySection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/TimelineSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/TimelineSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/sections/VictimsSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/sections/VictimsSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/templates/Campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/templates/Campaign.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/templates/Executive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/templates/Executive.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/templates/IntrusionAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/templates/IntrusionAnalysis.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/configuration/templates/ThreatActorProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/configuration/templates/ThreatActorProfile.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Black.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Black.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Italic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Light.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-LightItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Thin.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Inter.var.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Roboto-Mono-Regular-Latin-Ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Roboto-Mono-Regular-Latin-Ext.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/Roboto-Mono-Regular-Latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/Roboto-Mono-Regular-Latin.woff2 -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/inter.css -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/fonts/roboto_mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/fonts/roboto_mono.css -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/images/texture.png -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Command.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/AppCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/AppCommand.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/ApplicationSettings/ApplicationSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/ApplicationSettings/ApplicationSettings.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/ApplicationSettings/LoadSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/ApplicationSettings/LoadSettings.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/ApplicationSettings/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ApplicationSettings"; -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/FileManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/FileManagement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/LoadPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/LoadPage.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/SavePageToDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/SavePageToDevice.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/SwitchActivePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/SwitchActivePage.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/UnloadPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/UnloadPage.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/FileManagement/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FileManagement"; -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PageElement/PageElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/PageElement/PageElement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PageElement/RedoPageCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/PageElement/RedoPageCommand.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PageElement/UndoPageCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/PageElement/UndoPageCommand.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PageElement/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PageElement"; 2 | -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/DestroyProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/DestroyProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/InvokePropertyAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/InvokePropertyAction.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/MountProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/MountProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/PropertyElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/PropertyElement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/PropertyElement/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PropertyElement"; -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/SectionElement/DestroySection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/SectionElement/DestroySection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/SectionElement/MountSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/SectionElement/MountSection.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/SectionElement/SectionElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/SectionElement/SectionElement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/SectionElement/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SectionElement"; -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/ViewManagement/OpenHyperlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/ViewManagement/OpenHyperlink.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/ViewManagement/SwitchToFullscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/ViewManagement/SwitchToFullscreen.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/ViewManagement/ViewManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/ViewManagement/ViewManagement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/ViewManagement/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ViewManagement"; -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Commands/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Configuration/AppBranding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Configuration/AppBranding.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Configuration/AppConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Configuration/AppConfiguration.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Configuration/AppSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Configuration/AppSettings.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Configuration/DocumentTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Configuration/DocumentTemplate.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/Configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/Configuration/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/ContextMenuTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/ContextMenuTypes.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Application/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Application/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Events/EventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Events/EventEmitter.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Page.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/PageAccessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/PageAccessor.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/PageAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/PageAssembler.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/PageElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/PageElement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/PageParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/PageParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/PlugableElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/PlugableElement.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Plugins/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Plugins/Plugin.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Plugins/PluginInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Plugins/PluginInstance.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Plugins/PluginManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Plugins/PluginManager.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Plugins/PluginModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Plugins/PluginModule.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Plugins/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/Alignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/Alignment.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicPropertyMetric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicPropertyMetric.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicPropertyMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicPropertyMetrics.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicPropertyParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/AtomicPropertyParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/AtomicProperty/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/BasicTableProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/BasicTableProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/BasicTablePropertyLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/BasicTablePropertyLayout.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/BasicTablePropertyParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/BasicTablePropertyParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/BasicTableProperty/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/ComplexTableProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/ComplexTableProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/ComplexTablePropertyLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/ComplexTablePropertyLayout.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/ComplexTablePropertyParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/ComplexTablePropertyParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/FormattedText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/FormattedText.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/SummaryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/SummaryParser.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/ComplexTableProperty/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/DateProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/DateProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/DateTimeProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/DateTimeProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/TimeProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/TimeProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/DateTimeProperty/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/EnumProperty/EnumProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/EnumProperty/EnumProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/EnumProperty/EnumPropertyParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/EnumProperty/EnumPropertyParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/EnumProperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/EnumProperty/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/FloatProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/FloatProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/IntegerProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/IntegerProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/NumberProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/NumberProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/NumberPropertyParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/NumberPropertyParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/NumberProperty/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/Property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/Property.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyAccessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyAccessor.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyAction.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyAssembler.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/PropertyParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/StringProperty/StringProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/StringProperty/StringProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/StringProperty/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./StringProperty"; 2 | -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/ColumnSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/ColumnSnapshot.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/Sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/Sort.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TableColumnState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TableColumnState.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TabularProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TabularProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TabularPropertyAccessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TabularPropertyAccessor.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TabularPropertyAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/TabularPropertyAssembler.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/TabularProperty/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Property/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Property/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/ReactivitySystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/ReactivitySystem.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Section/Section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Section/Section.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionAccessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionAccessor.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionAssembler.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionLayout.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Section/SectionParameters.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/Section/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/Section/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Page/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/GroupCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/GroupCommand.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/PageCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/PageCommand.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Atomic/Atomic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Atomic/Atomic.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Atomic/DeselectAtomicProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Atomic/DeselectAtomicProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Atomic/SelectAtomicProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Atomic/SelectAtomicProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/ComplexTable/CollapseComplexTablePropertyRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/ComplexTable/CollapseComplexTablePropertyRow.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/ComplexTable/ComplexTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/ComplexTable/ComplexTable.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/DateTime/DateTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/DateTime/DateTime.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/DateTime/SetDateTimeProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/DateTime/SetDateTimeProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Enum/Enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Enum/Enum.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Enum/SetEnumProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Enum/SetEnumProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Number/Number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Number/Number.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Number/SetNumberProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Number/SetNumberProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/String/SetStringProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/String/SetStringProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/String/String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/String/String.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/CreateTabularPropertyRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/CreateTabularPropertyRow.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/DeleteTabularPropertyRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/DeleteTabularPropertyRow.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/MoveTabularPropertyRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/MoveTabularPropertyRow.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/ReorderTabularProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/ReorderTabularProperty.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/Tabular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/Tabular/Tabular.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/Property/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/Commands/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageEditor.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/AtomicNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/AtomicNode.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/ExportNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/ExportNode.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/MapNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/MapNode.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/ObjectArrayNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/ObjectArrayNode.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/ObjectMapNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/ObjectMapNode.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/Value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/Value.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/Nodes/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/PageExporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/PageExporter.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageExporter/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/PageImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/PageImporter.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PageTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PageTemplate.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PluginType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PluginType.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PluginTypeClassMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PluginTypeClassMap.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/Plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/Plugins.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PropertyTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PropertyTemplate.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/PropertyType.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/SectionTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/SectionTemplate.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/Templates/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/PageImporter/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/PageEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/PageEditor/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/Browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/Browser.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/Crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/Crypto.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/Events.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/HotkeyObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/HotkeyObserver.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/Json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/Json.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/MD5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/MD5.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/Math.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/PointerTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/PointerTracker.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/String.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/WebTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/WebTypes.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/assets/scripts/Utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/assets/scripts/Utilities/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Containers/FocusBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Containers/FocusBox.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Containers/HotkeyBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Containers/HotkeyBox.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Containers/ScrollBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Containers/ScrollBox.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/ContextMenuListing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/ContextMenuListing.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/BasicTableField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/BasicTableField.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/ComplexTableField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/ComplexTableField.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/DateTimeField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/DateTimeField.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/EnumField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/EnumField.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/FieldGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/FieldGrid.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/NumberField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/NumberField.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/OptionsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/OptionsList.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/TabularField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/TabularField.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/Fields/TextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/Fields/TextField.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/FileSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/FileSelect.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/PageEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/PageEditor.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/PageEditorSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/PageEditorSection.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/SplashMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/SplashMenu.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Controls/TitleBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Controls/TitleBar.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Elements/AppHotkeyBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Elements/AppHotkeyBox.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Elements/AppMetricsBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Elements/AppMetricsBar.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Elements/AppTitleBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Elements/AppTitleBar.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Icons/Duplicate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Icons/Duplicate.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Icons/File.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Icons/File.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Icons/MoveArrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Icons/MoveArrow.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Icons/MoveDots.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Icons/MoveDots.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/components/Icons/Trash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/components/Icons/Trash.vue -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/main.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/store/StoreTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/store/StoreTypes.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/store/Stores/ApplicationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/store/Stores/ApplicationStore.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/store/Stores/ContextMenuStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/store/Stores/ContextMenuStore.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/store/Stores/HotkeyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/store/Stores/HotkeyStore.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/src/store/index.ts -------------------------------------------------------------------------------- /src/cti_authoring_tool/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/tsconfig.json -------------------------------------------------------------------------------- /src/cti_authoring_tool/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_authoring_tool/vue.config.js -------------------------------------------------------------------------------- /src/cti_publishing_tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/.gitignore -------------------------------------------------------------------------------- /src/cti_publishing_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/README.md -------------------------------------------------------------------------------- /src/cti_publishing_tool/cti_publishing_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/cti_publishing_tool.py -------------------------------------------------------------------------------- /src/cti_publishing_tool/data/An Example Campaign Report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/data/An Example Campaign Report.json -------------------------------------------------------------------------------- /src/cti_publishing_tool/data/An Example Executive Report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/data/An Example Executive Report.json -------------------------------------------------------------------------------- /src/cti_publishing_tool/data/An Example Intrusion Analysis Report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/data/An Example Intrusion Analysis Report.json -------------------------------------------------------------------------------- /src/cti_publishing_tool/data/An Example Threat Actor Report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/data/An Example Threat Actor Report.json -------------------------------------------------------------------------------- /src/cti_publishing_tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/requirements.txt -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/TORENAME.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/TORENAME.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/assessment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/assessment.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/data_sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/data_sources.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/executive_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/executive_summary.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/feedback.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/indicator_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/indicator_analysis.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/intelligence_gaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/intelligence_gaps.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/intelligence_requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/intelligence_requirements.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/iocs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/iocs.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/key_intelligence_gaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/key_intelligence_gaps.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/key_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/key_points.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/metadata_generic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/metadata_generic.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/metadata_ia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/metadata_ia.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/mitre_attack_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/mitre_attack_table.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/mitre_attack_table_ia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/mitre_attack_table_ia.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/outlook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/outlook.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/report_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/report_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/report_header.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/report_intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/report_intro.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/signatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/signatures.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/threat_actor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/threat_actor.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/timeline.html -------------------------------------------------------------------------------- /src/cti_publishing_tool/templates/sections/victims.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/src/cti_publishing_tool/templates/sections/victims.html -------------------------------------------------------------------------------- /templates/CTID-CampaignReportTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/templates/CTID-CampaignReportTemplate.docx -------------------------------------------------------------------------------- /templates/CTID-ExecutiveReportTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/templates/CTID-ExecutiveReportTemplate.docx -------------------------------------------------------------------------------- /templates/CTID-IAReportTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/templates/CTID-IAReportTemplate.docx -------------------------------------------------------------------------------- /templates/CTID-TAReportTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/center-for-threat-informed-defense/cti-blueprints/HEAD/templates/CTID-TAReportTemplate.docx --------------------------------------------------------------------------------