Click here to Skip to main content
Licence 
First Posted 27 Nov 2006
Views 144,562
Downloads 1,078
Bookmarked 85 times

Create your Proxy DLLs automatically

By Michael Chourdakis | 14 May 2007
Here is a small program that will create the CPP and DEF for a proxy DLL, based on the exports of another DLL. You can use it to generate a template and then you edit this template to satisfy your needs.
1 vote, 2.5%
1

2
2 votes, 5.0%
3
2 votes, 5.0%
4
35 votes, 87.5%
5
4.89/5 - 40 votes
3 removed
μ 4.76, σa 1.37 [?]

Introduction

A lot of us have tried to create a proxy DLL to replace an existing one and spy other programs' calls. Here is a small program that will create the CPP and DEF for a proxy DLL based on the exports of another DLL. You can use it to generate a template and then edit this template to satisfy your needs.

Background

When creating a proxy DLL, you have to export precisely the same names as exported by the original DLL. This can be painful, for two reasons:

  1. There are too many exports.
  2. There are functions that you don't know what they do; you'd just want to spy on one specific function call.

The second problem is solved with assembly and with the aid of the __declspec(naked) attribute. The program creates function stubs that do nothing but JUMP (not call) to the exported address, so the stack is left as it should be. This allows you to create code only for functions that you actually know what they do.

Using the program

WRAPPIT <dll> <txt> <convention> <point dll name> <cpp> <def>  
  • <dll> is the new DLL name you want to create. The program can compile the DLL using VC++ or BC++, depending on how you comment or edit lines 233-237:
    //
    // _stprintf(ay,_T("BCC32 -o%s.obj -c %s\r\n"),argv[5],argv[5]);
    _stprintf(ay,_T("CL.EXE /O2 /GL /I \".\" /D \"WIN32\" /D \"NDEBUG\" /D" 
              "\"_WINDOWS\" /D \"_WINDLL\" /FD /EHsc /MT /Fo\".\\%s.obj\" " 
              "/Fd\".\\vc80.pdb\" /W3 /nologo /c /Wp64 /TP " 
              "/errorReport:prompt %s\r\n"),argv[5],argv[5]);
    system(ay);
    // _stprintf(ay,_T("ILINK32 -c -Tpd %s.obj,
    //           %s,,,%s\r\n"),argv[5],argv[1],argv[6]);
    _stprintf(ay,_T("LINK.EXE /OUT:\"%s\" /INCREMENTAL:NO /NOLOGO /DLL" 
              " /MANIFEST /DEF:\"%s\" /SUBSYSTEM:WINDOWS /OPT:REF " 
              "/OPT:ICF /LTCG /MACHINE:X86 /ERRORREPORT:PROMPT " 
              "%s.obj kernel32.lib user32.lib gdi32.lib winspool.lib " 
              "comdlg32.lib advapi32.lib shell32.lib ole32.lib " 
              "oleaut32.lib uuid.lib odbc32.lib odbccp32.lib\r\n"), 
              argv[1],argv[6],argv[5]);
    system(ay);
    //
  • <txt> is a text file containing the exports from the original DLL. You can create this file with either dumpbin:
    dumpbin /exports original.dll > exports.txt

    or with tdump:

    tdump original.dll -ee > exports.txt
  • <convention> is the convention call you want your functions to have. You will usually want to use __stdcall, but it hardly matters what you use because the stub functions immediately jump to the existing code and therefore, they should work with any calling convention.
  • <point dll name> is the DLL name that your proxy DLL will try to load. Make sure you use C++ escape characters like \\.
  • <cpp> is the generated CPP file.
  • <def> is the generated DEF file.

Example:

You have WSOCK32.DLL and you want to create a proxy for it, replacing the original DLL as WSOCK32_.DLL. What would you do?

  • move wsock32.dll wsock32_.dll
  • dumpbin /exports wsock32_.dll > exports.txt
  • wrappit wsock32.dll exports.txt __stdcall .\\wsock32_.dll wsock32.cpp wsock32.def

This will:

  • Parse the text file for exports and create the DEF. Exported functions by ordinal only are supported.
  • Create the sample CPP code. In the DLL's code DllMain, the original wsock32_dll will be loaded with LoadLibrary(). Then all the original exported functions' addresses will be returned by GetProcAddress and stored in an internal pointer. Then stubs for each function will be created.

A single CPP will look like this:

//
#include <windows.h>
#pragma pack(1)
HINSTANCE hLThis = 0;
HINSTANCE hL = 0;
FARPROC p[75] = {0};
// -----------
BOOL WINAPI DllMain(HINSTANCE hInst,DWORD reason,LPVOID)
{
    if (reason == DLL_PROCESS_ATTACH)
    {
        hLThis = hInst;
        hL = LoadLibrary(".\\wsock32_.dll");
        if (!hL) return false;

        p[0] = GetProcAddress(hL,"AcceptEx");
        p[1] = GetProcAddress(hL,"EnumProtocolsA");
        p[2] = GetProcAddress(hL,"EnumProtocolsW");
      ...
    }
    if (reason == DLL_PROCESS_DETACH)
    {
        FreeLibrary(hL);
    }
    return 1;
}

