![]() |
|
|
|
#1
|
|||
|
|||
|
@ power..
pal..will check it out... and c if it works.... or not... thanx TDW {RES} |
|
#2
|
|||
|
|||
|
@ TDW
I have a compiled version based on the code below if you would like it just email me xteaze [at] excite [dot] com xtx Code:
//Usage: ISDGoBack.exe < new version setup.inx > old version setup.inx
#include <stdio.h>
#include <fcntl.h>
#include <io.h>
#define XOR_VAL 0xF1
void main (void)
{
int i, c;
int d, e;
unsigned char b;
// Set "stdin" and "stdout" to have binary mode
setmode (_fileno (stdin), _O_BINARY);
setmode (_fileno (stdout), _O_BINARY);
// Rebuild the crypted INX
for (i = 0; (c = getchar ()) != EOF; i++)
{
c ^= XOR_VAL;
b = (unsigned char)((c >> 2) | (c << 6)) - (i % 71);
putchar (b);
}
}
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| InstallShield 12 Script decompiler ? | DARKER | General Discussion | 27 | 02-04-2024 00:40 |
| packing-format | MaRKuS-DJM | General Discussion | 4 | 11-11-2004 03:05 |
| If anybody know this format... | qaz_qaz | General Discussion | 4 | 07-15-2002 04:51 |