Unmanaged.Net

DestroyerDarkNess

Активный
Автор темы
44
101
Hello everyone, Today I bring you the best tool to make cheats in .net!! 😉

Introduction


In my head the idea of injecting a DLL made in .NET (C# / VB) into a Process as you would do with a Native DLL (C++) has always been around.

In fact I made a Universal Loader ASI - UdrakoLoader , But not completely satisfied, that's why I created this tool.

What is Unmanaged.NET?


This Tool is the Final Result of my Research, Basically I take a DLL made in NET, I Export a Specific Function (This function will be the Equivalent to C++'s DLLMain(), the EntryPoint of the DLL) and then I pack it with a Stub made in C , I compile the Stub Generating the New DLL already Exported.

After these Steps, You can Inject your DLL with any Injector. :cool:



How to use ?


First we need our DLL made in .NET, then I will put the code of the DLL that we will use:

C# DLL:
using System;
using System.Windows.Forms;

namespace TestLibrary
{
    public class Test
    {
        public static void DllMain()
        {

            MessageBox.Show("Hello World!");

        }

    }
}

VB DLL:
Imports System
Imports System.Windows.Forms

Namespace TestLibrary

    Public Class Test

        Public Shared Sub DllMain()

            MessageBox.Show("Hello World!")

        End Sub

    End Class

End Namespace

We already have our DLL, now we will follow these steps:​

  1. We will open the Tool and Select the DLL (The Methods will be Automatically Loaded)
  2. We select the Method that will work as the EntryPoint of our DLL.
  3. We select the Target Architecture to compile for. Usually it is I386
  4. Press the "Convet To Unmanaged" Button.
  5. If everything finished Correctly, in the same path of your DLL, there will be another DLL that will have the name of "xxxExported.dll" , That is your Final DLL, Inject it in any Process!

Previewdll.png


  • Your EntryPoint Method of your .NET DLL must be Public and Accessible to everyone.
C# : public static void DllMain()

VB : Public Shared Sub DllMain()

  • The Tool is in its first stable version, there may be errors.





Injecting DLL (Final Test)

TestPreviewsa1.png




TestPreview1.png
TestPreview2.png





Thanks for reading, if you liked it, please comment on the post. 😘
If you want to be Pending Updates, You can a Star in the Github Repository, in which I will soon publish the Source Code and Updates.​



 

Вложения

  • Unmanaged.Net.7z
    1.6 MB · Просмотры: 27
Последнее редактирование: