[Open Source] Injection Library - C#

Posts 61–75 of 84 · Page 5 of 6
Unable to load dependent module 'MSVCP110D.dll' I got all dlls that requirent in System32 and don't works -.- please someone help me out
I cannot see the attatchments for some reason. Did you remove them ?


- Nevermind, thank you!
Hello!

I apologize in advanced for digging up an old thread and for asking this question if it has already been asked and answered, but I was wondering

When calling ThreadHiJack and Standard injection method, you said it will write the module in a random location.

My questions are:
1. Where does it write it to? (Maybe providing examples).
2. What does it write in a random location? The injected DLL file?

Hope to have these questions answered in the near future!

Thank you for your release!
Thanks for this share
thx man for this but i cant download this source!!!
Thanks for sharing this one!
Quote Originally Posted by KiNG Jaydo View Post
Is there any way to compile it in 4.0 atleast? or would the Source Code need to be edited manually to suit 4.0's functions?

So for all that are having trouble, I have solved both the 32bit and 64bit issues and am able to compile on any version of .NET - I will be uploading the source files as soon as I get permission from OP
Quote Originally Posted by KiNG Jaydo View Post
So for all that are having trouble, I have solved both the 32bit and 64bit issues and am able to compile on any version of .NET - I will be uploading the source files as soon as I get permission from OP
Can you show me the 64bit version?
Quote Originally Posted by KiNG Jaydo View Post
So for all that are having trouble, I have solved both the 32bit and 64bit issues and am able to compile on any version of .NET - I will be uploading the source files as soon as I get permission from OP
I think you did miss that part in sources headers where license was stated to be GPL3.
im trying to find a good spammer.
Tried binary and source, however my program was unable to load injectionlibrary version 1.0.0.0, anyone know how to fix?

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using JLibrary.PortableExecutable;
using System.Diagnostics;
using InjectionLibrary;

namespace WindowsFormsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
var injector = InjectionMethod.Create(InjectionMethodType.ManualM ap);
var processId = Process.GetProcessesByName("csgo.exe")[0].Id;
var hModule = IntPtr.Zero;

using (var img = new PortableExecutable(Properties.Resources.FreeLancer ))
hModule = injector.Inject(img, processId);

if (hModule != IntPtr.Zero)
{
// injection was successful
}
else
{
// injection failed
if (injector.GetLastError() != null)
MessageBox.Show(injector.GetLastError().Message);
}

}
}
}
Is there an update? Or any other injector libaries working?
Quote Originally Posted by reidjako123 View Post
Is there an update? Or any other injector libaries working?
I've made a fix that I uploaded to GuidedHacking

EDIT: Just uploaded on here. Awaiting approval.
Thanks a lot Jason!
Posts 61–75 of 84 · Page 5 of 6

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?