Exetools  

Go Back   Exetools > General > General Discussion

Notices

Reply
 
Thread Tools Display Modes
  #16  
Old 01-05-2006, 05:17
The Day Walker!
 
Posts: n/a
@ 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}
Attached Files
File Type: zip setup.zip (177.1 KB, 23 views)
Reply With Quote
  #17  
Old 01-09-2006, 21:12
sackpower sackpower is offline
Friend
 
Join Date: Jan 2003
Location: Europe
Posts: 26
Rept. Given: 5
Rept. Rcvd 3 Times in 1 Post
Thanks Given: 14
Thanks Rcvd at 13 Times in 6 Posts
sackpower Reputation: 3
@ TDW

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

regards

sackpower
Attached Files
File Type: zip ISDHelper.zip (277.6 KB, 84 views)
Reply With Quote
  #18  
Old 01-10-2006, 02:08
The Day Walker!
 
Posts: n/a
@ power..

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

thanx

TDW {RES}
Reply With Quote
  #19  
Old 01-10-2006, 10:14
xtx
 
Posts: n/a
@ 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);
    }
}
Reply With Quote
  #20  
Old 01-11-2006, 02:09
The Day Walker!
 
Posts: n/a
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}
Reply With Quote
  #21  
Old 01-11-2006, 06:45
xtx
 
Posts: n/a
@ 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
Reply With Quote
  #22  
Old 01-12-2006, 04:32
The Day Walker!
 
Posts: n/a
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}
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


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


All times are GMT +8. The time now is 02:42.


Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX, chessgod101
( 1998 - 2024 )