Skip to content

Commit 05fff91

Browse files
committed
Adding more FP filters
1 parent 76f4a42 commit 05fff91

4 files changed

Lines changed: 7 additions & 0 deletions

File tree

rules/windows/builtin/bits_client/win_bits_client_new_transfer_saving_susp_extensions.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ detection:
3232
# Typical updates: Chrome, Dropbox etc.
3333
LocalName|contains: '\AppData\'
3434
RemoteName|contains: '.com'
35+
filter_optional_microsoft:
36+
RemoteName|contains: '.microsoft.com'
3537
condition: selection and not 1 of filter_optional_*
3638
falsepositives:
3739
- While the file extensions in question can be suspicious at times. It's best to add filters according to your environment to avoid large amount false positives

rules/windows/builtin/bits_client/win_bits_client_new_transfer_via_uncommon_tld.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ detection:
2626
- 'download.mozilla.org/' # https://download.mozilla.org/?product=firefox-101.0.1-partial-101.0&os=win64&lang=en-US
2727
- 'cdn.onenote.net/'
2828
- 'cdn.office.net/'
29+
- 'tscdn.m365.static.microsoft'
2930
condition: selection and not 1 of filter_main_*
3031
falsepositives:
3132
- This rule doesn't exclude other known TLDs such as ".org" or ".net". It's recommended to apply additional filters for software and scripts that leverage the BITS service

rules/windows/builtin/code_integrity/win_codeintegrity_attempted_dll_load.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ detection:
5353
FileNameBuffer|endswith: '\MSOXMLMF.DLL'
5454
# ProcessNameBuffer is AV products
5555
RequestedPolicy: 7
56+
filter_optional_msoffice_2:
57+
ProcessNameBuffer|contains: 'Program Files\Microsoft Office\root\vfs\ProgramFilesCommonX64\Microsoft Shared\Office'
58+
RequestedPolicy: 8
5659
filter_optional_slack:
5760
# Example: https://user-images.githubusercontent.com/112784902/197407680-96d4b662-8a59-4289-a483-b24d630ac2a9.png
5861
# Even though it's the same DLL as the one used in the electron based app filter. We need to do a separate selection due to slack's folder naming convention with the version number :)

rules/windows/process_creation/proc_creation_win_powershell_non_interactive_execution.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ detection:
2626
- ':\Windows\explorer.exe'
2727
- ':\Windows\System32\CompatTelRunner.exe'
2828
- ':\Windows\SysWOW64\explorer.exe'
29+
- ':\Program Files\Windows Defender Advanced Threat Protection\SenseIR.exe'
2930
filter_main_windows_update:
3031
ParentImage: ':\$WINDOWS.~BT\Sources\SetupHost.exe' # During Windows updates/upgrades
3132
# CommandLine: powershell.exe -ExecutionPolicy Restricted -Command Write-Host 'Final result: 1';

0 commit comments

Comments
 (0)