vbdisease
January 6th, 2002, 15:35
Hi Folks,
iam targeting a vb3 app and already disassembled it with dodi-disassembler. i found the following code:
[...]
Dim l0070 As New Field
On Error GoTo LE038
If gv01EE = 2 Then
Panel3D1.Visible = True
Exit Sub
End If
[...]
These are the corresponding bytes:
45 49 B6 7E 38 05 32 49 86 2A 34 00 F8 37 6D 39
00 35 2C 00 35 49 3D 38 B0 0E 6E 4A 38 00 72 4C
09 C0 35 49...
I already figuered out, that
494B- No Spaces
4948 = 1 Space
4945 = 2 Spaces
4942= 3 Spaces
4935 = 4 Spaces
4932 = 5 Spaces (thanks to _duke_)
but, hrmm, i thought the compare (the one i want to kill) with
the 2 would have some corresponding byte-code, like 02h.
But its not there. could someone help me by decoding the bytes?
ah i forgot:
EC 35 = End if
Regards!
vbdisease
iam targeting a vb3 app and already disassembled it with dodi-disassembler. i found the following code:
[...]
Dim l0070 As New Field
On Error GoTo LE038
If gv01EE = 2 Then
Panel3D1.Visible = True
Exit Sub
End If
[...]
These are the corresponding bytes:
45 49 B6 7E 38 05 32 49 86 2A 34 00 F8 37 6D 39
00 35 2C 00 35 49 3D 38 B0 0E 6E 4A 38 00 72 4C
09 C0 35 49...
I already figuered out, that
494B- No Spaces
4948 = 1 Space
4945 = 2 Spaces
4942= 3 Spaces
4935 = 4 Spaces
4932 = 5 Spaces (thanks to _duke_)
but, hrmm, i thought the compare (the one i want to kill) with
the 2 would have some corresponding byte-code, like 02h.
But its not there. could someone help me by decoding the bytes?
ah i forgot:
EC 35 = End if
Regards!
vbdisease