Files
atomic-red-team/atomics/T1057/T1057.md
T
2019-10-24 17:09:43 +00:00

1.3 KiB

T1057 - Process Discovery

Description from ATT&CK

Adversaries may attempt to get information about running processes on a system. Information obtained could be used to gain an understanding of common software running on systems within the network. Adversaries may use the information from [Process Discovery](https://attack.mitre.org/techniques/T1057) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.

Windows

An example command that would obtain details on processes is "tasklist" using the Tasklist utility.

Mac and Linux

In Mac and Linux, this is accomplished with the ps command.

Atomic Tests


Atomic Test #1 - Process Discovery - ps

Utilize ps to identify processes

Supported Platforms: macOS, CentOS, Ubuntu, Linux

Inputs

Name Description Type Default Value
output_file path of output file path /tmp/loot.txt

Run it with sh!

ps >> #{output_file}
ps aux >> #{output_file}