2021-11-27 11:33:14 +01:00
|
|
|
title: Suspicious ftp.exe
|
2020-10-09 15:38:01 +04:00
|
|
|
id: 06b401f4-107c-4ff9-947f-9ec1e7649f1e
|
2021-11-27 11:33:14 +01:00
|
|
|
status: test
|
2020-10-09 15:38:01 +04:00
|
|
|
description: Detects renamed ftp.exe, ftp.exe script execution and child processes ran by ftp.exe
|
|
|
|
|
author: Victor Sergeev, oscd.community
|
2021-11-27 11:33:14 +01:00
|
|
|
references:
|
|
|
|
|
- https://github.com/LOLBAS-Project/LOLBAS/blob/master/yml/OSBinaries/Ftp.yml
|
2020-10-09 15:38:01 +04:00
|
|
|
date: 2020/10/09
|
2021-11-27 11:33:14 +01:00
|
|
|
modified: 2021/11/27
|
2020-10-09 15:38:01 +04:00
|
|
|
logsource:
|
2021-11-27 11:33:14 +01:00
|
|
|
category: process_creation
|
|
|
|
|
product: windows
|
2020-10-09 15:38:01 +04:00
|
|
|
detection:
|
2021-11-27 11:33:14 +01:00
|
|
|
ftp_path:
|
|
|
|
|
Image|endswith: 'ftp.exe'
|
|
|
|
|
ftp_metadata:
|
|
|
|
|
OriginalFileName|contains: '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
|
2020-10-09 15:38:01 +04:00
|
|
|
fields:
|
2021-11-27 11:33:14 +01:00
|
|
|
- CommandLine
|
|
|
|
|
- ParentImage
|
2020-10-09 15:38:01 +04:00
|
|
|
falsepositives:
|
2021-11-27 11:33:14 +01:00
|
|
|
- Unknown
|
2020-10-09 15:39:59 +04:00
|
|
|
level: medium
|
2021-11-27 11:33:14 +01:00
|
|
|
tags:
|
|
|
|
|
- attack.execution
|
|
|
|
|
- attack.t1059
|
|
|
|
|
- attack.defense_evasion
|
|
|
|
|
- attack.t1202
|