Advertisement
Riremito

DLLがほかのDLLに依存している場合のDLL Injection

Dec 11th, 2021
3,016
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [Enable]
  2. Alloc(DLLInjection, 512)
  3. Label(InjectDir)
  4. Label(InjectDLL)
  5.  
  6. DLLInjection:
  7. push InjectDir
  8. call SetDllDirectoryA
  9. push InjectDLL
  10. call LoadLibraryA
  11. ret
  12.  
  13. InjectDir:
  14. db 'C:\...ファイルパス(CEのフォルダ)' 00
  15.  
  16. InjectDLL:
  17. db 'DLL名' 00
  18.  
  19. CreateThread(DLLInjection)
  20. [Disable]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement