TEX Logo
TEX - Injector
Discord

Welcome to TEX - Injector

A simple DLL injector for both x64 and x32 processes, designed for legitimate, debugging-related uses. Keep reading to learn about its features and how it works!

Program Screenshot

About TEX - Injector

TEX - Injector is a lightweight tool that allows you to inject DLLs into processes you own for the purpose of testing, debugging, or other legitimate development reasons.

It supports both 32-bit (x32) and 64-bit (x64) processes. Please use it responsibly and only inject into processes you have full permission to modify.

Injection Methods:

  • CreateRemoteThread – Classic approach to DLL injection.
  • NtCreateThreadEx – An alternative kernel-level routine for injection.
  • APC Queue Injection – Inject code via the Asynchronous Procedure Call queue.

Always abide by legal guidelines and use TEX - Injector only for processes you own.

Kussi Schatzi A💜

How To Use

GUI Mode:

  1. Double-click TEX-Injector.exe to open the main window.
  2. Browse for your DLL, enter the target process name (e.g. notepad.exe), select an injection method, and click “Inject.”


Command-Line Mode:

  1. Open a terminal or command prompt.
  2. Navigate to the folder containing TEX-Injector.exe or specify its path.
  3. Run a command like:
    TEX-Injector.exe "C:\Path\To\Your.dll" 0 "target.exe"
    0 = CreateRemoteThread
    1 = NtCreateThreadEx
    2 = APC Queue