2020-06-29 23:21:42 -06:00
|
|
|
#################
|
|
|
|
|
### detection-rules
|
|
|
|
|
#################
|
|
|
|
|
|
2025-06-13 11:45:54 -04:00
|
|
|
APP_NAME := detection-rules
|
2020-06-29 23:21:42 -06:00
|
|
|
VENV := ./env/detection-rules-build
|
|
|
|
|
VENV_BIN := $(VENV)/bin
|
|
|
|
|
PYTHON := $(VENV_BIN)/python
|
2024-03-14 20:18:32 -05:00
|
|
|
PIP := $(VENV_BIN)/pip
|
2020-06-29 23:21:42 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
|
all: release
|
|
|
|
|
|
|
|
|
|
$(VENV):
|
2024-03-14 20:18:32 -05:00
|
|
|
python3.12 -m venv $(VENV)
|
2020-06-29 23:21:42 -06:00
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
|
clean:
|
2024-03-14 20:18:32 -05:00
|
|
|
rm -rf $(VENV) *.egg-info .eggs .egg htmlcov build dist packages .build .tmp .tox __pycache__ lib/kql/build lib/kibana/build lib/kql/*.egg-info lib/kibana/*.egg-info
|
2020-06-29 23:21:42 -06:00
|
|
|
|
|
|
|
|
.PHONY: deps
|
2024-05-13 14:29:03 -05:00
|
|
|
deps: $(VENV)
|
2024-03-14 20:18:32 -05:00
|
|
|
@echo "Installing all dependencies..."
|
2022-12-08 15:49:49 -05:00
|
|
|
$(PIP) install .[dev]
|
2024-07-11 14:19:41 -07:00
|
|
|
$(PIP) install lib/kibana
|
|
|
|
|
$(PIP) install lib/kql
|
2020-06-29 23:21:42 -06:00
|
|
|
|
2024-10-03 12:47:40 -04:00
|
|
|
.PHONY: hunting-deps
|
2025-06-13 11:45:54 -04:00
|
|
|
hunting-deps: $(VENV)
|
2024-10-03 12:47:40 -04:00
|
|
|
@echo "Installing all dependencies..."
|
|
|
|
|
$(PIP) install .[hunting]
|
|
|
|
|
|
2020-06-29 23:21:42 -06:00
|
|
|
.PHONY: pytest
|
|
|
|
|
pytest: $(VENV) deps
|
|
|
|
|
$(PYTHON) -m detection_rules test
|
|
|
|
|
|
|
|
|
|
.PHONY: license-check
|
|
|
|
|
license-check: $(VENV) deps
|
|
|
|
|
@echo "LICENSE CHECK"
|
2020-10-07 22:15:33 +02:00
|
|
|
$(PYTHON) -m detection_rules dev license-check
|
2020-06-29 23:21:42 -06:00
|
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
|
lint: $(VENV) deps
|
|
|
|
|
@echo "LINTING"
|
2025-07-01 15:20:55 +02:00
|
|
|
$(PYTHON) -m ruff check --exit-non-zero-on-fix
|
|
|
|
|
$(PYTHON) -m ruff format --check
|
|
|
|
|
$(PYTHON) -m pyright
|
2020-06-29 23:21:42 -06:00
|
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
|
test: $(VENV) lint pytest
|
|
|
|
|
|
2024-03-19 14:07:16 -05:00
|
|
|
.PHONY: test-cli
|
2024-07-11 14:19:41 -07:00
|
|
|
test-cli: $(VENV) deps
|
2024-03-19 14:07:16 -05:00
|
|
|
@echo "Executing test_cli script..."
|
|
|
|
|
@./detection_rules/etc/test_cli.bash
|
|
|
|
|
|
|
|
|
|
.PHONY: test-remote-cli
|
2024-07-11 14:19:41 -07:00
|
|
|
test-remote-cli: $(VENV) deps
|
2024-03-19 14:07:16 -05:00
|
|
|
@echo "Executing test_remote_cli script..."
|
|
|
|
|
@./detection_rules/etc/test_remote_cli.bash
|
|
|
|
|
|
2024-10-03 12:47:40 -04:00
|
|
|
.PHONY: test-hunting-cli
|
2025-06-13 11:45:54 -04:00
|
|
|
test-hunting-cli: $(VENV) hunting-deps
|
2024-10-03 12:47:40 -04:00
|
|
|
@echo "Executing test_hunting_cli script..."
|
|
|
|
|
@./detection_rules/etc/test_hunting_cli.bash
|
|
|
|
|
|
2020-06-29 23:21:42 -06:00
|
|
|
.PHONY: release
|
|
|
|
|
release: deps
|
2025-06-13 11:45:54 -04:00
|
|
|
@echo "RELEASE: $(APP_NAME)"
|
2022-03-04 09:55:11 -09:00
|
|
|
$(PYTHON) -m detection_rules dev build-release --generate-navigator
|
2020-06-29 23:21:42 -06:00
|
|
|
rm -rf dist
|
|
|
|
|
mkdir dist
|
|
|
|
|
cp -r releases/*/*.zip dist/
|