Advertisement
FlyFar

dropper_STUBHandler.h

Feb 18th, 2023
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | Cybersecurity | 0 0
  1. #ifndef __STUB_HANDLER_H__
  2. #define __STUB_HANDLER_H__
  3.  
  4. #include "StdAfx.h"
  5.  
  6. typedef struct SCoreHeader {
  7.     DWORD HeaderLength;     // 552
  8.     DWORD SectionLength;    // 498176
  9.     DWORD FullLength;       // 498728
  10.     DWORD dw4;              // 90
  11.     DWORD dw5;              // 498818 (FullLength + dw4)
  12.     DWORD dw6;              // 4587
  13.     DWORD dw7[130];         // {0}
  14.     DWORD dw137;            // 1
  15.     DWORD dw138;            // 0
  16. } TCoreHeader;
  17.  
  18. void Core_Load(void);
  19. void Core_Crypt(BYTE *lpStream, DWORD dwLength);
  20. BOOL Core_GetDLL(LPVOID *ppCore, INT32 *pCoreLen);
  21.  
  22. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement