Merge pull request #31 from malwarefrank/exec-depend

add Execution Dependency
This commit is contained in:
Desiree Beck
2021-04-21 22:42:54 -04:00
committed by GitHub
2 changed files with 11 additions and 0 deletions
+1
View File
@@ -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)
+10
View File
@@ -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.