|
SaveDllX64 and CopyDllX64
SaveDllX64 and CopyDllX64: grab dll (maybe virtual dll) from 64 bits process;
both make exactly the same thing, SaveDllX64 use CreateFile while CopyDllX64 use CopyFile.
You would need to copy config.txt and SaveDllX64.dll to target program directory;
inside config.txt file the first line should be the name of dll to be saved,
then you inject SaveDllX64.dll in the target process with LoadLibraryInject64
https://forum.tuts4you.com/topic/45799-loadlibraryinject64
https://forum.exetools.com/showthread.php?t=21407
or other x64 process injector, the new file will be saved in target program directory "original_name+_saved" for SaveDllX64; "original_name+__copied" for CopyDllX64.
|