yamlification complete

This commit is contained in:
caseysmithrc
2018-05-24 18:07:44 -06:00
parent fc495c1192
commit 4485e0cf84
4 changed files with 45 additions and 17 deletions
@@ -1,17 +0,0 @@
## Process Injection
MITRE ATT&CK Technique: [T1055](https://attack.mitre.org/wiki/Technique/T1055)
Examples and code resource for [PowerSploit](https://github.com/PowerShellMafia/PowerSploit/tree/master/CodeExecution)
### PowerShell Invoke-ReflectivePEInjection
Input:
C:\Users\Public\PowerSploit-master\PowerSploit-master\CodeExecution\Invoke-ReflectivePEInjection.ps1
### Powershell Invoke-DllInjection
Input:
C:\Users\Public\PowerSploit-master\PowerSploit-master\CodeExecution\Invoke-DllInjection.ps1 -ProcessID 4274 -Dll evil.dll
+45
View File
@@ -0,0 +1,45 @@
---
attack_technique: T1055
display_name: Process Injection
atomic_tests:
- name: Process Injection via mavinject.exe
description: |
Windows 10 Utility To Inject DLLS
supported_platforms:
- windows
input_arguments:
dll_payload:
description: DLL to Inject
type: Path
default: T1055.dll
process_id:
description: PID of input_arguments
type: Int
default: $pid
executor:
name: powershell
command: |
mavinject $pid /INJECTRUNNING #{dll_payload}
- name: Process Injection via PowerSploit
description: |
PowerShell Injection
supported_platforms:
- windows
input_arguments:
dll_payload:
description: DLL to Inject
type: Path
default: T1055.dll
process_id:
description: PID of input_arguments
type: Int
default: $pid
executor:
name: powershell
command: |
Invoke-DllInjection.ps1 -ProcessID #{process_id} -Dll #{dll_payload}
Binary file not shown.
Binary file not shown.