(adsbygoogle = window.adsbygoogle || []).push({});
PolyLoader 2.3.1
You must login or register to view this content.
What is PolyLoader?
PolyLoader is a program that opens hack files, randomizes the source code and compiles it.
This process results in an application that is very hard to detect for VAC because the signature changes everytime.
! Reason to post this is because most of my cheats/codes can be compiled using this program! so It's needed for future use. !
Changelog
2.3
---
Added more safety checks to minimize crashing, most exceptions are now handled and will pop up with a error.
2.1
---
Added drag and drop functionality (drag hackfile to PolyLoader.exe)
Better error reporting, it will now scan for the correct version of VS2013, the windows SDK and the ERROR: Cannot determine ....
2.0
---
Better junk code generation
Complete syntax change for hack files
String encryption
New UI
Better performance
Automatic detection of the compiler path
For users
1.
You must login or register to view this content.
2. Download the PolyLoader
3. Download a hack file
4. Open the PolyLoader as admin
5. Select the hack file
6. Press compile
Errors:
"Something went wrong when compiling the randomized source!":
Press the "View compiler output" checkbox and post the data of the console that opens.
Access denied:
Run as admin.
For developers
Developers Guide:
A hack file is just a simple zip with the following files:
-command.txt
-inout.txt
-msg.txt
and a src directory.
So how do I make a hack file?
Step 1, modify your source code.
The PolyLoader uses a few tags to understand your file:
[swap_lines][/swap_lines] - Swap the lines between the 2 tags, useful for randomizing a structure.
struct Entity {
[swap_lines]
DWORD dwBase;
int id;
int hp;
int team;
int weapon_id;
int weapon_ammo;
[/swap_lines]
};
[junk_enable /] - Enables auto junk code addition, the PolyLoader will add junk code after every ;
You can give it 1 or 2 parameters
[junk_enable 5 /] - Will add 5 lines of junk code after every ;
[junk_enable 5 10 /] - Will add 5 to 10 lines of junk code after every;
[junk_disable /] - Disables auto junk code addition.
[junk_enable_declares /] - The auto junk code generator will now only make declares (useful for in header files).
[add_junk /] - Adds a block of junk code at this position, it does NOT take junk_enable_declares into account.
[swap_blocks][/swap_blocks] - Works like swap_lines but instead it swaps blocks of code.
[block][/block] - Define a block
[swap_blocks]
[block]
if (x == 5) {
std::cout << "x == 5\n";
}
[/block]
[block]
if (y == 7) {
std::cout << "y == 7\n";
}
[/block]
[/swap_blocks]
[enc_string_enable /] - Scrambles all strings, when you are using this make sure you have Decrypt.h included (the loader will generate a randomized Decrypt.h file).
[enc_string_disable /] - Disables the auto string scrambler.
command.txt
In command.txt you have to fill in the command line compiler options, here you have to link all the libraries etc... this one should work for practically any hack.
/EHsc /Od /MT *.cpp kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /link /FORCE:MULTIPLE /OUT:hack.exe
inout.txt
First line you put the filename the compiler generates (see the /OUT: parameter)
Second line the new name.
hack.exe
MyHack.exe
msg.txt
A message that will pops up when the user loads up the hack.
Virusscans
You must login or register to view this content.
You must login or register to view this content.
Credits
Merccy2 - Created PolyLoader
Yamiez - Making an update