// AcceptEx
extern "C" __declspec(naked) void __stdcall __E__0__()
{
    __asm
    {
        jmp p[0*4];
    }
}

// EnumProtocolsA
extern "C" __declspec(naked) void __stdcall __E__1__()
{
    __asm
    {
        jmp p[1*4];
    }
}

// EnumProtocolsW
extern "C" __declspec(naked) void __stdcall __E__2__()
{
    __asm
    {
        jmp p[2*4];
    }
}
...
//

A single DEF will look like this:

EXPORTS
AcceptEx=__E__0__ @1141
EnumProtocolsA=__E__1__ @1111
EnumProtocolsW=__E__2__ @1112
...

You may now edit CPP/DEF files and reuse them to create your own proxy DLL!

Important!

Once the cpp is ready, you should replace functions that you know how to use. For example, If you want to spy on Wsock32.send():

// send, created by wrappit
extern "C" __declspec(naked) void __stdcall __E__69__()
   {
   __asm
    {
    jmp p[69*4];
    }
 }

// If you want to manipulate it, change to:
extern "C" int __stdcall __E__69__(SOCKET x,char* b,int l,int pr)
  {
  // manipulate here parameters

.....
  // call original send
     typedef int (__stdcall *pS)(SOCKET,char*,int,int);
     pS pps = (pS)p[63*4];
     int rv = pps(x,b,l,pr);

     return rv;
  }

History

  • 14 May, 2007 - Fixed problem occuring when dumpbin.exe generates RVA information as well

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Michael Chourdakis

Engineer

Greece Greece

Member
I'm working in C++, PHP , Flash and DSP Programming, currently experimenting with Windows 7 technologies and professional audio applications.
 
http://www.turboirc.com
 
You can find me on efnet in #musicdsp, #win32 and #winprog.
Nick: WindowsNT.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralCant create exports.txt :'( PinmemberMember 43439198:00 15 Jan '08  
GeneralRe: Cant create exports.txt :'( PinmemberMichael Chourdakis9:25 15 Jan '08  
GeneralRelease of Wrappit 2.0 PinmemberMichael Chourdakis8:14 16 Dec '07  
GeneralRe: Release of Wrappit 2.0 PinmemberHernán Di Pietro19:36 17 Sep '08  
GeneralRe: Release of Wrappit 2.0 Pinmemberndataman6:18 21 Oct '08  
GeneralRe: Release of Wrappit 2.0 PinmemberMichael Chourdakis6:28 21 Oct '08  
GeneralRe: Release of Wrappit 2.0 Pinmemberndataman1:18 22 Oct '08  
Thank you for the quick reply Michael.
GeneralRe: Release of Wrappit 2.0 Pinmembertop_sli13:31 14 Feb '10  
QuestionHow to make it work with WinCE? [modified] PinmemberKelvin Foo Chuan Lyi17:00 10 Sep '07  
AnswerRe: How to make it work with WinCE? PinmemberMichael Chourdakis18:15 10 Sep '07  
GeneralRe: How to make it work with WinCE? PinmemberKelvin Foo Chuan Lyi6:02 14 Sep '07  
GeneralRe: How to make it work with WinCE? PinmemberMichael Chourdakis6:10 14 Sep '07  
GeneralRe: How to make it work with WinCE? PinmemberMichael Chourdakis7:08 14 Sep '07  
GeneralRe: How to make it work with WinCE? PinmemberMichael Chourdakis7:14 14 Sep '07  
GeneralRe: How to make it work with WinCE? PinmemberKelvin Foo Chuan Lyi23:55 15 Sep '07  
QuestionOne interesting case with original DLL exports Pinmemberandrejusc7:35 30 Jul '07  
AnswerRe: One interesting case with original DLL exports PinmemberMichael Chourdakis7:46 30 Jul '07  
GeneralRe: One interesting case with original DLL exports Pinmemberdubbele onzin10:26 13 Nov '07  
Generalfail when proxy msvcr71.dll Pinmemberg0ug0u22:57 19 Jul '07  
GeneralRe: fail when proxy msvcr71.dll PinmemberMichael Chourdakis0:38 20 Jul '07  
GeneralRe: fail when proxy msvcr71.dll Pinmemberg0ug0u15:48 23 Jul '07  
GeneralRe: fail when proxy msvcr71.dll PinmemberMichael Chourdakis23:33 23 Jul '07  
GeneralDLL Export forwarding PinmemberHokei10:08 5 Jun '07  
GeneralRe: DLL Export forwarding PinmemberMichael Chourdakis10:23 5 Jun '07  
GeneralRe: DLL Export forwarding PinmemberHokei10:58 5 Jun '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120210.1 | Last Updated 14 May 2007
Article Copyright 2006 by Michael Chourdakis
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid