Suggestion peinjector - MITM PE file infector by JonDoNym

Storm Shadow

Administrator
Staff member
Developer
Ida Pro Expert
Elite Cracker
Hacking Tools
PEINj-1000x465-620x350.jpg

Published on September 14th, 2015 | by admin
0
PEInjector — MITM PE file infector

The executable file format on the Windows platform is PE COFF. The peinjector provides different ways to infect these files with custom payloads without changing the original functionality. It creates patches, which are then applied seamlessly during file transfer. It is very performant, lightweight, modular and can be operated on embedded hardware.



Features

  • Full x86 and x64 PE file support.
  • Open Source
  • Fully working on Windows and Linux, including automated installation scripts.
  • Can be operated on embedded hardware, tested on a Rasperberry Pi 2.
  • On Linux, all servers will be automatically integrated as service, no manual configuration required.
  • Plain C, no external libraries required (peinjector).
  • MITM integration is available in C, Python and Java. A sample Python MITM implementation is included.
  • Foolproof, mobile-ready web interface. Anyone who can configure a home router can configure the injector server.
  • Easy to use integrated shellcode factory, including reverse shells, meterpreter, … or own shellcode. Everything is available in 32 and 64 bit with optional automated encryption. Custom shellcode can be injected directly or as a new thread.
  • An awesome about page and much more, check it out.

POInjector.jpg







MITM PE file infector: PEInjector

Code:
								  + configuration				  
								  | payload						
								  | ...							
					  +-----------v------------+				   
	  +-------+	   |						|				   
	  | PATCH <-------+	  libpeinfect	   <--+				
	  +-------+	   |						|  |				
					  +-----------+------------+  |				
								  |			   |				
					  +-----------v------------+  |				
					  |						|  |				
	  +--------------->	   libpetool		|  |				
	  | change values |						|  |				
	  | add sections  +-----------^------------+  |				
	  | resize sect.			  |			   |				
	  + ...				  +----v----+		  |				
							 | PEFILE  +----------+				
							 +----^----+						   
								  |								
					  +-----------v------------+				   
	  PE File data	|						|	PE File data   
	  +--------------->	   libpefile		+--------------->   
					  |						|				   
					  +------------------------+
libpefile

Provides PE file parsing, modification and reassembling capabilities, based on PE COFF specification. Also works with many non-compliant and deliberately malformed files which the Windows Loader accepts.



libpetool

Provides more complex modifications (adding/resizing sections). Keeps header values PE COFF compliant.

libpeinfect

Provides different infection methods, removes integrity checks, certificates, etc. It can fully infect a file (statically, e.g. from disk) or generate a patch (for MITM infection. Connectors which work with these patches are available in C, Python and Java). The infected file keeps its original functionality.

Servers

+-----------------+-+
| web browser |X|
+-------------+ +-----------------+-+
| peinjector- | | _____ |
------->+ interceptor +---------> | / \ |
-orig.->+ (MITM) +-patched-> | | () () | |
-data-->+ +-data----> | \ ^ / |
------->+ +---------+ +---------> | ||||| |
| |connector| | | |
+-+-+-----^-+-+ +-----+------^------+
raw | | send | | get
header | | patch config | | status
| | | |
+-+-v-----+-+-+ +-+---v------+---+-+
| |data port| | | |http(s) server| |
| +---------+ | | +--------------+ |
| peinjector | | |
| (core +---+ crtl +---+ peinjector- |
| engine) |c p| protocol |c p| control |
| |r o+----------->r r| (user |
| |t r<-----------+t o| interface) |
| |l t| |l .| |
+---------+---+ +---+--------------+



peinjector


Provides PE file patching as a service. Just send the raw header of your PE file and you’ll receive a custom-made patch for it. Can be remotely controlled via a command protocol.

peinjector-control

Web interface to configure and control a peinjector server. A small shellcode factory with some basic shellcodes, automatic encryptoin/obfuscation and thread generation is provided – alternatively, custom shellcode can be injected.

peinjector-interceptor

Sample MITM integration. Based on Python and libmproxy, supports SSL interception, can act as transparent Proxy, HTTP Proxy, … . Provides seamless PE patching capabilities.

https://github.com/JonDoNym/peinjector/archive/master.zip
 
Top