Works on: Windows 10 | Windows 8.1 | Windows 8 | Windows 7 | Windows 2012 SHA1 Hash: 060bdf5caf3ae93d42905eb6ef564c1e799c4573 Size: 30.93 KB File Format: zip
Rating: 1.913043478
out of 5
based on 23 user ratings
Downloads: 458 License: Free
Dark_Injector is a free software by Winch Pinkbile and works on Windows 10, Windows 8.1, Windows 8, Windows 7, Windows 2012.
You can download Dark_Injector which is 30.93 KB in size and belongs to the software category Other Programming Files. Dark_Injector was released on 2009-05-03 and last updated on our database on 2017-02-23 and is currently at version 0.2.
Thank you for downloading from SoftPaz! Your download should start any moment now. It would be great if you could rate and share:
Rate this software:
Share in your network:
Dark_Injector Description
The Dark_Injector application was designed to be a small tool to inject your own code into a darkbasic professional exe. The code is executed soon after the exe begins running.
This is only of use on exes produced by darkbasic professional, if you arrived via search engine looking for a generic dll injector this is not what you want.
Dbpro exes consist of a normal exe with data appended on the end. The exe part is very similar between all dbpro exes. The same exe handles the three different typesof dbpro exes, normal, compressed and exe with .pck file.
With a compressed exe the exe sees that the first appended file is "compress.dll".It then extracts "compress.dll" and then calls the decompress_block function within the dll. To this function it passes a pointer to the rest of the appended data and its size. The "compress.dll" then decompresses the data and returns a pointer to thedecompressed data back to the dbpro exe.
If we inject our own "compress.dll" as the first attached file then the dbpro exe will extract our dll and call the compress_block function it contains passing a pointer tothe rest of the appended data and its size.
We can then just pass back the already decompressed appended data and the dbpro exe will start as normal. We can also return 0 which will tell the dbpro exe an error occurred and it will silently exit.
This is mainly useful if used to inject a user friendly directx version check but it could be used to do anything that you can be done in a dll and needs to be done as soon as possible after the exe starts.