Fastest way to inject dll

12/19/2019 17:26 Sclupter#1
hello guys i've seen [Only registered and activated users can see links. Click Here To Register...] and i made it successfully but it's kind of very long way to do it so is there any other way ?

note : if the client has encrypted blowfish key how to do it also
12/19/2019 20:09 florian0#2
All relevant inject versions are linked in this thread:
[Only registered and activated users can see links. Click Here To Register...]

A changed blowfish key doesn't affect any of these at all. If the client itself is protected with a packer like VMProtect, you have no choice to either use an external dll injector tool, or unpack the client.
12/20/2019 00:04 Sclupter#3
Quote:
Originally Posted by florian0 View Post
All relevant inject versions are linked in this thread:
[Only registered and activated users can see links. Click Here To Register...]

A changed blowfish key doesn't affect any of these at all. If the client itself is protected with a packer like VMProtect, you have no choice to either use an external dll injector tool, or unpack the client.
thanks i have seen it before but unfortunately most of my dll doesn't have exported function so i can't use the easy way in your [Only registered and activated users can see links. Click Here To Register...]
and the other ways "panda and Drew" i made them successfully but they just takes a long time
12/20/2019 16:19 florian0#4
Quote:
Originally Posted by Sclupter View Post
unfortunately most of my dll doesn't have exported function so i can't use the easy way
If you have the source code to these dlls, you can simply add an exported function.

The detoured entry point takes time, yea. But usually you only have to do it once.

If you're developing stuff, you could also make a simple dll that loads all the dlls in a specific folder using LoadLibrary. Like a shitty plugin system :lul:. That way, you wont have to touch the client all the time.