Basicaly all the encryption algorythm is XoRing every byte with a KEY, as far i got this every encrypted byte has it's own key
so for a single encrypted log file there is a message with a maximum size of 320 bytes.
First 68 bytes are HEADER
Other bytes are Log MESSAGE
here is a image of example below
HEADER is always the same, it's never changing and it does NOT contain any sensetive information ^^ MESSAGE you start decrypting it with KEY, it won't work if you would start decrypt it with HEADER, you will get those junk bytes
Decryption Algorythm in program (will look something like this)
static int HEADER = 0x44;
static int BODY = 0xfb;
byte[] EncLog = LogRet(readf);//readf <- is filename("xigncode.log" probably)
byte[] DecLog = new byte[EncLog.Length];//decrypted bytes...
for (int i = 0; i < BODY; i++)
{
if (i > KEY.Length - 1) break;
DecLog[i] = (byte)(EncLog[HEADER + i] ^ KEY[i]);
}
x3:: Init XIGNCODE3 System Apr 15 2015 18:06:46 4 C : \ A e r i a G a m e s \ S 4 L e a g u e \ x i g n c o d e\ x i g n c o d e . l o g
x3:: XIGNCODE3 Running Check ok! A e r i a G a m e s \ S 4 L e a g u e\ x i g n c o d e\ x i g n c o d e . l o g
Get UpdateProtocol fail GE=e0010001
Get UpdateBase fail GE=e0010001 001
UpdateUrl
update result = 00000000 L ?
??&:? Q$
P4 ? 4 ??
?????4 _ n o n f??e c 8 0 f 0 |4 ? 4 ??
?????4 \ c o m c t l 3 2 . d l l . d l l
[ Info ]
Remember, with this KEY you are not able to decrypt everysingle byte in log! ^^
please don't flame me hard, i've worked hard to get those bytes and trying to understood the algorythm
Decrypt xigncode.log file? 03/16/2015 - C9 - Continent of the Ninth - 6 Replies Hello guys, does anybody have the algorithm for decrypting xigncode.log file which is created by XIGNCODE in its own folder?
C++ Text Decrypt Function + Programm Encrypt to Decrypt 07/09/2011 - WarRock Hacks, Bots, Cheats & Exploits - 19 Replies http://desmond.imageshack.us/Himg233/scaled.php?se rver=233&filename=icevisionzxencrypttodec.png& amp;res=medium
Download: uploaded.to - where your files have to be uploaded to
Virustotal: VirusTotal - Free Online Virus, Malware and URL Scanner
Function C++:
char* encrypt(const char* plaintext)
{