Newest International config.pk password: = q09V169$u-+_Y2ak
Old International config.pk password: In#ixFuc*kin!g
Old International config.pk password: axFGVj4NyC9UY[
How to find new pk password tutorial.
Open engine.exe in IDA PRO 8.3
Press Shift+F12 to open Strings
in strings press Ctrl+F
search for %s\\config.pk
click it
Right click and press X
click Ok
Press F5
Scroll down until you see
Code:
for ( k = 0; k < 0x10; ++k )
v43[k] = byte_905048[k] ^ 0x20;
v13 = k;
Right click 0x20 and click Decimal
Go to this site
[Only registered and activated users can see links. Click Here To Register...]
Use XOR KEY 32 aka 0x20
Double click the byte_905048
Right click byte_905048 and click Array...
Array size fill as 16. (or higher if it changes).
Click Ok
Click Edit->Export Data
Click C unsigned char array (hex)
Run this code replace the Preview code with the code below
Code:
#include <iostream>
int main() {
unsigned char byte_905048[] =
{
0x51, 0x10, 0x19, 0x76, 0x11, 0x16, 0x19, 0x04, 0x55, 0x0D,
0x0B, 0x7F, 0x79, 0x12, 0x41, 0x4B
};
char v43[16];
for (int k = 0; k < 0x10; ++k )
v43[k] = byte_905048[k] ^ 32;
v43[16] = 0;
printf("pk password = %s", v43);
//pk password = q09V169$u-+_Y2ak
return 0;
}
Run this code using
[Only registered and activated users can see links. Click Here To Register...]