Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 880 Bytes

File metadata and controls

24 lines (16 loc) · 880 Bytes

Ideas

Loading of memory in remote process

The idea of loading arbitrary memory inside a remote process is interesting because it sidesteps the DLL path expansion and could possibly be more flexible.

Possible issues

Technical

I'm not aware of which functions we could use to execute the copied over memory. Currently we're copying over the path to the DLL and it's mostly by coincidence LoadLibraryA has the correct type signature to be used with createRemoteThread. If we were to load the DLL into memory we'd have to figure out what inside of it matches the createRemoteThread contract and execute that.

Beyond that, what mappings in the DLL data are actually set up with LoadLibraryA?

Opportunity cost

It's entirely possible that an entirely different type of injection or process manipulation technique is better to spend time and energy on.