Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_bitsadmin_download.yml
T

45 lines
1.2 KiB
YAML
Raw Normal View History

2018-01-27 10:57:30 +01:00
title: Bitsadmin Download
2019-11-12 23:12:27 +01:00
id: d059842b-6b9d-4ed1-b5c3-5b89143c6ede
2017-03-08 22:49:35 -08:00
status: experimental
description: Detects usage of bitsadmin downloading a file
references:
2019-11-12 23:12:27 +01:00
- https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin
- https://isc.sans.edu/diary/22264
- https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/
2018-07-19 23:36:13 +02:00
tags:
2019-11-12 23:12:27 +01:00
- attack.defense_evasion
- attack.persistence
- attack.t1197
- attack.s0190
- attack.t1036.003
2019-12-06 13:39:04 +01:00
date: 2017/03/09
modified: 2021/07/16
2021-07-27 10:14:53 +02:00
author: Michael Haag, FPT.EagleEye
2017-03-08 22:49:35 -08:00
logsource:
2019-11-12 23:12:27 +01:00
category: process_creation
product: windows
2017-03-08 22:49:35 -08:00
detection:
2019-12-06 13:39:04 +01:00
selection1:
Image|endswith:
- '\bitsadmin.exe'
susp_flag_1:
CommandLine|contains:
- ' /transfer '
susp_flag_2:
CommandLine|contains:
- ' /create '
- ' /addfile '
http_flag:
CommandLine|contains:
- 'http'
2019-12-06 13:39:04 +01:00
selection2:
CommandLine|contains:
- 'copy bitsadmin.exe'
condition: (selection1 and susp_flag_2 and http_flag) or (selection1 and susp_flag_1) or selection2
2017-09-12 23:54:04 +02:00
fields:
2019-11-12 23:12:27 +01:00
- CommandLine
- ParentCommandLine
2017-03-08 22:49:35 -08:00
falsepositives:
2019-11-12 23:12:27 +01:00
- Some legitimate apps use this, but limited.
2017-03-08 22:49:35 -08:00
level: medium