mirror of
https://github.com/valitydev/atomic-threat-coverage.git
synced 2024-11-07 01:55:21 +00:00
7 lines
330 B
Bash
Executable File
7 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for FILE in $( find sigma/rules -name "*.yml" ); do
|
|
FILENAME=$( basename ${FILE} | cut -f 1 -d '.' )
|
|
python3 sigma/tools/sigmac -t es-qs --ignore-backend-errors -o rules-md/${FILENAME}-es-qs.md ${FILE}
|
|
python3 sigma/tools/sigmac -t graylog --ignore-backend-errors -o rules-md/${FILENAME}-graylog.md ${FILE}
|
|
done |