dll_load.h
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:3k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. #ifndef __INC_DLL_LOAD_H
  16. #define __INC_DLL_LOAD_H
  17. #include<windows.h>
  18. #define NTSIGNATURE(ptr) ((LPVOID)((BYTE *)(ptr) + ((PIMAGE_DOS_HEADER)(ptr))->e_lfanew))
  19. #define SIZE_OF_NT_SIGNATURE (sizeof(DWORD))
  20. #define PEFHDROFFSET(ptr) ((LPVOID)((BYTE *)(ptr)+((PIMAGE_DOS_HEADER)(ptr))->e_lfanew+SIZE_OF_NT_SIGNATURE))
  21. #define OPTHDROFFSET(ptr) ((LPVOID)((BYTE *)(ptr)+((PIMAGE_DOS_HEADER)(ptr))->e_lfanew+SIZE_OF_NT_SIGNATURE+sizeof(IMAGE_FILE_HEADER)))
  22. #define SECHDROFFSET(ptr) ((LPVOID)((BYTE *)(ptr)+((PIMAGE_DOS_HEADER)(ptr))->e_lfanew+SIZE_OF_NT_SIGNATURE+sizeof(IMAGE_FILE_HEADER)+sizeof(IMAGE_OPTIONAL_HEADER)))
  23. #define RVATOVA(base,offset) ((LPVOID)((DWORD)(base)+(DWORD)(offset)))
  24. #define VATORVA(base,offset) ((LPVOID)((DWORD)(offset)-(DWORD)(base)))
  25. #define SIZE_OF_PARAMETER_BLOCK 4096
  26. #define IMAGE_PARAMETER_MAGIC 0xCDC31337
  27. #define MAX_DLL_PROCESSES 256
  28. #define DLL_ATTACH 0
  29. #define DLL_DETACH 1
  30. // NEW FLAGS
  31. #define REBIND_IMAGE_IMPORTS 0x00000100
  32. #define RWX_PERMISSIONS 0x00000200
  33. #define FORCE_LOAD_NEW_IMAGE 0x00000400
  34. // Internal functions
  35. BOOL MapDLLFromImage(void *pDLLFileImage, void *pMemoryImage);
  36. BOOL PrepareDLLImage(void *pMemoryImage, DWORD dwImageSize, BOOL bResolve, BOOL bRebind);
  37. // Primary functions
  38. void InitializeDLLLoad(void);
  39. void KillDLLLoad(void);
  40. HMODULE GetDLLHandle(char *svName);
  41. DWORD GetDLLFileName(HMODULE hModule, LPTSTR lpFileName, DWORD nSize);
  42. FARPROC GetDLLProcAddress(HMODULE hModule, LPCSTR lpProcName);
  43. FARPROC SetDLLProcAddress(HMODULE hModule, LPCSTR lpProcName, FARPROC fpAddr);
  44. BOOL ResetDLLProcAddress(HMODULE hModule, LPCSTR lpProcName);
  45. HMODULE LoadDLLFromImage(void *pDLLFileImage, char *svMappingName, DWORD dwFlags);
  46. HMODULE LoadDLLEx(LPCTSTR lpLibFileName, HANDLE hFile, DWORD dwFlags);
  47. HMODULE LoadDLL(LPCTSTR lpLibFileName);
  48. BOOL FreeDLL(HMODULE hLibModule);
  49. #endif