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

34 lines
1.1 KiB
YAML
Raw Normal View History

2020-01-30 17:26:09 +01:00
title: Command Line Execution with Suspicious URL and AppData Strings
2019-11-12 23:12:27 +01:00
id: 1ac8666b-046f-4201-8aba-1951aaec03a3
2021-11-27 11:33:14 +01:00
status: test
2020-06-16 14:46:08 -06:00
description: Detects a suspicious command line execution that includes an URL and AppData string in the command line parameters as used by several droppers (js/vbs > powershell)
2020-11-28 12:34:28 +01:00
author: Florian Roth, Jonhnathan Ribeiro, oscd.community
2021-11-27 11:33:14 +01:00
references:
- https://www.hybrid-analysis.com/sample/3a1f01206684410dbe8f1900bbeaaa543adfcd07368ba646b499fa5274b9edf6?environmentId=100
- https://www.hybrid-analysis.com/sample/f16c729aad5c74f19784a24257236a8bbe27f7cdc4a89806031ec7f1bebbd475?environmentId=100
date: 2019/01/16
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
logsource:
2021-11-27 11:33:14 +01:00
category: process_creation
product: windows
detection:
2021-11-27 11:33:14 +01:00
selection:
Image|endswith: '\cmd.exe'
CommandLine|contains|all:
- 'http' # captures both http and https
- '://'
- '%AppData%'
condition: selection
fields:
2021-11-27 11:33:14 +01:00
- CommandLine
- ParentCommandLine
falsepositives:
2021-11-27 11:33:14 +01:00
- High
level: medium
2021-11-27 11:33:14 +01:00
tags:
- attack.execution
- attack.t1059.003
- attack.t1059.001
- attack.command_and_control
- attack.t1105