MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / RemoteDup

Function RemoteDup

emmy_tool/src/windows/utility.cpp:169–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169void *RemoteDup(HANDLE process, const void *source, size_t length) {
170 void *remote = VirtualAllocEx(process, nullptr, length, MEM_COMMIT, PAGE_READWRITE);
171 SIZE_T numBytesWritten;
172 WriteProcessMemory(process, remote, source, length, &numBytesWritten);
173 return remote;
174}
175
176
177

Callers 3

IsBeingInjectedFunction · 0.85
InjectDllFunction · 0.85
InjectDllForProcessFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected