Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: OpenCTI-Platform/opencti
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6c584ad81e60911c1d95fe1fe26507660a0f83be
Choose a base ref
..
head repository: OpenCTI-Platform/opencti
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 671eae4a33fd572db52646b3088a66452addc084
Choose a head ref
Original file line number Diff line number Diff line change
@@ -144,7 +144,6 @@ const EntityStixCoreRelationshipsRelationshipsView: FunctionComponent<EntityStix
orderBy: (sortBy && (sortBy in dataColumns) && dataColumns[sortBy].isSortable) ? sortBy : 'relationship_type',
orderMode: orderAsc ? 'asc' : 'desc',
filters: contextFilters,
fromTypes: stixCoreObjectTypes,
};

const {
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@ class ThreatActorGroupKnowledgeComponent extends Component {
element={
<EntityStixCoreRelationships
entityId={threatActorGroup.id}
relationshipTypes={['related-to', 'part-of', 'cooperates-with', 'employed-by', 'derived-from']}
relationshipTypes={['part-of', 'cooperates-with', 'employed-by', 'derived-from']}
stixCoreObjectTypes={['Threat-Actor']}
entityLink={link}
defaultStartTime={threatActorGroup.first_seen}
@@ -90,7 +90,7 @@ class ThreatActorGroupKnowledgeComponent extends Component {
element={
<EntityStixCoreRelationships
entityId={threatActorGroup.id}
relationshipTypes={['related-to', 'attributed-to']}
relationshipTypes={['attributed-to']}
stixCoreObjectTypes={['Intrusion-Set']}
entityLink={link}
defaultStartTime={threatActorGroup.first_seen}
@@ -104,7 +104,7 @@ class ThreatActorGroupKnowledgeComponent extends Component {
element={
<EntityStixCoreRelationships
entityId={threatActorGroup.id}
relationshipTypes={['related-to', 'attributed-to', 'participates-in']}
relationshipTypes={['attributed-to', 'participates-in']}
stixCoreObjectTypes={['Campaign']}
entityLink={link}
defaultStartTime={threatActorGroup.first_seen}