Define and run your own security checks using YAML configuration.
cd custom-rules
cp rules.yaml.example rules.yaml
# Edit rules.yaml with your custom rules
./run-rules.sh- π YAML-based rule definitions
- β‘ Parallel execution
- π¨ Severity levels (critical, warning, info)
- π Rule groups for organization
- π§ Custom remediation instructions
# Run all rules
./run-rules.sh
# Run specific group
./run-rules.sh --group web-security
# Run by severity
./run-rules.sh --severity critical
# Run specific rule
./run-rules.sh --id custom-001See rules.yaml.example for rule format and examples.