mirror of https://github.com/MISP/misp-objects
new: [query] query object to describe search queries on SIEM and other tools
MISP object template designed following requests and especially this twitter thread: https://twitter.com/castello_johnny/status/1540610057263628289 I added a list of sane default based on the ones I have seen being used: "sane_default": [ "event query language (eql)", "keyword query language (kql)", "Query DSL", "Query (Elastic Search)", "Sigma", "Lucene query", "Google search query", "Ariel Query Language (qradar)", "Grep", "Devo LINQ" ], Thanks to Gianni Castaldi and others for ideas. The object can be expanded and improved over the time and the needs to share new queries.pull/364/head
parent
4badc17a84
commit
07b6883c93
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"attributes": {
|
||||
"author": {
|
||||
"description": "Author of the query",
|
||||
"disable_correlation": true,
|
||||
"misp-attribute": "text",
|
||||
"ui-priority": 0
|
||||
},
|
||||
"comment": {
|
||||
"description": "A description of the query rule.",
|
||||
"misp-attribute": "comment",
|
||||
"ui-priority": 0
|
||||
},
|
||||
"format": {
|
||||
"description": "Format of the query.",
|
||||
"disable_correlation": true,
|
||||
"misp-attribute": "text",
|
||||
"sane_default": [
|
||||
"event query language (eql)",
|
||||
"keyword query language (kql)",
|
||||
"Query DSL",
|
||||
"Query (Elastic Search)",
|
||||
"Sigma",
|
||||
"Lucene query",
|
||||
"Google search query",
|
||||
"Ariel Query Language (qradar)",
|
||||
"Grep",
|
||||
"Devo LINQ"
|
||||
],
|
||||
"ui-priority": 0
|
||||
},
|
||||
"query": {
|
||||
"description": "Query rule in the format specified in the format field.",
|
||||
"misp-attribute": "text",
|
||||
"ui-priority": 0
|
||||
},
|
||||
"query-rule-name": {
|
||||
"description": "Query rule name.",
|
||||
"misp-attribute": "text",
|
||||
"ui-priority": 0
|
||||
}
|
||||
},
|
||||
"description": "An object describing a query, along with its format.",
|
||||
"meta-category": "misc",
|
||||
"name": "query",
|
||||
"requiredOneOf": [
|
||||
"query"
|
||||
],
|
||||
"uuid": "006539b3-f68a-4a02-a213-e600762d39b5",
|
||||
"version": 1
|
||||
}
|
Loading…
Reference in New Issue