Log in

View Full Version : setup.ins problem


neurall
July 28th, 2001, 09:20
Hi i lost my nfo file (microstation for Java 7.1 RISCISO)so i must findout passes for installer myself.

I decompiled install script and iam here

AskText ("Please enter the password: ","",passwText)
StrToNum (NumPassw,passwText)
A = NumPassw - 1234567890
RealPassword = A ^ 1234567890
IF (ComponentValidate MEDIA,"",RealPassword )< 00000000) THEN
BAD GUY DETECTED

How could i FIND password?

Brute Force ?
Best Regards.

NeuRaLL

javelin
July 29th, 2001, 22:20
if ^ means the same thing in the script as it does in perl then

Perl snippet

$a = int( 1 ^ 1); # $a Will = 0
$b = int( 2 ^ 1); # $b Will = 3
$c = int( 6 ^ 6); # $c Will = 0

get the point?