mirror of
https://github.com/MBCProject/mbc-markdown
synced 2026-06-08 11:36:36 +00:00
Update Process micro-objective (#164)
* Update create-mutex.md * Update create-mutex.md * Update README.md * Update README.md * Delete micro-behaviors/process/synchronization.md * Update mbc_summary.md --------- Co-authored-by: brightmt <50853930+brightmt@users.noreply.github.com>
This commit is contained in:
@@ -139,7 +139,6 @@
|
||||
|C0001|**[Socket Communication](https://github.com/MBCProject/mbc-markdown/blob/main/micro-behaviors/communication/socket-communication.md)**|COMMUNICATION|
|
||||
|C0009|**[Stack Pivot](https://github.com/MBCProject/mbc-markdown/blob/main/micro-behaviors/memory/stack-pivot.md)**|MEMORY|
|
||||
|C0055|**[Suspend Thread](https://github.com/MBCProject/mbc-markdown/blob/main/micro-behaviors/process/suspend-thread.md)**|PROCESS|
|
||||
|C0022|**[Synchronization](https://github.com/MBCProject/mbc-markdown/blob/main/micro-behaviors/process/synchronization.md)**|PROCESS|
|
||||
|C0018|**[Terminate Process](https://github.com/MBCProject/mbc-markdown/blob/main/micro-behaviors/process/terminate-process.md)**|PROCESS|
|
||||
|C0039|**[Terminate Thread](https://github.com/MBCProject/mbc-markdown/blob/main/micro-behaviors/process/terminate-thread.md)**|PROCESS|
|
||||
|C0070|**[Unmap Section View](https://github.com/MBCProject/mbc-markdown/blob/main/micro-behaviors/process/unmap-section-view.md)**|PROCESS|
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Last Modified</b></td>
|
||||
<td><b>29 November 2022</b></td>
|
||||
<td><b>16 September 2024</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@@ -29,8 +29,7 @@ Micro-behaviors related to processes.
|
||||
* **Set Thread Context** [C0072](../process/set-thread-context.md)
|
||||
* **Set Thread Local Storage Value** [C0041](../process/set-thread-local-storage-value.md)
|
||||
* **Suspend Thread** [C0055](../process/suspend-thread.md)
|
||||
* **Synchronization** [C0022](../process/synchronization.md)
|
||||
* **Terminate Process** [C0018](../process/terminate-process.md)
|
||||
* **Terminate Thread** [C0039](../process/terminate-thread.md)
|
||||
* **Unmap Section View** [C0070](../process/unmap-section-view.md)
|
||||
* **Write Process Memory** [C0071](../process/write-process-memory.md)
|
||||
* **Write Process Memory** [C0071](../process/write-process-memory.md)
|
||||
|
||||
@@ -21,14 +21,14 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Last Modified</b></td>
|
||||
<td><b>30 April 2024</b></td>
|
||||
<td><b>16 September 2024</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
# Create Mutex
|
||||
|
||||
Malware creates a mutex.
|
||||
Malware creates a mutex. Mutexes may be created for synchronization purposes (two or more processes/threads to share a resource).
|
||||
|
||||
## Use in Malware
|
||||
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td><b>ID</b></td>
|
||||
<td><b>C0022</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Objective(s)</b></td>
|
||||
<td><b><a href="../process">Process</a></b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Related ATT&CK Techniques</b></td>
|
||||
<td><b>None</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Version</b></td>
|
||||
<td><b>2.0</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Created</b></td>
|
||||
<td><b>14 August 2020</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Last Modified</b></td>
|
||||
<td><b>10 November 2022</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
# Synchronization
|
||||
|
||||
Malware enables two or more processes/threads to share a resource.
|
||||
|
||||
## Methods
|
||||
|
||||
|Name|ID|Description|
|
||||
|---|---|---|
|
||||
|**Create Mutex**|C0022.001|Malware creates a mutex to enable synchronization.|
|
||||
Reference in New Issue
Block a user