Exetools

Exetools (https://forum.exetools.com/index.php)
-   General Discussion (https://forum.exetools.com/forumdisplay.php?f=2)
-   -   New InstallShield script format? (https://forum.exetools.com/showthread.php?t=6444)

The Day Walker! 01-05-2006 05:17

1 Attachment(s)
@ dmit

i tried decrypting a setup.inx file using ur c++ code. but i m not able 2 compile ur code

successfully,,,,, i used turbo c++, and getting errors.. during compilation,,,

may i have a compiled script for ur code....

my setup.inx file is attached

thanx

TDW {RES}

sackpower 01-09-2006 21:12

1 Attachment(s)
@ TDW

Here is your decrypted setup.inx file (look at newsetup.inx)

regards

sackpower

The Day Walker! 01-10-2006 02:08

@ power..

pal..will check it out... and c if it works.... or not...

thanx

TDW {RES}

xtx 01-10-2006 10:14

@ 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);
    }
}


The Day Walker! 01-11-2006 02:09

thanx pal...

but is this code different from the 1 posted above,,, cause i downloadede the compiled

exe file that was attached previously.....

and just received the isdhelper also...

from another member..

thanx 4 helpin...

TDW {RES}

xtx 01-11-2006 06:45

@ TDW

No difference in the end results, only in the compiler and the fact that the code I posted became some merged version of dmit's and sackpower's code after I couldn't get either to compile right (totally my fault). Just thought that you were still having problems getting the code to compile. Also forgot that sackpower included an executable and code in response to my earlier posts after I had issues. That is what happens when I haven't touched on a topic for almost a year.

xtx

The Day Walker! 01-12-2006 04:32

its ok pal...

i got it working now... also completed my work... i was tryin 2 patch an msi file

for the game gun, i was creating a cd to dvd conversion stuff,,, so needed 2 patch msi.

but this games setup is a bit different from other games,,,, thats y...

thanx

TDW {RES}


All times are GMT +8. The time now is 18:21.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX