Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d4995bb
Adding Powershell aliases fp filters
djordje-binalyze Sep 22, 2025
47fe961
Fixing comment
djordje-binalyze Sep 22, 2025
e4acc4c
Fixing comment
djordje-binalyze Sep 22, 2025
18d6f9a
Fixing the field name
djordje-binalyze Sep 22, 2025
3a4be8e
Fixing condition
djordje-binalyze Sep 22, 2025
3600677
Updating_condition
djordje-binalyze Sep 22, 2025
576104f
Adding more FP filters
djordje-binalyze Sep 22, 2025
c76781f
Fixing filter data
djordje-binalyze Sep 22, 2025
ac7da8a
Adding Powershell aliases fp filters
djordje-binalyze Sep 22, 2025
7ef2a06
Fixing comment
djordje-binalyze Sep 22, 2025
7de4370
Fixing comment
djordje-binalyze Sep 22, 2025
fa7c6bc
Fixing the field name
djordje-binalyze Sep 22, 2025
b6424ce
Fixing condition
djordje-binalyze Sep 22, 2025
eea965e
Updating_condition
djordje-binalyze Sep 22, 2025
08a95d1
Adding more FP filters
djordje-binalyze Sep 22, 2025
af43b28
Fixing filter data
djordje-binalyze Sep 22, 2025
21a7af5
Adding full path and taxonomy suggestion
djlukic Sep 29, 2025
07b4944
Fixed list
djlukic Sep 29, 2025
5216339
Updated per suggestions
djlukic Sep 29, 2025
ffe1e1b
Apply suggestion from @swachchhanda000
swachchhanda000 Sep 30, 2025
c71cc85
Apply suggestion from @Copilot
swachchhanda000 Sep 30, 2025
d14a589
Merge branch 'sep25_fps' of https://github.com/djlukic/sigma into sep…
djordje-binalyze Oct 14, 2025
07afc47
Adding details
djordje-binalyze Oct 14, 2025
3a47639
change the filter main to optional
swachchhanda000 Oct 17, 2025
d438572
fix: condition
phantinuss Oct 17, 2025
43efbb6
Update rules/windows/process_creation/proc_creation_win_sc_sdset_allo…
nasbench Oct 17, 2025
cbdbfc8
Update rules/windows/registry/registry_set/registry_set_add_load_serv…
nasbench Oct 17, 2025
6b9bd7c
improve filter
swachchhanda000 Oct 18, 2025
202e673
Merge branch 'master' into sep25_fps
nasbench Oct 18, 2025
76d719b
update metadata
swachchhanda000 Oct 22, 2025
51bb847
Merge branch 'master' into sep25_fps
swachchhanda000 Oct 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ references:
- https://threathunterplaybook.com/hunts/windows/190815-RemoteServiceInstallation/notebook.html
author: Roberto Rodriguez @Cyb3rWard0g
date: 2019-08-11
modified: 2023-12-11
modified: 2025-09-22
tags:
- attack.execution
- attack.t1059.001
Expand All @@ -32,6 +32,8 @@ detection:
- 'HostApplication=powershell'
filter_optional_citrix:
Data|contains: 'Citrix\ConfigSync\ConfigSync.ps1'
filter_optional_hexnode:
Data|contains: 'HostApplication=C:\Hexnode\Hexnode'
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
Comment thread
swachchhanda000 marked this conversation as resolved.
falsepositives:
- Programs using PowerShell directly without invocation of a dedicated interpreter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ references:
- https://github.com/bohops/WSMan-WinRM
author: Roberto Rodriguez (Cyb3rWard0g), OTR (Open Threat Research)
date: 2020-06-24
modified: 2024-12-27
modified: 2025-09-22
tags:
- attack.execution
- attack.t1059.001
Expand All @@ -32,6 +32,8 @@ detection:
# Note: Since we're using the raw data field to match. There is no easy way to filter out cases where the "HostApplication" field is null (i.e doesn't exist). We're practically forced to use a regex.
# If you're already mapping and extracting the field, then obviously use that directly.
Data|re: 'HostId=[a-zA-Z0-9-]{36}\s+EngineVersion='
filter_main_hexnode:
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
Data|contains: 'HostApplication=C:\Hexnode\Hexnode'
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
condition: selection and not 1 of filter_main_*
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
falsepositives:
- Unknown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ references:
- https://github.com/1337Rin/Swag-PSO
author: frack113
date: 2023-01-08
modified: 2025-09-22
tags:
- attack.defense-evasion
- attack.execution
Expand All @@ -23,7 +24,21 @@ detection:
ScriptBlockText|contains:
- 'Set-Alias '
- 'New-Alias '
condition: selection
filter_main_cim:
ScriptBlockText|contains:
- ' -Name ncms -Value New-CimSession '
- ' -Name gcls -Value Get-CimClass '
- ' -Name ncso -Value New-CimSessionOption '
- ' -Name gcms -Value Get-CimSession '
- ' -Name rcms -Value Remove-cimSession '
- ' -Name rcie -Value Register-CimIndicationEvent '
- ' -Name gcai -Value Get-CimAssociatedInstance '
- ' -Name gcim -Value Get-CimInstance '
- ' -Name scim -Value Set-CimInstance '
- ' -Name ncim -Value New-CimInstance '
- ' -Name rcim -Value Remove-cimInstance '
- ' -Name icim -Value Invoke-CimMethod '
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
condition: selection and not 1 of filter_main_*
falsepositives:
- Unknown
level: low
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ references:
- https://learn.microsoft.com/en-us/windows/win32/secauthz/sid-strings
author: Nasreddine Bencherchali (Nextron Systems)
date: 2023-02-28
modified: 2025-09-22
tags:
- attack.persistence
- attack.t1543.003
Expand All @@ -32,7 +33,10 @@ detection:
- ';BA' # Built-in administrators
- ';SY' # Local system
- ';WD' # Everyone
condition: all of selection_*
filter_optional_hexnode:
- ParentImage|endswith: 'Hexnode\Hexnode Agent\Current\HexnodeAgent.exe'
- ParentProcessName|endswith: 'Hexnode\Hexnode Agent\Current\HexnodeAgent.exe'
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
condition: all of selection_* and not 1 of filter_optional_*
falsepositives:
- Unknown
level: high
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ references:
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1112/T1112.md#atomic-test-34---windows-add-registry-value-to-load-service-in-safe-mode-with-network
author: frack113
date: 2022-04-04
modified: 2024-03-25
modified: 2025-09-22
tags:
- attack.defense-evasion
- attack.t1564.001
Expand All @@ -26,6 +26,8 @@ detection:
TargetObject|endswith:
- '\Control\SafeBoot\Minimal\SAVService\(Default)'
- '\Control\SafeBoot\Network\SAVService\(Default)'
filter_optional_hexnode:
Image|endswith: 'Hexnode\Hexnode Agent\Current\HexnodeAgent.exe'
Comment thread
swachchhanda000 marked this conversation as resolved.
Outdated
condition: selection and not 1 of filter_optional_*
falsepositives:
- Unknown
Expand Down
Loading