CodeExplorer Posted November 17, 2013 Posted November 17, 2013 ManagedDllInjectorKnown limitation:The target process must a window!This program has two options:1. Inject the current assembly itself on selected processInject button.Look on the code InjectedClass.csand you will see the code that load an assembly: // Here load the assembly from string Assembly asm = Assembly.Load("SSA.Business.Input, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a58bfd68363575ef"); if (asm==null) { MessageBox.Show("Failed to load assembly!"); } else { MessageBox.Show("Loaded ok!"); }You can add here asm = Assembly.Load("assemly string")to load more assemblies.2. ManagedStack explorer of the selected process,shown with a MessageBox.ManagedStack button. ManagedDllInjector.zipManagedDllInjectorFr4.zip 4
atom0s Posted November 17, 2013 Posted November 17, 2013 Here's an example of native injection with managed code as well that I wrote for one of my projects:https://github.com/atom0s/AshitaLauncher/blob/master/Ashita%20Loader/Classes/NativeMethods.cshttps://github.com/atom0s/AshitaLauncher/blob/master/Ashita%20Loader/Classes/ManagedInjector.cs 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now