#include <disclaimer.h>
/* Simple malware that performs PE Injection.
This is my smol project for learning about PE files (may have some 🐞).
Becareful! It will destroy your executables. */git clone https://github.com/hitori1403/pe-injector.git
cd pe-injector
makeIt will produce a file called shellcode.exe. Use it carefully!
Take a quick look at Makefile for more details.
- Inject itself into others PE files in the same directory
- TLS Injection
- Patch
PEHeader.AddressOfEntryPointif TLS Injection fails - IAT Patching (needs more time)
- Anti-Debugging (BeingDebugged flag)
- Anti-VM based on __cpuid()
- Simple oligomorphism with XOR and ROT128
