From a9870c628a7fe5e7d292b3cb5b6b6d238350532a Mon Sep 17 00:00:00 2001 From: malwarefrank <42877127+malwarefrank@users.noreply.github.com> Date: Tue, 20 Apr 2021 02:58:03 +0000 Subject: [PATCH] add Execution Dependency --- execution/README.md | 1 + execution/execution-dependency.md | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 execution/execution-dependency.md diff --git a/execution/README.md b/execution/README.md index 2db4a71..2cf2ae5 100644 --- a/execution/README.md +++ b/execution/README.md @@ -7,6 +7,7 @@ Behaviors that execute code on a system to achieve a variety of goals. * **Command and Scripting Interpreter** [E1059](../execution/command-line.md) * **Conditional Execution** [B0025](../execution/conditional-execute.md) +* **Execution Dependency** [B0026](../execution/execution-dependency.md) * **Exploitation for Client Execution** [E1203](../execution/exploit-software.md) * **Install Additional Program** [B0023](../execution/install-prog.md) * **Prevent Concurrent Execution** [B0024](../execution/prevent-concurrent-exe.md) diff --git a/execution/execution-dependency.md b/execution/execution-dependency.md new file mode 100644 index 0000000..b681f47 --- /dev/null +++ b/execution/execution-dependency.md @@ -0,0 +1,10 @@ +||| +|---|---| +|**ID**|**B0026**| +|**Objective(s)**|[Execution](../execution)| +|**Related ATT&CK Technique**|None| + + +Execution Dependency +==================== +Software may require certain run-time or library dependencies consistent with normal software development and deployment. For example, software may require the presence of a .NET or Java runtime or to be run by a webserver that supports PHP. Unlike in [Conditional Execution](../execution/conditional-execute.md) this dependency is not because of an explicit check coded into the malware by the author.