Skip to content

Commit 5d37d8e

Browse files
committed
fix: [machines] fixes machines not working in all cases
1 parent ab9b93f commit 5d37d8e

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

src/MISP_maltego/resources/maltego/misp_MISPEventToAll.machine

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,22 @@ machine("misp.MISPEventToAll",
33
author:"Christophe Vandeplas",
44
description: "Automatically expands MISP Objects to their attributes") {
55
start {
6-
run("MISP_maltego.EventToAttributes")
7-
run("MISP_maltego.AttributeToEvent")
86
paths {
97
path {
10-
run("MISP_maltego.ObjectToAttributes")
11-
// run("MISP_maltego.AttributeToEvent")
8+
run("MISP_maltego.EventToAttributes")
9+
paths {
10+
path {
11+
run("MISP_maltego.AttributeToEvent")
12+
}
13+
path {
14+
run("MISP_maltego.ObjectToAttributes")
15+
}
16+
}
1217
}
1318
path {
19+
run("MISP_maltego.EventToTags")
1420
run("MISP_maltego.GalaxyToRelations")
15-
}
21+
}
1622
}
1723

1824
}

src/MISP_maltego/resources/maltego/misp_MISPEventToAttributes.machine

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ machine("misp.MISPEventToAttributes",
44
description: "Also automatically expands MISP Objects to their attributes") {
55
start {
66
paths {
7-
run("MISP_maltego.EventToAttributes")
87
path {
8+
run("MISP_maltego.EventToObjects")
99
run("MISP_maltego.ObjectToAttributes")
1010
}
11+
path {
12+
run("MISP_maltego.EventToAttributes")
13+
14+
}
1115
}
1216
}
1317
}

0 commit comments

Comments
 (0)