C# native dll mapper menu

Shout-Out

User Tag List

Results 1 to 6 of 6
  1. #1
    Lecht's Avatar Member
    Reputation
    15
    Join Date
    Sep 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    C# native dll mapper

    The idea isn't mine, the original code was done in C++ but I converted it to C#. I don't quite remember where I found it, was a while ago. It doesn't map other dlls it depends on yet, it uses LoadLibrary for those for now.

    I'll warn ahead of time, the code is ugly and was pretty much tossed together for a project I was working on.

    Code:
        [StructLayout(LayoutKind.Sequential)]
        public struct IMAGE_EXPORT_DIRECTORY
        {
            public UInt32 Characteristics;
            public UInt32 TimeDateStamp;
            public UInt16 MajorVersion;
            public UInt16 MinorVersion;
            public UInt32 Name;
            public UInt32 Base;
            public UInt32 NumberOfFunctions;
            public UInt32 NumberOfNames;
            public UInt32 AddressOfFunctions;     // RVA from base of image
            public UInt32 AddressOfNames;     // RVA from base of image
            public UInt32 AddressOfNameOrdinals;  // RVA from base of image
        }
        [StructLayout(LayoutKind.Sequential)]
        public struct IMAGE_IMPORT_BY_NAME
        {
            public short Hint;
            public byte Name;
        }
        [StructLayout(LayoutKind.Sequential)]
        public struct MEMORYMODULE
        {
            public IMAGE_NT_HEADERS headers;
            public IntPtr codeBase;
            public IntPtr modules;
            public int numModules;
            public int initialized;
    
        }
        [StructLayout(LayoutKind.Sequential)]
        public struct IMAGE_BASE_RELOCATION
        {
            public uint VirtualAddress;
            public uint SizeOfBlock;
        }
        [StructLayout(LayoutKind.Sequential)]
        public struct IMAGE_IMPORT_DESCRIPTOR
        {
            public uint CharacteristicsOrOriginalFirstThunk;    // 0 for terminating null import descriptor; RVA to original unbound IAT (PIMAGE_THUNK_DATA)
            public uint TimeDateStamp;                          // 0 if not bound, -1 if bound, and real date\time stamp in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT (new BIND); O.W. date/time stamp of DLL bound to (Old BIND)
            public uint ForwarderChain;                         // -1 if no forwarders
            public uint Name;
            public uint FirstThunk;                             // RVA to IAT (if bound this IAT has actual addresses)
        }
    
        [StructLayout(LayoutKind.Sequential, Pack = 4)]
        public struct IMAGE_SECTION_HEADER
        {
            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
            public byte[] Name;
            //union 
            //{    
            //    DWORD PhysicalAddress;    
            //    DWORD VirtualSize;  
            //} Misc;  
            public uint PhysicalAddress;
            //public uint VirtualSize;
            public uint VirtualAddress;
            public uint SizeOfRawData;
            public uint PointerToRawData;
            public uint PointerToRelocations;
            public uint PointerToLinenumbers;
            public short NumberOfRelocations;
            public short NumberOfLinenumbers;
            public uint Characteristics;
        }
        [StructLayout(LayoutKind.Sequential, Pack = 4)]
        public unsafe struct IMAGE_DOS_HEADER
        {
            public UInt16 e_magic;       // Magic number
            public UInt16 e_cblp;        // Bytes on last page of file
            public UInt16 e_cp;          // Pages in file
            public UInt16 e_crlc;        // Relocations
            public UInt16 e_cparhdr;     // Size of header in paragraphs
            public UInt16 e_minalloc;    // Minimum extra paragraphs needed
            public UInt16 e_maxalloc;    // Maximum extra paragraphs needed
            public UInt16 e_ss;          // Initial (relative) SS value
            public UInt16 e_sp;          // Initial SP value
            public UInt16 e_csum;        // Checksum
            public UInt16 e_ip;          // Initial IP value
            public UInt16 e_cs;          // Initial (relative) CS value
            public UInt16 e_lfarlc;      // File address of relocation table
            public UInt16 e_ovno;        // Overlay number
            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
            public UInt16[] e_res1;        // Reserved words
            public UInt16 e_oemid;       // OEM identifier (for e_oeminfo)
            public UInt16 e_oeminfo;     // OEM information; e_oemid specific
            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 10)]
            public UInt16[] e_res2;        // Reserved words
            public Int32 e_lfanew;      // File address of new exe header
        }
        [StructLayout(LayoutKind.Sequential, Pack = 4)]
        public struct IMAGE_DATA_DIRECTORY
        {
            public UInt32 VirtualAddress;
            public UInt32 Size;
        }
        [StructLayout(LayoutKind.Sequential, Pack = 4)]
        public struct IMAGE_OPTIONAL_HEADER32
        {
            //
            // Standard fields.
            //
            public UInt16 Magic;
            public Byte MajorLinkerVersion;
            public Byte MinorLinkerVersion;
            public UInt32 SizeOfCode;
            public UInt32 SizeOfInitializedData;
            public UInt32 SizeOfUninitializedData;
            public UInt32 AddressOfEntryPoint;
            public UInt32 BaseOfCode;
            public UInt32 BaseOfData;
            //
            // NT additional fields.
            //
            public UInt32 ImageBase;
            public UInt32 SectionAlignment;
            public UInt32 FileAlignment;
            public UInt16 MajorOperatingSystemVersion;
            public UInt16 MinorOperatingSystemVersion;
            public UInt16 MajorImageVersion;
            public UInt16 MinorImageVersion;
            public UInt16 MajorSubsystemVersion;
            public UInt16 MinorSubsystemVersion;
            public UInt32 Win32VersionValue;
            public UInt32 SizeOfImage;
            public UInt32 SizeOfHeaders;
            public UInt32 CheckSum;
            public UInt16 Subsystem;
            public UInt16 DllCharacteristics;
            public UInt32 SizeOfStackReserve;
            public UInt32 SizeOfStackCommit;
            public UInt32 SizeOfHeapReserve;
            public UInt32 SizeOfHeapCommit;
            public UInt32 LoaderFlags;
            public UInt32 NumberOfRvaAndSizes;
            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
            public IMAGE_DATA_DIRECTORY[] DataDirectory;
        }
        [StructLayout(LayoutKind.Sequential, Pack = 4)]
        public struct IMAGE_FILE_HEADER
        {
            public UInt16 Machine;
            public UInt16 NumberOfSections;
            public UInt32 TimeDateStamp;
            public UInt32 PointerToSymbolTable;
            public UInt32 NumberOfSymbols;
            public UInt16 SizeOfOptionalHeader;
            public UInt16 Characteristics;
        }
        [StructLayout(LayoutKind.Sequential)]
        public struct IMAGE_NT_HEADERS
        {
            public UInt32 Signature;
            public IMAGE_FILE_HEADER FileHeader;
            public IMAGE_OPTIONAL_HEADER32 OptionalHeader;
        }
    Code:
        public class DynamicDllLoader
        {
            internal class Win32Constants
            {
                public static UInt32 MEM_COMMIT = 0x1000;
    
                public static UInt32 PAGE_EXECUTE_READWRITE = 0x40;
                public static UInt32 PAGE_READWRITE = 0x04;
    
                public static UInt32 MEM_RELEASE = 0x8000;
                public static UInt32 MEM_RESERVE = 0x2000;
    
            }
    
            internal static class Win32Imports
            {
                [DllImport("kernel32", CharSet = CharSet.Ansi, ExactSpelling = true, SetLastError = true)]
                public static extern UInt32 GetProcAddress(IntPtr hModule, string procName);
    
                [DllImport("kernel32")]
                public static extern int LoadLibrary(string lpFileName);
    
                [DllImport("kernel32")]
                public static extern UInt32 GetLastError();
    
                [DllImport("kernel32.dll")]
                public static extern IntPtr GetProcAddress(IntPtr module, IntPtr ordinal);
    
                [DllImport("kernel32")]
                public static extern UInt32 VirtualAlloc(UInt32 lpStartAddr,
                     UInt32 size, UInt32 flAllocationType, UInt32 flProtect);
    
                [DllImport("kernel32.dll", SetLastError = true)]
                internal static extern bool VirtualFree(IntPtr lpAddress, UIntPtr dwSize,
                   uint dwFreeType);
                
                [DllImport("kernel32.dll", SetLastError = true)]
                internal static extern bool VirtualProtect(IntPtr lpAddress, uint dwSize,
                   uint flNewProtect, out uint lpflOldProtect);
    
            }
            internal static class PointerHelpers
            {
                public static T ToStruct<T>(byte[] data) where T : struct
                {
                    unsafe
                    {
                        fixed (byte* p = &data[0])
                        {
                            return (T)Marshal.PtrToStructure(new IntPtr(p), typeof(T));
                        }
                    }
                }
    
                public static T ToStruct<T>(byte[] data, uint from) where T : struct
                {
                    unsafe
                    {
                        fixed (byte* p = &data[from])
                        {
                            return (T)Marshal.PtrToStructure(new IntPtr(p), typeof(T));
                        }
                    }
                }
    
                public static T ToStruct<T>(IntPtr ptr, uint from) where T : struct
                {
                    return (T)Marshal.PtrToStructure(ptr + (int)from, typeof(T));
                }
            }
    
            [UnmanagedFunctionPointer(CallingConvention.StdCall)]
            unsafe delegate bool fnDllEntry(int instance, uint reason, void* reserved);
    
            internal unsafe bool LoadLibrary(byte[] data)
            {
                //fnDllEntry dllEntry;
                var dosHeader = PointerHelpers.ToStruct<IMAGE_DOS_HEADER>(data);
    
                var oldHeader = PointerHelpers.ToStruct<IMAGE_NT_HEADERS>(data, (uint)dosHeader.e_lfanew);
    
                var code = (IntPtr)(Win32Imports.VirtualAlloc(oldHeader.OptionalHeader.ImageBase, oldHeader.OptionalHeader.SizeOfImage, Win32Constants.MEM_RESERVE, Win32Constants.PAGE_READWRITE));
    
                if (code.ToInt32() == 0)
                    code = (IntPtr)(Win32Imports.VirtualAlloc((uint)code, oldHeader.OptionalHeader.SizeOfImage, Win32Constants.MEM_RESERVE, Win32Constants.PAGE_READWRITE));
    
                module = new MEMORYMODULE {codeBase = code, numModules = 0, modules = new IntPtr(0), initialized = 0};
    
                Win32Imports.VirtualAlloc((uint)code, oldHeader.OptionalHeader.SizeOfImage, Win32Constants.MEM_COMMIT, Win32Constants.PAGE_READWRITE);
    
                var headers = (IntPtr)(Win32Imports.VirtualAlloc((uint)code, oldHeader.OptionalHeader.SizeOfHeaders, Win32Constants.MEM_COMMIT, Win32Constants.PAGE_READWRITE));
    
                Marshal.Copy(data, 0, headers, (int)(dosHeader.e_lfanew + oldHeader.OptionalHeader.SizeOfHeaders));
    
                module.headers = PointerHelpers.ToStruct<IMAGE_NT_HEADERS>(headers, (uint)dosHeader.e_lfanew);
                module.headers.OptionalHeader.ImageBase = (uint)code;
    
                CopySections(data, oldHeader, headers, dosHeader);
    
                var locationDelta = (uint)(code - (int)oldHeader.OptionalHeader.ImageBase);
    
                if (locationDelta != 0)
                    PerformBaseRelocation(locationDelta);
    
                BuildImportTable();
                FinalizeSections(headers, dosHeader, oldHeader);
    
                bool success = false;
    
                try
                {
                    fnDllEntry dllEntry =
                        (fnDllEntry)
                        Marshal.GetDelegateForFunctionPointer(
                            new IntPtr(module.codeBase.ToInt32() + (int)module.headers.OptionalHeader.AddressOfEntryPoint),
                            typeof (fnDllEntry));
                    success = dllEntry(code.ToInt32(), 1, (void*)0);
                }
                catch (Exception ex)
                {
                    return false;
                }
                return success;
            }
    
            public int GetModuleCount()
            {
                int count = 0;
                IntPtr codeBase = module.codeBase;
                IMAGE_DATA_DIRECTORY directory = module.headers.OptionalHeader.DataDirectory[1];
                if (directory.Size > 0)
                {
                    var importDesc = PointerHelpers.ToStruct<IMAGE_IMPORT_DESCRIPTOR>(codeBase, directory.VirtualAddress);
                    while (importDesc.Name > 0)
                    {
                        var str = codeBase + (int)importDesc.Name;
                        string tmp = Marshal.PtrToStringAnsi(str);
                        int handle = Win32Imports.LoadLibrary(tmp);
    
                        if (handle == -1)
                        {
                            break;
                        }
                        count++;
                        importDesc = PointerHelpers.ToStruct<IMAGE_IMPORT_DESCRIPTOR>(codeBase, (uint)(directory.VirtualAddress + (Marshal.SizeOf(typeof(IMAGE_IMPORT_DESCRIPTOR)) * (count))));
                    }
                }
                return count;
            }
    
            public int BuildImportTable()
            {
                int ucount = GetModuleCount();
                module.modules = Marshal.AllocHGlobal((ucount) * sizeof(int));
                int pcount = 0;
                int result = 1;
                IntPtr codeBase = module.codeBase;
                IMAGE_DATA_DIRECTORY directory = module.headers.OptionalHeader.DataDirectory[1];
                if (directory.Size > 0)
                {
                    var importDesc = PointerHelpers.ToStruct<IMAGE_IMPORT_DESCRIPTOR>(codeBase, directory.VirtualAddress);
                    while (importDesc.Name > 0)
                    {
                        var str = codeBase + (int)importDesc.Name;
                        string tmp = Marshal.PtrToStringAnsi(str);
                        unsafe
                        {
                            uint* thunkRef;
                            uint* funcRef;
    
                            int handle = Win32Imports.LoadLibrary(tmp);
    
                            if (handle == -1)
                            {
                                result = 0;
                                break;
                            }
    
                            if (importDesc.CharacteristicsOrOriginalFirstThunk > 0)
                            {
                                IntPtr thunkRefAddr = codeBase + (int)importDesc.CharacteristicsOrOriginalFirstThunk;
                                thunkRef = (uint*)thunkRefAddr;
                                funcRef = (uint*)(codeBase + (int)importDesc.FirstThunk);
                            }
                            else
                            {
                                thunkRef = (uint*)(codeBase + (int)importDesc.FirstThunk);
                                funcRef = (uint*)(codeBase + (int)importDesc.FirstThunk);
                            }
                            for (; *thunkRef > 0; thunkRef++, funcRef++)
                            {
                                if ((*thunkRef & 0x80000000) != 0)
                                {
                                    *funcRef = (uint)Win32Imports.GetProcAddress(new IntPtr(handle), new IntPtr(*thunkRef & 0xffff));
                                }
                                else
                                {
                                    var str2 = codeBase + (int)(*thunkRef) + 2;
                                    var tmpaa = Marshal.PtrToStringAnsi(str2);
                                    *funcRef = Win32Imports.GetProcAddress(new IntPtr(handle), tmpaa);
                                }
                                if (*funcRef == 0)
                                {
                                    result = 0;
                                    break;
                                }
                            }
    
    
                            pcount++;
                            importDesc = PointerHelpers.ToStruct<IMAGE_IMPORT_DESCRIPTOR>(codeBase, directory.VirtualAddress + (uint)(Marshal.SizeOf(typeof(IMAGE_IMPORT_DESCRIPTOR)) * pcount));
                        }
                    }
                }
                return result;
            }
    
            static readonly int[][][] ProtectionFlags = new int[2][][];
    
            public void FinalizeSections(IntPtr headers, IMAGE_DOS_HEADER dosHeader, IMAGE_NT_HEADERS oldHeaders)
            {
                ProtectionFlags[0] = new int[2][];
                ProtectionFlags[1] = new int[2][];
                ProtectionFlags[0][0] = new int[2];
                ProtectionFlags[0][1] = new int[2];
                ProtectionFlags[1][0] = new int[2];
                ProtectionFlags[1][1] = new int[2];
                ProtectionFlags[0][0][0] = 0x01;
                ProtectionFlags[0][0][1] = 0x08;
                ProtectionFlags[0][1][0] = 0x02;
                ProtectionFlags[0][1][1] = 0x04;
                ProtectionFlags[1][0][0] = 0x10;
                ProtectionFlags[1][0][1] = 0x80;
                ProtectionFlags[1][1][0] = 0x20;
                ProtectionFlags[1][1][1] = 0x40;
    
                var section = PointerHelpers.ToStruct<IMAGE_SECTION_HEADER>(headers, (uint)(24 + dosHeader.e_lfanew + oldHeaders.FileHeader.SizeOfOptionalHeader));
                for (int i = 0; i < module.headers.FileHeader.NumberOfSections; i++)
                {
                    //Console.WriteLine("Finalizing " + Encoding.UTF8.GetString(section.Name));
                    int executable = (section.Characteristics & 0x20000000) != 0 ? 1 : 0;
                    int readable = (section.Characteristics & 0x40000000) != 0 ? 1 : 0;
                    int writeable = (section.Characteristics & 0x80000000) != 0 ? 1 : 0;
    
                    if ((section.Characteristics & 0x02000000) > 0)
                    {
                        bool aa = Win32Imports.VirtualFree(new IntPtr(section.PhysicalAddress), (UIntPtr)section.SizeOfRawData, 0x4000);
                        continue;
                    }
    
                    var protect = (uint)ProtectionFlags[executable][readable][writeable];
    
                    if ((section.Characteristics & 0x04000000) > 0)
                        protect |= 0x200;
                    var size = (int)section.SizeOfRawData;
                    if (size == 0)
                    {
                        if ((section.Characteristics & 0x00000040) > 0)
                            size = (int)module.headers.OptionalHeader.SizeOfInitializedData;
                        else if ((section.Characteristics & 0x00000080) > 0)
                            size = (int)module.headers.OptionalHeader.SizeOfUninitializedData;
    
                    }
    
                    if (size > 0)
                    {
                        uint oldProtect;
                        if (!Win32Imports.VirtualProtect(new IntPtr(section.PhysicalAddress), section.SizeOfRawData, protect, out oldProtect))
                        {
                        }
                    }
    
                    section = PointerHelpers.ToStruct<IMAGE_SECTION_HEADER>(headers, (uint)((24 + dosHeader.e_lfanew + oldHeaders.FileHeader.SizeOfOptionalHeader) + (Marshal.SizeOf(typeof(IMAGE_SECTION_HEADER)) * (i + 1))));
                }
    
            }
    
            public void PerformBaseRelocation(uint delta)
            {
                IntPtr codeBase = module.codeBase;
                int sizeOfBase = Marshal.SizeOf(typeof(IMAGE_BASE_RELOCATION));
                IMAGE_DATA_DIRECTORY directory = module.headers.OptionalHeader.DataDirectory[5];
                int cnt = 0;
                if (directory.Size > 0)
                {
                    var relocation = PointerHelpers.ToStruct<IMAGE_BASE_RELOCATION>(codeBase, directory.VirtualAddress);
                    while (relocation.VirtualAddress > 0)
                    {
                        unsafe
                        {
                            var dest = (IntPtr)(codeBase.ToInt32() + (int)relocation.VirtualAddress);
                            var relInfo = (ushort*)(codeBase.ToInt32() + (int)directory.VirtualAddress + sizeOfBase);
                            uint i;
                            for (i = 0; i < ((relocation.SizeOfBlock - Marshal.SizeOf(typeof(IMAGE_BASE_RELOCATION))) / 2); i++, relInfo++)
                            {
                                int type = *relInfo >> 12;
                                int offset = (*relInfo & 0xfff);
                                switch (type)
                                {
                                    case 0x00:
                                        break;
                                    case 0x03:
                                        var patchAddrHl = (uint*)((dest) + (offset));
                                        *patchAddrHl += delta;
                                        break;
                                }
                            }
                        }
                        cnt += (int)relocation.SizeOfBlock;
                        relocation = PointerHelpers.ToStruct<IMAGE_BASE_RELOCATION>(codeBase, (uint)(directory.VirtualAddress + cnt));
    
                    }
                }
            }
    
            private MEMORYMODULE module;
            public uint GetProcAddress(string name)
            {
                unsafe
                {
                    IntPtr codeBase = module.codeBase;
                    int idx = -1;
                    uint i;
                    IMAGE_DATA_DIRECTORY directory = module.headers.OptionalHeader.DataDirectory[0];
                    if (directory.Size == 0)
                        return 0;
                    var exports = PointerHelpers.ToStruct<IMAGE_EXPORT_DIRECTORY>(codeBase, directory.VirtualAddress);
                    var nameRef = (uint*)new IntPtr(codeBase.ToInt32() + exports.AddressOfNames);
                    var ordinal = (ushort*)new IntPtr(codeBase.ToInt32() + exports.AddressOfNameOrdinals);
                    for (i = 0; i < exports.NumberOfNames; i++, nameRef++, ordinal++)
                    {
                        var str = codeBase + (int)(*nameRef);
                        string tmp = Marshal.PtrToStringAnsi(str);
                        if (tmp == name)
                        {
                            idx = *ordinal;
                            break;
                        }
                    }
    
                    var tmpaa = (uint*)(codeBase.ToInt32() + (exports.AddressOfFunctions + (idx * 4)));
                    var addr = (uint)((codeBase.ToInt32()) + (*tmpaa));
                    return addr;
                }
            }
    
            public void CopySections(byte[] data, IMAGE_NT_HEADERS oldHeaders, IntPtr headers, IMAGE_DOS_HEADER dosHeader)
            {
                int i;
                IntPtr codebase = module.codeBase;
                var section = PointerHelpers.ToStruct<IMAGE_SECTION_HEADER>(headers, (uint)(24 + dosHeader.e_lfanew + oldHeaders.FileHeader.SizeOfOptionalHeader));
                for (i = 0; i < module.headers.FileHeader.NumberOfSections; i++)
                {
                    IntPtr dest;
                    if (section.SizeOfRawData == 0)
                    {
                        uint size = oldHeaders.OptionalHeader.SectionAlignment;
                        if (size > 0)
                        {
                            dest = new IntPtr((Win32Imports.VirtualAlloc((uint)(codebase + (int)section.VirtualAddress), size, Win32Constants.MEM_COMMIT,
                                                         Win32Constants.PAGE_READWRITE)));
    
                            section.PhysicalAddress = (uint)dest;
                            var write = new IntPtr(headers.ToInt32() + (32 + dosHeader.e_lfanew + oldHeaders.FileHeader.SizeOfOptionalHeader) + (Marshal.SizeOf(typeof(IMAGE_SECTION_HEADER)) * (i)));
                            Marshal.WriteInt32(write, (int)dest);
                            var datazz = new byte[size + 1];
                            Marshal.Copy(datazz, 0, dest, (int)size);
                        }
                        section = PointerHelpers.ToStruct<IMAGE_SECTION_HEADER>(headers, (uint)((24 + dosHeader.e_lfanew + oldHeaders.FileHeader.SizeOfOptionalHeader) + (Marshal.SizeOf(typeof(IMAGE_SECTION_HEADER)) * (i + 1))));
                        continue;
                    }
    
                    dest = new IntPtr((Win32Imports.VirtualAlloc((uint)(codebase + (int)section.VirtualAddress), section.SizeOfRawData, Win32Constants.MEM_COMMIT,
                                                 Win32Constants.PAGE_READWRITE)));
                    Marshal.Copy(data, (int)section.PointerToRawData, dest, (int)section.SizeOfRawData);
                    section.PhysicalAddress = (uint)dest;
                    var write2 = new IntPtr(headers.ToInt32() + (32 + dosHeader.e_lfanew + oldHeaders.FileHeader.SizeOfOptionalHeader) + (Marshal.SizeOf(typeof(IMAGE_SECTION_HEADER)) * (i)));
                    Marshal.WriteInt32(write2, (int)dest);
                    section = PointerHelpers.ToStruct<IMAGE_SECTION_HEADER>(headers, (uint)((24 + dosHeader.e_lfanew + oldHeaders.FileHeader.SizeOfOptionalHeader) + (Marshal.SizeOf(typeof(IMAGE_SECTION_HEADER)) * (i + 1))));
                }
            }
        }
    Sorry it's early, I forgot to show you how to use it =P.

    Code:
            [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
            public delegate void SomeExportedFunctionInTheDll();
    
            static unsafe void Main(string[] args)
            {
                string file = @"SomeDll.dll";
                byte[] dat = File.ReadAllBytes(file);
    
                DynamicDllLoader loader = new DynamicDllLoader();
                // LoadLibrary accepts a byte array, yay we can embed native dlls in our program and load them! :D
                bool loaded = loader.LoadLibrary(dat);
                uint addr = loader.GetProcAddress("SomeExportedFunction");
    
                SomeExportedFunctionInTheDll invoke =
                    (SomeExportedFunctionInTheDll)Marshal.GetDelegateForFunctionPointer((IntPtr)addr, typeof(SomeExportedFunctionInTheDll));
                invoke();
            }
    Last edited by Lecht; 11-05-2010 at 04:42 AM.

    C# native dll mapper
  2. #2
    dook123's Avatar Active Member
    Reputation
    21
    Join Date
    Oct 2008
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    WoW

    Im very impressed. Thank you for sharing this. I was recently reading up on the structure of DLLs while working with IAT hooking. This looks great.

    +rep

  3. #3
    amadmonk's Avatar Active Member
    Reputation
    124
    Join Date
    Apr 2008
    Posts
    772
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, a port of manualmap to C#!

    My only suggestion (aside from quibbling code-layout stuff) would be to find and snatch the loader lock while you're doing the mapping; on the off chance that the real LoadLibrary got called at the same time that you were doing manual mapping, Very Bad Things Would Happen.

    Still, nice code.
    Don't believe everything you think.

  4. #4
    Lecht's Avatar Member
    Reputation
    15
    Join Date
    Sep 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by amadmonk View Post
    Nice, a port of manualmap to C#!

    My only suggestion (aside from quibbling code-layout stuff) would be to find and snatch the loader lock while you're doing the mapping; on the off chance that the real LoadLibrary got called at the same time that you were doing manual mapping, Very Bad Things Would Happen.

    Still, nice code.
    That's a good point, I'm going to expand on it soon and maybe release a nice update, thanks for pointing that out.

  5. #5
    BuloZB's Avatar Active Member
    Reputation
    20
    Join Date
    Nov 2008
    Posts
    263
    Thanks G/R
    26/4
    Trade Feedback
    17 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lecht thx for this )

  6. #6
    BoogieManTM's Avatar Active Member
    Reputation
    52
    Join Date
    May 2008
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Werd to yo motha.

    +rep

Similar Threads

  1. Replies: 1
    Last Post: 01-19-2012, 03:14 AM
  2. Replies: 6
    Last Post: 10-05-2007, 02:59 PM
  3. Using DLL's to inject values without CE.
    By Matsy in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 06-29-2007, 02:26 PM
  4. so whats scan.dll?
    By Grass in forum World of Warcraft General
    Replies: 1
    Last Post: 02-27-2007, 07:14 AM
  5. .DLL Injector & Language Hack
    By tehshadow in forum World of Warcraft Bots and Programs
    Replies: 18
    Last Post: 11-07-2006, 10:38 PM
All times are GMT -5. The time now is 09:29 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search