Giter VIP home page Giter VIP logo

injex's Introduction

Injex is an injection library comprised of two parts:

  1. A DLL injector
  2. A DLL template that is to be edited and compiled.

The template DLL comes with standard functionality to place hooks for function hooking in whatever it is injected into.

Supported Injection Methods:

  • Ritcher Method - Injects your DLL into the target process by creating a thread on LoadLibrary. This causes your DLL to be loaded by the target process.
  • Thread Hijacking - Uses an existing thread in the target process to call LoadLibrary.

Supported Hooking Methods:

  • Entry Stub Trampoline Hooks (Advanced Code Overwriting) - Places a jump in the original function to jump to your function, but saves off the original bytes for unhooking and also for your personal use. This allows you to use the "original" function, while forcing the hooked application to use w/e you specified. This is a rare and powerful hooking method. It employs a disassembly engine to determine how many bytes of the original function to keep and where to jump back to.
  • Import Address Table Hooks - Replaces the pointers in the import address table of the hooked application. This makes it so that when the application calls an imported function, it calls your function instead. This doesn't alter the original, and allows you to still use the original function. This is a very common hooking method.
  • VTable Hooks - Hooking virtual method table entries for C++ object virtual function entries.

Compatible Operating Systems:

  • Windows XP (All Versions & Service Packs)
  • Windows Server 2003 (All Versions & Service Packs)
  • Windows Vista (All Versions & Service Packs)
  • Windows 7 (All Versions & Service Packs)
  • Windows Server 2008 (All Versions & Service Packs)
  • Windows 8 (Only Tested on Developer Preview)

injex's People

Contributors

megamandos avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.