Click here to Skip to main content
6,822,123 members and growing! (15,716 online)
Email Password   helpLost your password?
General Programming » DLLs & Assemblies » General     Intermediate

Create your Proxy DLLs automatically

By Michael Chourdakis

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.
C++, Windows, Visual-Studio, Dev
Posted:27 Nov 2006
Updated:14 May 2007
Views:84,560
Bookmarked:71 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
33 votes for this article.
Popularity: 7.18 Rating: 4.73 out of 5
1 vote, 3.0%
1

2
2 votes, 6.1%
3
2 votes, 6.1%
4
28 votes, 84.8%
5

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


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
Occupation: Engineer
Location: Greece Greece

Other popular DLLs & Assemblies articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 82 (Total in Forum: 82) (Refresh)FirstPrevNext
Generalwhy p[x*4] ? PinmemberdaDotr8:11 19 Dec '09  
GeneralExports having a ordinal number only Pinmemberspackjarrow11:53 9 Dec '09  
GeneralI cant make it work for ws2_32.dll PinmemberMugiwara5:44 27 Jul '09  
GeneralRe: I cant make it work for ws2_32.dll PinmemberArielMendoza22:29 27 Jul '09  
GeneralRe: I cant make it work for ws2_32.dll PinmemberMugiwara7:03 28 Jul '09  
GeneralRe: I cant make it work for ws2_32.dll PinmemberArielMendoza10:59 28 Jul '09  
GeneralRe: I cant make it work for ws2_32.dll [modified] PinmemberMugiwara3:24 29 Jul '09  
GeneralRe: I cant make it work for ws2_32.dll PinmemberArielMendoza11:40 29 Jul '09  
GeneralNew application PinmemberArielMendoza1:34 27 Jul '09  
GeneralError in the index PinmemberCodeGibbon2:58 3 Dec '08  
GeneralForwarding function PinmembersparrowIsaBird14:12 22 Oct '08  
GeneralRe: Forwarding function PinmemberMichael Chourdakis21:32 22 Oct '08  
GeneralRe: Forwarding function PinmembersparrowIsaBird0:25 23 Oct '08  
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  
GeneralHow to make it work with WinCE? [modified] PinmemberKelvin Foo Chuan Lyi17:00 10 Sep '07  
GeneralRe: 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  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

PermaLink | Privacy | Terms of Use
Last Updated: 14 May 2007
Editor: Genevieve Sovereign
Copyright 2006 by Michael Chourdakis
Everything else Copyright © CodeProject, 1999-2010
Web21 | Advertise on the Code Project