chg: [machine] cleanup of machine

pull/15/head
Christophe Vandeplas 2019-05-24 16:30:17 +02:00
parent 86bf05195d
commit 442d297b8e
1 changed files with 11 additions and 3 deletions

View File

@ -1,11 +1,19 @@
machine("misp.MISPEventToAll", machine("misp.MISPEventToAll",
displayName:"Event to All", displayName:"Event To All",
author:"Christophe Vandeplas", author:"Christophe Vandeplas",
description: "Automatically expands MISP Objects to their attributes") { description: "Automatically expands MISP Objects to their attributes") {
start { start {
run("MISP_maltego.EventToAttributes") run("MISP_maltego.EventToAttributes")
run("MISP_maltego.ObjectToAttributes")
run("MISP_maltego.AttributeToEvent") run("MISP_maltego.AttributeToEvent")
run("MISP_maltego.GalaxyToRelations") paths {
path {
run("MISP_maltego.ObjectToAttributes")
// run("MISP_maltego.AttributeToEvent")
}
path {
run("MISP_maltego.GalaxyToRelations")
}
}
} }
} }