In the year 2002, while I was working on my Visual Basic decompiler, VBReFormer, I discovered an interesting way on how to bypass the startup login form of any secured Visual Basic 6.0 application.
Any information presented here is only for learning purposes.
This is an important issue for the following reasons:
-
This issue affects almost 100% of Visual Basic applications secured by a startup security form or startup license form
-
This issue is common to Visual Basic 4.0 to Visual Basic 6.0
-
This issue does not need any assembler knowledge to be applied, really quick and fast to apply
In this article, I will show you how your application can be bypassed by this vulnerability, and how you can secure your application against this issue.
Description of the vulnerability:
The internal Visual Basic application structure provides a table in which each form configuration properties are stored.
The main data of each user form, user control and designer are stored on a table of form header which provides the following information: signature, unique identifier, startup attribute, address of the form, and reserved bytes.
The issue is that the startup attribute is really easy to change in order to make the main form of an application the startup form of your application.
Scenario of attack:
We will work with a hexadecimal editor in order to analyze and edit the application. It's the only needed tool.
In the following scenario, the sample application we will bypass has two form called "frmMain" and "frmLicense". The "frmMain" form is the Main form, and the "frmLicense" form is a form asking licensing information in order to access to the Main form, then the application is secured by a "frmLicense" form which is the startup form.
First of all, you must search and found the Visual Basic Header, which contains all important information of your application. To find it, just search the Visual Basic Header signature ("VB5!") into the binary:
| 0000 0000 7011 4000 4C00 0000 5642 3521 F01F 5642 3646 522E 444C 4C00 0000 0000 7E00 0000 0000 0000 0000 0000 0000 0A00 0C04 0000 0904 0000 0000 0000 6C16 4000 80F0 3000 00FF FFFF 0800 0000 0100 0000 0100 0000 E900 0000 3C12 4000 3C12 4000 3411 4000 7800 0000 8000 0000 8800 0000 8900 0000 0000 0000 0000 0000 0000 0000 0000 0000 5072 6F6A 6574 3300 5072 6F6A 6574 3100 0050 726F 6A65 7431 0000 0000 | ....p.@.L...VB5! ..VB6FR.DLL..... ~............... ............l.@. ..0............. ........<.@.<.@. 4.@.x........... ................ ....Projet3.Proj et1..Projet1.... |
Note that the Visual Basic header has a length of 0x68 bytes, but this is not the most important information because we only need 2 bytes from this header to continue.
The information we need is the address of the Form Header Table, stored at the offset 0x4D of the Visual Basic Header.
Here we can read the address 0x0040123C. This is the Virtual Address of the Form Header Table, and we must convert it into a real address.
Basically, if your software is a Visual Basic 6.0 application, it mean that the Form Header Table is stored at the real address 0x0000123C = (0x0040123C - 0x00400000) in your application.
We now have to go to the address 0x123C to see the Form Header Table:
| 5000 0000 BBD5 839F DDD7 CC41 BD2F 2358 28D2 B2E6 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 1000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 9C00 0000 0000 0000 7011 4000 4C00 0000 | frmLicense |
| 5000 0000 BC8B D132 ACD5 8E46 80EA 6E9A F88F C04D 0000 0000 0000 0000 0000 0000 0000 0000 0100 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 9C00 0000 0000 0000 7C1C 4000 9C00 0000 | frmMain |
We can see on the above sample there is a table of two "Form Header", one header per form: "frmLicense" and "frmMain".
A Form Header starts with the 0x50000000 signature, and has a length of 0x50 bytes.
The information we need, here highlighted in blue is the Control Flag.
The Control Flag can take the following values:
| Form Type | Startup | Dec | Hex | Bin |
| SDI Form | N | 0 | 0x0000 | 0b0000000000000000 |
| MDI Container Form | N | 1 | 0x0001 | 0b0000000000000001 |
| SDI Form | Y | 16 | 0x0010 | 0b0000000000010000 |
| MDI Container Form | Y | 17 | 0x0011 | 0b0000000000010001 |
| MDI Child Form | Y | 18 | 0x0012 | 0b0000000000010010 |
| SDI Form With Window control | N | 128 | 0x0080 | 0b0000000010000000 |
| SDI Form With Window control | Y | 144 | 0x0090 | 0b0000000010010000 |
The above example show that the "frmLicense" Control Flag is set to 0x0010 (SDI Form [startup]) and the "frmMain" Startup Flag is set to 0x0000 (SDI Form [no startup]) meaning the "frmLicense" form is the startup form of the application.
The objective being to bypass the "frmLicense" form, we now have to exchange the startup flag of the both forms in order to make the "frmMain" form the startup form of the application.
| 5000 0000 BBD5 839F DDD7 CC41 BD2F 2358 28D2 B2E6 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 9C00 0000 0000 0000 7011 4000 4C00 0000 | frmLicence |
| 5000 0000 BC8B D132 ACD5 8E46 80EA 6E9A F88F C04D 0000 0000 0000 0000 0000 0000 0000 0000 0100 0000 1000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 9C00 0000 0000 0000 7C1C 4000 9C00 0000 | frmMain |
This is so simple to apply, just one byte to change, and the "frmMain" form is set to startup form of the application.
Now, when you start the application, you have a direct access to the "frmMain" form, bypassing the "frmLicense" form.
How to protect your application against this vulnerability ?
We have seen on the above scenario that all Visual Basic 4.0 to 6.0 applications are potentially affected by this issue; there are existing applications, commonly called "Visual Basic Universal Cracker" which allows making this work on automatic way, just with one click.
Then it's very important, when you write your application, to think about this issue in order to prevent against applying it on your application. There are different ways to setup protection your application against the application of this issue.
The different solutions are grouped into two categories, which are the code side solutions, and the binary side solutions.
Binary side solutions are applied after the application has been compiled, like packers, compressors, or external solutions of licensing.
Code source side solutions are directly applied on the source code of your application. For example you can define a simple global variable which will be checked during all the execution of your application, and on each form. Another solution is to define the startup form on the Sub Main() procedure of your application. Of course, that is not sufficient to secure your application against advanced crackers, but on this way you will protect your software against a common and simple vulnerability.
Currently rated 5.0 by 1 people
- Currently 5/5 Stars.
- 1
- 2
- 3
- 4
- 5