Jump to content

How to write array to memory?


E1M1
 Share

Recommended Posts

Following code would write "something" in memory address, but how do I write array to memory so that it would be still array. I need to convert it to binary somehow?

#include <WinAPI.au3>
#include <Memory.au3>
$null = ""
$hProcess = _WinAPI_OpenProcess(0x001F0FFF, False, ProcessExists("c.exe"))
$struct = DllStructCreate("char[255]")
DllStructSetData($struct, 1, "something")
$alloc = _MemVirtualAllocEx($hProcess, "", DllStructGetSize($struct), $MEM_COMMIT, $PAGE_READWRITE)
_WinAPI_WriteProcessMemory($hProcess, $alloc, DllStructGetPtr($struct, 1), DllStructGetSize($struct), $null);

edited

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...