|
|
|
#1
|
||||
|
||||
|
I arrived at code like this:
Code:
function CX(lpKey: String): String;
var
I, Y: Integer;
S1, S2: String;
begin
S1 := lpKey;
for I := 0 to 17 do
begin
for Y := 16 to 47 do
begin
S2 := S2 + S1[(I + Y) mod 63 + 1] + lpKey[(I + Y) * 2 mod 63 + 1];
end;
S1 := S2;
S2 := '';
end;
Result := S1;
end;
function InitializeSetup(): Boolean;
begin
SaveStringToFile('Password.txt', CX('2vdJwYqCkY5jWVGs5UerJW3oqk5CM1GznfrzESjWtVm5evLY02RWYsvzUIPnP0mm'), False);
Result := False;
end;
P.S: "Inno Setup Decompiler 1.5" is also included in the Inno Setup repack that I shared in the DiskSpan GUI thread. @BLACKFIRE69, could you tell us which software you used to extract the code from CompiledCode.bin? |
| The Following 2 Users Say Thank You to Cesar82 For This Useful Post: | ||
Behnam2018 (29-03-2024), shazzla (29-03-2024) | ||
| Sponsored Links |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Question about extracting, encoding and rebuilding ".usm" files. | L33THAK0R | Conversion Tutorials | 5 | 22-04-2021 22:41 |
| Inno Setup + ISDone Extracting files | buttignol | PC Games - CD/DVD Conversions | 11 | 28-02-2013 16:31 |
| How to Edit CAB files | Grumpy | PC Games | 12 | 24-02-2013 09:47 |
| Having problems extracting .001-.0?? files... | Tamahome_ | DC Games | 2 | 03-09-2003 19:16 |
| HOW CAN I CORRECT CRC ERRORS ON .ZIPS & SELF EXTRACTING FILES? | thetamal | PC Games | 1 | 05-11-2001 17:23 |