b1scoito / cozinha_loader

An injector focused on undetectability that automatically injects a DLL into the target process with VAC3 bypass.
https://github.com/b1scoito/cozinha_loader
GNU General Public License v3.0
128 stars 14 forks source link

Make a injection with a dll inside the exe #4

Closed parvarti closed 3 years ago

parvarti commented 3 years ago

do u have any ideas to make some resource file with a dll and push it to injection? i am new dev in c++, any help will be great

b1scoito commented 3 years ago

Seeing the arguments that the function read_file_to_memory takes it's easy to understand how to embed the DLL inside an array of bytes of the binary.

You will need to make an unsigned char array, as made here And write it into an std::vector like this.

parvarti commented 3 years ago

i will try thank you <3