47d7a3acaa
Co-authored-by: Justin Ibarra <16747370+brokensound77@users.noreply.github.com> Co-authored-by: brokensound77 <brokensound77@users.noreply.github.com> Co-authored-by: Mika Ayenson <Mikaayenson@users.noreply.github.com> Co-authored-by: Mika Ayenson <mika.ayenson@elastic.co>
247 lines
9.8 KiB
Python
247 lines
9.8 KiB
Python
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
# 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.
|
|
|
|
import copy
|
|
import datetime
|
|
import functools
|
|
import os
|
|
import typing
|
|
from pathlib import Path
|
|
from typing import List, Optional
|
|
|
|
import click
|
|
|
|
import kql
|
|
|
|
from . import ecs
|
|
from .attack import build_threat_map_entry, matrix, tactics
|
|
from .rule import BYPASS_VERSION_LOCK, TOMLRule, TOMLRuleContents
|
|
from .rule_loader import (DEFAULT_PREBUILT_BBR_DIRS,
|
|
DEFAULT_PREBUILT_RULES_DIRS, RuleCollection,
|
|
dict_filter)
|
|
from .schemas import definitions
|
|
from .utils import clear_caches
|
|
|
|
|
|
def single_collection(f):
|
|
"""Add arguments to get a RuleCollection by file, directory or a list of IDs"""
|
|
from .misc import client_error
|
|
|
|
@click.option('--rule-file', '-f', multiple=False, required=False, type=click.Path(dir_okay=False))
|
|
@click.option('--rule-id', '-id', multiple=False, required=False)
|
|
@functools.wraps(f)
|
|
def get_collection(*args, **kwargs):
|
|
rule_name: List[str] = kwargs.pop("rule_name", [])
|
|
rule_id: List[str] = kwargs.pop("rule_id", [])
|
|
rule_files: List[str] = kwargs.pop("rule_file")
|
|
directories: List[str] = kwargs.pop("directory")
|
|
|
|
rules = RuleCollection()
|
|
|
|
if bool(rule_name) + bool(rule_id) + bool(rule_files) != 1:
|
|
client_error('Required: exactly one of --rule-id, --rule-file, or --directory')
|
|
|
|
rules.load_files(Path(p) for p in rule_files)
|
|
rules.load_directories(Path(d) for d in directories)
|
|
|
|
if rule_id:
|
|
rules.load_directories(DEFAULT_PREBUILT_RULES_DIRS + DEFAULT_PREBUILT_BBR_DIRS,
|
|
obj_filter=dict_filter(rule__rule_id=rule_id))
|
|
if len(rules) != 1:
|
|
client_error(f"Could not find rule with ID {rule_id}")
|
|
|
|
kwargs["rules"] = rules
|
|
return f(*args, **kwargs)
|
|
|
|
return get_collection
|
|
|
|
|
|
def multi_collection(f):
|
|
"""Add arguments to get a RuleCollection by file, directory or a list of IDs"""
|
|
from .misc import client_error
|
|
|
|
@click.option("--rule-file", "-f", multiple=True, type=click.Path(dir_okay=False), required=False)
|
|
@click.option("--directory", "-d", multiple=True, type=click.Path(file_okay=False), required=False,
|
|
help="Recursively load rules from a directory")
|
|
@click.option("--rule-id", "-id", multiple=True, required=False)
|
|
@functools.wraps(f)
|
|
def get_collection(*args, **kwargs):
|
|
rule_id: List[str] = kwargs.pop("rule_id", [])
|
|
rule_files: List[str] = kwargs.pop("rule_file")
|
|
directories: List[str] = kwargs.pop("directory")
|
|
|
|
rules = RuleCollection()
|
|
|
|
if not (directories or rule_id or rule_files or (DEFAULT_PREBUILT_RULES_DIRS + DEFAULT_PREBUILT_BBR_DIRS)):
|
|
client_error("Required: at least one of --rule-id, --rule-file, or --directory")
|
|
|
|
rules.load_files(Path(p) for p in rule_files)
|
|
rules.load_directories(Path(d) for d in directories)
|
|
|
|
if rule_id:
|
|
rules.load_directories(
|
|
DEFAULT_PREBUILT_RULES_DIRS + DEFAULT_PREBUILT_BBR_DIRS, obj_filter=dict_filter(rule__rule_id=rule_id)
|
|
)
|
|
found_ids = {rule.id for rule in rules}
|
|
missing = set(rule_id).difference(found_ids)
|
|
|
|
if missing:
|
|
client_error(f'Could not find rules with IDs: {", ".join(missing)}')
|
|
elif not rule_files and not directories:
|
|
rules.load_directories(Path(d) for d in (DEFAULT_PREBUILT_RULES_DIRS + DEFAULT_PREBUILT_BBR_DIRS))
|
|
|
|
if len(rules) == 0:
|
|
client_error("No rules found")
|
|
|
|
kwargs["rules"] = rules
|
|
return f(*args, **kwargs)
|
|
|
|
return get_collection
|
|
|
|
|
|
def rule_prompt(path=None, rule_type=None, required_only=True, save=True, verbose=False,
|
|
additional_required: Optional[list] = None, skip_errors: bool = False, strip_none_values=True, **kwargs,
|
|
) -> TOMLRule:
|
|
"""Prompt loop to build a rule."""
|
|
from .misc import schema_prompt
|
|
|
|
additional_required = additional_required or []
|
|
creation_date = datetime.date.today().strftime("%Y/%m/%d")
|
|
if verbose and path:
|
|
click.echo(f'[+] Building rule for {path}')
|
|
|
|
kwargs = copy.deepcopy(kwargs)
|
|
|
|
rule_name = kwargs.get('name')
|
|
|
|
if 'rule' in kwargs and 'metadata' in kwargs:
|
|
kwargs.update(kwargs.pop('metadata'))
|
|
kwargs.update(kwargs.pop('rule'))
|
|
|
|
rule_type = rule_type or kwargs.get('type') or \
|
|
click.prompt('Rule type', type=click.Choice(typing.get_args(definitions.RuleType)))
|
|
|
|
target_data_subclass = TOMLRuleContents.get_data_subclass(rule_type)
|
|
schema = target_data_subclass.jsonschema()
|
|
props = schema['properties']
|
|
required_fields = schema.get('required', []) + additional_required
|
|
contents = {}
|
|
skipped = []
|
|
|
|
for name, options in props.items():
|
|
|
|
if name == 'type':
|
|
contents[name] = rule_type
|
|
continue
|
|
|
|
# these are set at package release time depending on the version strategy
|
|
if (name == 'version' or name == 'revision') and not BYPASS_VERSION_LOCK:
|
|
continue
|
|
|
|
if required_only and name not in required_fields:
|
|
continue
|
|
|
|
# build this from technique ID
|
|
if name == 'threat':
|
|
threat_map = []
|
|
if not skip_errors:
|
|
while click.confirm('add mitre tactic?'):
|
|
tactic = schema_prompt('mitre tactic name', type='string', enum=tactics, is_required=True)
|
|
technique_ids = schema_prompt(f'technique or sub-technique IDs for {tactic}', type='array',
|
|
is_required=False, enum=list(matrix[tactic])) or []
|
|
|
|
try:
|
|
threat_map.append(build_threat_map_entry(tactic, *technique_ids))
|
|
except KeyError as e:
|
|
click.secho(f'Unknown ID: {e.args[0]} - entry not saved for: {tactic}', fg='red', err=True)
|
|
continue
|
|
except ValueError as e:
|
|
click.secho(f'{e} - entry not saved for: {tactic}', fg='red', err=True)
|
|
continue
|
|
|
|
if len(threat_map) > 0:
|
|
contents[name] = threat_map
|
|
continue
|
|
|
|
if kwargs.get(name):
|
|
contents[name] = schema_prompt(name, value=kwargs.pop(name))
|
|
continue
|
|
|
|
if name == "new_terms":
|
|
# patch to allow new_term imports
|
|
result = {"field": "new_terms_fields"}
|
|
result["value"] = schema_prompt("new_terms_fields", value=kwargs.pop("new_terms_fields"))
|
|
history_window_start_value = kwargs.pop("history_window_start", None)
|
|
result["history_window_start"] = [
|
|
{
|
|
"field": "history_window_start",
|
|
"value": schema_prompt("history_window_start", value=history_window_start_value),
|
|
}
|
|
]
|
|
|
|
else:
|
|
if skip_errors:
|
|
# return missing information
|
|
return f"Rule: {kwargs["id"]}, Rule Name: {rule_name} is missing {name} information"
|
|
else:
|
|
result = schema_prompt(name, is_required=name in required_fields, **options.copy())
|
|
if result:
|
|
if name not in required_fields and result == options.get('default', ''):
|
|
skipped.append(name)
|
|
continue
|
|
|
|
contents[name] = result
|
|
|
|
# DEFAULT_PREBUILT_RULES_DIRS[0] is a required directory just as a suggestion
|
|
suggested_path = Path(DEFAULT_PREBUILT_RULES_DIRS[0]) / contents['name']
|
|
path = Path(path or input(f'File path for rule [{suggested_path}]: ') or suggested_path).resolve()
|
|
meta = {'creation_date': creation_date, 'updated_date': creation_date, 'maturity': 'development'}
|
|
|
|
try:
|
|
rule = TOMLRule(path=Path(path), contents=TOMLRuleContents.from_dict({'rule': contents, 'metadata': meta}))
|
|
except kql.KqlParseError as e:
|
|
if skip_errors:
|
|
return f"Rule: {kwargs['id']}, Rule Name: {rule_name} query failed to parse: {e.error_msg}"
|
|
if e.error_msg == 'Unknown field':
|
|
warning = ('If using a non-ECS field, you must update "ecs{}.non-ecs-schema.json" under `beats` or '
|
|
'`legacy-endgame` (Non-ECS fields should be used minimally).'.format(os.path.sep))
|
|
click.secho(e.args[0], fg='red', err=True)
|
|
click.secho(warning, fg='yellow', err=True)
|
|
click.pause()
|
|
|
|
# if failing due to a query, loop until resolved or terminated
|
|
while True:
|
|
try:
|
|
contents['query'] = click.edit(contents['query'], extension='.eql')
|
|
rule = TOMLRule(path=Path(path),
|
|
contents=TOMLRuleContents.from_dict({'rule': contents, 'metadata': meta}))
|
|
except kql.KqlParseError as e:
|
|
click.secho(e.args[0], fg='red', err=True)
|
|
click.pause()
|
|
|
|
if e.error_msg.startswith("Unknown field"):
|
|
# get the latest schema for schema errors
|
|
clear_caches()
|
|
ecs.get_kql_schema(indexes=contents.get("index", []))
|
|
continue
|
|
|
|
break
|
|
except Exception as e:
|
|
if skip_errors:
|
|
return f"Rule: {kwargs['id']}, Rule Name: {rule_name} failed: {e}"
|
|
raise e
|
|
|
|
if save:
|
|
rule.save_toml(strip_none_values=strip_none_values)
|
|
|
|
if skipped:
|
|
print('Did not set the following values because they are un-required when set to the default value')
|
|
print(' - {}'.format('\n - '.join(skipped)))
|
|
|
|
# rta_mappings.add_rule_to_mapping_file(rule)
|
|
# click.echo('Placeholder added to rule-mapping.yaml')
|
|
|
|
return rule
|