All Projects → blole → injectory

blole / injectory

Licence: GPL-2.0 license
command-line interface dll injector

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to injectory

UnityCLI
Unity TCP CLI communication for debugging
Stars: ✭ 22 (-55.1%)
Mutual labels:  command-line-interface
CodeInjection
Code Injection technique written in cpp language
Stars: ✭ 27 (-44.9%)
Mutual labels:  dll-injection
npshell
Command line music queue manager. A music player from the comfort of your own shell.
Stars: ✭ 15 (-69.39%)
Mutual labels:  command-line-interface
HAPIH-2
API for supporting C++14 external memory hacking. Complete redesign from HAPIH
Stars: ✭ 18 (-63.27%)
Mutual labels:  dll-injection
pypi-command-line
A powerful, colorful, beautiful command-line-interface for pypi.org
Stars: ✭ 32 (-34.69%)
Mutual labels:  command-line-interface
googlr
Googlr is a command line tool that lets you search Google from your terminal.
Stars: ✭ 35 (-28.57%)
Mutual labels:  command-line-interface
Shogun
Shodan.io Command Line Interface
Stars: ✭ 42 (-14.29%)
Mutual labels:  command-line-interface
Comonicon.jl
Your best CLI generator in JuliaLang
Stars: ✭ 181 (+269.39%)
Mutual labels:  command-line-interface
diagrams-braille
Render diagrams to Braille
Stars: ✭ 21 (-57.14%)
Mutual labels:  command-line-interface
DLL-INJECTOR
I created a dll injector I am going to Open source its Code. But remember one thing that is any one can use it only for Educational purpose .I again say do not use it to damage anyone's Computer.But one thing if you are using it for some good purpose like to help someone who really need help then I permit you to use it.
Stars: ✭ 14 (-71.43%)
Mutual labels:  dll-injection
Blackeye-for-Windows
This is a Phishing tool. Phishing is a type of hacking also called credential harvesting. It creates fake websites for victims to login which saves their login info which includes IP, User-Agent, Username and Password to a file in the computer running Blackeye. This tool has been there for Linux and even Android via Termux. I converted it to Win…
Stars: ✭ 38 (-22.45%)
Mutual labels:  command-line-interface
hooking-by-example
A series of increasingly complex programs demonstrating function hooking on 64 bit Windows. Culminating in a program that hooks mspaint to make it always paint orange.
Stars: ✭ 144 (+193.88%)
Mutual labels:  dll-injection
node-cli-boilerplate
🪓 Create node cli with this user friendly boilerplate
Stars: ✭ 17 (-65.31%)
Mutual labels:  command-line-interface
ExampleCLI
Example TypeScript CLI with Node.js
Stars: ✭ 37 (-24.49%)
Mutual labels:  command-line-interface
twinject
Automated player and hooking framework for bullet hell games from the Touhou Project
Stars: ✭ 52 (+6.12%)
Mutual labels:  dll-injection
Indicium-Supra
DirectX API-hooking framework
Stars: ✭ 292 (+495.92%)
Mutual labels:  dll-injection
savepagenow
A simple Python wrapper and command-line interface for archive.org’s "Save Page Now" capturing service
Stars: ✭ 140 (+185.71%)
Mutual labels:  command-line-interface
main
Mocks Server monorepo
Stars: ✭ 109 (+122.45%)
Mutual labels:  command-line-interface
ucp-cli
command-line interface for sending and receiving SMS via UCP protocol
Stars: ✭ 15 (-69.39%)
Mutual labels:  command-line-interface
ManagedInjector
A DLL injector to inject .NET assemblies into a foreign .NET process.
Stars: ✭ 73 (+48.98%)
Mutual labels:  dll-injection

injectory

A command-line interface DLL injector for injecting/ejecting DLL libraries into running/new processes. Uses LoadLibrary (or alternatively a manual version) and CreateRemoteThread.

  • The target process is suspended during injection
  • Can map a PE file into the remote adress space of a process (without calling LoadLibrary)
  • Inject x86 code into a x86 process

Usage

usage: injectory TARGET [OPTION]...
inject DLL:s into processes

Examples:
  injectory --launch a.exe --map b.dll --args "1 2 3"
  injectory --pid 12345 --inject b.dll --wait-for-exit

Targets:
  -p [ --pid ] PID         find process by id
  -n [ --procname ] NAME   find process by name
  -t [ --wndtitle ] TITLE  find process by window title
  -c [ --wndclass ] CLASS  find process by window class, can be combined with
                           --wndtitle
  -l [ --launch ] EXE      launches the target in a new process
  -a [ --args ] STRING     arguments for --launch:ed process

Options:
  -i [ --inject ] DLL...   inject libraries before main
  -I [ --injectw ] DLL...  inject libraries when input idle
  -m [ --map ] DLL...      map file into target before main
  -M [ --mapw ] DLL...     map file into target when input idle
  -e [ --eject ] DLL...    eject libraries before main
  -E [ --ejectw ] DLL...   eject libraries when input idle
  --set-flags FLAG...      see --list-flags
  --unset-flags FLAG...    see --list-flags

  --print-own-pid          print the pid of this process
  --print-pid              print the pid of the target process
  --rethrow                rethrow exceptions
  --vs-debug-workaround    workaround for threads left suspended when debugging
                           with visual studio by resuming all threads for 2
                           seconds
  --wait-for-exit          wait for the target to exit before exiting
  --kill-on-exit           kill the target when exiting

  -v [ --verbose ]
  --list-flags             list supported flags and exit
  --version                display version information and exit
  --help                   display help message and exit

Credits

Imported from https://code.google.com/p/injector/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].