feat(phase-32): add automated tests V3 for data sources, scoring, campaigns and snapshots (T-235 to T-237)

This commit is contained in:
2026-02-10 09:07:43 +01:00
parent 02034d60f0
commit 35983de67e
11 changed files with 1676 additions and 12 deletions

View File

@@ -0,0 +1,27 @@
title: Windows PowerShell Execution Policy Bypass
id: 1f21ec3f-810d-4b0e-8045-322202e22b4b
status: stable
description: Detects attempts to bypass PowerShell execution policy
author: Test Author
date: 2025/01/15
references:
- https://example.com/sigma-test
logsource:
category: process_creation
product: windows
detection:
selection:
CommandLine|contains:
- '-ExecutionPolicy Bypass'
- '-ep bypass'
- 'Set-ExecutionPolicy Bypass'
condition: selection
falsepositives:
- Legitimate admin scripts
- CI/CD pipelines
level: high
tags:
- attack.execution
- attack.t1059.001
- attack.defense_evasion
- attack.t1562.001