Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_susp_ftp.yml
T
Nasreddine Bencherchali 12d187bc91 Update Ref+Selection 2
2022-07-11 17:48:40 +01:00

34 lines
962 B
YAML

title: Suspicious ftp.exe
id: 06b401f4-107c-4ff9-947f-9ec1e7649f1e
status: test
description: Detects renamed ftp.exe, ftp.exe script execution and child processes ran by ftp.exe
author: Victor Sergeev, oscd.community
references:
- https://lolbas-project.github.io/lolbas/Binaries/Ftp/
date: 2020/10/09
modified: 2022/05/13
logsource:
category: process_creation
product: windows
detection:
ftp_path:
Image|endswith: 'ftp.exe'
ftp_metadata:
OriginalFileName: 'ftp.exe'
cmd_with_script_modifier:
CommandLine|contains: '-s:'
parent_path:
ParentImage|endswith: 'ftp.exe'
condition: (ftp_path and cmd_with_script_modifier) or (ftp_metadata and cmd_with_script_modifier) or (ftp_metadata and not ftp_path) or parent_path
fields:
- CommandLine
- ParentImage
falsepositives:
- Unknown
level: medium
tags:
- attack.execution
- attack.t1059
- attack.defense_evasion
- attack.t1202