Files
sigma-rules/detection_rules/beats.py
T

247 lines
9.0 KiB
Python
Raw Normal View History

2020-06-29 23:17:38 -06:00
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
2021-03-03 22:12:11 -09:00
# or more contributor license agreements. Licensed under the Elastic License
# 2.0; you may not use this file except in compliance with the Elastic License
# 2.0.
2020-06-29 23:17:38 -06:00
"""ECS Schemas management."""
import os
import re
from typing import List
2020-06-29 23:17:38 -06:00
import kql
2020-09-16 08:36:48 -06:00
import eql
import json
2020-06-29 23:17:38 -06:00
import requests
import yaml
from .semver import Version
from .utils import DateTimeEncoder, unzip, get_etc_path, gzip_compress, read_gzip, cached
2020-06-29 23:17:38 -06:00
def _decompress_and_save_schema(url, release_name):
print(f"Downloading beats {release_name}")
response = requests.get(url)
2020-06-29 23:17:38 -06:00
print(f"Downloaded {len(response.content) / 1024.0 / 1024.0:.2f} MB release.")
fs = {}
parsed = {}
with unzip(response.content) as archive:
base_directory = archive.namelist()[0]
for name in archive.namelist():
if os.path.basename(name) in ("fields.yml", "fields.common.yml", "config.yml"):
contents = archive.read(name)
# chop off the base directory name
key = name[len(base_directory):]
if key.startswith("x-pack"):
key = key[len("x-pack") + 1:]
try:
decoded = yaml.safe_load(contents)
except yaml.YAMLError:
print(f"Error loading {name}")
# create a hierarchical structure
parsed[key] = decoded
branch = fs
directory, base_name = os.path.split(key)
for limb in directory.split(os.path.sep):
branch = branch.setdefault("folders", {}).setdefault(limb, {})
branch.setdefault("files", {})[base_name] = decoded
# remove all non-beat directories
fs = {k: v for k, v in fs.get("folders", {}).items() if k.endswith("beat")}
print(f"Saving etc/beats_schema/{release_name}.json")
compressed = gzip_compress(json.dumps(fs, sort_keys=True, cls=DateTimeEncoder))
path = get_etc_path("beats_schemas", release_name + ".json.gz")
with open(path, 'wb') as f:
f.write(compressed)
2020-06-29 23:17:38 -06:00
def download_latest_beats_schema():
"""Download additional schemas from beats releases."""
url = 'https://api.github.com/repos/elastic/beats/releases'
releases = requests.get(url)
latest_release = max(releases.json(), key=lambda release: Version(release["tag_name"].lstrip("v")))
beats_url = latest_release['zipball_url']
name = latest_release['tag_name']
_decompress_and_save_schema(beats_url, name)
def refresh_master_schema():
"""Download and refresh beats schema from master."""
_decompress_and_save_schema('https://github.com/elastic/beats/archive/master.zip', 'master')
2020-06-29 23:17:38 -06:00
def _flatten_schema(schema: list, prefix="") -> list:
if schema is None:
# sometimes we see `fields: null` in the yaml
return []
flattened = []
for s in schema:
if s.get("type") == "group":
nested_prefix = prefix + s["name"] + "."
# beats is complicated. it seems lke we would expect a zoom.webhook.*, for the zoom.webhook dataset,
# but instead it's just at zoom.* directly.
#
# we have what looks like zoom.zoom.*, but should actually just be zoom.*.
# this is one quick heuristic to determine if a submodule nests fields at the parent.
# it's probably not perfect, but we can fix other bugs as we run into them later
if len(schema) == 1 and nested_prefix.startswith(prefix + prefix):
nested_prefix = s["name"] + "."
flattened.extend(_flatten_schema(s["fields"], prefix=nested_prefix))
2020-06-29 23:17:38 -06:00
elif "fields" in s:
flattened.extend(_flatten_schema(s["fields"], prefix=prefix))
elif "name" in s:
2020-06-29 23:17:38 -06:00
s = s.copy()
# type is implicitly keyword if not defined
# example: https://github.com/elastic/beats/blob/master/packetbeat/_meta/fields.common.yml#L7-L12
s.setdefault("type", "keyword")
2020-06-29 23:17:38 -06:00
s["name"] = prefix + s["name"]
flattened.append(s)
return flattened
def get_field_schema(base_directory, prefix="", include_common=False):
base_directory = base_directory.get("folders", {}).get("_meta", {}).get("files", {})
flattened = []
file_names = ("fields.yml", "fields.common.yml") if include_common else ("fields.yml", )
for name in file_names:
if name in base_directory:
flattened.extend(_flatten_schema(base_directory[name], prefix=prefix))
return flattened
def get_beat_root_schema(schema: dict, beat: str):
2020-06-29 23:17:38 -06:00
if beat not in schema:
raise KeyError(f"Unknown beats module {beat}")
beat_dir = schema[beat]
flattened = get_field_schema(beat_dir, include_common=True)
return {field["name"]: field for field in sorted(flattened, key=lambda f: f["name"])}
def get_beats_sub_schema(schema: dict, beat: str, module: str, *datasets: str):
if beat not in schema:
raise KeyError(f"Unknown beats module {beat}")
2020-06-29 23:17:38 -06:00
flattened = []
beat_dir = schema[beat]
2020-06-29 23:17:38 -06:00
module_dir = beat_dir.get("folders", {}).get("module", {}).get("folders", {}).get(module, {})
# if we only have a module then we'll work with what we got
if not datasets:
datasets = [d for d in module_dir.get("folders", {}) if not d.startswith("_")]
for dataset in datasets:
# replace aws.s3 -> s3
if dataset.startswith(module + "."):
dataset = dataset[len(module) + 1:]
dataset_dir = module_dir.get("folders", {}).get(dataset, {})
flattened.extend(get_field_schema(dataset_dir, prefix=module + ".", include_common=True))
return {field["name"]: field for field in sorted(flattened, key=lambda f: f["name"])}
2020-09-16 08:36:48 -06:00
@cached
def get_versions() -> List[Version]:
versions = []
for filename in os.listdir(get_etc_path("beats_schemas")):
version_match = re.match(r'v(.+)\.json\.gz', filename)
if version_match:
versions.append(Version(version_match.groups()[0]))
return versions
@cached
def get_max_version() -> str:
return str(max(get_versions()))
@cached
def read_beats_schema(version: str = None):
if version and version.lower() == 'master':
return json.loads(read_gzip(get_etc_path('beats_schemas', 'master.json.gz')))
version = Version(version) if version else None
beats_schemas = get_versions()
if version and version not in beats_schemas:
raise ValueError(f'Unknown beats schema: {version}')
version = version or get_max_version()
2020-06-29 23:17:38 -06:00
return json.loads(read_gzip(get_etc_path('beats_schemas', f'v{version}.json.gz')))
2020-06-29 23:17:38 -06:00
def get_schema_from_datasets(beats, modules, datasets, version=None):
2020-06-29 23:17:38 -06:00
filtered = {}
beats_schema = read_beats_schema(version=version)
2020-06-29 23:17:38 -06:00
# infer the module if only a dataset are defined
if not modules:
modules.update(ds.split(".")[0] for ds in datasets if "." in ds)
2020-06-29 23:17:38 -06:00
for beat in beats:
# if no modules are specified then grab them all
# all_modules = list(beats_schema.get(beat, {}).get("folders", {}).get("module", {}).get("folders", {}))
# beat_modules = modules or all_modules
filtered.update(get_beat_root_schema(beats_schema, beat))
2020-06-29 23:17:38 -06:00
for module in modules:
filtered.update(get_beats_sub_schema(beats_schema, beat, module, *datasets))
2020-06-29 23:17:38 -06:00
return filtered
2020-09-16 08:36:48 -06:00
def get_schema_from_eql(tree: eql.ast.BaseNode, beats: list, version: str = None) -> dict:
2020-09-16 08:36:48 -06:00
modules = set()
datasets = set()
# extract out event.module and event.dataset from the query's AST
for node in tree:
if isinstance(node, eql.ast.Comparison) and node.comparator == node.EQ and \
isinstance(node.right, eql.ast.String):
if node.left == eql.ast.Field("event", ["module"]):
modules.add(node.right.render())
elif node.left == eql.ast.Field("event", ["dataset"]):
datasets.add(node.right.render())
elif isinstance(node, eql.ast.InSet):
if node.expression == eql.ast.Field("event", ["module"]):
modules.add(node.get_literals())
elif node.expression == eql.ast.Field("event", ["dataset"]):
datasets.add(node.get_literals())
return get_schema_from_datasets(beats, modules, datasets, version=version)
2020-09-16 08:36:48 -06:00
def get_schema_from_kql(tree: kql.ast.BaseNode, beats: list, version: str = None) -> dict:
2020-09-16 08:36:48 -06:00
modules = set()
datasets = set()
# extract out event.module and event.dataset from the query's AST
for node in tree:
if isinstance(node, kql.ast.FieldComparison) and node.field == kql.ast.Field("event.module"):
modules.update(child.value for child in node.value if isinstance(child, kql.ast.String))
if isinstance(node, kql.ast.FieldComparison) and node.field == kql.ast.Field("event.dataset"):
datasets.update(child.value for child in node.value if isinstance(child, kql.ast.String))
return get_schema_from_datasets(beats, modules, datasets, version=version)